diff options
author | David Robillard <d@drobilla.net> | 2008-10-19 17:40:09 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-10-19 17:40:09 +0000 |
commit | 7b2b8aaa0c810909922b662729774befc05e061e (patch) | |
tree | c8863a35dc6ddb0766f18a41d8dffcf6bc508f6a /wscript | |
parent | 2d0f699e5ddaab31e936d3c76cbc59cef487987d (diff) | |
download | ingen-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
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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() |