Skip to content

Commit

Permalink
Update mac's ios_webkit_debug_proxy for ios11
Browse files Browse the repository at this point in the history
  • Loading branch information
knaito-asial committed Feb 13, 2018
1 parent 2b77eab commit 1f90740
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
Binary file modified bin/ios-webkit-debug-proxy/darwin/ios_webkit_debug_proxy
Binary file not shown.
Binary file modified bin/ios-webkit-debug-proxy/darwin/libcrypto.1.0.0.dylib
Binary file not shown.
Binary file modified bin/ios-webkit-debug-proxy/darwin/libssl.1.0.0.dylib
Binary file not shown.
18 changes: 12 additions & 6 deletions bin/ios-webkit-debug-proxy/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ mkdir -p tmp
pushd tmp

PREFIX=`pwd`/install/
export PKG_CONFIG_PATH=$PREFIX/lib/pkgconfig
export PKG_CONFIG_PATH=$PREFIX/lib/pkgconfig:/usr/local/opt/openssl/lib/pkgconfig

export PATH=/usr/local/opt/openssl/bin:$PATH
# export LD_LIBRARY_PATH=/usr/local/opt/openssl/lib:$LD_LIBRARY_PATH
Expand All @@ -15,16 +15,18 @@ export PATH=/usr/local/opt/openssl/bin:$PATH

mkdir -p $PREFIX

if [ ! -f 1.12.tar.gz ]; then
wget https://github.com/libimobiledevice/libplist/archive/1.12.tar.gz
echo "********** libplist **********"

if [ ! -f 2.0.0.tar.gz ]; then
wget https://github.com/libimobiledevice/libplist/archive/2.0.0.tar.gz
fi

if [ ! -d libplist-1.12 ]; then
tar xvf 1.12.tar.gz
if [ ! -d libplist-2.0.0 ]; then
tar xvf 2.0.0.tar.gz
fi

if [ ! -f $PREFIX/lib/libplist.a ]; then
pushd libplist-1.12
pushd libplist-2.0.0
NOCONFIGURE=1 ./autogen.sh
NOCONFIGURE=1 ./autogen.sh
./configure --enable-static --prefix=$PREFIX
Expand All @@ -33,6 +35,8 @@ if [ ! -f $PREFIX/lib/libplist.a ]; then
popd
fi

echo "********** libusbmuxd **********"

if [ ! -f 1.0.10.tar.gz ]; then
wget https://github.com/libimobiledevice/libusbmuxd/archive/1.0.10.tar.gz
fi
Expand All @@ -51,6 +55,8 @@ if [ ! -f $PREFIX/lib/libusbmuxd.a ]; then
popd
fi

echo "********** libimobiledevice **********"

#if [ ! -f 1.2.0.tar.gz ]; then
# wget https://github.com/libimobiledevice/libimobiledevice/archive/1.2.0.tar.gz
#fi
Expand Down

0 comments on commit 1f90740

Please sign in to comment.