summaryrefslogtreecommitdiff
path: root/ext/dbase/config.m4
blob: 1241888987cfeacf5250ae4b28d007295498c0a3 (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)
])