mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 04:50:07 +00:00
Update.
* posix/Makefile (CFLAGS-regex.c): Remove RE_ENABLE_I18N definition. * posix/regex_internal.h (RE_ENABLE_I18N): Pretty printing.
This commit is contained in:
parent
fd1a0d0c7c
commit
5a6bbb4160
@ -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.
|
||||
|
||||
|
@ -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.
|
||||
|
@ -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;
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user