]> granicus.if.org Git - php/commitdiff
Fixed check for Zeus under Solaris (/bin/sh doesn't understand '!')
authorBen Mansell <joosters@php.net>
Mon, 22 May 2000 14:39:33 +0000 (14:39 +0000)
committerBen Mansell <joosters@php.net>
Mon, 22 May 2000 14:39:33 +0000 (14:39 +0000)
sapi/isapi/config.m4

index 41fa1e144691bae7a2a0516f5b407c852ef66cc4..b58eae2af9d98c246291f178d7b0305b91f41faa 100644 (file)
@@ -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)