summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2004-01-12 04:15:46 +0000
committerDavid Schleef <ds@schleef.org>2004-01-12 04:15:46 +0000
commitc5ee12c2a780a2795ada26018061cc58d35e308e (patch)
treee750b2bbfd44407edbc164f375199d1172885655
parent86a4117f7e2eaefa67c7f826d50b709d50258431 (diff)
Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
Original commit message from CVS: * ext/ffmpeg/gstffmpeg.c: * ext/ffmpeg/gstffmpegcodecmap.c: * ext/ffmpeg/gstffmpegdec.c: * ext/ffmpeg/gstffmpegenc.c: * ext/ffmpeg/gstffmpegprotocol.c: * ext/gdk_pixbuf/gstgdkanimation.c: * ext/jpeg/gstjpeg.c: * ext/libpng/gstpng.c: * ext/mpeg2dec/perftest.c: * ext/speex/gstspeex.c: * gst-libs/gst/resample/dtos.c: * gst/intfloat/gstintfloatconvert.c: * gst/oneton/gstoneton.c: * gst/rtjpeg/RTjpeg.c: * gst/rtp/gstrtp.c: * sys/dxr3/dxr3init.c: * sys/glsink/gstgl_nvimage.c: * sys/glsink/gstgl_pdrimage.c: * sys/glsink/gstglsink.c: * testsuite/gst-lint: Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
-rw-r--r--ChangeLog24
-rw-r--r--ext/gdk_pixbuf/gstgdkanimation.c2
-rw-r--r--ext/jpeg/gstjpeg.c2
-rw-r--r--ext/libpng/gstpng.c2
-rw-r--r--ext/speex/gstspeex.c2
-rw-r--r--gst/rtp/gstrtp.c2
6 files changed, 34 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 1457ec2b..787cde83 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,29 @@
2004-01-11 David Schleef <ds@schleef.org>
+ * ext/ffmpeg/gstffmpeg.c:
+ * ext/ffmpeg/gstffmpegcodecmap.c:
+ * ext/ffmpeg/gstffmpegdec.c:
+ * ext/ffmpeg/gstffmpegenc.c:
+ * ext/ffmpeg/gstffmpegprotocol.c:
+ * ext/gdk_pixbuf/gstgdkanimation.c:
+ * ext/jpeg/gstjpeg.c:
+ * ext/libpng/gstpng.c:
+ * ext/mpeg2dec/perftest.c:
+ * ext/speex/gstspeex.c:
+ * gst-libs/gst/resample/dtos.c:
+ * gst/intfloat/gstintfloatconvert.c:
+ * gst/oneton/gstoneton.c:
+ * gst/rtjpeg/RTjpeg.c:
+ * gst/rtp/gstrtp.c:
+ * sys/dxr3/dxr3init.c:
+ * sys/glsink/gstgl_nvimage.c:
+ * sys/glsink/gstgl_pdrimage.c:
+ * sys/glsink/gstglsink.c:
+ * testsuite/gst-lint:
+ Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
+
+2004-01-11 David Schleef <ds@schleef.org>
+
* ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
* ext/faac/gstfaac.c: (gst_faac_sinkconnect):
* ext/gdk_pixbuf/gstgdkanimation.c:
diff --git a/ext/gdk_pixbuf/gstgdkanimation.c b/ext/gdk_pixbuf/gstgdkanimation.c
index 78e92216..a0b6cb93 100644
--- a/ext/gdk_pixbuf/gstgdkanimation.c
+++ b/ext/gdk_pixbuf/gstgdkanimation.c
@@ -17,7 +17,9 @@
* Boston, MA 02111-1307, USA.
*/
+#ifdef HAVE_CONFIG_H
#include "config.h"
+#endif
#include "gstgdkanimation.h"
#include <unistd.h>
diff --git a/ext/jpeg/gstjpeg.c b/ext/jpeg/gstjpeg.c
index 2fe1000d..1a78b222 100644
--- a/ext/jpeg/gstjpeg.c
+++ b/ext/jpeg/gstjpeg.c
@@ -16,7 +16,9 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+#ifdef HAVE_CONFIG_H
#include <config.h>
+#endif
#include "gstjpegdec.h"
#include "gstjpegenc.h"
diff --git a/ext/libpng/gstpng.c b/ext/libpng/gstpng.c
index 20e5d0b0..38a492f4 100644
--- a/ext/libpng/gstpng.c
+++ b/ext/libpng/gstpng.c
@@ -16,7 +16,9 @@
*
*/
+#ifdef HAVE_CONFIG_H
#include <config.h>
+#endif
#include <string.h>
#include <gst/gst.h>
diff --git a/ext/speex/gstspeex.c b/ext/speex/gstspeex.c
index 022b8ca9..df2f230c 100644
--- a/ext/speex/gstspeex.c
+++ b/ext/speex/gstspeex.c
@@ -16,7 +16,9 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+#ifdef HAVE_CONFIG_H
#include <config.h>
+#endif
#include "gstspeexdec.h"
#include "gstspeexenc.h"
diff --git a/gst/rtp/gstrtp.c b/gst/rtp/gstrtp.c
index 56bea9b0..4f3f7d46 100644
--- a/gst/rtp/gstrtp.c
+++ b/gst/rtp/gstrtp.c
@@ -17,7 +17,9 @@
* Boston, MA 02111-1307, USA.
*/
+#ifdef HAVE_CONFIG_H
#include "config.h"
+#endif
#include "gstrtpL16enc.h"
#include "gstrtpL16parse.h"