php-src/ext/dbase/config.m4
Sascha Schumann 1f822b98ce Welcome PHP_ARG_ENABLE and PHP_ARG_WITH. They are there to replace the common
AC_MSG_CHECKING, AC_ARG_[ENABLE,WITH], AC_MSG_RESULT trio.
2000-03-27 23:33:38 +00:00

14 lines
302 B
Plaintext

dnl $Id$
AC_ARG_WITH(dbase,[],[enable_dbase=$withval])
PHP_ARG_ENABLE(dbase,whether to enable the bundled dbase library,
[ --enable-dbase Enable the bundled dbase library])
if test "$PHP_DBASE" = "yes"; then
AC_DEFINE(DBASE,1,[ ])
PHP_EXTENSION(dbase)
else
AC_DEFINE(DBASE,0,[ ])
fi