summaryrefslogtreecommitdiffstats
path: root/gst/goom
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 /gst/goom
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 'gst/goom')
-rw-r--r--gst/goom/filters.c4
-rw-r--r--gst/goom/graphic.c4
-rw-r--r--gst/goom/gstgoom.c2
-rw-r--r--gst/goom/lines.c4
4 files changed, 13 insertions, 1 deletions
diff --git a/gst/goom/filters.c b/gst/goom/filters.c
index 8fdabc18..5d74b622 100644
--- a/gst/goom/filters.c
+++ b/gst/goom/filters.c
@@ -12,6 +12,10 @@
/*#define _DEBUG_PIXEL; */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "filters.h"
#include "graphic.h"
#include "goom_tools.h"
diff --git a/gst/goom/graphic.c b/gst/goom/graphic.c
index 4223c67b..cd24d49f 100644
--- a/gst/goom/graphic.c
+++ b/gst/goom/graphic.c
@@ -1,3 +1,7 @@
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "graphic.h"
const Color BLACK = {0,0,0} ;
diff --git a/gst/goom/gstgoom.c b/gst/goom/gstgoom.c
index a634633a..bb048401 100644
--- a/gst/goom/gstgoom.c
+++ b/gst/goom/gstgoom.c
@@ -20,7 +20,7 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
-#include <config.h>
+
#include <gst/gst.h>
#include <gst/video/video.h>
#include "goom_core.h"
diff --git a/gst/goom/lines.c b/gst/goom/lines.c
index cadf9203..131fd002 100644
--- a/gst/goom/lines.c
+++ b/gst/goom/lines.c
@@ -7,6 +7,10 @@
*
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "lines.h"
#include <math.h>