blob: b8746c68254402c3f2146d805d9a42787192499a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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,[ ])
fi
],[
AC_MSG_RESULT(no)
AC_DEFINE(DBASE,0,[ ])
])
|