mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
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]
10 lines
313 B
JavaScript
10 lines
313 B
JavaScript
// vim:ft=javascript
|
|
|
|
ARG_ENABLE("calendar", "calendar conversion support", "yes");
|
|
|
|
if (PHP_CALENDAR == "yes") {
|
|
EXTENSION("calendar", "calendar.c dow.c french.c gregor.c jewish.c \
|
|
julian.c easter.c cal_unix.c");
|
|
AC_DEFINE('HAVE_CALENDAR', 1, "Define to 1 if the PHP extension 'calendar' is available.");
|
|
}
|