From 403e0597cd0cd4ba489614bf2bea72465ce899b9 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 8 Apr 2002 18:50:41 +0000 Subject: Update. 2002-04-08 Ulrich Drepper * 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 * 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. --- sysdeps/generic/ldsodefs.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sysdeps') diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h index a68ae5e06e..011391865f 100644 --- a/sysdeps/generic/ldsodefs.h +++ b/sysdeps/generic/ldsodefs.h @@ -199,7 +199,7 @@ typedef void (*receiver_fct) (int, const char *, const char *); # define GL(name) _##name #else # define EXTERN -# ifdef _RTLD_LOCAL +# ifdef IS_IN_rtld # define GL(name) _rtld_local._##name # else # define GL(name) _rtld_global._##name @@ -375,7 +375,7 @@ struct rtld_global #ifdef SHARED }; extern struct rtld_global _rtld_global; -# ifdef _RTLD_LOCAL +# ifdef IS_IN_rtld # ifdef HAVE_VISIBILITY_ATTRIBUTE # ifdef HAVE_SDATA_SECTION # define __rtld_local_attribute__ \ @@ -394,7 +394,7 @@ extern struct rtld_global _rtld_local __rtld_local_attribute__; /* Parameters passed to the dynamic linker. */ extern int _dl_argc attribute_hidden; extern char **_dl_argv; -#ifdef _RTLD_LOCAL +#ifdef IS_IN_rtld extern char **_dl_argv_internal attribute_hidden; # define rtld_progname (INTUSE(_dl_argv)[0]) #else @@ -403,7 +403,7 @@ extern char **_dl_argv_internal attribute_hidden; /* The array with message we print as a last resort. */ extern const char _dl_out_of_memory[]; -#ifdef _RTLD_LOCAL +#ifdef IS_IN_rtld /* XXX #ifdef should go away. */ extern const char _dl_out_of_memory_internal[] attribute_hidden; #endif -- cgit 1.4.1