1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

Changes from arch/CVS synchronization

This commit is contained in:
Ludovic Courtès 2007-08-23 21:10:57 +00:00
parent 5dda5df742
commit 2baec6a946
4 changed files with 12 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2007-08-23 Ludovic Courtès <ludo@gnu.org>
* NEWS: Mention Solaris bug fixes.
2007-08-11 Ludovic Courtès <ludo@gnu.org> 2007-08-11 Ludovic Courtès <ludo@gnu.org>
* NEWS: Mention SRFI-35 and the new reader. * NEWS: Mention SRFI-35 and the new reader.

1
NEWS
View file

@ -42,6 +42,7 @@ Changes in 1.8.3 (since 1.8.2)
* Bugs fixed * Bugs fixed
** Expressions like "(set! 'x #t)" no longer yield a crash ** Expressions like "(set! 'x #t)" no longer yield a crash
** Build problems on Solaris fixed
* Implementation improvements * Implementation improvements

View file

@ -1,3 +1,7 @@
2007-08-23 Ludovic Courtès <ludo@gnu.org>
* stime.c: Define `_REENTRANT' only if not already defined.
2007-08-21 Kevin Ryde <user42@zip.com.au> 2007-08-21 Kevin Ryde <user42@zip.com.au>
* gc-card.c (scm_i_card_statistics): Record scm_tc7_number types as * gc-card.c (scm_i_card_statistics): Record scm_tc7_number types as

View file

@ -32,7 +32,9 @@
hard coding __hpux. */ hard coding __hpux. */
#define _GNU_SOURCE /* ask glibc for everything, in particular strptime */ #define _GNU_SOURCE /* ask glibc for everything, in particular strptime */
#define _REENTRANT /* ask solaris for gmtime_r prototype */ #ifndef _REENTRANT
# define _REENTRANT /* ask solaris for gmtime_r prototype */
#endif
#ifdef __hpux #ifdef __hpux
#define _POSIX_C_SOURCE 199506L /* for gmtime_r prototype */ #define _POSIX_C_SOURCE 199506L /* for gmtime_r prototype */
#endif #endif