From d0fd31018bc3984440274f69302290c88e7ffbeb Mon Sep 17 00:00:00 2001 From: Ben Mansell Date: Mon, 22 May 2000 14:39:33 +0000 Subject: [PATCH] Fixed check for Zeus under Solaris (/bin/sh doesn't understand '!') --- sapi/isapi/config.m4 | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sapi/isapi/config.m4 b/sapi/isapi/config.m4 index 41fa1e1446..b58eae2af9 100644 --- a/sapi/isapi/config.m4 +++ b/sapi/isapi/config.m4 @@ -10,9 +10,7 @@ AC_ARG_WITH(zeus, else ZEUSPATH=$withval fi - if ! test -f "$ZEUSPATH/web/include/httpext.h"; then - AC_MSG_ERROR(Unable to find httpext.h in $ZEUSPATH/web/include) - fi + test -f "$ZEUSPATH/web/include/httpext.h" || AC_MSG_ERROR(Unable to find httpext.h in $ZEUSPATH/web/include) PHP_BUILD_THREAD_SAFE AC_DEFINE(WITH_ZEUS) AC_ADD_INCLUDE($ZEUSPATH/web/include) -- 2.40.0