[MPlayer-dev-eng] [PATCH] configure: Detect GnuTLS and enable FFmpeg https
Alexander Strasser
eclipse7 at gmx.net
Sun Oct 12 21:40:01 CEST 2014
Allow playback of https:// URLs via FFmpeg.
Fix ticket #2183
Signed-off-by: Alexander Strasser <eclipse7 at gmx.net>
---
configure | 25 ++++++++++++++++++++++++-
1 file changed, 24 insertions(+), 1 deletion(-)
diff --git a/configure b/configure
index c5e731b..ccf63e4 100755
--- a/configure
+++ b/configure
@@ -386,6 +386,7 @@ Optional features:
--enable-ass-internal enable internal SSA/ASS subtitle support [autodetect]
--disable-ass disable SSA/ASS subtitle support [autodetect]
--enable-rpath enable runtime linker path for extra libs [disabled]
+ --disable-gnutls disable GnuTLS [autodetect]
Codecs:
--enable-gif enable GIF support [autodetect]
@@ -848,6 +849,7 @@ _enca=auto
_inet6=auto
_sctp=auto
_gethostbyname2=auto
+_gnutls=auto
_ftp=auto
_musepack=no
_vstream=auto
@@ -1349,6 +1351,8 @@ for ac_option do
--disable-ass-internal) ass_internal=no ;;
--enable-rpath) _rpath=yes ;;
--disable-rpath) _rpath=no ;;
+ --enable-gnutls) _gnutls=yes ;;
+ --disable-gnutls) _gnutls=no ;;
--enable-fribidi) _fribidi=yes ;;
--disable-fribidi) _fribidi=no ;;
@@ -4329,6 +4333,24 @@ else
fi
+echocheck "GnuTLS"
+if test "$_gnutls" = auto ; then
+ _gnutls=no
+ if $_pkg_config --exists gnutls ; then
+ statement_check gnutls/gnutls.h 'gnutls_global_init()' $($_pkg_config --libs --cflags gnutls) &&
+ _gnutls=yes
+ fi
+fi
+if test "$_gnutls" = yes ; then
+ def_gnutls='#define CONFIG_GNUTLS 1'
+ libavprotocols="$libavprotocols HTTPS_PROTOCOL TLS_PROTOCOL"
+ extra_cflags="$extra_cflags $($_pkg_config --cflags gnutls)"
+ extra_ldflags="$extra_ldflags $($_pkg_config --libs gnutls)"
+else
+ def_gnutls='#define CONFIG_GNUTLS 0'
+fi
+echores "$_gnutls"
+
echocheck "Samba support (libsmbclient)"
if test "$_smb" = yes; then
extra_ldflags="$extra_ldflags -lsmbclient"
@@ -8694,6 +8716,7 @@ CONFIG_AC3DSP = yes
CONFIG_BZLIB = $bzlib
CONFIG_CRYSTALHD= $crystalhd
CONFIG_ENCODERS = yes
+CONFIG_GNUTLS = $_gnutls
CONFIG_GPL = yes
CONFIG_ICONV = $_iconv
CONFIG_MLIB = $_mlib
@@ -9229,7 +9252,7 @@ $def_truncf
#define CONFIG_FASTDIV 0
#define CONFIG_FFSERVER 0
#define CONFIG_FTRAPV 0
-#define CONFIG_GNUTLS 0
+$def_gnutls
#define CONFIG_GPL 1
#define CONFIG_GRAY 0
#define CONFIG_LIBMODPLUG 0
--
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 181 bytes
Desc: not available
URL: <https://lists.mplayerhq.hu/pipermail/mplayer-dev-eng/attachments/20141012/8ee29fb4/attachment.asc>
More information about the MPlayer-dev-eng
mailing list