diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-05-31 20:24:44 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-05-31 20:24:44 +0100 |
commit | 7c5ff224fcb10b82d6e591677d556143569e2844 (patch) | |
tree | 6a4c47dd84b01165f06d76b3c25b6a43a9156185 /gst | |
parent | 7516719b72d1dadd64f511c2f2ad02209aa9c2d6 (diff) | |
download | gst-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
Diffstat (limited to 'gst')
-rw-r--r-- | gst/sdp/gstsdpdemux.c | 3 |
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> |