diff options
author | Robin KAY <komadori@users.sourceforge.net> | 2002-12-20 01:35:49 +0000 |
---|---|---|
committer | Robin KAY <komadori@users.sourceforge.net> | 2002-12-20 01:35:49 +0000 |
commit | e497eb1f9172f0e620e807a99b3379b7348d6410 (patch) | |
tree | 40567861b773c17641df8fed551032382a59c42c /configure.ac | |
parent | 217ed50549e44bf3f6d0e4d812629833b4d13d88 (diff) | |
download | xine-lib-e497eb1f9172f0e620e807a99b3379b7348d6410.tar.gz xine-lib-e497eb1f9172f0e620e807a99b3379b7348d6410.tar.bz2 |
MNG demuxer added
CVS patchset: 3591
CVS date: 2002/12/20 01:35:49
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 23d9cc640..f58dd09d2 100644 --- a/configure.ac +++ b/configure.ac @@ -530,7 +530,7 @@ AC_CHECK_PROG(DEPMOD, depmod, depmod, no) dnl --------------------------------------------- dnl Check for divx4 dnl --------------------------------------------- -dnl AC_CHECK_DIVX4(, AC_MSG_RESULT(*** All of DIVX4 dependent parts will be disabled ***)) +dnl AC_CHECK_DIVX4(, AC_MSG_RESULT(*** All DIVX4 dependent parts will be disabled ***)) dnl AM_CONDITIONAL(HAVE_DIVX4, test x"$no_divx4" != "xyes") @@ -539,7 +539,7 @@ dnl Ogg/Vorbis libs. dnl --------------------------------------------- AM_PATH_OGG( [ AM_PATH_VORBIS([], - AC_MSG_RESULT([*** All of OGG/VORBIS dependent parts will be disabled ***])) + AC_MSG_RESULT([*** All OGG/VORBIS dependent parts will be disabled ***])) ], AC_MSG_RESULT([*** All of OGG/VORBIS dependent parts will be disabled ***])) AM_CONDITIONAL(HAVE_VORBIS, [test x"$no_ogg" != "xyes" -a x"$no_vorbis" != "xyes"]) @@ -548,11 +548,24 @@ AM_CONDITIONAL(HAVE_VORBIS, [test x"$no_ogg" != "xyes" -a x"$no_vorbis" != "xyes dnl --------------------------------------------- dnl XviD libs. dnl --------------------------------------------- -AM_PATH_XVID([], AC_MSG_RESULT([*** All of XviD dependent parts will be disabled ***])) +AM_PATH_XVID([], AC_MSG_RESULT([*** All XviD dependent parts will be disabled ***])) AM_CONDITIONAL(HAVE_XVID, [test x"$no_xvid" != "xyes"]) dnl --------------------------------------------- +dnl MNG libs. +dnl --------------------------------------------- +AC_CHECK_LIB(mng, mng_initialize, + [ AC_CHECK_HEADER(libmng.h, + [ have_libmng=yes + MNG_LIBS="-lmng" ], + AC_MSG_RESULT([*** All libmng dependent parts will be disabled ***]))], + AC_MSG_RESULT([*** All libmng dependent parts will be disabled ***])) +AM_CONDITIONAL(HAVE_LIBMNG, test x"$have_libmng" = "xyes") +AC_SUBST(MNG_LIBS) + + +dnl --------------------------------------------- dnl OSS style audio interface dnl --------------------------------------------- AC_MSG_CHECKING(for OSS audio support) @@ -1248,6 +1261,9 @@ fi if test x"$no_oggvorbis" = "xno"; then echo " - ogg" fi +if test x"$have_libmng" = "xyes"; then + echo " - mng" +fi echo "" dnl video decoders |