Browse Source

Forgot to mention: Added configure time checking for bcmath package. (Thanks, Sascha!)

@ Added configure time checking for bcmath package
PHP-4.0.5
Joey Smith 27 years ago
parent
commit
b2266104b1
  1. 4
      ext/bcmath/config.m4

4
ext/bcmath/config.m4

@ -12,10 +12,10 @@ AC_ARG_ENABLE(bcmath,
PHP_EXTENSION(bcmath)
if test -f $srcdir/ext/bcmath/number.c; then
if grep "Dummy File" $srcdir/ext/bcmath/number.c >/dev/null; then
AC_MSG_ERROR(You do not have the bcmath package. Please read the README-BCMATH.)
AC_MSG_ERROR(You do not have the bcmath package. Please read the README-BCMATH file.)
fi
else
AC_MSG_ERROR(You do not have the bcmath package. Please read the README-BCMATH.)
AC_MSG_ERROR(You do not have the bcmath package. Please read the README-BCMATH file.)
fi
else
AC_DEFINE(WITH_BCMATH, 0,[ ])

Loading…
Cancel
Save