summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2009-05-31 20:24:44 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-05-31 20:24:44 +0100
commit7c5ff224fcb10b82d6e591677d556143569e2844 (patch)
tree6a4c47dd84b01165f06d76b3c25b6a43a9156185
parent7516719b72d1dadd64f511c2f2ad02209aa9c2d6 (diff)
downloadgst-plugins-bad-7c5ff224fcb10b82d6e591677d556143569e2844.tar.gz
gst-plugins-bad-7c5ff224fcb10b82d6e591677d556143569e2844.tar.bz2
gst-plugins-bad-7c5ff224fcb10b82d6e591677d556143569e2844.zip
sdpdemux: include glib.h before checking if G_OS_WIN32 is defined
-rw-r--r--gst/sdp/gstsdpdemux.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gst/sdp/gstsdpdemux.c b/gst/sdp/gstsdpdemux.c
index 4deac870..3c543d0a 100644
--- a/gst/sdp/gstsdpdemux.c
+++ b/gst/sdp/gstsdpdemux.c
@@ -51,6 +51,9 @@
#include <unistd.h>
#endif
+/* include GLIB for G_OS_WIN32 */
+#include <glib.h>
+
#ifdef G_OS_WIN32
#ifdef _MSC_VER
#include <Winsock2.h>