mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
This is a follow-up of 668606816f
(GH-21001).
The SPL extension is no longer needed to be listed among dependencies.
The https://bugs.php.net/53141 is tested in
ext/session/tests/bug53141.phpt.
Additionally:
- Added missing inclusion guards to Zend/zend_autoload.h
11 lines
454 B
JavaScript
11 lines
454 B
JavaScript
// 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_user.c", false /* never shared */, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
|
|
ADD_EXTENSION_DEP('session', 'date');
|
|
AC_DEFINE("HAVE_PHP_SESSION", 1, "Define to 1 if the PHP extension 'session' is available.");
|
|
PHP_INSTALL_HEADERS("ext/session", "php_session.h mod_files.h mod_user.h");
|
|
}
|