mirror of
https://github.com/php/php-src.git
synced 2024-11-28 20:34:29 +08:00
05b9b20ed8
Will follow up to internals@ shortly.
12 lines
260 B
JavaScript
12 lines
260 B
JavaScript
// $Id$
|
|
// vim:ft=javascript
|
|
|
|
ARG_ENABLE("session", "session support", "yes");
|
|
|
|
if (PHP_SESSION == "yes") {
|
|
EXTENSION("session", "session.c mod_files.c mod_mm.c mod_user.c", false /* never shared */);
|
|
AC_DEFINE("HAVE_PHP_SESSION", 1, "Session support");
|
|
}
|
|
|
|
|