CVSROOT:        /cvsroot/dotgnu-pnet
Module name:    pnet
Changes by:     Klaus Treichel <ktreichel>      06/08/24 17:45:36

Modified files:
        .              : ChangeLog 
        engine         : debugger.c 

Log message:
        2006-08-24  Klaus treichel  <[EMAIL PROTECTED]>
        
                * engine/debugger.c: Wrap the #include <unistd.h> in #ifdef 
HAVE_UNISTD_H
                ... #endif to fix a build problem on mingw.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pnet/ChangeLog?cvsroot=dotgnu-pnet&r1=1.3352&r2=1.3353
http://cvs.savannah.gnu.org/viewcvs/pnet/engine/debugger.c?cvsroot=dotgnu-pnet&r1=1.4&r2=1.5

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/ChangeLog,v
retrieving revision 1.3352
retrieving revision 1.3353
diff -u -b -r1.3352 -r1.3353
--- ChangeLog   22 Aug 2006 18:15:41 -0000      1.3352
+++ ChangeLog   24 Aug 2006 17:45:35 -0000      1.3353
@@ -1,3 +1,7 @@
+2006-08-24  Klaus treichel  <[EMAIL PROTECTED]>
+
+       * engine/debugger.c: Wrap the #include <unistd.h> in #ifdef 
HAVE_UNISTD_H
+       ... #endif to fix a build problem on mingw.
 
 2006-08-22   Yan Burman  <[EMAIL PROTECTED]>
 

Index: engine/debugger.c
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/engine/debugger.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- engine/debugger.c   20 Aug 2006 19:17:34 -0000      1.4
+++ engine/debugger.c   24 Aug 2006 17:45:35 -0000      1.5
@@ -20,7 +20,9 @@
 
 #include <stdio.h>
 #include <ctype.h>
+#ifdef HAVE_UNISTD_H
 #include <unistd.h>
+#endif
 #include "il_sysio.h"
 #include "il_engine.h"
 #include "il_debug.h"


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

Reply via email to