Skip to content

Commit 3f06639

Browse files
committed
Explicitly enable OpenSSL on non-windows
1 parent 867c5ce commit 3f06639

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

scripts.d/25-openssl.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,13 @@ ffbuild_dockerbuild() {
4848
make -j$(nproc)
4949
make install_sw
5050
}
51+
52+
ffbuild_configure() {
53+
[[ $TARGET == win* ]] && return
54+
echo --enable-openssl
55+
}
56+
57+
ffbuild_unconfigure() {
58+
[[ $TARGET == win* ]] && return
59+
echo --disable-openssl
60+
}

0 commit comments

Comments
 (0)