mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
Fixed bug #70386 Can't compile on NetBSD because of missing WCONTINUED
since 90114a3e93
This commit is contained in:
parent
ccec609b82
commit
6b3e44369d
6
NEWS
6
NEWS
@ -20,6 +20,10 @@ PHP NEWS
|
||||
. Fixed bug #70330 (Segmentation Fault with multiple "curl_copy_handle").
|
||||
(Laruence)
|
||||
|
||||
- Pcntl:
|
||||
. Fixed bug #70386 (Can't compile on NetBSD because of missing WCONTINUED
|
||||
and WIFCONTINUED). (Matteo)
|
||||
|
||||
- PDO_OCI:
|
||||
. Fixed bug #70308 (PDO::ATTR_PREFETCH is ignored). (Chris Jones)
|
||||
|
||||
@ -528,7 +532,7 @@ PHP NEWS
|
||||
- pcntl:
|
||||
. Fixed bug #60509 (pcntl_signal doesn't decrease ref-count of old handler
|
||||
when setting SIG_DFL). (Julien)
|
||||
. Added wifcontinued and wcontinued. (xilon-jul)
|
||||
. Request #68505 (Added wifcontinued and wcontinued). (xilon-jul)
|
||||
. Added rusage support to pcntl_wait() and pcntl_waitpid(). (Anton Stepanenko,
|
||||
Tony)
|
||||
|
||||
|
@ -21,7 +21,9 @@
|
||||
#ifndef PHP_PCNTL_H
|
||||
#define PHP_PCNTL_H
|
||||
|
||||
#define HAVE_WCONTINUED defined(WCONTINUED) && defined (WIFCONTINUED)
|
||||
#if defined(WCONTINUED) && defined(WIFCONTINUED)
|
||||
#define HAVE_WCONTINUED 1
|
||||
#endif
|
||||
|
||||
extern zend_module_entry pcntl_module_entry;
|
||||
#define phpext_pcntl_ptr &pcntl_module_entry
|
||||
|
Loading…
Reference in New Issue
Block a user