blob: 29f54923bf0d64baeed4a82687c03eb0f329da6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
dnl $Id$
AC_MSG_CHECKING(whether to include the bundled dbase library)
AC_ARG_WITH(dbase,
[ --with-dbase Include the bundled dbase library],
[
if test "$withval" = "yes"; then
AC_MSG_RESULT(yes)
AC_DEFINE(DBASE,1)
PHP_EXTENSION(dbase)
else
AC_MSG_RESULT(no)
AC_DEFINE(DBASE,0)
DBASE_LIB=
fi
],[
AC_MSG_RESULT(no)
AC_DEFINE(DBASE,0)
DBASE_LIB=
])
AC_SUBST(DBASE_LIB)
|