summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-10-19 17:40:09 +0000
committerDavid Robillard <d@drobilla.net>2008-10-19 17:40:09 +0000
commit7b2b8aaa0c810909922b662729774befc05e061e (patch)
treec8863a35dc6ddb0766f18a41d8dffcf6bc508f6a
parent2d0f699e5ddaab31e936d3c76cbc59cef487987d (diff)
downloadingen-7b2b8aaa0c810909922b662729774befc05e061e.tar.gz
ingen-7b2b8aaa0c810909922b662729774befc05e061e.tar.bz2
ingen-7b2b8aaa0c810909922b662729774befc05e061e.zip
Fix posix_memalign detection.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1684 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--wscript1
1 files changed, 1 insertions, 0 deletions
diff --git a/wscript b/wscript
index e290c51f..13418de3 100644
--- a/wscript
+++ b/wscript
@@ -45,6 +45,7 @@ def configure(conf):
# Check for posix_memalign (OSX, amazingly, doesn't have it)
fe = conf.create_function_enumerator()
+ fe.headers = ['stdlib.h']
fe.function = 'posix_memalign'
fe.define = 'HAVE_POSIX_MEMALIGN'
fe.run()