blob: 7a33750b90da50c372efe6a402b276b6b5e7341e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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
|