aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJamie Bullock <postlude@users.sourceforge.net>2015-03-16 14:54:35 +0000
committerJamie Bullock <postlude@users.sourceforge.net>2015-03-16 14:54:35 +0000
commitc8f157b2231ba21d40a6699ffbdeb7874b9b1abd (patch)
tree6251caef315ff0fd550fe873aecacb4a65631d7a
parent7844efa60c29a617dcf3b434e4cab3f0ff85e216 (diff)
Make Makefile look in /usr/local/include and /usr/local/include/dssi — where we’d usually expect a user-installed dssi.h and alsa/ headers
svn path=/trunk/externals/postlude/; revision=17444
-rw-r--r--pluginhost~/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/pluginhost~/Makefile b/pluginhost~/Makefile
index 393b1ae..4093022 100644
--- a/pluginhost~/Makefile
+++ b/pluginhost~/Makefile
@@ -111,7 +111,7 @@ ifeq ($(UNAME),Darwin)
SHARED_EXTENSION = dylib
OS = macosx
PD_PATH = /Applications/Pd-extended.app/Contents/Resources
- OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -fast
+ OPT_CFLAGS = -fast
# build universal 32-bit on 10.4 and 32/64 on newer
ifeq ($(shell uname -r | sed 's|\([0-9][0-9]*\)\.[0-9][0-9]*\.[0-9][0-9]*|\1|'), 8)
FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=10.4
@@ -119,7 +119,7 @@ ifeq ($(UNAME),Darwin)
SOURCES += $(SOURCES_iphoneos)
# Starting with Xcode 4.0, the PowerPC compiler is not installed by default
ifeq ($(wildcard /usr/llvm-gcc-4.2/libexec/gcc/powerpc*), )
- FAT_FLAGS = -arch i386 -mmacosx-version-min=10.5
+ FAT_FLAGS = -arch x86_64 -mmacosx-version-min=10.5
else
FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4
endif