phpdbg config.m4: make it detectable by old shells

--enable-phpdbg is not detected on old systems (e.g.: stock FreeBSD 8), due to a PHPism in config.m4 (use of == operator).
Replacing == with the historic = makes it pass.
This commit is contained in:
Guillaume Outters 2016-01-28 21:36:14 +01:00 committed by Nikita Popov
parent d964ccba40
commit 10b2172f01

View File

@ -11,7 +11,7 @@ PHP_ARG_ENABLE(phpdbg-webhelper, for phpdbg web SAPI support,
PHP_ARG_ENABLE(phpdbg-debug, for phpdbg debug build,
[ --enable-phpdbg-debug Build phpdbg in debug mode], no, no)
if test "$BUILD_PHPDBG" == "" && test "$PHP_PHPDBG" != "no"; then
if test "$BUILD_PHPDBG" = "" && test "$PHP_PHPDBG" != "no"; then
AC_HEADER_TIOCGWINSZ
AC_DEFINE(HAVE_PHPDBG, 1, [ ])