mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +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
|
. Fixed bug GH-8466 (ini_get() is optimized out when the option does not
|
||||||
exist). (Arnaud)
|
exist). (Arnaud)
|
||||||
|
|
||||||
|
- Pcntl:
|
||||||
|
. Fixed Haiku build. (David Carlier)
|
||||||
|
|
||||||
- Soap:
|
- Soap:
|
||||||
. Fixed bug GH-8578 (Error on wrong parameter on SoapHeader constructor).
|
. Fixed bug GH-8578 (Error on wrong parameter on SoapHeader constructor).
|
||||||
(robertnisipeanu)
|
(robertnisipeanu)
|
||||||
|
|
|
@ -151,7 +151,9 @@ void php_register_signal_constants(INIT_FUNC_ARGS)
|
||||||
#ifdef SIGPOLL
|
#ifdef SIGPOLL
|
||||||
REGISTER_LONG_CONSTANT("SIGPOLL", (zend_long) SIGPOLL, CONST_CS | CONST_PERSISTENT);
|
REGISTER_LONG_CONSTANT("SIGPOLL", (zend_long) SIGPOLL, CONST_CS | CONST_PERSISTENT);
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef SIGIO
|
||||||
REGISTER_LONG_CONSTANT("SIGIO", (zend_long) SIGIO, CONST_CS | CONST_PERSISTENT);
|
REGISTER_LONG_CONSTANT("SIGIO", (zend_long) SIGIO, CONST_CS | CONST_PERSISTENT);
|
||||||
|
#endif
|
||||||
#ifdef SIGPWR
|
#ifdef SIGPWR
|
||||||
REGISTER_LONG_CONSTANT("SIGPWR", (zend_long) SIGPWR, CONST_CS | CONST_PERSISTENT);
|
REGISTER_LONG_CONSTANT("SIGPWR", (zend_long) SIGPWR, CONST_CS | CONST_PERSISTENT);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue