mirror of
https://github.com/php/php-src.git
synced 2024-12-17 05:50:14 +08:00
11 lines
277 B
Plaintext
11 lines
277 B
Plaintext
|
// $Id$
|
||
|
// 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, 'Have calendar');
|
||
|
}
|