mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-18 12:16:13 +08:00
Fix -Wundef warnings in regex_internal.h
This commit is contained in:
parent
78dd658a02
commit
a476ac4b45
@ -1,5 +1,12 @@
|
||||
2014-08-01 Siddhesh Poyarekar <siddhesh@redhat.com>
|
||||
|
||||
* include/libc-symbols.h (HAVE_LIBINTL_H): Define macro.
|
||||
(HAVE_WCTYPE_H): Likewise.
|
||||
(HAVE_ISWCTYPE): Likewise.
|
||||
(ENABLE_NLS): Likewise.
|
||||
* posix/regex_internal.h [(defined MB_CUR_MAX && HAVE_WCTYPE_H
|
||||
&& HAVE_ISWCTYPE) || _LIBC]: Sync up with gnulib.
|
||||
|
||||
* posix/regex_internal.c: Check if DEBUG is defined and is
|
||||
set.
|
||||
|
||||
|
@ -62,6 +62,10 @@
|
||||
#define STDC_HEADERS 1
|
||||
#define HAVE_MBSTATE_T 1
|
||||
#define HAVE_MBSRTOWCS 1
|
||||
#define HAVE_LIBINTL_H 1
|
||||
#define HAVE_WCTYPE_H 1
|
||||
#define HAVE_ISWCTYPE 1
|
||||
#define ENABLE_NLS 1
|
||||
|
||||
/* The symbols in all the user (non-_) macros are C symbols. */
|
||||
|
||||
|
@ -90,7 +90,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_WCTYPE_H && HAVE_ISWCTYPE) || _LIBC
|
||||
# define RE_ENABLE_I18N
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user