From ecfebb87092faa5c719ddc424dfa7e8c4a29ad2c Mon Sep 17 00:00:00 2001 From: Juho Snellman Date: Fri, 2 Mar 2007 03:16:31 +0000 Subject: [PATCH] 1.0.3.10: Add -D_REENTRANT to Solaris CFLAGS * Otherwise localtime_r in time.c won't be found. * Problem and solution reported by Thomas Burdick. --- src/runtime/Config.sparc-sunos | 2 +- src/runtime/Config.x86-sunos | 2 +- version.lisp-expr | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/runtime/Config.sparc-sunos b/src/runtime/Config.sparc-sunos index 4a2908696..c5c89b837 100644 --- a/src/runtime/Config.sparc-sunos +++ b/src/runtime/Config.sparc-sunos @@ -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 diff --git a/src/runtime/Config.x86-sunos b/src/runtime/Config.x86-sunos index abb347cc4..2e58b5103 100644 --- a/src/runtime/Config.x86-sunos +++ b/src/runtime/Config.x86-sunos @@ -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 diff --git a/version.lisp-expr b/version.lisp-expr index e48f52eb6..1cee175da 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -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" -- 2.11.4.GIT