Return to config.m4 CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / sapi / nsapi |
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(nsapi, for NSAPI support, ! 6: [ --with-nsapi=DIR Build PHP as NSAPI module for Netscape/iPlanet/Sun Webserver], no, no) ! 7: ! 8: if test "$PHP_NSAPI" != "no"; then ! 9: if test ! -d $PHP_NSAPI/bin ; then ! 10: AC_MSG_ERROR(Please specify the path to the root of your Netscape/iPlanet/Sun Webserver using --with-nsapi=DIR) ! 11: fi ! 12: AC_MSG_CHECKING([for NSAPI include files]) ! 13: if test -d $PHP_NSAPI/include ; then ! 14: NSAPI_INC_DIR="$PHP_NSAPI/include" ! 15: AC_MSG_RESULT([Netscape 3.x / Sun 7.x style]) ! 16: AC_CHECK_HEADERS([$NSAPI_INC_DIR/nsapi.h]) ! 17: NSAPI_INCLUDE="-I$NSAPI_INC_DIR" ! 18: fi ! 19: if test -d $PHP_NSAPI/plugins/include ; then ! 20: NSAPI_INC_DIR="$PHP_NSAPI/plugins/include" ! 21: AC_MSG_RESULT([iPlanet 4.x / Sun 6.x style]) ! 22: AC_CHECK_HEADERS([$NSAPI_INC_DIR/nsapi.h]) ! 23: NSAPI_INCLUDE="$NSAPI_INCLUDE -I$NSAPI_INC_DIR" ! 24: fi ! 25: if test -z "$NSAPI_INCLUDE"; then ! 26: AC_MSG_ERROR([Please check you have nsapi.h in either $PHP_NSAPI/include or $PHP_NSAPI/plugins/include]) ! 27: fi ! 28: ! 29: PHP_EVAL_INCLINE($NSAPI_INCLUDE) ! 30: PHP_BUILD_THREAD_SAFE ! 31: AC_DEFINE(HAVE_NSAPI, 1, [Whether you have a Netscape/iPlanet/Sun Webserver]) ! 32: PHP_SELECT_SAPI(nsapi, shared, nsapi.c) ! 33: INSTALL_IT="\$(INSTALL) -m 0755 $SAPI_SHARED \$(INSTALL_ROOT)$PHP_NSAPI/bin/" ! 34: fi ! 35: ! 36: ! 37: dnl ## Local Variables: ! 38: dnl ## tab-width: 4 ! 39: dnl ## End: