felipe Tue, 02 Nov 2010 20:51:02 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=305038
Log: - Fixed config.m4 to complete the fix for bug #53141 (thanks Johannes) Bug: http://bugs.php.net/53141 (Closed) autoload misbehaves if called from closing session Changed paths: U php/php-src/branches/PHP_5_3/ext/session/config.m4 U php/php-src/trunk/ext/session/config.m4 Modified: php/php-src/branches/PHP_5_3/ext/session/config.m4 =================================================================== --- php/php-src/branches/PHP_5_3/ext/session/config.m4 2010-11-02 19:15:05 UTC (rev 305037) +++ php/php-src/branches/PHP_5_3/ext/session/config.m4 2010-11-02 20:51:02 UTC (rev 305038) @@ -13,6 +13,7 @@ PHP_PREAD_TEST PHP_NEW_EXTENSION(session, session.c mod_files.c mod_mm.c mod_user.c, $ext_shared) PHP_ADD_EXTENSION_DEP(session, hash, true) + PHP_ADD_EXTENSION_DEP(session, spl) PHP_SUBST(SESSION_SHARED_LIBADD) PHP_INSTALL_HEADERS(ext/session, [php_session.h mod_files.h mod_user.h]) AC_DEFINE(HAVE_PHP_SESSION,1,[ ]) Modified: php/php-src/trunk/ext/session/config.m4 =================================================================== --- php/php-src/trunk/ext/session/config.m4 2010-11-02 19:15:05 UTC (rev 305037) +++ php/php-src/trunk/ext/session/config.m4 2010-11-02 20:51:02 UTC (rev 305038) @@ -13,6 +13,7 @@ PHP_PREAD_TEST PHP_NEW_EXTENSION(session, session.c mod_files.c mod_mm.c mod_user.c, $ext_shared) PHP_ADD_EXTENSION_DEP(session, hash, true) + PHP_ADD_EXTENSION_DEP(session, spl) PHP_SUBST(SESSION_SHARED_LIBADD) PHP_INSTALL_HEADERS(ext/session, [php_session.h mod_files.h mod_user.h]) AC_DEFINE(HAVE_PHP_SESSION,1,[ ])
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php