diff stream/librtsp/rtsp_rtp.c @ 28402:c884d17bd005

Convert HAVE_WINSOCK2_H into a 0/1 definition.
author diego
date Sun, 01 Feb 2009 13:42:27 +0000
parents 9202b9245819
children 613f075b4ef0
line wrap: on
line diff
--- a/stream/librtsp/rtsp_rtp.c	Sun Feb 01 13:40:15 2009 +0000
+++ b/stream/librtsp/rtsp_rtp.c	Sun Feb 01 13:42:27 2009 +0000
@@ -28,7 +28,7 @@
 
 #include "config.h"
 
-#ifndef HAVE_WINSOCK2_H
+#if !HAVE_WINSOCK2_H
 #include <netdb.h>
 #include <netinet/in.h>
 #include <sys/socket.h>
@@ -251,7 +251,7 @@
   
   if (bind (s, (struct sockaddr *) &sin, sizeof (sin)))
   {
-#ifndef HAVE_WINSOCK2_H
+#if !HAVE_WINSOCK2_H
     if (errno != EINPROGRESS)
 #else
     if (WSAGetLastError() != WSAEINPROGRESS)
@@ -297,7 +297,7 @@
   if (!hostname || !strcmp (hostname, "0.0.0.0"))
     sin.sin_addr.s_addr = htonl (INADDR_ANY);
   else
-#ifndef HAVE_WINSOCK2_H
+#if !HAVE_WINSOCK2_H
 #if HAVE_INET_ATON
     inet_aton (hostname, &sin.sin_addr);
 #else
@@ -332,7 +332,7 @@
   /* datagram socket */
   if (bind (s, (struct sockaddr *) &sin, sizeof (sin)))
   {
-#ifndef HAVE_WINSOCK2_H
+#if !HAVE_WINSOCK2_H
     if (errno != EINPROGRESS)
 #else
     if (WSAGetLastError() != WSAEINPROGRESS)
@@ -386,7 +386,7 @@
   
   sin.sin_family = AF_INET;
 
-#ifndef HAVE_WINSOCK2_H
+#if !HAVE_WINSOCK2_H
 #if HAVE_INET_ATON
     inet_aton (addr, &sin.sin_addr);
 #else