php-src/sapi/tux/config.m4
Sascha Schumann 9d9d39a0de Please welcome the new build system.
If you encounter any problems, please make sure to email sas@php.net
directly.

An introduction can be found on

http://schumann.cx/buildv5.txt
2002-03-07 14:20:02 +00:00

19 lines
387 B
Plaintext

dnl
dnl $Id$
dnl
PHP_TUX=no
AC_ARG_WITH(tux,
[ --with-tux=MODULEDIR Build PHP as a TUX module (Linux only)],[
INSTALL_IT="\$(INSTALL) -m 0755 $SAPI_SHARED $withval/php4.tux.so"
AC_CHECK_HEADERS(tuxmodule.h,[:],[AC_MSG_ERROR([Cannot find tuxmodule.h])])
PHP_SELECT_SAPI(tux, shared, php_tux.c)
PHP_TUX=yes
])
AC_MSG_CHECKING(for TUX)
AC_MSG_RESULT($PHP_TUX)
unset PHP_TUX