aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
m---------waflib0
-rw-r--r--wscript10
2 files changed, 5 insertions, 5 deletions
diff --git a/waflib b/waflib
-Subproject 3ed837e27fcfa06fb83f60858aafa174e7904c1
+Subproject de76b89dc1039e2f7d6c6b229a8950156b0e5c9
diff --git a/wscript b/wscript
index 088ea0bc..3d1e0d1f 100644
--- a/wscript
+++ b/wscript
@@ -56,11 +56,11 @@ def configure(conf):
for name, header in {'posix_memalign': 'stdlib.h',
'posix_fadvise': 'fcntl.h',
'fileno': 'stdio.h'}.items():
- autowaf.check_function(conf, 'c', name,
- header_name = header,
- define_name = 'HAVE_' + name.upper(),
- defines = ['_POSIX_C_SOURCE=200809L'],
- mandatory = False)
+ conf.check_function('c', name,
+ header_name = header,
+ define_name = 'HAVE_' + name.upper(),
+ defines = ['_POSIX_C_SOURCE=200809L'],
+ mandatory = False)
autowaf.set_lib_env(conf, 'serd', SERD_VERSION)
conf.write_config_header('serd_config.h', remove=False)