mirror of
https://github.com/php/php-src.git
synced 2024-11-26 03:16:33 +08:00
12 lines
291 B
Plaintext
12 lines
291 B
Plaintext
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
|