From ecc27fd6c5c94eb7689391a2fc1c38ca90cda240 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 21 May 2001 20:17:44 +0000 Subject: [PATCH] Updates to the audiofile detection stuff. Original commit message from CVS: Updates to the audiofile detection stuff. --- acconfig.h | 1 + configure.in | 7 ++++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/acconfig.h b/acconfig.h index dc5596d..6f69711 100644 --- a/acconfig.h +++ b/acconfig.h @@ -27,6 +27,7 @@ #undef HAVE_LIBGHTTP #undef HAVE_LIBMMX #undef HAVE_LIBXV +#undef HAVE_LIBAUDIOFILE #undef HAVE_OSS #undef HAVE_XAUDIO #undef HAVE_CSSAUTH diff --git a/configure.in b/configure.in index 6eed30d..0d34f28 100644 --- a/configure.in +++ b/configure.in @@ -269,14 +269,13 @@ AC_PATH_PROG(AUDIOFILE_CONFIG, audiofile-config, no) if test x$AUDIOFILE_CONFIG = xno; then AC_MSG_WARN(Couldn't find audiofile-config: can't build afsink) AUDIOFILE_LIBS= - HAVE_LIBAUDIOFILE=false + HAVE_LIBAUDIOFILE=no else AC_MSG_WARN(did find audiofile-config: delete this msg) AUDIOFILE_LIBS=`audiofile-config --libs` - HAVE_LIBAUDIOFILE=true + HAVE_LIBAUDIOFILE=yes fi AC_SUBST(AUDIOFILE_LIBS) -AC_SUBST(HAVE_LIBAUDIOFILE) alsa_save_LIBS=$LIBS alsa_save_CFLAGS=$CFLAGS @@ -952,6 +951,7 @@ plugins/Makefile plugins/aasink/Makefile plugins/alsa/Makefile plugins/au/Makefile +plugins/audiofile/Makefile plugins/audioscale/Makefile plugins/avi/Makefile plugins/avi/wincodec/Makefile @@ -1026,6 +1026,7 @@ plugins/cdparanoia/Makefile plugins/esd/Makefile plugins/esd/esdsink/Makefile plugins/artsd/Makefile +plugins/quicktime/Makefile plugins/xmms/Makefile plugins/arts/Makefile plugins/1394/Makefile -- 2.7.4