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