From: Stefan Monnier Date: Sun, 15 Oct 2000 16:44:45 +0000 (+0000) Subject: (WIDE_CHAR_SUPPORT): Define if _LIBC as well. X-Git-Tag: cvs-readonly~6292 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=7bbb7f5d29af0e0665522e1f8e77b9b7b568f444;p=gnulib.git (WIDE_CHAR_SUPPORT): Define if _LIBC as well. Mostly, just a test of the CVS repository. --- diff --git a/regex.c b/regex.c index ffbe5fbce..a589f1551 100644 --- a/regex.c +++ b/regex.c @@ -53,11 +53,11 @@ /* Whether to use ISO C Amendment 1 wide char functions. Those should not be used for Emacs since it uses its own. */ #define WIDE_CHAR_SUPPORT \ - (HAVE_WCTYPE_H && HAVE_WCHAR_H && HAVE_BTOWC && !emacs) + (defined _LIBC || HAVE_WCTYPE_H && HAVE_WCHAR_H && HAVE_BTOWC && !emacs) /* For platform which support the ISO C amendement 1 functionality we support user defined character classes. */ -#if defined _LIBC || WIDE_CHAR_SUPPORT +#if WIDE_CHAR_SUPPORT /* Solaris 2.5 has a bug: must be included before . */ # include # include @@ -1933,7 +1933,7 @@ struct range_table_work_area } \ } while (0) -#if defined _LIBC || WIDE_CHAR_SUPPORT +#if WIDE_CHAR_SUPPORT /* The GNU C library provides support for user-defined character classes and the functions from ISO C amendement 1. */ # ifdef CHARCLASS_NAME_MAX