Skip to content

Commit

Permalink
build: enable openssl with zlib
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaozg committed Apr 6, 2024
1 parent 1bdb047 commit 7e8ac12
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/shell/setup_ssl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ if [ ! -d "$HOME/opt/$SSL" ]; then
*)
FLAGS=no-shared
esac
./config no-tests $FLAGS --prefix="$OPENSSL_DIR" || exit 1
./config zlib no-tests $FLAGS --prefix="$OPENSSL_DIR" || exit 1
fi
if [ "$RUNNER_OS" == "macOS" ]; then
if [ -z "$LIBRESSL" ]; then
./Configure darwin64-x86_64-cc no-tests no-shared --prefix="$OPENSSL_DIR" || exit 1
./Configure zlib darwin64-x86_64-cc no-tests no-shared --prefix="$OPENSSL_DIR" || exit 1
else
./config no-tests no-shared --prefix="$OPENSSL_DIR" || exit 1
./config zlib no-tests no-shared --prefix="$OPENSSL_DIR" || exit 1
fi
fi
make && make install_sw || {
Expand Down

0 comments on commit 7e8ac12

Please sign in to comment.