summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2005-02-08 10:37:43 +0000
committerTim-Philipp Müller <tim@centricular.net>2005-02-08 10:37:43 +0000
commit0ffbeb03c115adf8dabcbf1f9b0fa3e7e1418e04 (patch)
treea9032fe3f60b52947d5bc9067b8b9c6d334e4268
parent6010757ef6c84af13e2869c9cd462ce466346845 (diff)
downloadgst-plugins-bad-0ffbeb03c115adf8dabcbf1f9b0fa3e7e1418e04.tar.gz
gst-plugins-bad-0ffbeb03c115adf8dabcbf1f9b0fa3e7e1418e04.tar.bz2
gst-plugins-bad-0ffbeb03c115adf8dabcbf1f9b0fa3e7e1418e04.zip
Include "_stdint.h" instead of <stdint.h>. Fixes build on systems that do not have stdint.h, like Solaris 9 (fixes #1...
Original commit message from CVS: Include "_stdint.h" instead of <stdint.h>. Fixes build on systems that do not have stdint.h, like Solaris 9 (fixes #166631).
-rw-r--r--ChangeLog9
-rw-r--r--ext/tarkin/mem.h2
-rw-r--r--ext/tarkin/wavelet.h2
-rw-r--r--ext/tarkin/yuv.h2
4 files changed, 12 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 482ba8a1..ed95b36e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2005-02-08 Tim-Philipp Müller <tim at centricular dot net>
+
+ * ext/tarkin/mem.h:
+ * ext/tarkin/wavelet.h:
+ * ext/tarkin/yuv.h:
+ * gst/ffmpegcolorspace/avcodec.h:
+ Include "_stdint.h" instead of <stdint.h>. Fixes build on
+ systems that don't have stdint.h, like Solaris9 (fixes #166631).
+
2005-02-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
diff --git a/ext/tarkin/mem.h b/ext/tarkin/mem.h
index f218f8e4..4cd85183 100644
--- a/ext/tarkin/mem.h
+++ b/ext/tarkin/mem.h
@@ -1,7 +1,7 @@
#ifndef __MEM_H
#define __MEM_H
-#include <stdint.h>
+#include "_stdint.h"
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
diff --git a/ext/tarkin/wavelet.h b/ext/tarkin/wavelet.h
index 914c2799..d05bb514 100644
--- a/ext/tarkin/wavelet.h
+++ b/ext/tarkin/wavelet.h
@@ -1,7 +1,7 @@
#ifndef __WAVELET_H
#define __WAVELET_H
-#include <stdint.h>
+#include "_stdint.h"
typedef struct {
diff --git a/ext/tarkin/yuv.h b/ext/tarkin/yuv.h
index 42ceb072..036fc354 100644
--- a/ext/tarkin/yuv.h
+++ b/ext/tarkin/yuv.h
@@ -2,7 +2,7 @@
#ifndef __YUV_H
#define __YUV_H
-#include <stdint.h>
+#include "_stdint.h"
#include "wavelet.h"
extern void rgb24_to_yuv (uint8_t *rgb, Wavelet3DBuf *yuv [], uint32_t frame);