[vlc-commits] configure.ac: allow to overwrite the SDK version when using macosx-defaults
Felix Paul Kühne
git at videolan.org
Sun Apr 3 23:52:25 CEST 2011
vlc/vlc-1.1 | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Sun Apr 3 23:52:18 2011 +0200| [4ff805ae6cb9a0272818353cc7312e018ea826b9] | committer: Felix Paul Kühne
configure.ac: allow to overwrite the SDK version when using macosx-defaults
> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=4ff805ae6cb9a0272818353cc7312e018ea826b9
---
configure.ac | 13 +++++++++----
1 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/configure.ac b/configure.ac
index 77cfcf0..69e557f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -236,10 +236,6 @@ case "${host_os}" in
then
echo ""
echo "Building with Mac OS X defaults:"
- with_macosx_version_min="10.5"
- echo " Assuming --with-macosx-version-min=10.5"
- with_macosx_sdk="/Developer/SDKs/MacOSX${with_macosx_version_min}.sdk"
- echo " Assuming --with-macosx-sdk=/Developer/SDKs/MacOSX${with_macosx_version_min}.sdk"
build_dir=`pwd`
echo " Assuming --prefix=${build_dir}/vlc_install_dir"
ac_default_prefix="${build_dir}/vlc_install_dir"
@@ -286,6 +282,15 @@ case "${host_os}" in
CXX="${CXX} -isysroot ${with_macosx_sdk}"
OBJC="${OBJC} -isysroot ${with_macosx_sdk}"
LD="${LD} -syslibroot ${with_macosx_sdk}"
+ else
+ echo " No desired SDK version given, falling back to 10.5"
+ CPP="${CPP} -isysroot /Developer/SDKs/MacOSX10.5.sdk"
+ CC="${CC} -isysroot /Developer/SDKs/MacOSX10.5.sdk"
+ CXX="${CXX} -isysroot /Developer/SDKs/MacOSX10.5.sdk"
+ OBJC="${OBJC} -isysroot /Developer/SDKs/MacOSX10.5.sdk"
+ LD="${LD} -syslibroot /Developer/SDKs/MacOSX10.5.sdk"
+ with_macosx_version_min="10.5"
+ echo " Assuming --with-macosx-version-min=10.5"
fi
AC_ARG_WITH(macosx-version-min,
[ --with-macosx-version-min=VERSION compile for MacOSX VERSION and above])
More information about the vlc-commits
mailing list