1.0.3.10: Add -D_REENTRANT to Solaris CFLAGS
authorJuho Snellman <jsnell@iki.fi>
Fri, 2 Mar 2007 03:16:31 +0000 (03:16 +0000)
committerJuho Snellman <jsnell@iki.fi>
Fri, 2 Mar 2007 03:16:31 +0000 (03:16 +0000)
         * Otherwise localtime_r in time.c won't be found.
         * Problem and solution reported by Thomas Burdick.

src/runtime/Config.sparc-sunos
src/runtime/Config.x86-sunos
version.lisp-expr

index 4a29086..c5c89b8 100644 (file)
@@ -10,7 +10,7 @@
 # files for more information.
 
 CC = gcc
-CFLAGS += -DSVR4
+CFLAGS += -DSVR4 -D_REENTRANT
 ASFLAGS = -g -Wall -DSVR4
 LINKFLAGS += -v
 NM = nm -t x -p 
index abb347c..2e58b51 100644 (file)
@@ -1,5 +1,5 @@
 CC=gcc
-CFLAGS = -g -O2 -Wall -D__EXTENSIONS__ -D_POSIX_C_SOURCE=199506L -DSVR4
+CFLAGS = -g -O2 -Wall -D__EXTENSIONS__ -D_POSIX_C_SOURCE=199506L -DSVR4 -D_REENTRANT
 ASFLAGS = -Wall
 LD = ld
 NM = nm -xgp
index e48f52e..1cee175 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.3.9"
+"1.0.3.10"