mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fix pcntl Haiku build
guarding SIGIO constant. Closes GH-8612.
This commit is contained in:
parent
2a13304b2e
commit
e33de9dda8
2 changed files with 5 additions and 0 deletions
3
NEWS
3
NEWS
|
@ -21,6 +21,9 @@ PHP NEWS
|
|||
. Fixed bug GH-8466 (ini_get() is optimized out when the option does not
|
||||
exist). (Arnaud)
|
||||
|
||||
- Pcntl:
|
||||
. Fixed Haiku build. (David Carlier)
|
||||
|
||||
- Soap:
|
||||
. Fixed bug GH-8578 (Error on wrong parameter on SoapHeader constructor).
|
||||
(robertnisipeanu)
|
||||
|
|
|
@ -151,7 +151,9 @@ void php_register_signal_constants(INIT_FUNC_ARGS)
|
|||
#ifdef SIGPOLL
|
||||
REGISTER_LONG_CONSTANT("SIGPOLL", (zend_long) SIGPOLL, CONST_CS | CONST_PERSISTENT);
|
||||
#endif
|
||||
#ifdef SIGIO
|
||||
REGISTER_LONG_CONSTANT("SIGIO", (zend_long) SIGIO, CONST_CS | CONST_PERSISTENT);
|
||||
#endif
|
||||
#ifdef SIGPWR
|
||||
REGISTER_LONG_CONSTANT("SIGPWR", (zend_long) SIGPWR, CONST_CS | CONST_PERSISTENT);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue