summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDale Weiler <weilercdale@gmail.com>2018-06-11 20:10:05 -0400
committerwm4 <1387750+wm4@users.noreply.github.com>2019-09-14 16:53:15 +0200
commita9564851ce2df9e245a2ba3cc20f373e86dd9a48 (patch)
tree6f0e87c2b0bc6fd1c0223d7e5d5195df89b21049
parent7608d209c3c32c8192feeee51b67c22547a1eb35 (diff)
downloadmpv-build-a9564851ce2df9e245a2ba3cc20f373e86dd9a48.tar.bz2
mpv-build-a9564851ce2df9e245a2ba3cc20f373e86dd9a48.tar.xz
support for mbedtls
-rwxr-xr-xscripts/ffmpeg-config3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/ffmpeg-config b/scripts/ffmpeg-config
index b83bfe9..298f4a1 100755
--- a/scripts/ffmpeg-config
+++ b/scripts/ffmpeg-config
@@ -17,7 +17,8 @@ OPTIONS="$OPTIONS $USER_OPTS"
# Do FFmpeg's job.
if ! ( echo "$OPTIONS" | grep -q -e --enable-openssl ) &&
- ! ( echo "$OPTIONS" | grep -q -e --enable-gnutls ) ;
+ ! ( echo "$OPTIONS" | grep -q -e --enable-gnutls ) &&
+ ! ( echo "$OPTIONS" | grep -q -e --enable-mbedtls ) ;
then
if pkg-config gnutls ; then
OPTIONS="$OPTIONS --enable-gnutls"