2005-12-22 02:33:59 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2009-02-21 02:42:50 +00:00
|
|
|
# This file is part of BOINC.
|
2006-02-18 05:49:24 +00:00
|
|
|
# http://boinc.berkeley.edu
|
2014-02-12 12:54:28 +00:00
|
|
|
# Copyright (C) 2014 University of California
|
2006-02-18 05:49:24 +00:00
|
|
|
#
|
2009-02-21 02:42:50 +00:00
|
|
|
# BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU Lesser General Public License
|
|
|
|
# as published by the Free Software Foundation,
|
|
|
|
# either version 3 of the License, or (at your option) any later version.
|
2006-02-18 05:49:24 +00:00
|
|
|
#
|
2009-02-21 02:42:50 +00:00
|
|
|
# BOINC is distributed in the hope that it will be useful,
|
2006-02-18 05:49:24 +00:00
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the GNU Lesser General Public License for more details.
|
|
|
|
#
|
2009-02-21 02:42:50 +00:00
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2006-02-18 05:49:24 +00:00
|
|
|
#
|
|
|
|
#
|
2016-09-10 10:26:46 +00:00
|
|
|
# Script to build Macintosh 32-bit Intel library of curl-7.50.2 for
|
2005-12-22 02:33:59 +00:00
|
|
|
# use in building BOINC.
|
|
|
|
#
|
2006-07-22 09:30:34 +00:00
|
|
|
# by Charlie Fenton 7/21/06
|
2011-10-18 12:42:53 +00:00
|
|
|
# Updated 12/3/09 for OS 10.7 Lion and XCode 4.2
|
2012-06-26 07:24:07 +00:00
|
|
|
# Updated 6/25/12 for curl 7.26.0
|
2012-07-10 12:18:21 +00:00
|
|
|
# Updated 7/10/12 for Xcode 4.3 and later which are not at a fixed address
|
2014-02-12 12:54:28 +00:00
|
|
|
# Updated 2/11/14 for curl 7.35.0 with c-ares 1.10.0
|
2014-09-02 10:54:10 +00:00
|
|
|
# Updated 9/2/14 for bulding curl as 64-bit binary
|
2014-11-18 00:21:03 +00:00
|
|
|
# Updated 11/17/14 for curl 7.39.0 with c-ares 1.10.0
|
2016-01-06 08:41:36 +00:00
|
|
|
# Updated 12/11/15 for curl 7.46.0 with c-ares 1.10.0
|
2016-03-02 12:37:41 +00:00
|
|
|
# Updated 3/2/16 for curl 7.47.1 with c-ares 1.10.0
|
2016-09-10 10:26:46 +00:00
|
|
|
# Updated 11/10/16 for curl 7.50.2 with c-ares 1.11.0
|
2012-07-06 12:11:28 +00:00
|
|
|
#
|
|
|
|
## This script requires OS 10.6 or later
|
2012-07-10 09:28:17 +00:00
|
|
|
#
|
|
|
|
## If you drag-install Xcode 4.3 or later, you must have opened Xcode
|
|
|
|
## and clicked the Install button on the dialog which appears to
|
|
|
|
## complete the Xcode installation before running this script.
|
2005-12-22 02:33:59 +00:00
|
|
|
#
|
2016-09-10 10:26:46 +00:00
|
|
|
## In Terminal, CD to the curl-7.50.2 directory.
|
|
|
|
## cd [path]/curl-7.50.2/
|
2006-02-18 05:49:24 +00:00
|
|
|
## then run this script:
|
2009-12-04 14:39:35 +00:00
|
|
|
## source [path]/buildcurl.sh [ -clean ]
|
2006-02-18 05:49:24 +00:00
|
|
|
##
|
|
|
|
## the -clean argument will force a full rebuild.
|
2007-10-27 11:19:12 +00:00
|
|
|
##
|
2007-11-15 12:58:51 +00:00
|
|
|
|
2005-12-22 02:33:59 +00:00
|
|
|
if [ "$1" != "-clean" ]; then
|
2011-10-18 12:42:53 +00:00
|
|
|
if [ -f lib/.libs/libcurl.a ]; then
|
2016-09-10 10:26:46 +00:00
|
|
|
echo "curl-7.50.2 already built"
|
2009-12-04 14:39:35 +00:00
|
|
|
return 0
|
2007-11-15 12:58:51 +00:00
|
|
|
fi
|
|
|
|
fi
|
2005-12-22 02:33:59 +00:00
|
|
|
|
2012-07-06 12:11:28 +00:00
|
|
|
export PATH=/usr/local/bin:$PATH
|
|
|
|
|
|
|
|
GCCPATH=`xcrun -find gcc`
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "ERROR: can't find gcc compiler"
|
2008-02-27 12:01:55 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2012-07-06 12:11:28 +00:00
|
|
|
GPPPATH=`xcrun -find g++`
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "ERROR: can't find g++ compiler"
|
|
|
|
return 1
|
|
|
|
fi
|
2008-05-14 09:57:46 +00:00
|
|
|
|
2012-07-10 09:28:17 +00:00
|
|
|
MAKEPATH=`xcrun -find make`
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "ERROR: can't find make tool"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
TOOLSPATH1=${MAKEPATH%/make}
|
|
|
|
|
|
|
|
ARPATH=`xcrun -find ar`
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "ERROR: can't find ar tool"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
TOOLSPATH2=${ARPATH%/ar}
|
|
|
|
|
|
|
|
export PATH="${TOOLSPATH1}":"${TOOLSPATH2}":/usr/local/bin:$PATH
|
|
|
|
|
|
|
|
SDKPATH=`xcodebuild -version -sdk macosx Path`
|
|
|
|
|
2008-05-14 09:57:46 +00:00
|
|
|
CURL_DIR=`pwd`
|
2016-09-10 10:26:46 +00:00
|
|
|
# curl configure and make expect a path to _installed_ c-ares-1.11.0
|
2008-05-14 09:57:46 +00:00
|
|
|
# so temporarily install c-ares at a path that does not contain spaces.
|
2016-09-10 10:26:46 +00:00
|
|
|
# buildc-ares.sh script configured c-ares with prefix=/tmp/installed-c-ares
|
|
|
|
cd ../c-ares-1.11.0
|
2009-01-21 07:37:59 +00:00
|
|
|
make install
|
2008-05-14 09:57:46 +00:00
|
|
|
cd "${CURL_DIR}"
|
|
|
|
|
2006-05-05 10:11:06 +00:00
|
|
|
|
2007-12-05 01:02:10 +00:00
|
|
|
rm -f lib/.libs/libcurl.a
|
|
|
|
|
2006-07-22 03:35:48 +00:00
|
|
|
if [ $? -ne 0 ]; then return 1; fi
|
2005-12-22 02:33:59 +00:00
|
|
|
|
2010-10-11 11:59:05 +00:00
|
|
|
export PATH=/usr/local/bin:$PATH
|
2012-07-06 12:11:28 +00:00
|
|
|
export CC="${GCCPATH}";export CXX="${GPPPATH}"
|
2016-09-10 10:26:46 +00:00
|
|
|
export LDFLAGS="-Wl,-syslibroot,${SDKPATH},-arch,x86_64 -L${CURL_DIR}/../openssl-1.1.0 "
|
|
|
|
export CPPFLAGS="-isysroot ${SDKPATH} -arch x86_64 -I${CURL_DIR}/../openssl-1.1.0/include"
|
|
|
|
export CFLAGS="-isysroot ${SDKPATH} -arch x86_64 -I${CURL_DIR}/../openssl-1.1.0/include"
|
2012-07-10 09:28:17 +00:00
|
|
|
export SDKROOT="${SDKPATH}"
|
2016-09-10 10:26:46 +00:00
|
|
|
export MACOSX_DEPLOYMENT_TARGET=10.6
|
|
|
|
export MAC_OS_X_VERSION_MAX_ALLOWED=1060
|
|
|
|
export MAC_OS_X_VERSION_MIN_REQUIRED=1060
|
2006-05-05 10:11:06 +00:00
|
|
|
|
2014-09-02 10:54:10 +00:00
|
|
|
./configure --enable-shared=NO --enable-ares=/tmp/installed-c-ares --host=x86_64
|
2006-07-22 03:35:48 +00:00
|
|
|
if [ $? -ne 0 ]; then return 1; fi
|
2005-12-22 02:33:59 +00:00
|
|
|
|
2016-03-02 12:37:41 +00:00
|
|
|
echo ""
|
|
|
|
|
2011-10-18 12:42:53 +00:00
|
|
|
if [ "$1" = "-clean" ]; then
|
|
|
|
make clean
|
|
|
|
fi
|
|
|
|
|
2007-11-14 13:27:01 +00:00
|
|
|
make
|
2006-07-22 03:35:48 +00:00
|
|
|
if [ $? -ne 0 ]; then return 1; fi
|
2007-11-15 12:58:51 +00:00
|
|
|
|
2005-12-22 02:33:59 +00:00
|
|
|
export CC="";export CXX=""
|
|
|
|
export LDFLAGS=""
|
|
|
|
export CPPFLAGS=""
|
2006-05-05 10:11:06 +00:00
|
|
|
export CFLAGS=""
|
|
|
|
export SDKROOT=""
|
2005-12-22 02:33:59 +00:00
|
|
|
|
2008-05-14 09:57:46 +00:00
|
|
|
# Delete temporarily installed c-ares.
|
2009-01-21 07:37:59 +00:00
|
|
|
rm -Rf /tmp/installed-c-ares/
|
2008-05-14 09:57:46 +00:00
|
|
|
|
2005-12-22 02:33:59 +00:00
|
|
|
return 0
|