mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
- added support for externally built modules, - improved support for in-tree shared modules, - fixed diversion bugs, - configure displays some informative messages, - faster static build (libtool isn't used anymore for compiling non-PIC objects), - dependencies comparable to automake's without requiring GNU make or GCC, - working make clean for non-GNU makes.
19 lines
352 B
Plaintext
19 lines
352 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)
|
|
])
|