From 03788428a4a9c9367c1be7e710236ec9136c5c4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albert=20Gr=C3=A4f?= <aggraef@gmail.com> Date: Tue, 23 Jul 2019 15:40:46 +0200 Subject: [PATCH] Fix compile options for Xcode 10 - externals and abstractions. --- abstractions/footils/list-abs/Makefile | 8 ++++++-- abstractions/purepd/Makefile | 8 ++++++-- externals/Makefile | 6 +++++- externals/apple/Makefile | 10 +++++++--- externals/arraysize/Makefile | 8 ++++++-- externals/autotune/Makefile | 8 ++++++-- externals/bassemu~/Makefile | 8 ++++++-- externals/boids/Makefile | 8 ++++++-- externals/bsaylor/Makefile | 8 ++++++-- externals/cxc/Makefile | 8 ++++++-- externals/disis/Makefile.pdlibbuilder.revised | 11 +++++++---- externals/earplug~/Makefile | 8 ++++++-- externals/ekext/Makefile | 8 ++++++-- externals/ext13/Makefile | 8 ++++++-- externals/fluid~/Makefile.pdlibbuilder.revised | 11 +++++++---- externals/footils/knob/Makefile.pdlibbuilder.revised | 11 +++++++---- externals/freeverb~/Makefile | 8 ++++++-- externals/ggee/Makefile | 8 ++++++-- externals/hcs/Makefile | 8 ++++++-- externals/hcs/usbhid/Makefile | 6 +++++- externals/iem/comport/comport/Makefile | 8 ++++++-- externals/iem/iemguts/Makefile | 8 ++++++-- externals/iem/iemnet/Makefile | 6 +++++- externals/iem/syslog/Makefile | 8 ++++++-- externals/loaders/libdir/Makefile | 8 ++++++-- externals/mapping/Makefile | 8 ++++++-- externals/markex/Makefile | 8 ++++++-- externals/maxlib/Makefile | 10 +++++++--- externals/miXed/cyclone/Makefile.libdir | 7 +++++-- externals/mjlib/Makefile | 8 ++++++-- externals/moonlib/Makefile | 8 ++++++-- externals/motex/Makefile | 8 ++++++-- externals/mrpeach/Makefile | 10 +++++++--- externals/mrpeach/cmos/Makefile | 10 +++++++--- externals/mrpeach/net/Makefile | 8 ++++++-- externals/mrpeach/osc/Makefile | 8 ++++++-- externals/pan/Makefile | 8 ++++++-- externals/pddp/Makefile | 8 ++++++-- externals/pdogg/Makefile | 8 ++++++-- externals/plugin~/Makefile | 8 ++++++-- externals/pmpd/Makefile | 10 +++++++--- externals/sigpack/Makefile | 8 ++++++-- externals/smlib/Makefile | 8 ++++++-- externals/tof/src/Makefile | 6 +++++- externals/tof/test/Makefile(ext13) | 5 ++++- externals/unauthorized/Makefile | 8 ++++++-- externals/vbap/Makefile | 10 +++++++--- externals/windowing/Makefile | 8 ++++++-- 48 files changed, 290 insertions(+), 103 deletions(-) diff --git a/abstractions/footils/list-abs/Makefile b/abstractions/footils/list-abs/Makefile index d1b1d7d25..39020dd7b 100644 --- a/abstractions/footils/list-abs/Makefile +++ b/abstractions/footils/list-abs/Makefile @@ -41,6 +41,10 @@ LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -92,9 +96,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/abstractions/purepd/Makefile b/abstractions/purepd/Makefile index a44c385f8..19c30b1dc 100644 --- a/abstractions/purepd/Makefile +++ b/abstractions/purepd/Makefile @@ -41,6 +41,10 @@ LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -92,9 +96,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/Makefile b/externals/Makefile index 3cefc37fc..d78262e17 100644 --- a/externals/Makefile +++ b/externals/Makefile @@ -15,8 +15,12 @@ cvs_root_dir := $(shell cd $(CWD)/.. && pwd) DESTDIR = $(CWD)/build/ BUILDLAYOUT_DIR = $(cvs_root_dir)/packages +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # turn on weak linking and dlopen support -export MACOSX_DEPLOYMENT_TARGET = 10.3 +export MACOSX_DEPLOYMENT_TARGET = $(macos_target) # default target default: all diff --git a/externals/apple/Makefile b/externals/apple/Makefile index 2d794e716..a7eac8510 100644 --- a/externals/apple/Makefile +++ b/externals/apple/Makefile @@ -53,6 +53,10 @@ ALL_LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # these can be set from outside without (usually) breaking the build CFLAGS = -Wall -W -g LDFLAGS = @@ -112,9 +116,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif ALL_CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include @@ -260,7 +264,7 @@ all: $(SOURCES:.c=.$(EXTENSION)) $(SHARED_LIB) multitouch.$(EXTENSION): multitouch.c $(CC) $(ALL_CFLAGS) -o multitouch.o -c multitouch.c - $(CC) $(ALL_LDFLAGS) -mmacosx-version-min=10.5 -F/System/Library/PrivateFrameworks \ + $(CC) $(ALL_LDFLAGS) -mmacosx-version-min=$(macos_target) -F/System/Library/PrivateFrameworks \ -o multitouch.$(EXTENSION) multitouch.o $(ALL_LIBS) \ -framework MultitouchSupport chmod a-x multitouch.$(EXTENSION) diff --git a/externals/arraysize/Makefile b/externals/arraysize/Makefile index 425bf8b8a..b2c93f360 100644 --- a/externals/arraysize/Makefile +++ b/externals/arraysize/Makefile @@ -40,6 +40,10 @@ EXTRA_DIST = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -92,9 +96,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include \ diff --git a/externals/autotune/Makefile b/externals/autotune/Makefile index f8694edce..20737751c 100644 --- a/externals/autotune/Makefile +++ b/externals/autotune/Makefile @@ -40,6 +40,10 @@ SOURCES_windows = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file #LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) LIBRARY_VERSION = 0.9 @@ -91,9 +95,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 i386 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include \ diff --git a/externals/bassemu~/Makefile b/externals/bassemu~/Makefile index 7a7fff407..0dee92919 100644 --- a/externals/bassemu~/Makefile +++ b/externals/bassemu~/Makefile @@ -41,6 +41,10 @@ LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -92,9 +96,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/boids/Makefile b/externals/boids/Makefile index 7c50ad21e..e5d16bc77 100644 --- a/externals/boids/Makefile +++ b/externals/boids/Makefile @@ -42,6 +42,10 @@ LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -93,9 +97,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/bsaylor/Makefile b/externals/bsaylor/Makefile index 065d39345..af6209458 100644 --- a/externals/bsaylor/Makefile +++ b/externals/bsaylor/Makefile @@ -43,6 +43,10 @@ LIBS = -lm # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -94,9 +98,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/cxc/Makefile b/externals/cxc/Makefile index 41add97c9..de83b3cba 100644 --- a/externals/cxc/Makefile +++ b/externals/cxc/Makefile @@ -45,6 +45,10 @@ LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -96,9 +100,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/disis/Makefile.pdlibbuilder.revised b/externals/disis/Makefile.pdlibbuilder.revised index 3f2e5c982..07fa86d97 100644 --- a/externals/disis/Makefile.pdlibbuilder.revised +++ b/externals/disis/Makefile.pdlibbuilder.revised @@ -408,6 +408,9 @@ endif # OSX x86_64. ifeq ($(system), Darwin) + ifeq ($(macos_target),) + macos_target = 10.9 + endif pkglibdir = $(HOME)/Library/Pd pdincludepath := $(firstword $(wildcard \ $(externalsdir)/../pd/src \ @@ -427,12 +430,12 @@ ifeq ($(system), Darwin) stripflags = -x ifeq ($(machine), i386) cxx.flags := -fcheck-new - arch.c.flags := -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 - arch.ld.flags := -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + arch.c.flags := -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) + arch.ld.flags := -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) endif ifeq ($(machine), x86_64) - arch.c.flags := -arch x86_64 -mmacosx-version-min=10.5 - arch.ld.flags := -arch x86_64 -mmacosx-version-min=10.5 + arch.c.flags := -arch x86_64 -mmacosx-version-min=$(macos_target) + arch.ld.flags := -arch x86_64 -mmacosx-version-min=$(macos_target) endif endif diff --git a/externals/earplug~/Makefile b/externals/earplug~/Makefile index 22dbbb2e4..b2a0d389b 100644 --- a/externals/earplug~/Makefile +++ b/externals/earplug~/Makefile @@ -41,6 +41,10 @@ LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -92,9 +96,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/ekext/Makefile b/externals/ekext/Makefile index 47240e2cf..d5c6685c9 100644 --- a/externals/ekext/Makefile +++ b/externals/ekext/Makefile @@ -41,6 +41,10 @@ LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -92,9 +96,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/ext13/Makefile b/externals/ext13/Makefile index c7b320137..2f5f38983 100644 --- a/externals/ext13/Makefile +++ b/externals/ext13/Makefile @@ -47,6 +47,10 @@ LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -98,9 +102,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/fluid~/Makefile.pdlibbuilder.revised b/externals/fluid~/Makefile.pdlibbuilder.revised index ed11b2259..c2da4e48d 100644 --- a/externals/fluid~/Makefile.pdlibbuilder.revised +++ b/externals/fluid~/Makefile.pdlibbuilder.revised @@ -514,6 +514,9 @@ endif # OSX x86_64. ifeq ($(system), Darwin) + ifeq ($(macos_target),) + macos_target = 10.9 + endif pkglibdir = $(HOME)/Library/Pd pdincludepath := $(firstword $(wildcard \ $(externalsdir)/../pd/src \ @@ -533,12 +536,12 @@ ifeq ($(system), Darwin) stripflags = -x ifeq ($(machine), i386) cxx.flags := -fcheck-new - arch.c.flags := -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 - arch.ld.flags := -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + arch.c.flags := -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) + arch.ld.flags := -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) endif ifeq ($(machine), x86_64) - arch.c.flags := -arch x86_64 -mmacosx-version-min=10.5 - arch.ld.flags := -arch x86_64 -mmacosx-version-min=10.5 + arch.c.flags := -arch x86_64 -mmacosx-version-min=$(macos_target) + arch.ld.flags := -arch x86_64 -mmacosx-version-min=$(macos_target) endif endif diff --git a/externals/footils/knob/Makefile.pdlibbuilder.revised b/externals/footils/knob/Makefile.pdlibbuilder.revised index ed11b2259..c2da4e48d 100644 --- a/externals/footils/knob/Makefile.pdlibbuilder.revised +++ b/externals/footils/knob/Makefile.pdlibbuilder.revised @@ -514,6 +514,9 @@ endif # OSX x86_64. ifeq ($(system), Darwin) + ifeq ($(macos_target),) + macos_target = 10.9 + endif pkglibdir = $(HOME)/Library/Pd pdincludepath := $(firstword $(wildcard \ $(externalsdir)/../pd/src \ @@ -533,12 +536,12 @@ ifeq ($(system), Darwin) stripflags = -x ifeq ($(machine), i386) cxx.flags := -fcheck-new - arch.c.flags := -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 - arch.ld.flags := -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + arch.c.flags := -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) + arch.ld.flags := -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) endif ifeq ($(machine), x86_64) - arch.c.flags := -arch x86_64 -mmacosx-version-min=10.5 - arch.ld.flags := -arch x86_64 -mmacosx-version-min=10.5 + arch.c.flags := -arch x86_64 -mmacosx-version-min=$(macos_target) + arch.ld.flags := -arch x86_64 -mmacosx-version-min=$(macos_target) endif endif diff --git a/externals/freeverb~/Makefile b/externals/freeverb~/Makefile index 194ae20e6..e67ba10a0 100644 --- a/externals/freeverb~/Makefile +++ b/externals/freeverb~/Makefile @@ -41,6 +41,10 @@ LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -92,9 +96,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/ggee/Makefile b/externals/ggee/Makefile index 3634ec9bf..1057b612f 100644 --- a/externals/ggee/Makefile +++ b/externals/ggee/Makefile @@ -44,6 +44,10 @@ LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -95,9 +99,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/hcs/Makefile b/externals/hcs/Makefile index 075b7a541..06928b2d2 100644 --- a/externals/hcs/Makefile +++ b/externals/hcs/Makefile @@ -48,6 +48,10 @@ ALL_LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # these can be set from outside without (usually) breaking the build CFLAGS = -Wall -W -g LDFLAGS = @@ -107,9 +111,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif ALL_CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/hcs/usbhid/Makefile b/externals/hcs/usbhid/Makefile index 7df979550..6aadb6de0 100644 --- a/externals/hcs/usbhid/Makefile +++ b/externals/hcs/usbhid/Makefile @@ -33,6 +33,10 @@ EXTRA_DIST = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # where Pd lives PD_PATH = ../../../pd # where to install the library @@ -78,7 +82,7 @@ ifeq ($(UNAME),Darwin) EXTENSION = pd_darwin OS = macosx OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -fast - FAT_FLAGS = -arch i386 -arch ppc -mmacosx-version-min=10.4 + FAT_FLAGS = -arch i386 -arch ppc -mmacosx-version-min=$(macos_target) CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include \ -I/Applications/Pd-extended.app/Contents/Resources/include LDFLAGS += $(FAT_FLAGS) -bundle -undefined dynamic_lookup -L/sw/lib diff --git a/externals/iem/comport/comport/Makefile b/externals/iem/comport/comport/Makefile index 3e86e5c19..e2bf0bb7c 100644 --- a/externals/iem/comport/comport/Makefile +++ b/externals/iem/comport/comport/Makefile @@ -41,6 +41,10 @@ LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -92,9 +96,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/iem/iemguts/Makefile b/externals/iem/iemguts/Makefile index 119189fd5..72bc4d56c 100644 --- a/externals/iem/iemguts/Makefile +++ b/externals/iem/iemguts/Makefile @@ -89,6 +89,10 @@ VPATH=src # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -141,9 +145,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include \ diff --git a/externals/iem/iemnet/Makefile b/externals/iem/iemnet/Makefile index 6461c2493..4d0714d91 100644 --- a/externals/iem/iemnet/Makefile +++ b/externals/iem/iemnet/Makefile @@ -42,6 +42,10 @@ DEBUG_CFLAGS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # where Pd lives PD_PATH = ../../../pd # where to install the library @@ -88,7 +92,7 @@ ifeq ($(UNAME),Darwin) EXTENSION = pd_darwin OS = macosx OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=0 -fast - FAT_FLAGS = -arch i386 -arch ppc -mmacosx-version-min=10.4 + FAT_FLAGS = -arch i386 -arch ppc -mmacosx-version-min=$(macos_target) CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include \ -I/Applications/Pd-extended.app/Contents/Resources/include LDFLAGS += $(FAT_FLAGS) -bundle -undefined dynamic_lookup -L/sw/lib diff --git a/externals/iem/syslog/Makefile b/externals/iem/syslog/Makefile index 7f729506e..405f1c14b 100644 --- a/externals/iem/syslog/Makefile +++ b/externals/iem/syslog/Makefile @@ -47,6 +47,10 @@ ALL_LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # these can be set from outside without (usually) breaking the build CFLAGS = -Wall -W -g LDFLAGS= @@ -103,9 +107,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif ALL_CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/loaders/libdir/Makefile b/externals/loaders/libdir/Makefile index 872ec6912..8088e85e8 100644 --- a/externals/loaders/libdir/Makefile +++ b/externals/loaders/libdir/Makefile @@ -41,6 +41,10 @@ LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -92,9 +96,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/mapping/Makefile b/externals/mapping/Makefile index 24a5fd30e..ad7b9bcf7 100644 --- a/externals/mapping/Makefile +++ b/externals/mapping/Makefile @@ -41,6 +41,10 @@ LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -92,9 +96,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/markex/Makefile b/externals/markex/Makefile index 11b3131e2..22082204e 100644 --- a/externals/markex/Makefile +++ b/externals/markex/Makefile @@ -43,6 +43,10 @@ ALL_LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # these can be set from outside without (usually) breaking the build CFLAGS = -Wall -W -g LDFLAGS = @@ -102,9 +106,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif ALL_CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/maxlib/Makefile b/externals/maxlib/Makefile index 3eeccff41..cfc7a81ed 100644 --- a/externals/maxlib/Makefile +++ b/externals/maxlib/Makefile @@ -47,6 +47,10 @@ LIBS_windows = -lpthread # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # these can be set from outside without (usually) breaking the build CFLAGS = -Wall -W -g LDFLAGS = @@ -106,14 +110,14 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else 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 -arch x86_64 -mmacosx-version-min=10.5 + FAT_FLAGS = -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) endif endif ALL_CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/miXed/cyclone/Makefile.libdir b/externals/miXed/cyclone/Makefile.libdir index 6eff7ec86..dc1f925a2 100644 --- a/externals/miXed/cyclone/Makefile.libdir +++ b/externals/miXed/cyclone/Makefile.libdir @@ -14,6 +14,9 @@ INSTALL_DIR = $(INSTALL) -p -m 755 -d UNAME := $(shell uname -s) ifeq ($(UNAME),Darwin) + ifeq ($(macos_target),) + macos_target = 10.9 + endif CPU := $(shell uname -p) ifeq ($(CPU),arm) # iPhone/iPod Touch EXTENSION = pd_darwin @@ -39,9 +42,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include LDFLAGS += $(FAT_FLAGS) -bundle -undefined dynamic_lookup -L/sw/lib diff --git a/externals/mjlib/Makefile b/externals/mjlib/Makefile index e3cce7ac9..0b99f4ffa 100644 --- a/externals/mjlib/Makefile +++ b/externals/mjlib/Makefile @@ -42,6 +42,10 @@ LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -93,9 +97,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/moonlib/Makefile b/externals/moonlib/Makefile index 7fc7c21dd..63623f03d 100644 --- a/externals/moonlib/Makefile +++ b/externals/moonlib/Makefile @@ -47,6 +47,10 @@ ALL_LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # these can be set from outside without (usually) breaking the build CFLAGS = -Wall -W -g LDFLAGS = @@ -106,9 +110,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif ALL_CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/motex/Makefile b/externals/motex/Makefile index 0adacd5cb..c696e8e7f 100644 --- a/externals/motex/Makefile +++ b/externals/motex/Makefile @@ -40,6 +40,10 @@ EXTRA_DIST = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -92,9 +96,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include \ diff --git a/externals/mrpeach/Makefile b/externals/mrpeach/Makefile index f17df5cfc..6633d08b3 100644 --- a/externals/mrpeach/Makefile +++ b/externals/mrpeach/Makefile @@ -66,6 +66,10 @@ ALL_LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # these can be set from outside without (usually) breaking the build CFLAGS = -Wall -W -g LDFLAGS = @@ -125,14 +129,14 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else 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 -arch x86_64 -mmacosx-version-min=10.5 + FAT_FLAGS = -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) endif endif ALL_CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/mrpeach/cmos/Makefile b/externals/mrpeach/cmos/Makefile index 8e07528eb..6a23280a4 100644 --- a/externals/mrpeach/cmos/Makefile +++ b/externals/mrpeach/cmos/Makefile @@ -51,6 +51,10 @@ ALL_LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # these can be set from outside without (usually) breaking the build CFLAGS = -Wall -W -g LDFLAGS = @@ -110,14 +114,14 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else 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 -arch x86_64 -mmacosx-version-min=10.5 + FAT_FLAGS = -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) endif endif ALL_CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/mrpeach/net/Makefile b/externals/mrpeach/net/Makefile index 778403cdd..2d13b7dec 100644 --- a/externals/mrpeach/net/Makefile +++ b/externals/mrpeach/net/Makefile @@ -44,6 +44,10 @@ ALL_LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # these can be set from outside without (usually) breaking the build CFLAGS = -Wall -W -g LDFLAGS = @@ -103,9 +107,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif ALL_CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/mrpeach/osc/Makefile b/externals/mrpeach/osc/Makefile index 06855f0b8..36bdd9ede 100644 --- a/externals/mrpeach/osc/Makefile +++ b/externals/mrpeach/osc/Makefile @@ -53,6 +53,10 @@ ALL_LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # these can be set from outside without (usually) breaking the build CFLAGS = -Wall -W -g LDFLAGS= @@ -109,9 +113,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif ALL_CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/pan/Makefile b/externals/pan/Makefile index fa5aba132..76a995f5c 100644 --- a/externals/pan/Makefile +++ b/externals/pan/Makefile @@ -41,6 +41,10 @@ LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -92,9 +96,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/pddp/Makefile b/externals/pddp/Makefile index f5b60ce6e..9f44e9f78 100644 --- a/externals/pddp/Makefile +++ b/externals/pddp/Makefile @@ -43,6 +43,10 @@ ALL_LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # these can be set from outside without (usually) breaking the build CFLAGS = -Wall -W -g LDFLAGS = @@ -102,9 +106,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif ALL_CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/pdogg/Makefile b/externals/pdogg/Makefile index 3b01b6d6c..a9eb1f45a 100644 --- a/externals/pdogg/Makefile +++ b/externals/pdogg/Makefile @@ -50,6 +50,10 @@ LIBS_windows = -lpthread # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # these can be set from outside without (usually) breaking the build CFLAGS = -Wall -W -g LDFLAGS = @@ -109,9 +113,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif ALL_CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/plugin~/Makefile b/externals/plugin~/Makefile index a4174912d..b27605c4b 100644 --- a/externals/plugin~/Makefile +++ b/externals/plugin~/Makefile @@ -43,6 +43,10 @@ LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -94,9 +98,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/pmpd/Makefile b/externals/pmpd/Makefile index ccab2648a..a2eefeb95 100644 --- a/externals/pmpd/Makefile +++ b/externals/pmpd/Makefile @@ -47,6 +47,10 @@ ALL_LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # these can be set from outside without (usually) breaking the build CFLAGS = -W -g LDFLAGS = @@ -106,14 +110,14 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else 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 -arch x86_64 -mmacosx-version-min=10.5 + FAT_FLAGS = -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) endif endif ALL_CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/sigpack/Makefile b/externals/sigpack/Makefile index e321067a4..961bafe8b 100644 --- a/externals/sigpack/Makefile +++ b/externals/sigpack/Makefile @@ -43,6 +43,10 @@ ALL_LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # these can be set from outside without (usually) breaking the build CFLAGS = -Wall -W -g LDFLAGS = @@ -102,9 +106,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif ALL_CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/smlib/Makefile b/externals/smlib/Makefile index 9e8401d72..a80ecdf8e 100644 --- a/externals/smlib/Makefile +++ b/externals/smlib/Makefile @@ -41,6 +41,10 @@ LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -92,9 +96,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/tof/src/Makefile b/externals/tof/src/Makefile index 6cd405c72..7b329cc82 100644 --- a/externals/tof/src/Makefile +++ b/externals/tof/src/Makefile @@ -58,8 +58,12 @@ endif CWD := $(shell pwd) +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # turn on weak linking and dlopen support -export MACOSX_DEPLOYMENT_TARGET = 10.3 +export MACOSX_DEPLOYMENT_TARGET = $(macos_target) # DEFAULT TARGET # Find a way to list all c files target ALL = $(patsubst %.c,%.$(EXTENSION),$(wildcard *.c)) diff --git a/externals/tof/test/Makefile(ext13) b/externals/tof/test/Makefile(ext13) index be75feafa..212390e6c 100644 --- a/externals/tof/test/Makefile(ext13) +++ b/externals/tof/test/Makefile(ext13) @@ -29,11 +29,14 @@ LIBS = UNAME := $(shell uname -s) ifeq ($(UNAME),Darwin) + ifeq ($(macos_target),) + macos_target = 10.9 + endif SOURCES += $(SOURCES_Darwin) EXTENSION = pd_darwin OS = macosx OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -fast - FAT_FLAGS = -arch i386 -arch ppc -mmacosx-version-min=10.4 + FAT_FLAGS = -arch i386 -arch ppc -mmacosx-version-min=$(macos_target) CFLAGS += -fPIC $(FAT_FLAGS) LDFLAGS += -bundle -undefined dynamic_lookup $(FAT_FLAGS) LIBS += -lc diff --git a/externals/unauthorized/Makefile b/externals/unauthorized/Makefile index 5b2c9734d..9b34891d1 100644 --- a/externals/unauthorized/Makefile +++ b/externals/unauthorized/Makefile @@ -50,6 +50,10 @@ ALL_LIBS = -lspeex -lmp3lame -lpthread # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # these can be set from outside without (usually) breaking the build CFLAGS = -Wall -W -g LDFLAGS = @@ -109,9 +113,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif ALL_CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/vbap/Makefile b/externals/vbap/Makefile index 6df6f2af7..35975fb5b 100644 --- a/externals/vbap/Makefile +++ b/externals/vbap/Makefile @@ -47,6 +47,10 @@ ALL_LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # these can be set from outside without (usually) breaking the build CFLAGS = -Wall -W -g LDFLAGS = @@ -106,14 +110,14 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else 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 -arch x86_64 -mmacosx-version-min=10.5 + FAT_FLAGS = -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) endif endif ALL_CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include diff --git a/externals/windowing/Makefile b/externals/windowing/Makefile index e4b140fd7..8d40cb46d 100644 --- a/externals/windowing/Makefile +++ b/externals/windowing/Makefile @@ -41,6 +41,10 @@ LIBS = # #------------------------------------------------------------------------------# +ifeq ($(macos_target),) +macos_target = 10.9 +endif + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -89,9 +93,9 @@ ifeq ($(UNAME),Darwin) OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -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 + FAT_FLAGS = -arch ppc -arch i386 -mmacosx-version-min=$(macos_target) else - FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=10.4 + FAT_FLAGS = -arch ppc -arch i386 -arch x86_64 -mmacosx-version-min=$(macos_target) SOURCES += $(SOURCES_iphoneos) endif CFLAGS += $(FAT_FLAGS) -fPIC -I/sw/include \ -- GitLab