summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>2003-11-07 12:47:01 +0000
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>2003-11-07 12:47:01 +0000
commit5621eae1c5881a490e3b2b1d3b17168569634674 (patch)
tree218e155ca09df30751e47c564c4ba5c2a2cb191a /ext
parent079e4b4e953ea68d81af9e3dd39fde7503471f5c (diff)
Remove all config.h includes from header files, add it to each source file and remove duplicate config.h includes fro...
Original commit message from CVS: Remove all config.h includes from header files, add it to each source file and remove duplicate config.h includes from several source files
Diffstat (limited to 'ext')
-rw-r--r--ext/aalib/gstaasink.c1
-rw-r--r--ext/flac/gstflac.c3
-rw-r--r--ext/flac/gstflacdec.h1
-rw-r--r--ext/flac/gstflacenc.h1
-rw-r--r--ext/ladspa/gstladspa.h1
-rw-r--r--ext/ladspa/load.c4
-rw-r--r--ext/ladspa/search.c4
-rw-r--r--ext/mikmod/drv_gst.c4
-rw-r--r--ext/mikmod/gstmikmod.h1
-rw-r--r--ext/mikmod/mikmod_reader.c4
-rw-r--r--ext/mikmod/mikmod_types.c6
-rw-r--r--ext/pango/gsttimeoverlay.c3
-rw-r--r--ext/pango/gsttimeoverlay.h1
-rw-r--r--ext/raw1394/gstdv1394src.h1
-rw-r--r--ext/speex/gstspeexdec.h1
-rw-r--r--ext/speex/gstspeexenc.h1
16 files changed, 27 insertions, 10 deletions
diff --git a/ext/aalib/gstaasink.c b/ext/aalib/gstaasink.c
index 7aa8fa51..4a7d8a40 100644
--- a/ext/aalib/gstaasink.c
+++ b/ext/aalib/gstaasink.c
@@ -20,7 +20,6 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
-#include <config.h>
#include <string.h>
#include <sys/time.h>
diff --git a/ext/flac/gstflac.c b/ext/flac/gstflac.c
index eeed9c08..6b399eff 100644
--- a/ext/flac/gstflac.c
+++ b/ext/flac/gstflac.c
@@ -17,6 +17,9 @@
* Boston, MA 02111-1307, USA.
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
#include "gstflacenc.h"
#include "gstflacdec.h"
diff --git a/ext/flac/gstflacdec.h b/ext/flac/gstflacdec.h
index 67742ac6..b5a1e177 100644
--- a/ext/flac/gstflacdec.h
+++ b/ext/flac/gstflacdec.h
@@ -22,7 +22,6 @@
#define __FLACDEC_H__
-#include <config.h>
#include <gst/gst.h>
#include <gst/bytestream/bytestream.h>
diff --git a/ext/flac/gstflacenc.h b/ext/flac/gstflacenc.h
index 9c724b9c..ac3254b0 100644
--- a/ext/flac/gstflacenc.h
+++ b/ext/flac/gstflacenc.h
@@ -22,7 +22,6 @@
#define __FLACENC_H__
-#include <config.h>
#include <gst/gst.h>
#include <FLAC/all.h>
diff --git a/ext/ladspa/gstladspa.h b/ext/ladspa/gstladspa.h
index 89a039e9..b588ffa4 100644
--- a/ext/ladspa/gstladspa.h
+++ b/ext/ladspa/gstladspa.h
@@ -24,7 +24,6 @@
#define __GST_LADSPA_H__
-#include <config.h>
#include <gst/gst.h>
#include <gst/bytestream/bytestream.h>
diff --git a/ext/ladspa/load.c b/ext/ladspa/load.c
index c912106f..bf52eb1f 100644
--- a/ext/ladspa/load.c
+++ b/ext/ladspa/load.c
@@ -5,6 +5,10 @@
/*****************************************************************************/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <dlfcn.h>
#include <stdio.h>
#include <stdlib.h>
diff --git a/ext/ladspa/search.c b/ext/ladspa/search.c
index aac4381b..08b28d12 100644
--- a/ext/ladspa/search.c
+++ b/ext/ladspa/search.c
@@ -5,6 +5,10 @@
/*****************************************************************************/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <dirent.h>
#include <dlfcn.h>
#include <stdio.h>
diff --git a/ext/mikmod/drv_gst.c b/ext/mikmod/drv_gst.c
index 122de610..83d475ba 100644
--- a/ext/mikmod/drv_gst.c
+++ b/ext/mikmod/drv_gst.c
@@ -1,3 +1,7 @@
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <stdlib.h>
#include "gstmikmod.h"
diff --git a/ext/mikmod/gstmikmod.h b/ext/mikmod/gstmikmod.h
index 686c484a..9d5db8a5 100644
--- a/ext/mikmod/gstmikmod.h
+++ b/ext/mikmod/gstmikmod.h
@@ -21,7 +21,6 @@
#ifndef __GST_MIKMOD_H__
#define __GST_MIKMOD_H__
-#include <config.h>
#include <mikmod.h>
#include <gst/gst.h>
diff --git a/ext/mikmod/mikmod_reader.c b/ext/mikmod/mikmod_reader.c
index b850f502..38b8402c 100644
--- a/ext/mikmod/mikmod_reader.c
+++ b/ext/mikmod/mikmod_reader.c
@@ -1,3 +1,7 @@
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <unistd.h>
#include <string.h>
diff --git a/ext/mikmod/mikmod_types.c b/ext/mikmod/mikmod_types.c
index 8c4045d8..f583d082 100644
--- a/ext/mikmod/mikmod_types.c
+++ b/ext/mikmod/mikmod_types.c
@@ -16,7 +16,11 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
-
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <gst/gst.h>
#include "mikmod_types.h"
#include <string.h> /* memcmp */
diff --git a/ext/pango/gsttimeoverlay.c b/ext/pango/gsttimeoverlay.c
index dba75612..6e1b7484 100644
--- a/ext/pango/gsttimeoverlay.c
+++ b/ext/pango/gsttimeoverlay.c
@@ -27,6 +27,9 @@
* Copyright (C) 2001 Sun Microsystems
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
/*#define DEBUG_ENABLED */
#include <gsttimeoverlay.h>
diff --git a/ext/pango/gsttimeoverlay.h b/ext/pango/gsttimeoverlay.h
index bc337153..505f8f04 100644
--- a/ext/pango/gsttimeoverlay.h
+++ b/ext/pango/gsttimeoverlay.h
@@ -22,7 +22,6 @@
#define __GST_TIMEOVERLAY_H__
-#include <config.h>
#include <gst/gst.h>
#include <pango/pango.h>
diff --git a/ext/raw1394/gstdv1394src.h b/ext/raw1394/gstdv1394src.h
index 8de7c54d..72d0e192 100644
--- a/ext/raw1394/gstdv1394src.h
+++ b/ext/raw1394/gstdv1394src.h
@@ -22,7 +22,6 @@
#define __GST_GST1394_H__
-#include <config.h>
#include <gst/gst.h>
#include <libraw1394/raw1394.h>
diff --git a/ext/speex/gstspeexdec.h b/ext/speex/gstspeexdec.h
index c6fe3e96..c679dc18 100644
--- a/ext/speex/gstspeexdec.h
+++ b/ext/speex/gstspeexdec.h
@@ -22,7 +22,6 @@
#define __GST_SPEEXDEC_H__
-#include <config.h>
#include <gst/gst.h>
#include <speex.h>
diff --git a/ext/speex/gstspeexenc.h b/ext/speex/gstspeexenc.h
index a7fa772c..4677f6a1 100644
--- a/ext/speex/gstspeexenc.h
+++ b/ext/speex/gstspeexenc.h
@@ -22,7 +22,6 @@
#define __GST_SPEEXENC_H__
-#include <config.h>
#include <gst/gst.h>
#include <speex.h>