From 91f82a754a26fd80f7afeaefff0e056678408678 Mon Sep 17 00:00:00 2001 From: Juho Snellman Date: Thu, 27 Apr 2006 11:00:17 +0000 Subject: [PATCH] 0.9.12.1: 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 | 6 +++++- version.lisp-expr | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/contrib/asdf-module.mk b/contrib/asdf-module.mk index 86d3698..e98fd00 100644 --- a/contrib/asdf-module.mk +++ b/contrib/asdf-module.mk @@ -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 diff --git a/version.lisp-expr b/version.lisp-expr index 7cb3a8a..8100c6f 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.12" +"0.9.12.1" -- 1.7.10.4