more fixes
authorThomas Vander Stichele <thomas@apestaart.org>
Sun, 23 Dec 2001 20:21:19 +0000 (20:21 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Sun, 23 Dec 2001 20:21:19 +0000 (20:21 +0000)
Original commit message from CVS:
more fixes

configure.ac
ext/dv/Makefile.am
ext/mikmod/gstmikmod.c

index ec1e23e..7afd5df 100644 (file)
@@ -96,9 +96,11 @@ HAVE_BROKEN=yes,disabled,
 [  
   AC_MSG_WARN(building broken plugins)
   USE_VGA="yes"
+  USE_XMMS="yes"
   dnl AC_MSG_NOTICE(actually there are no broken plugins at the moment)
 ],[
   USE_VGA="no"
+  USE_XMMS="no"
   AC_MSG_NOTICE(not building broken plugins)
 ])
 
@@ -294,8 +296,6 @@ GST_PLUGINS_ALL="\
         smooth smoothwave spectrum speed stereo stereomono\
         synaesthesia udp videoscale volenv volume vumeter wavparse y4m"
 
-GST_PLUGINS_ALL=""
-
 AC_SUBST(GST_PLUGINS_ALL)
 
 GST_PLUGINS_SELECTED=""
@@ -999,63 +999,51 @@ dnl components/bonobo-gstmediaplay/Makefile
 dnl someone should fix this test/misc/Makefile
 dnl wtay fix this: testsuite/threads/Makefile
 dnl testsuite/refcounting/Makefile
-dnl libs/Makefile
-dnl libs/riff/Makefile
-dnl libs/getbits/Makefile
-dnl libs/putbits/Makefile
-dnl libs/idct/Makefile
-dnl libs/audio/Makefile
-dnl libs/bytestream/Makefile
-dnl libs/control/Makefile
-dnl libs/resample/Makefile
 dnl stamp.h
 dnl echo "$infomessages", infomessages="$infomessages"
-PLUGIN_GST_MAKEFILES="\
-gst/ac3parse/Makefile \
-gst/adder/Makefile \
-gst/audioscale/Makefile \
-gst/auparse/Makefile \
-gst/avi/Makefile \
-gst/chart/Makefile \
-gst/cutter/Makefile \
-gst/deinterlace/Makefile \
-gst/flx/Makefile \
-gst/intfloat/Makefile \
-gst/law/Makefile \
-gst/level/Makefile \
-gst/median/Makefile \
-gst/mpeg1enc/Makefile \
-gst/mpeg1sys/Makefile \
-gst/mpeg2enc/Makefile \
-gst/mpeg2sub/Makefile \
-gst/mpegaudio/Makefile \
-gst/mpegaudioparse/Makefile \
-gst/mpegstream/Makefile \
-gst/mpegtypes/Makefile \
-gst/passthrough/Makefile \
-gst/playondemand/Makefile \
-gst/rtjpeg/Makefile \
-gst/silence/Makefile \
-gst/sine/Makefile \
-gst/smooth/Makefile \
-gst/smoothwave/Makefile \
-gst/spectrum/Makefile \
-gst/speed/Makefile \
-gst/stereo/Makefile \
-gst/stereomono/Makefile \
-gst/synaesthesia/Makefile \
-gst/udp/Makefile \
-gst/videoscale/Makefile \
-gst/volenv/Makefile \
-gst/volume/Makefile \
-gst/vumeter/Makefile \
-gst/wavparse/Makefile \
-gst/y4m/Makefile"
-
-dnl $PLUGIN_GST_MAKEFILES
 AC_OUTPUT(
 Makefile
 gst/Makefile
+gst/ac3parse/Makefile
+gst/adder/Makefile
+gst/audioscale/Makefile
+gst/auparse/Makefile
+gst/avi/Makefile
+gst/chart/Makefile
+gst/cutter/Makefile
+gst/deinterlace/Makefile
+gst/flx/Makefile
+gst/intfloat/Makefile
+gst/law/Makefile
+gst/level/Makefile
+gst/median/Makefile
+gst/mpeg1enc/Makefile
+gst/mpeg1sys/Makefile
+gst/mpeg2enc/Makefile
+gst/mpeg2sub/Makefile
+gst/mpegaudio/Makefile
+gst/mpegaudioparse/Makefile
+gst/mpegstream/Makefile
+gst/mpegtypes/Makefile
+gst/passthrough/Makefile
+gst/playondemand/Makefile
+gst/rtjpeg/Makefile
+gst/silence/Makefile
+gst/sine/Makefile
+gst/smooth/Makefile
+gst/smoothwave/Makefile
+gst/spectrum/Makefile
+gst/speed/Makefile
+gst/stereo/Makefile
+gst/stereomono/Makefile
+gst/synaesthesia/Makefile
+gst/udp/Makefile
+gst/videoscale/Makefile
+gst/volenv/Makefile
+gst/volume/Makefile
+gst/vumeter/Makefile
+gst/wavparse/Makefile
+gst/y4m/Makefile
 sys/Makefile
 sys/oss/Makefile
 sys/qcam/Makefile
@@ -1097,6 +1085,7 @@ ext/xmms/Makefile
 gst-libs/Makefile
 gst-libs/gst/Makefile
 gst-libs/gst/audio/Makefile
+gst-libs/gst/idct/Makefile
 gst-libs/gst/resample/Makefile
 gst-libs/gst/riff/Makefile
 gst-plugins.spec
index e044aa4..5b90bf5 100644 (file)
@@ -2,9 +2,9 @@ plugindir = $(libdir)/gst
 
 plugin_LTLIBRARIES = libgstdvdec.la
 
-libdvdec_la_SOURCES = gstdvdec.c
-libdvdec_la_LIBADD = $(DV_LIBS) 
-libdvdec_la_CFLAGS = $(GST_CFLAGS)
+libgstdvdec_la_SOURCES = gstdvdec.c
+libgstdvdec_la_LIBADD = $(DV_LIBS) 
+libgstdvdec_la_CFLAGS = $(GST_CFLAGS)
 
 noinst_HEADERS = gstdvdec.h
 
index 593eb6b..9ab89e7 100644 (file)
@@ -19,7 +19,7 @@
 
 #include "gstmikmod.h"
 
-#include <libs/audio/gstaudio.h>
+#include <gst/audio/audio.h>
 #include <stdlib.h>
 
 GstElementDetails mikmod_details = {