git.videolan.org
/
vlc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
da64923
)
contrib: Fix wrong deployment target on macOS
author
Marvin Scholz
<epirat07@gmail.com>
Sat, 29 Oct 2016 12:57:30 +0000
(14:57 +0200)
committer
Marvin Scholz
<epirat07@gmail.com>
Sun, 30 Oct 2016 21:23:34 +0000
(22:23 +0100)
This adds MACOSX_DEPLOYMENT_TARGET (which will be set to the value of
the MIN_OSX_VERSION variable) so contribs that only use xcodebuild
(like BGHUDKit) will use the correct deployment target.
contrib/src/main.mak
patch
|
blob
|
history
diff --git
a/contrib/src/main.mak
b/contrib/src/main.mak
index
e18bddc
..
cab32d1
100644
(file)
--- a/
contrib/src/main.mak
+++ b/
contrib/src/main.mak
@@
-123,7
+123,7
@@
EXTRA_CFLAGS += -m32
EXTRA_LDFLAGS += -m32
endif
-XCODE_FLAGS = -sdk macosx$(OSX_VERSION) -arch $(ARCH)
+XCODE_FLAGS =
MACOSX_DEPLOYMENT_TARGET=$(MIN_OSX_VERSION)
-sdk macosx$(OSX_VERSION) -arch $(ARCH)
endif