summaryrefslogtreecommitdiff
path: root/lib/replace/wscript
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-10-16 19:53:17 +1100
committerAndrew Tridgell <tridge@samba.org>2010-10-19 11:22:35 +1100
commitec90b249ecbd415c931630070b0831c6cf86d2d4 (patch)
treef33e0bdaed4d684db54bcc5151ddbbd84cae721e /lib/replace/wscript
parent1ac19c1ca3164dc6a1b29ce81047bab81a9af918 (diff)
downloadsamba-ec90b249ecbd415c931630070b0831c6cf86d2d4.tar.gz
samba-ec90b249ecbd415c931630070b0831c6cf86d2d4.tar.bz2
samba-ec90b249ecbd415c931630070b0831c6cf86d2d4.zip
replace: cope with systems that have fdatasync(), but don't have the prototype
this is needed for MacOSX 10.4.1
Diffstat (limited to 'lib/replace/wscript')
-rw-r--r--lib/replace/wscript5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/replace/wscript b/lib/replace/wscript
index fef366317c..a3cde2bcc8 100644
--- a/lib/replace/wscript
+++ b/lib/replace/wscript
@@ -173,7 +173,10 @@ def configure(conf):
conf.CHECK_C_PROTOTYPE('dlopen', 'void *dlopen(const char* filename, unsigned int flags)',
define='DLOPEN_TAKES_UNSIGNED_FLAGS', headers='dlfcn.h dl.h')
- conf.CHECK_FUNCS_IN('fdatasync', 'rt', checklibc=True)
+ if conf.CHECK_FUNCS_IN('fdatasync', 'rt', checklibc=True):
+ # some systems are missing the declaration
+ conf.CHECK_DECLS('fdatasync')
+
conf.CHECK_FUNCS_IN('clock_gettime', 'rt', checklibc=True)
# these headers need to be tested as a group on freebsd