1
0
mirror of https://github.com/php/php-src.git synced 2026-04-03 14:12:38 +02:00
Files
archived-php-src/sapi/isapi/config.m4
Sascha Schumann 3f1c010615 Remove SAPI_TARGET and use PHP_SAPI completely.
The target filename is now available as SAPI_PROGRAM, SAPI_SHARED, and
SAPI_STATIC.
1999-10-07 21:04:26 +00:00

32 lines
878 B
Bash

dnl ## $Id$ -*- sh -*-
dnl AC_MSG_CHECKING(for Zeus ISAPI support)
dnl AC_ARG_WITH(zeus,
dnl [ --with-zeus=DIR Build PHP as an ISAPI module for use with Zeus.],
dnl [
dnl if test "$withval" != "no"; then
dnl AC_MSG_RESULT(yes)
dnl if test "${enable_thread_safety}" != "yes"; then
dnl AC_MSG_ERROR(You must specify --enable-thread-safety to build as an ISAPI module)
dnl fi
dnl if test "$withval" = "yes"; then
dnl zeuspath=/usr/local/zeus # the default
dnl fi
dnl if ! test -f "$zeuspath/web/include/httpext.h"; then
dnl AC_MSG_ERROR(Unable to find httpext.h in $zeuspath/web/include)
dnl fi
dnl AC_DEFINE(WITH_ZEUS)
dnl AC_ADD_INCLUDE($zeuspath/web/include)
dnl PHP_SAPI=isapi
dnl PHP_BUILD_SHARED
dnl else
dnl AC_MSG_RESULT(no)
dnl fi
dnl ],[
dnl AC_MSG_RESULT(no)
dnl ])
dnl ## Local Variables:
dnl ## tab-width: 4
dnl ## End: