From: Gabor Melis Date: Thu, 23 Jun 2005 09:30:22 +0000 (+0000) Subject: 0.9.1.65: X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=2dc6e61d7202a08aba805d324e6371f7d939949b;p=sbcl.git 0.9.1.65: * link against pthreads only if featurep :sb-thread --- diff --git a/src/runtime/Config.x86-linux b/src/runtime/Config.x86-linux index 80ba64e..c9b9781 100644 --- a/src/runtime/Config.x86-linux +++ b/src/runtime/Config.x86-linux @@ -28,7 +28,11 @@ OS_SRC = linux-os.c x86-linux-os.c # interface, though.:-| As far as I (WHN 2002-05-19) know, no one is # working on one and it would be a nice thing to have.) LINKFLAGS += -Wl,--export-dynamic -OS_LIBS = -lpthread -ldl +OS_LIBS = -ldl + +OS_LIBS += $(shell if grep LISP_FEATURE_SB_THREAD genesis/config.h \ + > /dev/null 2>&1; \ + then echo "-lpthread"; fi) GC_SRC = gencgc.c diff --git a/version.lisp-expr b/version.lisp-expr index 3ee9c06..4f21158 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".) -"0.9.1.64" +"0.9.1.65"