iOS build: only build the parts of openssl that we need

No point in creating the apps, etc.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-12-20 13:32:44 -08:00
parent 63b01b7510
commit 0873d46a64

View file

@ -140,13 +140,14 @@ if [ ! -e $PKG_CONFIG_LIBDIR/libssl.pc ] ; then
if [[ "${ARCH}" != "i386" && "${ARCH}" != "x86_64" ]]; then
sed -ie "s!static volatile sig_atomic_t intr_signal;!static volatile intr_signal;!" "crypto/ui/ui_openssl.c"
fi
./Configure iphoneos-cross --openssldir="/tmp/$PREFIX"
./Configure iphoneos-cross --openssldir="$PREFIX"
sed -ie "s!^CFLAG=!CFLAG=-isysroot ${BUILDCHAIN} -miphoneos-version-min=${SDKVERSION} !" "Makefile"
sed -ie "s!^DIRS=.*!DIRS= crypto ssl !" "Makefile"
# Use env to make all these temporary, so they don't pollute later builds.
# bash -x ./config shared no-ssl2 no-ssl3 no-comp no-hw no-engine --openssldir=$PREFIX
make depend
make
make install
make build_libs
make install_sw
popd
fi