summaryrefslogtreecommitdiff
path: root/source4/SConstruct
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-09-23 00:38:22 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:38:45 -0500
commitf3b412fbd6dd94d64eb6a63d88baef2816891c29 (patch)
tree61b6086157d30cf1dd64c8cc720638cd484c78d1 /source4/SConstruct
parent92d74c340843f52aaced18dcc243965387fcaedb (diff)
downloadsamba-f3b412fbd6dd94d64eb6a63d88baef2816891c29.tar.gz
samba-f3b412fbd6dd94d64eb6a63d88baef2816891c29.tar.bz2
samba-f3b412fbd6dd94d64eb6a63d88baef2816891c29.zip
r10438: Move portability functions to lib/replace/; replace now simply ensures
that a given set of (working) POSIX functions are available (without prefixes to their names, etc). See lib/replace/README for a list. Functions that behave different from their POSIX specification (such as sys_select, sys_read, etc) have kept the sys_ prefix. (This used to be commit 29919a71059b29fa27a49b1f5b84bb8881de65fc)
Diffstat (limited to 'source4/SConstruct')
-rw-r--r--source4/SConstruct3
1 files changed, 1 insertions, 2 deletions
diff --git a/source4/SConstruct b/source4/SConstruct
index e791f97d7c..8376479fe1 100644
--- a/source4/SConstruct
+++ b/source4/SConstruct
@@ -9,8 +9,6 @@
import cPickle, string, os
-# We don't care about NFS builds...
-
opts = Options(None, ARGUMENTS)
opts.AddOptions(
BoolOption('developer','enable developer flags', False),
@@ -26,6 +24,7 @@ hostenv = Environment(
CPPDEFINES={'_SAMBA_BUILD_': None},
)
+# We don't care about NFS builds...
hostenv.SetOption('max_drift', 1)
if hostenv['developer']: