mirror of
https://github.com/php/php-src.git
synced 2024-12-12 03:15:29 +08:00
2c8c9d68d7
Changed --with-zeus configure option into --with-isapi, since its more descriptive (and since there are now different ways to configure PHP+Zeus)
27 lines
693 B
Bash
27 lines
693 B
Bash
dnl ## $Id$ -*- sh -*-
|
|
|
|
RESULT=no
|
|
AC_MSG_CHECKING(for Zeus ISAPI support)
|
|
AC_ARG_WITH(isapi,
|
|
[ --with-isapi=DIR Build PHP as an ISAPI module for use with Zeus.],
|
|
[
|
|
if test "$withval" = "yes"; then
|
|
ZEUSPATH=/usr/local/zeus # the default
|
|
else
|
|
ZEUSPATH=$withval
|
|
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,1,[ ])
|
|
AC_ADD_INCLUDE($ZEUSPATH/web/include)
|
|
PHP_SAPI=isapi
|
|
PHP_BUILD_SHARED
|
|
INSTALL_IT="\$(SHELL) \$(srcdir)/install-sh -m 0755 $SAPI_SHARED $ZEUSPATH/web/bin/"
|
|
RESULT=yes
|
|
])
|
|
AC_MSG_RESULT($RESULT)
|
|
|
|
dnl ## Local Variables:
|
|
dnl ## tab-width: 4
|
|
dnl ## End:
|