mirror of
https://github.com/php/php-src.git
synced 2024-11-29 04:46:07 +08:00
12 lines
260 B
Plaintext
12 lines
260 B
Plaintext
|
// $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");
|
||
|
}
|
||
|
|
||
|
|