blob: cb0452526975bcc620990dda6fb5bad1c7f186dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
dnl $Id$
AC_ARG_WITH(filepro,[],[enable_filepro=$withval])
PHP_ARG_ENABLE(filepro,whether to enable the bundled filePro support,
[ --enable-filepro Enable the bundled read-only filePro support])
if test "$PHP_FILEPRO" = "yes"; then
AC_DEFINE(HAVE_FILEPRO, 1, [ ])
PHP_EXTENSION(filepro)
else
AC_DEFINE(HAVE_FILEPRO, 0, [ ])
fi
|