0.9.12.1:
authorJuho Snellman <jsnell@iki.fi>
Thu, 27 Apr 2006 11:00:17 +0000 (11:00 +0000)
committerJuho Snellman <jsnell@iki.fi>
Thu, 27 Apr 2006 11:00:17 +0000 (11:00 +0000)
sendto()-support broke SB-BSD-SOCKETS build on Solaris. Add
        some compiler flags to get the right header versions pulled in.

contrib/asdf-module.mk
version.lisp-expr

index 86d3698..e98fd00 100644 (file)
@@ -7,7 +7,11 @@ CC=gcc
 # directly via ASDF from a non-C-aware module which has these tricky
 # ones as dependencies.
 
-UNAME:=$(shell uname -m)
+UNAME:=$(shell uname -s)
+
+ifeq (SunOS,$(UNAME))
+  EXTRA_CFLAGS=-D_XOPEN_SOURCE=500 -D__EXTENSIONS__
+endif
 
 export CC SBCL EXTRA_CFLAGS EXTRA_LDFLAGS
 
index 7cb3a8a..8100c6f 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".)
-"0.9.12"
+"0.9.12.1"