summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/ffmpeg-config10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/ffmpeg-config b/scripts/ffmpeg-config
index 7ff138f..3c0be56 100755
--- a/scripts/ffmpeg-config
+++ b/scripts/ffmpeg-config
@@ -7,7 +7,7 @@ USER_OPTS="$@"
if test -f "$BUILD"/ffmpeg_options ; then
USER_OPTS="$(cat "$BUILD"/ffmpeg_options) $USER_OPTS"
fi
-OPTIONS="--enable-gpl --enable-nonfree --disable-debug --disable-doc"
+OPTIONS="--enable-gpl --disable-debug --disable-doc"
if "$BUILD"/scripts/test-libmpv ; then
OPTIONS="$OPTIONS --enable-pic"
@@ -19,12 +19,12 @@ OPTIONS="$OPTIONS $USER_OPTS"
if ! ( echo "$OPTIONS" | grep -e --enable-openssl ) &&
! ( echo "$OPTIONS" | grep -e --enable-gnutls ) ;
then
- if pkg-config openssl ; then
- OPTIONS="$OPTIONS --enable-openssl"
- echo "Auto-enabling OpenSSL (creates a non-redistributable binary)."
- elif pkg-config gnutls ; then
+ if pkg-config gnutls ; then
OPTIONS="$OPTIONS --enable-gnutls"
echo "Auto-enabling GnuTLS."
+ elif pkg-config openssl ; then
+ OPTIONS="$OPTIONS --enable-nonfree --enable-openssl"
+ echo "Auto-enabling OpenSSL (creates a non-redistributable binary)."
fi
fi