diff options
| author | Ben Mansell <joosters@php.net> | 2000-05-22 14:39:33 +0000 |
|---|---|---|
| committer | Ben Mansell <joosters@php.net> | 2000-05-22 14:39:33 +0000 |
| commit | d0fd31018bc3984440274f69302290c88e7ffbeb (patch) | |
| tree | 302669bb9b8f2c4125fe68e2d59942e01f7c5332 /sapi/isapi | |
| parent | 5e0dec4a401ceb7b82aefbf2f56708be30cfd6ec (diff) | |
| download | php-git-d0fd31018bc3984440274f69302290c88e7ffbeb.tar.gz | |
Fixed check for Zeus under Solaris (/bin/sh doesn't understand '!')
Diffstat (limited to 'sapi/isapi')
| -rw-r--r-- | sapi/isapi/config.m4 | 4 |
1 files changed, 1 insertions, 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) |
