mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
12 lines
289 B
Plaintext
12 lines
289 B
Plaintext
dnl
|
|
dnl $Id$
|
|
dnl
|
|
|
|
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_NEW_EXTENSION(dbase, dbf_head.c dbf_rec.c dbf_misc.c dbf_ndx.c dbase.c, $ext_shared)
|
|
fi
|