CVSROOT:        /cvsroot/dotgnu-pnet
Module name:    pnet
Changes by:     Klaus Treichel <ktreichel>      06/08/25 17:52:03

Modified files:
        .              : ChangeLog 
        support        : spawn.c 

Log message:
        2006-08-25  Klaus Treichel  <[EMAIL PROTECTED]>
        
                * support/spawn.c: Define _WAIT_CHILD as WAIT_CHILD on windows 
if
                _WAIT_CHILD is not defined. This fixes the build on cygwin.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pnet/ChangeLog?cvsroot=dotgnu-pnet&r1=1.3354&r2=1.3355
http://cvs.savannah.gnu.org/viewcvs/pnet/support/spawn.c?cvsroot=dotgnu-pnet&r1=1.11&r2=1.12

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/ChangeLog,v
retrieving revision 1.3354
retrieving revision 1.3355
diff -u -b -r1.3354 -r1.3355
--- ChangeLog   24 Aug 2006 22:07:26 -0000      1.3354
+++ ChangeLog   25 Aug 2006 17:52:03 -0000      1.3355
@@ -1,3 +1,7 @@
+2006-08-25  Klaus Treichel  <[EMAIL PROTECTED]>
+
+       * support/spawn.c: Define _WAIT_CHILD as WAIT_CHILD on windows if
+       _WAIT_CHILD is not defined. This fixes the build on cygwin.
 
 2006-08-25  Yan Burman  <[EMAIL PROTECTED]>
 

Index: support/spawn.c
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/support/spawn.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- support/spawn.c     22 Aug 2006 18:15:41 -0000      1.11
+++ support/spawn.c     25 Aug 2006 17:52:03 -0000      1.12
@@ -24,6 +24,9 @@
 #ifdef IL_WIN32_PLATFORM
        #include <windows.h>
        #include <process.h>
+       #ifndef _WAIT_CHILD
+               #define _WAIT_CHILD WAIT_CHILD
+       #endif
 #elif !defined(__palmos__)
        #ifdef HAVE_SYS_TYPES_H
                #include <sys/types.h>


_______________________________________________
dotgnu-pnet-commits mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/dotgnu-pnet-commits

Reply via email to