com php-src: Fixed condition check: sapi/phpdbg/phpdbg.h
[email protected] (Xinchen Hui)
| Newsgroups | php.cvs |
|---|---|
| Message-ID | <[email protected]> |
Commit: 9398f15efd58899df21f5e0cf032b8881fe71f3f Author: Xinchen Hui <[email protected]> Mon, 10 Apr 2017 14:48:31 +0800 Parents: 65d77812fcc0275aed58fd74b8d17d09a7e21ef2 Branches: PHP-7.1 master Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=9398f15efd58899df21f5e0cf032b8881fe71f3f Log: Fixed condition check Changed paths: M sapi/phpdbg/phpdbg.h Diff: diff --git a/sapi/phpdbg/phpdbg.h b/sapi/phpdbg/phpdbg.h index 2a22251..ef3b017 100644 --- a/sapi/phpdbg/phpdbg.h +++ b/sapi/phpdbg/phpdbg.h @@ -48,7 +48,7 @@ #include "zend_signal.h" #if !defined(_WIN32) && !defined(ZEND_SIGNALS) && defined(HAVE_SIGNAL_H) # include <signal.h> -#elif PHP_WIN32 +#elif defined(PHP_WIN32) # include "win32/signal.h" #endif #include "SAPI.h"