diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-07-08 06:23:55 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-07-08 06:23:55 +0000 |
commit | a2a89dd6ced7d42b95550f9f02c52d60c7626715 (patch) | |
tree | a6215a2e2c2f0342d444723b6332641ed4f9d9ca | |
parent | 1a35b7fd42a4960fc8dfca2696ad9b644e3243bd (diff) | |
download | glibc-a2a89dd6ced7d42b95550f9f02c52d60c7626715.tar.gz glibc-a2a89dd6ced7d42b95550f9f02c52d60c7626715.tar.xz glibc-a2a89dd6ced7d42b95550f9f02c52d60c7626715.zip |
Update.
* include/libc-symbols.h: Provide more dummy definitions for the case if GNU ld isn't used.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | include/libc-symbols.h | 10 | ||||
-rw-r--r-- | localedata/ChangeLog | 4 |
3 files changed, 17 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index fe32a894dd..146d975251 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2001-07-07 Ulrich Drepper <drepper@redhat.com> + * include/libc-symbols.h: Provide more dummy definitions for the + case if GNU ld isn't used. + * libio/freopen.c: Include <stdlib.h> for free declaration. * libio/freopen64.c: Likewise. diff --git a/include/libc-symbols.h b/include/libc-symbols.h index 0c8a28824c..fc510763f1 100644 --- a/include/libc-symbols.h +++ b/include/libc-symbols.h @@ -297,6 +297,16 @@ # define symbol_set_end_p(set, ptr) (*(ptr) == 0) # endif /* ELF. */ +#else +/* We cannot do anything in generial. */ +# define text_set_element(set, symbol) asm ("") +# define data_set_element(set, symbol) asm ("") +# define bss_set_element(set, symbol) asm ("") +# define symbol_set_define(set) void *const (set)[1]; +# define symbol_set_declare(set) extern void *const (set)[1]; + +# define symbol_set_first_element(set) &(set)[1] +# define symbol_set_end_p(set, ptr) (*(ptr) == 0) #endif /* Have GNU ld. */ #if DO_VERSIONING diff --git a/localedata/ChangeLog b/localedata/ChangeLog index 908059e2b0..30966800f0 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -1,3 +1,7 @@ +2001-07-07 Ulrich Drepper <drepper@redhat.com> + + * Makefile: Add dependencies to locale files for all tests in $(tests). + 2001-06-28 H.J. Lu <hjl@gnu.org> * Makefile: Include SUPPORTED. |