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