* posix/Makefile (CFLAGS-regex.c): Remove RE_ENABLE_I18N definition.
	* posix/regex_internal.h (RE_ENABLE_I18N): Pretty printing.
This commit is contained in:
Ulrich Drepper 2003-02-23 09:58:08 +00:00
parent fd1a0d0c7c
commit 5a6bbb4160
5 changed files with 11 additions and 5 deletions

View file

@ -1,5 +1,8 @@
2003-02-23 Ulrich Drepper <drepper@redhat.com>
* posix/Makefile (CFLAGS-regex.c): Remove RE_ENABLE_I18N definition.
* posix/regex_internal.h (RE_ENABLE_I18N): Pretty printing.
* resolv/res_libc.c [USE___THREAD] (_res): Initialize _vcsock
element to -1.

View file

@ -1,5 +1,8 @@
2003-02-23 Ulrich Drepper <drepper@redhat.com>
* libc-cancellation.c (__libc_enable_asynccancel): Correct test
for failed cmpxchg.
* pthread_create.c (start_thread): Set EXITING_BIT early.
* sysdeps/i386/tls.h (THREAD_GETMEM): Mark asm as volatile.

View file

@ -47,7 +47,7 @@ __libc_enable_asynccancel (void)
break;
if (atomic_compare_and_exchange_acq (&self->cancelhandling, newval,
oldval) == 0)
oldval) != 0)
/* Somebody else modified the word, try again. */
continue;

View file

@ -1,4 +1,4 @@
# Copyright (C) 1991-1999, 2000, 2001, 2002 Free Software Foundation, Inc.
# Copyright (C) 1991-1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
# This file is part of the GNU C Library.
# The GNU C Library is free software; you can redistribute it and/or
@ -115,7 +115,7 @@ $(objpfx)wordexp-tst.out: wordexp-tst.sh $(objpfx)wordexp-test
endif
endif
CFLAGS-regex.c = -Wno-strict-prototypes -DRE_ENABLE_I18N
CFLAGS-regex.c = -Wno-strict-prototypes
CFLAGS-getaddrinfo.c = -DRESOLVER
tstgetopt-ARGS = -a -b -cfoobar --required foobar --optional=bazbug \
--none random --col --color --colour

View file

@ -74,8 +74,8 @@
# define gettext_noop(String) String
#endif
#if (defined (MB_CUR_MAX) && HAVE_LOCALE_H && HAVE_WCTYPE_H && HAVE_WCHAR_H && HAVE_WCRTOMB && HAVE_MBRTOWC && HAVE_WCSCOLL) || _LIBC
#define RE_ENABLE_I18N
#if (defined MB_CUR_MAX && HAVE_LOCALE_H && HAVE_WCTYPE_H && HAVE_WCHAR_H && HAVE_WCRTOMB && HAVE_MBRTOWC && HAVE_WCSCOLL) || _LIBC
# define RE_ENABLE_I18N
#endif
#if __GNUC__ >= 3