mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
14 lines
281 B
Plaintext
14 lines
281 B
Plaintext
dnl
|
|
dnl $Id$
|
|
dnl
|
|
|
|
AC_ARG_WITH(dbase,[],[enable_dbase=$withval])
|
|
|
|
PHP_ARG_ENABLE(dbase,whether to enable dbase support,
|
|
[ --enable-dbase Enable the bundled dbase library])
|
|
|
|
if test "$PHP_DBASE" = "yes"; then
|
|
AC_DEFINE(DBASE,1,[ ])
|
|
PHP_EXTENSION(dbase, $ext_shared)
|
|
fi
|