summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorods15 <ods15@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-09-17 09:32:28 +0000
committerods15 <ods15@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-09-17 09:32:28 +0000
commit1b8971d82edbcc01f2c29c0adb4ef884d0253262 (patch)
tree64b56e035cd04c92c5fb79b74d45dabe0d0cf345 /configure
parentc50e7a3ec8622ee195bdddbff10762a907afba13 (diff)
downloadmpv-1b8971d82edbcc01f2c29c0adb4ef884d0253262.tar.bz2
mpv-1b8971d82edbcc01f2c29c0adb4ef884d0253262.tar.xz
Add demux_nut to MPlayer repo
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19867 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure32
1 files changed, 32 insertions, 0 deletions
diff --git a/configure b/configure
index 87e9dd7d08..c5b7dc37c5 100755
--- a/configure
+++ b/configure
@@ -263,6 +263,7 @@ Codecs:
--disable-real disable RealPlayer DLL support [autodetect]
--disable-xvid disable XviD codec [autodetect]
--disable-x264 disable H.264 encoder [autodetect]
+ --disable-nut disable libnut demuxer [autodetect]
--disable-libavutil disable libavutil [autodetect]
--disable-libavcodec disable libavcodec [autodetect]
--disable-libavformat disable libavformat [autodetect]
@@ -1671,6 +1672,7 @@ _vidix_external=auto
_joystick=no
_xvid=auto
_x264=auto
+_nut=auto
_lirc=auto
_lircc=auto
_gui=no
@@ -1929,6 +1931,8 @@ for ac_option do
--disable-xvid) _xvid=no ;;
--enable-x264) _x264=yes ;;
--disable-x264) _x264=no ;;
+ --enable-nut) _nut=yes ;;
+ --disable-nut) _nut=no ;;
--enable-libavutil) _libavutil=yes ;;
--disable-libavutil) _libavutil=no ;;
--enable-libavutil_so) _libavutil_so=yes ;;
@@ -6518,6 +6522,29 @@ fi
echores "$_x264"
+echocheck "nut"
+if test "$_nut" = auto ; then
+ cat > $TMPC << EOF
+#include <stdio.h>
+#include <stdlib.h>
+#include <inttypes.h>
+#include <nut.h>
+int main(void) { (void)nut_error(0); return 0; }
+EOF
+ _ld_nut="-lnut"
+ _nut=no
+ cc_check $_ld_nut && _nut=yes
+fi
+
+if test "$_nut" = yes ; then
+ _def_nut='#define HAVE_LIBNUT 1'
+else
+ _ld_nut=''
+ _def_nut='#undef HAVE_LIBNUT'
+fi
+echores "$_nut"
+
+
# mencoder requires (optional) those libs: libmp3lame
if test "$_mencoder" != no ; then
@@ -7476,6 +7503,8 @@ XVID4 = $_xvid4
XVID_LIB = $_ld_xvid
X264 = $_x264
X264_LIB = $_ld_x264
+LIBNUT = $_nut
+NUT_LIB = $_ld_nut
CONFIG_DTS = $_libdts
DTS_LIB = $_ld_libdts
DECORE_LIB = $_ld_mp3lame
@@ -7667,6 +7696,9 @@ $_def_encore_xvid
/* Define if you are using the X.264 library */
$_def_x264
+/* Define if you are using libnut */
+$_def_nut
+
/* Define to include support for libdv-0.9.5 */
$_def_libdv