dmitry          Fri May  5 07:05:34 2006 UTC

  Modified files:              (Branch: PHP_5_1)
    /php-src    NEWS 
    /php-src/sapi/cgi   fastcgi.c 
  Log:
  Fixed bug #37313 (sigemptyset() used without including <signal.h>). (jdolecek)
  
  
http://cvs.php.net/viewcvs.cgi/php-src/NEWS?r1=1.2027.2.546&r2=1.2027.2.547&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.546 php-src/NEWS:1.2027.2.547
--- php-src/NEWS:1.2027.2.546   Wed May  3 22:44:37 2006
+++ php-src/NEWS        Fri May  5 07:05:34 2006
@@ -1,5 +1,9 @@
 PHP                                                                        NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
+?? ??? 2006, PHP 5.?.?
+- Fixed bug #37313 (sigemptyset() used without including <signal.h>).
+  (jdolecek)
+
 04 May 2006, PHP 5.1.4
 - Added "capture_peer_cert" and "capture_peer_cert_chain" context options
   for SSL streams. (Wez).
http://cvs.php.net/viewcvs.cgi/php-src/sapi/cgi/fastcgi.c?r1=1.4.2.12&r2=1.4.2.13&diff_format=u
Index: php-src/sapi/cgi/fastcgi.c
diff -u php-src/sapi/cgi/fastcgi.c:1.4.2.12 php-src/sapi/cgi/fastcgi.c:1.4.2.13
--- php-src/sapi/cgi/fastcgi.c:1.4.2.12 Wed May  3 15:39:16 2006
+++ php-src/sapi/cgi/fastcgi.c  Fri May  5 07:05:34 2006
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: fastcgi.c,v 1.4.2.12 2006/05/03 15:39:16 dmitry Exp $ */
+/* $Id: fastcgi.c,v 1.4.2.13 2006/05/05 07:05:34 dmitry Exp $ */
 
 #include "fastcgi.h"
 #include "php.h"
@@ -69,7 +69,7 @@
 # include <netinet/in.h>
 # include <arpa/inet.h>
 # include <netdb.h>
-# include <sys/signal.h>
+# include <signal.h>
 
 #ifndef INADDR_NONE
 #define INADDR_NONE ((unsigned long) -1)

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

Reply via email to