[MPlayer-cvslog] r28434 - in trunk: configure stream/network.h

diego subversion at mplayerhq.hu
Sun Feb 1 14:16:47 CET 2009


Author: diego
Date: Sun Feb  1 14:16:46 2009
New Revision: 28434

Log:
Convert HAVE_CLOSESOCKET and HAVE_SOCKLEN_T into 0/1 definitions.

Modified:
   trunk/configure
   trunk/stream/network.h

Modified: trunk/configure
==============================================================================
--- trunk/configure	Sun Feb  1 14:13:15 2009	(r28433)
+++ trunk/configure	Sun Feb  1 14:16:46 2009	(r28434)
@@ -2982,7 +2982,7 @@ done
 if test "$_socklen_t" = yes ; then
   _def_socklen_t='#define HAVE_SOCKLEN_T 1'
 else
-  _def_socklen_t='#undef HAVE_SOCKLEN_T'
+  _def_socklen_t='#define HAVE_SOCKLEN_T 0'
 fi
 echores "$_socklen_t"
 
@@ -2997,7 +2997,7 @@ cc_check $_ld_sock && _closesocket=yes
 if test "$_closesocket" = yes ; then
   _def_closesocket='#define HAVE_CLOSESOCKET 1'
 else
-  _def_closesocket='#undef HAVE_CLOSESOCKET'
+  _def_closesocket='#define HAVE_CLOSESOCKET 0'
 fi
 echores "$_closesocket"
 

Modified: trunk/stream/network.h
==============================================================================
--- trunk/stream/network.h	Sun Feb  1 14:13:15 2009	(r28433)
+++ trunk/stream/network.h	Sun Feb  1 14:16:46 2009	(r28434)
@@ -22,10 +22,10 @@
 #include "url.h"
 #include "http.h"
 
-#ifndef HAVE_CLOSESOCKET
+#if !HAVE_CLOSESOCKET
 #define closesocket close
 #endif
-#ifndef HAVE_SOCKLEN_T
+#if !HAVE_SOCKLEN_T
 typedef int socklen_t;
 #endif
 



More information about the MPlayer-cvslog mailing list