diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-08-28 00:22:21 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-08-28 00:22:21 +0000 |
commit | a125d9b46eb8e57cd67542c992d7d1c84e563b58 (patch) | |
tree | ecb2020ffd9ef49e74a54fa49d51a45f9829dc9c | |
parent | 8a3c8443579971eff1d42db864952ca8a910780c (diff) | |
download | glibc-a125d9b46eb8e57cd67542c992d7d1c84e563b58.tar.gz glibc-a125d9b46eb8e57cd67542c992d7d1c84e563b58.tar.xz glibc-a125d9b46eb8e57cd67542c992d7d1c84e563b58.zip |
Update.
1999-08-26 Andreas Schwab <schwab@suse.de> * locale/langinfo.h (YESSTR, NOSTR): Still define if __USE_GNU.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | FAQ.in | 3 | ||||
-rw-r--r-- | locale/langinfo.h | 2 |
3 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 855207ce56..c37ff06608 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +1999-08-26 Andreas Schwab <schwab@suse.de> + + * locale/langinfo.h (YESSTR, NOSTR): Still define if __USE_GNU. + 1999-08-27 Ulrich Drepper <drepper@cygnus.com> * inet/rexec.c (rexec): Free memory if strings were allocated in diff --git a/FAQ.in b/FAQ.in index 2fc4717e63..1e4410829a 100644 --- a/FAQ.in +++ b/FAQ.in @@ -76,6 +76,9 @@ Make up your own decision. GNU CC versions 2.95 and above are derived from egcs, and they may do even better. +Please note that gcc 2.95 and 2.95.1 cannot compile glibc on Alpha due to +problems in the complex float support. + ?? When I try to compile glibc I get only error messages. What's wrong? diff --git a/locale/langinfo.h b/locale/langinfo.h index cfcf7c75fa..4de5dbecbe 100644 --- a/locale/langinfo.h +++ b/locale/langinfo.h @@ -335,7 +335,7 @@ enum #define NOEXPR NOEXPR __YESSTR, /* Output string for ``yes''. */ __NOSTR, /* Output string for ``no''. */ -#ifndef __USE_XOPEN2K +#if !defined __USE_XOPEN2K || defined __USE_GNU # define YESSTR __YESSTR # define NOSTR __NOSTR #endif |