From e08decb5992d6511e6896939a4cd9ad157831b78 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 11 Dec 2011 21:37:05 +0000 Subject: Use posix_fadvise to advise about sequential file access. git-svn-id: http://svn.drobilla.net/serd/trunk@243 490d8e77-9747-427b-9fa3-0b8f29cee8a0 --- wscript | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'wscript') diff --git a/wscript b/wscript index 9bc371d3..9c893f70 100644 --- a/wscript +++ b/wscript @@ -66,6 +66,20 @@ def configure(conf): cflags='-D_POSIX_C_SOURCE=201112L', mandatory=False) + # Check for posix_fadvise + conf.check(function_name='posix_fadvise', + header_name='fcntl.h', + define_name='HAVE_POSIX_FADVISE', + cflags='-D_POSIX_C_SOURCE=201112L', + mandatory=False) + + # Check for fileno + conf.check(function_name='fileno', + header_name='stdio.h', + define_name='HAVE_FILENO', + cflags='-D_POSIX_C_SOURCE=201112L', + mandatory=False) + autowaf.define(conf, 'SERD_VERSION', SERD_VERSION) conf.write_config_header('serd-config.h', remove=False) -- cgit v1.2.1