cvs: php4 /sapi/isapi/ config.m4
[email protected] ("Ben Mansell")
| Newsgroups | php.version4 |
|---|---|
| Message-ID | <cvsjoosters959006374@cvsserver> |
joosters Mon May 22 16:39:34 2000 EDT
Modified files:
/php4/sapi/isapi config.m4
Log:
Fixed check for Zeus under Solaris (/bin/sh doesn't understand '!')
Index: php4/sapi/isapi/config.m4
diff -u php4/sapi/isapi/config.m4:1.6 php4/sapi/isapi/config.m4:1.7
--- php4/sapi/isapi/config.m4:1.6 Mon Nov 29 22:32:11 1999
+++ php4/sapi/isapi/config.m4 Mon May 22 16:39:33 2000
@@ -1,4 +1,4 @@
-dnl ## $Id: config.m4,v 1.6 1999/11/29 21:32:11 thies Exp $ -*- sh -*-
+dnl ## $Id: config.m4,v 1.7 2000/05/22 14:39:33 joosters Exp $ -*- sh -*-
RESULT=no
AC_MSG_CHECKING(for Zeus ISAPI support)
@@ -10,9 +10,7 @@
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)