changeset 17534:10245f88b953

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 7d08359f2d59
children fe4429e4fe31
files ChangeLog lib/regex_internal.h
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
+++ b/lib/regex_internal.h
@@ -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