The branch "master" has been updated in SBCL:
via 34d75fd54651830d53ebd41ddebaf6ac1c76ba62 (commit)
from 6d9e2243954872457115bbb9ac1ecb1d161acced (commit)
- Log -----------------------------------------------------------------
commit 34d75fd54651830d53ebd41ddebaf6ac1c76ba62
Author: Stas Boukarev <stassats@...>
Date: Sat Aug 25 08:57:11 2012 +0400
Define _GNU_SOURCE when building contribs on Linux.
sb-posix:o-direct doesn't get grovelled without it.
---
contrib/asdf-module.mk | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/contrib/asdf-module.mk b/contrib/asdf-module.mk
index 3f88bdb..9c32b23 100644
--- a/contrib/asdf-module.mk
+++ b/contrib/asdf-module.mk
@@ -21,6 +21,9 @@ ifeq (CYGWIN,$(findstring CYGWIN,$(UNAME)))
# paths, either.
CC:=$(shell cygpath -m $(shell readlink -fn $(shell which $(CC))))
endif
+ifeq (Linux,$(UNAME))
+ EXTRA_CFLAGS=-D_GNU_SOURCE
+endif
export CC SBCL EXTRA_CFLAGS EXTRA_LDFLAGS
-----------------------------------------------------------------------
hooks/post-receive
--
SBCL
|