xref: /PHP-7.4/ext/calendar/config.m4 (revision 75fb7486)
1PHP_ARG_ENABLE([calendar],
2  [whether to enable calendar conversion support],
3  [AS_HELP_STRING([--enable-calendar],
4    [Enable support for calendar conversion])])
5
6if test "$PHP_CALENDAR" = "yes"; then
7  AC_DEFINE(HAVE_CALENDAR,1,[ ])
8  PHP_NEW_EXTENSION(calendar, calendar.c dow.c french.c gregor.c jewish.c julian.c easter.c cal_unix.c, $ext_shared)
9fi
10