diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-04-30 19:35:49 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-04-30 19:35:49 +0000 |
commit | 7eef010d0a780cb7227bf74c2247bf3c08419131 (patch) | |
tree | 6c848966f732688c92bef5bf411580b8a77b402b | |
parent | 9a6657714892a33312905b426bd676b633bc4154 (diff) | |
download | xine-lib-7eef010d0a780cb7227bf74c2247bf3c08419131.tar.gz xine-lib-7eef010d0a780cb7227bf74c2247bf3c08419131.tar.bz2 |
Fix ogg/vorbis and Xvid checks.
CVS patchset: 1819
CVS date: 2002/04/30 19:35:49
-rw-r--r-- | configure.in | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/configure.in b/configure.in index 166e0b1df..02453f2ec 100644 --- a/configure.in +++ b/configure.in @@ -426,20 +426,19 @@ dnl 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"]) +AM_PATH_OGG( + [ AM_PATH_VORBIS([], + 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_ogg" != "xyes" -a x"$no_vorbis" != "xyes"]) dnl dnl XviD libs. dnl - -AM_PATH_XVID(no_xvid=no, AC_MSG_RESULT([*** All of XviD dependent parts will be disabled ***])) -AM_CONDITIONAL(HAVE_XVID, [test x"$no_xvid" != "xyes"]) +AM_PATH_XVID([], AC_MSG_RESULT([*** All of XviD dependent parts will be disabled ***])) +AM_CONDITIONAL(HAVE_XVID, [test x"$no_xvid" != "xyes"]) dnl |