mirror of
https://github.com/php/php-src.git
synced 2024-12-14 04:16:30 +08:00
11 lines
362 B
JavaScript
11 lines
362 B
JavaScript
// $Id$
|
|
// vim:ft=javascript
|
|
|
|
ARG_ENABLE("session", "session support", "yes");
|
|
|
|
if (PHP_SESSION == "yes") {
|
|
EXTENSION("session", "mod_user_class.c session.c mod_files.c mod_mm.c mod_user.c", false /* never shared */);
|
|
AC_DEFINE("HAVE_PHP_SESSION", 1, "Session support");
|
|
PHP_INSTALL_HEADERS("ext/session/", "mod_mm.h php_session.h mod_files.h mod_user.h");
|
|
}
|