File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / sapi / isapi / config.m4
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue May 29 12:34:35 2012 UTC (12 years, 1 month ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, HEAD
php 5.4.3+patches

    1: dnl
    2: dnl $Id: config.m4,v 1.1.1.2 2012/05/29 12:34:35 misho Exp $
    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:
   25: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>