Annotation of embedaddon/php/sapi/phttpd/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(phttpd, for PHTTPD support,
        !             6: [  --with-phttpd=DIR       Build PHP as phttpd module], no, no)
        !             7: 
        !             8: if test "$PHP_PHTTPD" != "no"; then
        !             9:   if test ! -d $PHP_PHTTPD ; then
        !            10:     AC_MSG_ERROR([You did not specify a directory])
        !            11:   fi
        !            12:   PHP_BUILD_THREAD_SAFE
        !            13:   PHP_ADD_INCLUDE($PHP_PHTTPD/include)
        !            14:   AC_DEFINE(HAVE_PHTTPD, 1, [Whether you have phttpd])
        !            15:   PHP_SELECT_SAPI(phttpd, shared, phttpd.c)
        !            16:   INSTALL_IT="\$(INSTALL) -m 0755 $SAPI_SHARED \$(INSTALL_ROOT)$PHP_PHTTPD/modules/"
        !            17: fi
        !            18: 
        !            19: dnl ## Local Variables:
        !            20: dnl ## tab-width: 4
        !            21: dnl ## End:

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