dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[dotgnu-pnet-commits] pnet ChangeLog support/spawn.c


From: Klaus Treichel
Subject: [dotgnu-pnet-commits] pnet ChangeLog support/spawn.c
Date: Fri, 25 Aug 2006 17:52:04 +0000

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  <address@hidden>
        
                * 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  <address@hidden>
+
+       * 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  <address@hidden>
 

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>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]