mirror of
https://github.com/php/php-src.git
synced 2024-11-29 04:46:07 +08:00
2c99bef442
what the respective define does into the AC_DEFINE macro. I.e. AC_DEFINE(HAVE_FOO, 1, [Whether you have FOO])
19 lines
364 B
Plaintext
19 lines
364 B
Plaintext
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,[ ])
|
|
])
|