summaryrefslogtreecommitdiff
path: root/libs/pbd/fpu.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-05-17 00:54:43 +0000
committerDavid Robillard <d@drobilla.net>2012-05-17 00:54:43 +0000
commit86474713798d6fb40c161ae4b319ffa73472d3c1 (patch)
treee2fb5a26a37a9493c3762f3a41c09a606527365c /libs/pbd/fpu.cc
parent8aca90e593aae691fcc6f115e28cb7552ce0fb31 (diff)
Fix posix_memalign checks.
git-svn-id: svn://localhost/ardour2/branches/3.0@12316 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/pbd/fpu.cc')
-rw-r--r--libs/pbd/fpu.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/pbd/fpu.cc b/libs/pbd/fpu.cc
index 479c422c37..94b741fd73 100644
--- a/libs/pbd/fpu.cc
+++ b/libs/pbd/fpu.cc
@@ -80,7 +80,7 @@ FPU::FPU ()
supported, otherwise, it isn't.
*/
-#ifdef NO_POSIX_MEMALIGN
+#ifndef HAVE_POSIX_MEMALIGN
fxbuf = (char **) malloc (sizeof (char *));
assert (fxbuf);
*fxbuf = (char *) malloc (512);