Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
fix(build): fix SQLCipher build issue with OpenSSL 1.1.1 on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
nurupo authored and anthonybilinski committed Oct 10, 2019
1 parent 39122d7 commit 8be99c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions windows/cross-compile/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 8be99c0

Please sign in to comment.