config.m4 357 B

123456789
  1. PHP_ARG_ENABLE([calendar],
  2. [whether to enable calendar conversion support],
  3. [AS_HELP_STRING([--enable-calendar],
  4. [Enable support for calendar conversion])])
  5. if test "$PHP_CALENDAR" = "yes"; then
  6. AC_DEFINE(HAVE_CALENDAR,1,[ ])
  7. PHP_NEW_EXTENSION(calendar, calendar.c dow.c french.c gregor.c jewish.c julian.c easter.c cal_unix.c, $ext_shared)
  8. fi