summaryrefslogtreecommitdiff
path: root/lib/regex_internal.h
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2006-12-04 06:41:56 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2006-12-04 06:41:56 +0000
commit6bc7a02996c53c32437a1055cad7b24d5d7fc88b (patch)
treeb8b7d9ae92a27ad98688da95650fbcd57f9f90cc /lib/regex_internal.h
parent9f36e3cd7a521aa308473e2cb7693dde0f183f7a (diff)
downloadgnulib-6bc7a02996c53c32437a1055cad7b24d5d7fc88b.tar.gz
* lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
* lib/regex_internal.h (RE_ENABLE_I18N): Likewise. * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too. * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
Diffstat (limited to 'lib/regex_internal.h')
-rw-r--r--lib/regex_internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/regex_internal.h b/lib/regex_internal.h
index 9a978b2a9f..fbebc539c3 100644
--- a/lib/regex_internal.h
+++ b/lib/regex_internal.h
@@ -89,7 +89,7 @@
# define SIZE_MAX ((size_t) -1)
#endif
-#if (defined MB_CUR_MAX && HAVE_LOCALE_H && HAVE_WCTYPE_H && HAVE_WCHAR_H && HAVE_WCRTOMB && HAVE_MBRTOWC && HAVE_WCSCOLL) || _LIBC
+#if (defined MB_CUR_MAX && HAVE_LOCALE_H && HAVE_WCTYPE_H && HAVE_WCHAR_H && HAVE_ISWCTYPE && HAVE_WCRTOMB && HAVE_MBRTOWC && HAVE_WCSCOLL) || _LIBC
# define RE_ENABLE_I18N
#endif