projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fc3b43e
)
udp: Fix compiler warning on mingw-w64
author
Raimo Järvi
<raimo.jarvi@gmail.com>
Wed, 8 Jun 2011 15:33:10 +0000
(18:33 +0300)
committer
Tim-Philipp Müller
<tim.muller@collabora.co.uk>
Wed, 15 Jun 2011 20:10:24 +0000
(21:10 +0100)
Fixes: #652144.
gstudpnetutils.h:32:0: error: "WINVER" redefined
/usr/i686-w64-mingw32/sys-root/mingw/include/_mingw.h:231:0: note: this is the
location of the previous definition
gst/udp/gstudpnetutils.h
patch
|
blob
|
history
diff --git
a/gst/udp/gstudpnetutils.h
b/gst/udp/gstudpnetutils.h
index ec863bd7db541f113940a3f8193e76c9ee4e9fda..9b52ed9fb16fe897352c6c33f2f2292b3070a567 100644
(file)
--- a/
gst/udp/gstudpnetutils.h
+++ b/
gst/udp/gstudpnetutils.h
@@
-29,7
+29,9
@@
#ifdef G_OS_WIN32
/* ws2_32.dll has getaddrinfo and freeaddrinfo on Windows XP and later.
* minwg32 headers check WINVER before allowing the use of these */
+#ifndef WINVER
#define WINVER 0x0501
+#endif
#include <winsock2.h>
#include <ws2tcpip.h>
#ifndef socklen_t