summaryrefslogtreecommitdiff
path: root/source4/SConstruct
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-09-22 12:23:44 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:38:43 -0500
commit05bd880626255c6547922204d7ba012aa9bc6d50 (patch)
tree7bd3ab2c2a7a24f959afed737178791f72e42993 /source4/SConstruct
parent2ce3b5a00347cc3120efd12cd58d52a5c43305b3 (diff)
downloadsamba-05bd880626255c6547922204d7ba012aa9bc6d50.tar.gz
samba-05bd880626255c6547922204d7ba012aa9bc6d50.tar.bz2
samba-05bd880626255c6547922204d7ba012aa9bc6d50.zip
r10420: Two minor scons fixes
(This used to be commit 749b19d34f6105c696a07cc2cd39d5acecfc735b)
Diffstat (limited to 'source4/SConstruct')
-rw-r--r--source4/SConstruct6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/SConstruct b/source4/SConstruct
index 3e9fd867a0..e791f97d7c 100644
--- a/source4/SConstruct
+++ b/source4/SConstruct
@@ -42,9 +42,6 @@ if hostenv['developer']:
hostenv.Append(CCFLAGS='-Wno-format-y2k')
hostenv.Append(CCFLAGS='-Wno-declaration-after-statement')
-# Pull in GNU extensions
-hostenv.Append(CPPDEFINES = {'_GNU_SOURCE': 1})
-
# Some tools get confused if $HOME isn't defined
hostenv.Append(ENV={'HOME': os.environ['HOME']})
@@ -138,6 +135,9 @@ if hostenv['configure']:
if conf.CheckFunc(f):
defines['HAVE_' + f.upper()] = 1
+ # Pull in GNU extensions
+ defines['_GNU_SOURCE'] = 1
+
needed_types = {
'uint_t': 'unsigned int',
'int8_t': 'signed char',