mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=11888
This commit is contained in:
parent
924f735c96
commit
73eb5ef26c
|
@ -670,3 +670,10 @@ David 16 Jan 2007
|
||||||
client/
|
client/
|
||||||
app.h
|
app.h
|
||||||
cpu_sched.C
|
cpu_sched.C
|
||||||
|
|
||||||
|
Charlie 16 Jan 2007
|
||||||
|
Mac: Fix build script for Curl 7.15.5 (should have been done
|
||||||
|
3 months ago.)
|
||||||
|
|
||||||
|
mac_build/
|
||||||
|
setupForBOINC.sh
|
||||||
|
|
|
@ -21,9 +21,10 @@
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
# Master script to build Universal Binary libraries needed by BOINC:
|
# Master script to build Universal Binary libraries needed by BOINC:
|
||||||
# curl-7.15.3, jpeg-6b and wxMac-2.6.3
|
# curl-7.15.5, jpeg-6b and wxMac-2.6.3
|
||||||
#
|
#
|
||||||
# by Charlie Fenton 7/21/06
|
# by Charlie Fenton 7/21/06
|
||||||
|
# updated 1/16/07
|
||||||
#
|
#
|
||||||
# Download these three packages and place them in a common parent
|
# Download these three packages and place them in a common parent
|
||||||
# directory with the BOINC source tree.
|
# directory with the BOINC source tree.
|
||||||
|
@ -48,19 +49,19 @@ fi
|
||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
echo "----------------------------------"
|
echo "----------------------------------"
|
||||||
echo "------- BUILD CURL-7.15.3 --------"
|
echo "------- BUILD CURL-7.15.5 --------"
|
||||||
echo "----------------------------------"
|
echo "----------------------------------"
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
SCRIPT_DIR=`pwd`
|
SCRIPT_DIR=`pwd`
|
||||||
|
|
||||||
if [ ! -f ../../curl-7.15.3/lib/url.c.orig ]; then
|
if [ ! -f ../../curl-7.15.5/lib/url.c.orig ]; then
|
||||||
patch -bN ../../curl-7.15.3/lib/url.c ../curl/patches/7.15.3.Socks/url_c.patch
|
patch -bN ../../curl-7.15.5/lib/url.c ../curl/patches/7.15.5.Socks/url_c.patch
|
||||||
else
|
else
|
||||||
echo "url.c already patched"
|
echo "url.c already patched"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd ../../curl-7.15.3/
|
cd ../../curl-7.15.5/
|
||||||
if [ $? -ne 0 ]; then return 1; fi
|
if [ $? -ne 0 ]; then return 1; fi
|
||||||
source "${SCRIPT_DIR}/buildcurl.sh" ${doclean}
|
source "${SCRIPT_DIR}/buildcurl.sh" ${doclean}
|
||||||
if [ $? -ne 0 ]; then return 1; fi
|
if [ $? -ne 0 ]; then return 1; fi
|
||||||
|
|
Loading…
Reference in New Issue