X-Git-Url: http://www.privoxy.org/gitweb/developer-manual/index.html?a=blobdiff_plain;f=common.sh;fp=common.sh;h=661b82e44be83d188d7bd37829f61d7bb4eda5ce;hb=aa274af6fffd39a1f219e4d6db8907e733e4251e;hp=45444d3ec25dd7d9026a57a4ba771c80024c2637;hpb=9db6be7f2df741c26b560f9881fd4a3daded9a11;p=OSXPackageBuilder.git diff --git a/common.sh b/common.sh index 45444d3..661b82e 100755 --- a/common.sh +++ b/common.sh @@ -44,13 +44,22 @@ release_name=$1 # # check the release name and assign the build variables accordingly # -# NOTE: SYSROOT ought to be programmatically determined using XCODE_PATH, however since upgrading my build environment to El Capitan xcode-select returns a non-useful path, hence I am forced to set the SYSROOT explicitly for my build environment, which is now a hybrid of XCode 3.2.6 'running' on OS X 10.11. I am not going to risk upgrading XCode for fear of losing the ability to target down-level OS X versions. +# NOTE: SYSROOT ought to be programmatically determined using XCODE_PATH, however it varies depending upon whether you have Xcode itself installed or the much smaller Commandline Tools for Xcode # case "${release_name}" in - # Mac OS X 10.11 (x86_64 only) + # Mac OS X 10.11-plus (x86_64 only) "current") XCODE_PATH="`/usr/bin/xcode-select -print-path`" - SYSROOT="-isysroot ${XCODE_PATH}/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk" + SYSROOT="-isysroot ${XCODE_PATH}/SDKs/MacOSX.sdk" + MACOSX_VERSION="-mmacosx-version-min=10.15" + ARCH="-arch x86_64" + STARTUP="LaunchDaemon" + CFLAGS="-mtune=x86_64 ${CFLAGS}" + ;; + # Mac OS X 10.11-plus (x86_64 only) + "current-Xcode") + XCODE_PATH="`/usr/bin/xcode-select -print-path`" + SYSROOT="-isysroot ${XCODE_PATH}/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk" MACOSX_VERSION="-mmacosx-version-min=10.6" ARCH="-arch x86_64" STARTUP="LaunchDaemon" @@ -225,24 +234,32 @@ esac cd .. DIRS_FOUND=0 SOURCE_DIR="" -if [ -d dist ]; then + +if [ -d privoxy ]; then DIRS_FOUND=1 fi -if [ -d current ]; then +if [ -d dist ]; then DIRS_FOUND=$(( DIRS_FOUND + 10 )) fi +if [ -d current ]; then + DIRS_FOUND=$(( DIRS_FOUND + 20 )) +fi case "${DIRS_FOUND}" in # only 'current' found - 10) + 20) SOURCE_DIR="current" ;; # only 'dist' found - 1) + 10) SOURCE_DIR="dist" ;; - # either both or neither found - 11|0) - read -p 'Could not select the Privoxy source directory (it should be in a directory parallel to that containing this build script). Please supply the directory name (e.g. current or dist): ' SOURCE_DIR + # only 'privoxy' found + 1) + SOURCE_DIR="privoxy" + ;; + # either multiple or no folder found + *) + read -p 'Could not select the Privoxy source directory (it should be in a directory parallel to that containing this build script). Please supply the directory name (e.g. privoxy): ' SOURCE_DIR ;; esac cd OSXPackageBuilder