changeset 37214:35f4d54fdc3a

regex: also remove dependency on HAVE_WCSCOLL * lib/regex_internal.h: Remove final vestige of the wcscoll dependency.
author Jim Meyering <meyering@fb.com>
date Mon, 21 Oct 2013 14:54:30 -0700
parents 62bc6d1e4c09
children e6179db74803
files ChangeLog lib/regex_internal.h
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Oct 21 20:42:42 2013 +0100
+++ b/ChangeLog	Mon Oct 21 14:54:30 2013 -0700
@@ -1,3 +1,8 @@
+2013-10-21  Jim Meyering  <meyering@fb.com>
+
+	regex: also remove dependency on HAVE_WCSCOLL
+	* lib/regex_internal.h: Remove final vestige of the wcscoll dependency.
+
 2013-10-21  Reuben Thomas <rrt@sc3d.org>
 
 	xfreopen: Fix typo. s/frepoen/freopen/
--- a/lib/regex_internal.h	Mon Oct 21 20:42:42 2013 +0100
+++ b/lib/regex_internal.h	Mon Oct 21 14:54:30 2013 -0700
@@ -110,7 +110,7 @@
 # define gettext_noop(String) String
 #endif
 
-#if (defined MB_CUR_MAX && HAVE_WCTYPE_H && HAVE_ISWCTYPE && HAVE_WCSCOLL) || _LIBC
+#if (defined MB_CUR_MAX && HAVE_WCTYPE_H && HAVE_ISWCTYPE) || _LIBC
 # define RE_ENABLE_I18N
 #endif