diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-10-07 20:10:45 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-10-07 20:10:45 +0000 |
commit | 19b84cd45f5be52401edae5852df4c889e832979 (patch) | |
tree | c4caa6e58b1fade69f7ae4f5f92b5e15c2470b04 /configure.in | |
parent | fd99af790c0f3fe36373553870a301c39e34bf12 (diff) | |
download | xine-lib-19b84cd45f5be52401edae5852df4c889e832979.tar.gz xine-lib-19b84cd45f5be52401edae5852df4c889e832979.tar.bz2 |
Add ogg/vorbis checks. Change divxdecore checks.
CVS patchset: 760
CVS date: 2001/10/07 20:10:45
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 32 |
1 files changed, 19 insertions, 13 deletions
diff --git a/configure.in b/configure.in index 153850dbc..a2aa21e8b 100644 --- a/configure.in +++ b/configure.in @@ -248,11 +248,29 @@ AM_CONDITIONAL(HAVE_XINERAMA, test x$ac_have_xinerama = "xyes") dnl dnl Checks for Ascii-Art library dnl -AM_PATH_AALIB(1.2,,) +AM_PATH_AALIB(1.2,, AC_MSG_RESULT(*** All of AALIB dependent parts will be disabled ***)) AM_CONDITIONAL(HAVE_AA, test x$no_aalib != "xyes") dnl +dnl Check for divx4 +dnl +AC_CHECK_DIVX4(, AC_MSG_RESULT(*** All of DIVX4 dependent parts will be disabled ***)) +AM_CONDITIONAL(HAVE_DIVX4, test x"$no_divx4" != "xyes") + + +dnl +dnl Ogg/Vorbis libs. +dnl + +AM_PATH_OGG([no_oggvorbis=no + AM_PATH_VORBIS(no_oggvorbis=no, + AC_MSG_RESULT([*** All of 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_oggvorbis" = "xno") + + +dnl dnl OSS style audio interface dnl AC_MSG_CHECKING(for OSS audio support) @@ -573,20 +591,8 @@ else fi AC_SUBST(W32DLL_DEP) -enable_divx4=yes -DIVX_LIBS=$LIBS -LIBS="$DIVX_LIBS -lstdc++" -AC_CHECK_LIB(divxdecore, decore, , enable_divx4=no) -AC_CHECK_HEADER(decore.h, , enable_divx4=no) -if test x$enable_divx4 = xno ; then - AC_MSG_WARN([ -*** Did not find decore.h or libdivxdecore. Not compiling divx4 plugin. ]) -fi; -AM_CONDITIONAL(HAVE_DIVXDECORE, test x"$enable_divx4" = "xyes") - AM_CONDITIONAL(HAVE_FFMMX, test x"$enable_ffmmx" = "xyes") - dnl dnl gcc __attribute__ ((aligned ())) dnl |