Browse Source

fix(build): fix SQLCipher build issue with OpenSSL 1.1.1 on Windows

reviewable/pr5871/r3
Maxim Biro 6 years ago committed by Anthony Bilinski
parent
commit
8be99c0861
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
  1. 4
      windows/cross-compile/build.sh

4
windows/cross-compile/build.sh

@ -403,8 +403,8 @@ then @@ -403,8 +403,8 @@ then
rm $SQLCIPHER_FILENAME
cd sqlcipher*
sed -i s/'LIBS="-lcrypto $LIBS"'/'LIBS="-lcrypto -lgdi32 $LIBS"'/g configure
sed -i s/'LIBS="-lcrypto $LIBS"'/'LIBS="-lcrypto -lgdi32 $LIBS"'/g configure
sed -i s/'LIBS="-lcrypto $LIBS"'/'LIBS="-lcrypto -lgdi32 -lws2_32 $LIBS"'/g configure
sed -i s/'LIBS="-lcrypto $LIBS"'/'LIBS="-lcrypto -lgdi32 -lws2_32 $LIBS"'/g configure
sed -i s/'if test "$TARGET_EXEEXT" = ".exe"'/'if test ".exe" = ".exe"'/g configure
sed -i 's|exec $PWD/mksourceid manifest|exec $PWD/mksourceid.exe manifest|g' tool/mksqlite3h.tcl

Loading…
Cancel
Save