diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-04-08 18:50:41 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-04-08 18:50:41 +0000 |
commit | 403e0597cd0cd4ba489614bf2bea72465ce899b9 (patch) | |
tree | 4bba91733fc5e21a76657795f10fc43080ac8bdf /include/libintl.h | |
parent | For libc itself replace MB_CUR_MAX definition with one accessing the locale d... (diff) | |
download | glibc-403e0597cd0cd4ba489614bf2bea72465ce899b9.tar.gz glibc-403e0597cd0cd4ba489614bf2bea72465ce899b9.tar.bz2 glibc-403e0597cd0cd4ba489614bf2bea72465ce899b9.zip |
Update.
2002-04-08 Ulrich Drepper <drepper@redhat.com>
* cppflags-iterator.mk (cpp-srcs-left): Define NOT_IN_libc instead
of NOT_IN_LIBC.
* include/libintl.h: Test for NOT_IN_libc not NOT_IN_LIBC.
* include/stdlib.h: Likewise.
2002-04-08 Jakub Jelinek <jakub@redhat.com>
* elf/Makefile (CFLAGS-.os): Define NOT_IN_libc and IS_IN_rtld
instead of _RTLD_LOCAL.
* elf/dl-dst.h: Use IS_IN_rtld instead of _RTLD_LOCAL.
* include/unistd.h: Likewise.
* sysdeps/generic/ldsodefs.h: Likewise.
* stdio-common/_itoa.h (_itoa_word): Only use internal digit arrays
if in libc or ld.so.
* include/stdlib.h: For libc itself replace MB_CUR_MAX definition
with one accessing the locale data structures directly.
* stdio-common/printf-prs.c: Include localeinfo.h for new
MB_CUR_MAX definition.
Diffstat (limited to 'include/libintl.h')
-rw-r--r-- | include/libintl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libintl.h b/include/libintl.h index a4d6148d8d..99f7787ba2 100644 --- a/include/libintl.h +++ b/include/libintl.h @@ -28,7 +28,7 @@ extern const char _libc_intl_domainname_internal[] attribute_hidden; # undef _ /* This is defined as an optimizing macro, so use it. */ -# if !defined NOT_IN_LIBC && defined SHARED +# if !defined NOT_IN_libc && defined SHARED # define _(msgid) \ __dcgettext_internal (_libc_intl_domainname_internal, (msgid), LC_MESSAGES) # else |