mirror of
https://github.com/php/php-src.git
synced 2024-11-26 03:16:33 +08:00
809198b916
extensions.
21 lines
542 B
Plaintext
21 lines
542 B
Plaintext
dnl $Id$
|
|
|
|
AC_MSG_CHECKING(whether to enable bc style precision math functions)
|
|
AC_ARG_ENABLE(bcmath,
|
|
[ --enable-bcmath Compile with bc style precision math functions.
|
|
Read README-BCMATH for instructions on how to
|
|
get this module installed. ],
|
|
[
|
|
if test "$enableval" = "yes"; then
|
|
AC_DEFINE(WITH_BCMATH, 1)
|
|
AC_MSG_RESULT(yes)
|
|
PHP_EXTENSION(bcmath)
|
|
else
|
|
AC_DEFINE(WITH_BCMATH, 0)
|
|
AC_MSG_RESULT(no)
|
|
fi
|
|
],[
|
|
AC_DEFINE(WITH_BCMATH, 0)
|
|
AC_MSG_RESULT(no)
|
|
])
|