Skip to content

Commit 3f80605

Browse files
committed
Merge branch 'master' of github.com:tihmstar/liboffsetfinder64
2 parents 4602719 + b02de65 commit 3f80605

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,15 @@ jobs:
2323
if [ "$RUNNER_OS" == "Linux" ]; then
2424
sudo apt-get install -y libssl-dev libcurl4-openssl-dev libzip-dev
2525
26+
#install libplist-2.0 because libplist-dev is called "libplist v2.0.0"
27+
git clone https://github.com/libimobiledevice/libplist
28+
cd libplist
29+
./autogen.sh --without-cython --enable-static --disable-shared CFLAGS="-fPIC" CXXFLAGS="-fPIC"
30+
make
31+
sudo make install
32+
cd ..
33+
rm -rf libplist
34+
2635
wget https://opensource.apple.com/tarballs/cctools/cctools-927.0.2.tar.gz
2736
mkdir tmp
2837
tar -xvzf cctools-927.0.2.tar.gz -C tmp

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ CFLAGS+=" -std=c11"
3232
CXXFLAGS+=" -D EXPECTIONNAME=OFexception"
3333

3434
# Checks for libraries.
35-
IMG4TOOL_REQUIRES_STR="libimg4tool >= 190"
35+
IMG4TOOL_REQUIRES_STR="libimg4tool >= 192"
3636
LIBGENERAL_REQUIRES_STR="libgeneral >= 32"
3737
LIBINSN_REQUIRES_STR="libinsn >= 24"
3838
PKG_CHECK_MODULES(libimg4tool, $IMG4TOOL_REQUIRES_STR, have_img4tool=yes, have_img4tool=no)

0 commit comments

Comments
 (0)