Annotation of embedaddon/php/sapi/isapi/config.m4, revision 1.1
1.1 ! misho 1: dnl
! 2: dnl $Id: config.m4 242949 2007-09-26 15:44:16Z cvs2svn $
! 3: dnl
! 4:
! 5: PHP_ARG_WITH(isapi, for Zeus ISAPI support,
! 6: [ --with-isapi[=DIR] Build PHP as an ISAPI module for use with Zeus], no, no)
! 7:
! 8: if test "$PHP_ISAPI" != "no"; then
! 9: if test "$PHP_ISAPI" = "yes"; then
! 10: ZEUSPATH=/usr/local/zeus # the default
! 11: else
! 12: ZEUSPATH=$PHP_ISAPI
! 13: fi
! 14: test -f "$ZEUSPATH/web/include/httpext.h" || AC_MSG_ERROR(Unable to find httpext.h in $ZEUSPATH/web/include)
! 15: PHP_BUILD_THREAD_SAFE
! 16: AC_DEFINE(WITH_ZEUS, 1, [ ])
! 17: PHP_ADD_INCLUDE($ZEUSPATH/web/include)
! 18: PHP_SELECT_SAPI(isapi, shared, php5isapi.c)
! 19: INSTALL_IT="\$(SHELL) \$(srcdir)/install-sh -m 0755 $SAPI_SHARED \$(INSTALL_ROOT)$ZEUSPATH/web/bin/"
! 20: fi
! 21:
! 22: dnl ## Local Variables:
! 23: dnl ## tab-width: 4
! 24: dnl ## End:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>