From: krakjoe Date: Sun, 1 Dec 2013 08:55:37 +0000 (+0000) Subject: fix windows build X-Git-Tag: php-5.6.0alpha1~110^2~30^2~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d76e24b2db94472f11cf8cdc50ffd4c4ed520d4b;p=php fix windows build --- diff --git a/phpdbg.c b/phpdbg.c index 3ac0b09e88..602cc0bdda 100644 --- a/phpdbg.c +++ b/phpdbg.c @@ -942,16 +942,24 @@ phpdbg_main: /* do not install sigint handlers for remote consoles */ /* sending SIGINT then provides a decent way of shutting down the server */ #ifdef ZEND_SIGNALS +# ifndef _WIN32 if (listen[0] < 0) { +# endif zend_try { zend_signal_activate(TSRMLS_C); zend_signal(SIGINT, phpdbg_sigint_handler TSRMLS_CC); } zend_end_try(); +# ifndef _WIN32 } +# endif #else +# ifndef _WIN32 if (listen[0] < 0) { +# endif signal(SIGINT, phpdbg_sigint_handler); +#ifndef _WIN32 } +#endif #endif PG(modules_activated) = 0;