helly           Thu Dec 12 07:23:33 2002 EDT

  Modified files:              
    /php4/ext/pcntl     pcntl.c 
  Log:
  SIGIOT may not be defined in cygwin
  
  
Index: php4/ext/pcntl/pcntl.c
diff -u php4/ext/pcntl/pcntl.c:1.28 php4/ext/pcntl/pcntl.c:1.29
--- php4/ext/pcntl/pcntl.c:1.28 Thu Aug 22 00:20:10 2002
+++ php4/ext/pcntl/pcntl.c      Thu Dec 12 07:23:32 2002
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: pcntl.c,v 1.28 2002/08/22 04:20:10 jason Exp $ */
+/* $Id: pcntl.c,v 1.29 2002/12/12 12:23:32 helly Exp $ */
 
 #define PCNTL_DEBUG 0
 
@@ -91,7 +91,9 @@
        REGISTER_LONG_CONSTANT("SIGILL",   (long) SIGILL,  CONST_CS | 
CONST_PERSISTENT);
        REGISTER_LONG_CONSTANT("SIGTRAP",  (long) SIGTRAP, CONST_CS | 
CONST_PERSISTENT);
        REGISTER_LONG_CONSTANT("SIGABRT",  (long) SIGABRT, CONST_CS | 
CONST_PERSISTENT);
+#ifdef SIGIOT
        REGISTER_LONG_CONSTANT("SIGIOT",   (long) SIGIOT,  CONST_CS | 
CONST_PERSISTENT);
+#endif
        REGISTER_LONG_CONSTANT("SIGBUS",   (long) SIGBUS,  CONST_CS | 
CONST_PERSISTENT);
        REGISTER_LONG_CONSTANT("SIGFPE",   (long) SIGFPE,  CONST_CS | 
CONST_PERSISTENT);
        REGISTER_LONG_CONSTANT("SIGKILL",  (long) SIGKILL, CONST_CS | 
CONST_PERSISTENT);



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to