php-src/ext/calendar/config.m4
Peter Kokot f66feaec0f
Sync HAVE_<extension> help texts (#15167)
This syncs all help texts of extension preprocessor macros to the same
style "Define to 1 if the PHP extension '<ext>' is available.".
[skip ci]
2024-08-02 01:41:47 +02:00

13 lines
437 B
Plaintext

PHP_ARG_ENABLE([calendar],
[whether to enable calendar conversion support],
[AS_HELP_STRING([--enable-calendar],
[Enable support for calendar conversion])])
if test "$PHP_CALENDAR" = "yes"; then
AC_DEFINE([HAVE_CALENDAR], [1],
[Define to 1 if the PHP extension 'calendar' is available.])
PHP_NEW_EXTENSION([calendar],
[calendar.c dow.c french.c gregor.c jewish.c julian.c easter.c cal_unix.c],
[$ext_shared])
fi