aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2006-10-18 18:13:57 +0100
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2006-10-18 18:13:57 +0100
commit2b30fc3c70a02875b9d2c8b9b1b28917f343dca3 (patch)
treecc560e591363020b0516b73a293912dbdc1b387c /config
parentbc29b3f70e402f9c2a5907f335d9cb4fc1fbba43 (diff)
downloadxen-2b30fc3c70a02875b9d2c8b9b1b28917f343dca3.tar.gz
xen-2b30fc3c70a02875b9d2c8b9b1b28917f343dca3.tar.bz2
xen-2b30fc3c70a02875b9d2c8b9b1b28917f343dca3.zip
[SOLARIS] More tools fixes.
Many of the tools use C99 features such as bool, or expect certain functions. Fix the CFLAGS to enable these on Solaris. Also make sure the correct $CC is passed to Python. Signed-off-by: John Levon <john.levon@sun.com>
Diffstat (limited to 'config')
-rw-r--r--config/SunOS.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/SunOS.mk b/config/SunOS.mk
index ca73d6f949..21568304fc 100644
--- a/config/SunOS.mk
+++ b/config/SunOS.mk
@@ -31,4 +31,5 @@ else
CFLAGS ?= -O1 -fno-omit-frame-pointer
endif
-CFLAGS += -Wa,--divide
+CFLAGS += -Wa,--divide -D_POSIX_C_SOURCE=200112L -D__EXTENSIONS__
+