1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 15:08:16 +02:00

Make ext/calendar optional.

This commit is contained in:
Andrei Zmievski
2000-04-19 15:53:09 +00:00
parent 19a9577901
commit 284b0ae24e
+13 -1
View File
@@ -1,2 +1,14 @@
dnl $Id$
PHP_EXTENSION(calendar)
AC_MSG_CHECKING(whether to enable calendar conversion support)
AC_ARG_ENABLE(calendar,
[ --enable-calendar Enable support for calendar conversion],
if test "$withval" = "yes"; then
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_CALENDAR,1,[ ])
PHP_EXTENSION(calendar)
fi
[
],[
AC_MSG_RESULT(no)
])