blob: 06788be7576d4c1117c40d751b16df3f854c6165 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
dnl
dnl $Id$
dnl
PHP_ARG_WITH(tux,,
[ --with-tux=MODULEDIR Build PHP as a TUX module (Linux only)], no, no)
AC_MSG_CHECKING([for TUX])
if test "$PHP_TUX" != "no"; then
INSTALL_IT="\$(INSTALL) -m 0755 $SAPI_SHARED $PHP_TUX/php5.tux.so"
AC_CHECK_HEADERS(tuxmodule.h,[:],[AC_MSG_ERROR([Cannot find tuxmodule.h])])
PHP_SELECT_SAPI(tux, shared, php_tux.c)
AC_MSG_RESULT([$PHP_TUX])
else
AC_MSG_RESULT(no)
fi
|