From eed4a13b3bd99516161ac7e6b144b65a803e3719 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Fri, 10 Apr 2009 02:50:21 +0000 Subject: [PATCH] Daniel Johnson improved the MacOSX-Framework shell script to now perform all the steps required to build a Mac OS X four way fat ppc/i386/ppc64/x86_64 libcurl.framework. Four way fat framework requires OS X 10.5 SDK or later. --- CHANGES | 4 +++ MacOSX-Framework | 69 ++++++++++++++++++++++++++++++++++-------------- RELEASE-NOTES | 3 ++- 3 files changed, 55 insertions(+), 21 deletions(-) diff --git a/CHANGES b/CHANGES index 86aa4d8fa..293db5cf9 100644 --- a/CHANGES +++ b/CHANGES @@ -6,6 +6,10 @@ Changelog +Yang Tse (10 Apr 2009) +- Daniel Johnson improved the MacOSX-Framework shell script to now perform all + the steps required to build a Mac OS X four way fat ppc/i386/ppc64/x86_64 + libcurl.framework. Four way fat framework requires OS X 10.5 SDK or later. Yang Tse (8 Apr 2009) - Removed Sun compilers preprocessor block from curlbuild.h.dist, this also diff --git a/MacOSX-Framework b/MacOSX-Framework index 8f3fdd10d..b046fba60 100755 --- a/MacOSX-Framework +++ b/MacOSX-Framework @@ -1,49 +1,78 @@ #!/bin/bash -# This script performs all of the steps needed to build a 32 bit +# This script performs all of the steps needed to build a # universal binary libcurl.framework for Mac OS X 10.4 or greater. VERSION=`/usr/bin/sed -ne 's/^#define LIBCURL_VERSION "\(.*\)"/\1/p' include/curl/curlver.h` -SDK='/Developer/SDKs/MacOSX10.4u.sdk' +SDK32='/Developer/SDKs/MacOSX10.4u.sdk' -MINVER='-mmacosx-version-min=10.4' +MINVER32='-mmacosx-version-min=10.4' -ARCHES='-arch ppc -arch i386' +ARCHES32='-arch ppc -arch i386' -# Use these values instead to produce a 64 bit framework that only works on 10.5. -# You can't currently build a combined 32/64 framework. -#SDK='/Developer/SDKs/MacOSX10.5.sdk' -# -#MINVER='-mmacosx-version-min=10.5' -# -#ARCHES='-arch ppc64 -arch x86_64' +SDK64='/Developer/SDKs/MacOSX10.5.sdk' +MINVER64='-mmacosx-version-min=10.5' -if test -d $SDK; then - echo "Configuring libcurl for 32 bit universal framework..." +ARCHES64='-arch ppc64 -arch x86_64' + +if test -d $SDK32; then + echo "----Configuring libcurl for 32 bit universal framework..." ./configure --disable-dependency-tracking --disable-static --with-gssapi \ - CFLAGS="-isysroot $SDK $ARCHES $MINVER" \ - LDFLAGS="-Wl,-syslibroot,$SDK $ARCHES $MINVER -Wl,-headerpad_max_install_names" + CFLAGS="-Os -isysroot $SDK32 $ARCHES32 $MINVER32" \ + LDFLAGS="-Wl,-syslibroot,$SDK32 $ARCHES32 $MINVER32 -Wl,-headerpad_max_install_names" \ + CC=$CC - echo "Building libcurl..." + echo "----Building 32 bit libcurl..." make - echo "Creating framework..." + echo "----Creating 32 bit framework..." rm -r libcurl.framework mkdir -p libcurl.framework/Versions/A/Resources cp lib/.libs/libcurl.dylib libcurl.framework/Versions/A/libcurl install_name_tool -id @executable_path/../Frameworks/libcurl.framework/Versions/A/libcurl libcurl.framework/Versions/A/libcurl /usr/bin/sed -e "s/7\.12\.3/$VERSION/" lib/libcurl.plist >libcurl.framework/Versions/A/Resources/Info.plist - mkdir -p libcurl.framework/Versions/A/Headers - cp include/curl/*.h libcurl.framework/Versions/A/Headers - cd libcurl.framework + mkdir -p libcurl.framework/Versions/A/Headers/curl + cp include/curl/*.h libcurl.framework/Versions/A/Headers/curl + pushd libcurl.framework ln -fs Versions/A/libcurl libcurl ln -fs Versions/A/Resources Resources ln -fs Versions/A/Headers Headers cd Versions ln -fs A Current + if test -d $SDK64; then + popd + make clean + echo "----Configuring libcurl for 64 bit universal framework..." + ./configure --disable-dependency-tracking --disable-static --with-gssapi \ + CFLAGS="-Os -isysroot $SDK64 $ARCHES64 $MINVER64" \ + LDFLAGS="-Wl,-syslibroot,$SDK64 $ARCHES64 $MINVER64 -Wl,-headerpad_max_install_names" \ + CC=$CC + + echo "----Building 64 bit libcurl..." + make + + echo "----Appending 64 bit framework to 32 bit framework..." + cp lib/.libs/libcurl.dylib libcurl.framework/Versions/A/libcurl64 + install_name_tool -id @executable_path/../Frameworks/libcurl.framework/Versions/A/libcurl libcurl.framework/Versions/A/libcurl64 + cp libcurl.framework/Versions/A/libcurl libcurl.framework/Versions/A/libcurl32 + lipo libcurl.framework/Versions/A/libcurl32 libcurl.framework/Versions/A/libcurl64 -create -output libcurl.framework/Versions/A/libcurl + rm libcurl.framework/Versions/A/libcurl32 libcurl.framework/Versions/A/libcurl64 + cp libcurl.framework/Versions/A/Headers/curl/curlbuild.h libcurl.framework/Versions/A/Headers/curl/curlbuild32.h + cp include/curl/curlbuild.h libcurl.framework/Versions/A/Headers/curl/curlbuild64.h + cat >libcurl.framework/Versions/A/Headers/curl/curlbuild.h <