aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-10-17 13:26:10 +0200
committerDavid Robillard <d@drobilla.net>2019-10-17 13:26:10 +0200
commitc473bdccc634cb47b5923d481d0e7aa15823ad88 (patch)
tree8c3d5c1297d98373081fddc75be498b9a208bfe9 /wscript
parentf9a82bc3bedbb9250ea2e91ce0bca11ebff84361 (diff)
downloadserd-c473bdccc634cb47b5923d481d0e7aa15823ad88.tar.gz
serd-c473bdccc634cb47b5923d481d0e7aa15823ad88.tar.bz2
serd-c473bdccc634cb47b5923d481d0e7aa15823ad88.zip
Update autowaf
Diffstat (limited to 'wscript')
-rw-r--r--wscript10
1 files changed, 5 insertions, 5 deletions
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)