summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott D Phillips <scott.d.phillips@intel.com>2016-10-23 17:23:10 -0700
committerTim-Philipp Müller <tim@centricular.com>2016-10-27 12:09:00 +0100
commit023744a5776b55a82681e87a8d822ebe9a001716 (patch)
treed11377c7140fb259701991d0213eddd31915fe47
parent8666b7d871efac3647ff35470c6766b904387d3e (diff)
udpsrc: Check for G_PLATFORM_WIN32 for presence of ipi_spec_dest
G_OS_WIN32 is only set when not building with cygwin, but ipi_spec_dest is missing both with and without cygwin. https://bugzilla.gnome.org/show_bug.cgi?id=773114
-rw-r--r--gst/udp/gstudpsrc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/udp/gstudpsrc.c b/gst/udp/gstudpsrc.c
index d60a01490..0f22a76ca 100644
--- a/gst/udp/gstudpsrc.c
+++ b/gst/udp/gstudpsrc.c
@@ -128,7 +128,7 @@
/* Required for other parts of in_pktinfo / in6_pktinfo but only
* on non-Windows and can be included after glib.h */
-#ifndef G_OS_WIN32
+#ifndef G_PLATFORM_WIN32
#include <netinet/ip.h>
#endif
@@ -157,7 +157,7 @@ struct _GstIPPktinfoMessage
GSocketControlMessage parent;
guint ifindex;
-#ifndef G_OS_WIN32
+#ifndef G_PLATFORM_WIN32
#ifndef __NetBSD__
struct in_addr spec_dst;
#endif
@@ -203,7 +203,7 @@ gst_ip_pktinfo_message_deserialize (gint level,
message = g_object_new (GST_TYPE_IP_PKTINFO_MESSAGE, NULL);
message->ifindex = pktinfo->ipi_ifindex;
-#ifndef G_OS_WIN32
+#ifndef G_PLATFORM_WIN32
#ifndef __NetBSD__
message->spec_dst = pktinfo->ipi_spec_dst;
#endif