Explicitly enable OpenSSL on non-windows

This commit is contained in:
BtbN 2021-06-05 22:20:34 +02:00
parent 867c5ce14d
commit 3f06639835

View file

@ -48,3 +48,13 @@ ffbuild_dockerbuild() {
make -j$(nproc)
make install_sw
}
ffbuild_configure() {
[[ $TARGET == win* ]] && return
echo --enable-openssl
}
ffbuild_unconfigure() {
[[ $TARGET == win* ]] && return
echo --disable-openssl
}