diff options
author | wm4 <wm4@nowhere> | 2013-06-24 23:06:34 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2013-06-25 00:11:57 +0200 |
commit | f48829b546095bd33e243332c965ab58d6481160 (patch) | |
tree | cb49baed797bfef8aa173a776f0175971c59caf0 /configure | |
parent | 709389ce653d5ab11abf8de067cfb5932e642898 (diff) | |
download | mpv-f48829b546095bd33e243332c965ab58d6481160.tar.bz2 mpv-f48829b546095bd33e243332c965ab58d6481160.tar.xz |
sub: libguess support for -subcp
Actually this is rather disappointing.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -292,6 +292,7 @@ Installation directories: Optional features: --disable-encoding disable encoding functionality [enable] + --disable-libguess disable libguess [autodetect] --enable-termcap use termcap database for key codes [autodetect] --enable-termios use termios database for key codes [autodetect] --disable-iconv disable iconv for encoding conversion [autodetect] @@ -463,6 +464,7 @@ networking=yes _winsock2_h=auto _smb=auto _libquvi=auto +_libguess=auto _joystick=no _lirc=auto _lircc=auto @@ -663,6 +665,8 @@ for ac_option do --disable-smb) _smb=no ;; --enable-libquvi) _libquvi=yes ;; --disable-libquvi) _libquvi=no ;; + --enable-libguess) _libguess=yes ;; + --disable-libguess) _libguess=no ;; --enable-joystick) _joystick=yes ;; --disable-joystick) _joystick=no ;; --enable-libav) ffmpeg=yes ;; @@ -1685,6 +1689,21 @@ else fi +echocheck "libguess support" +if test "$_libguess" = auto ; then + _libguess=no + if pkg_config_add 'libguess >= 1.0' ; then + _libguess=yes + fi +fi +if test "$_libguess" = yes; then + def_libguess="#define CONFIG_LIBGUESS 1" +else + def_libguess="#undef CONFIG_LIBGUESS" +fi +echores "$_libguess" + + echocheck "Samba support (libsmbclient)" if test "$_smb" = yes; then libs_mplayer="$libs_mplayer -lsmbclient" @@ -3128,6 +3147,7 @@ VF_LAVFI = $vf_lavfi AF_LAVFI = $af_lavfi LIBSMBCLIENT = $_smb LIBQUVI = $_libquvi +LIBGUESS = $_libguess LIBTHEORA = $_theora LIRC = $_lirc MACOSX_BUNDLE = $_macosx_bundle @@ -3326,6 +3346,7 @@ $def_inet_pton $def_networking $def_smb $def_libquvi +$def_libguess $def_socklen_t $def_vstream |