blob: 6222bfba2fb002508f419d6e65b4e62c878d3d2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
dnl
dnl $Id$
dnl
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_NEW_EXTENSION(filepro, filepro.c, $ext_shared)
fi
|