Hi,
just a quick note on 5.3.11 planning:
We will migrate to git in roughly one week. I'll give it a few days to
verify migration works fine afterwards and then start the 5.3.11
process. Best is to get outstanding fixes in early. ;-)
Please ping me if there are outstanding fixes you desperately want to
get in.
johannes
hi,
See security@, there are two that must be in.
2012/3/6 Johannes Schlüter johannes@php.net:
Hi,
just a quick note on 5.3.11 planning:
We will migrate to git in roughly one week. I'll give it a few days to
verify migration works fine afterwards and then start the 5.3.11
process. Best is to get outstanding fixes in early. ;-)Please ping me if there are outstanding fixes you desperately want to
get in.johannes
--
--
Pierre
@pierrejoye | http://blog.thepimp.net | http://www.libgd.org
as well as the magic quotes regression issue. I assigned it to you
yesterday, patch there.
2012/3/6 Pierre Joye pierre.php@gmail.com:
hi,
See security@, there are two that must be in.
2012/3/6 Johannes Schlüter johannes@php.net:
Hi,
just a quick note on 5.3.11 planning:
We will migrate to git in roughly one week. I'll give it a few days to
verify migration works fine afterwards and then start the 5.3.11
process. Best is to get outstanding fixes in early. ;-)Please ping me if there are outstanding fixes you desperately want to
get in.johannes
--
--
Pierre@pierrejoye | http://blog.thepimp.net | http://www.libgd.org
--
Pierre
@pierrejoye | http://blog.thepimp.net | http://www.libgd.org
just a quick note on 5.3.11 planning:
We will migrate to git in roughly one week. I'll give it a few days to
verify migration works fine afterwards and then start the 5.3.11
process. Best is to get outstanding fixes in early. ;-)
I'd like to get my simple ZEND_DONT_UNLOAD_MODULES patch in:
Index: Zend/zend_API.c
--- Zend/zend_API.c (revision 322920)
+++ Zend/zend_API.c (working copy)
@@ -2134,7 +2134,7 @@
#if HAVE_LIBDL
#if !(defined(NETWARE) && defined(APACHE_1_BUILD))
- if (module->handle) {
- if (module->handle && !getenv("ZEND_DONT_UNLOAD_MODULES")) {
DL_UNLOAD(module->handle);
}
#endif
cheers,
Derick
--
http://derickrethans.nl | http://xdebug.org
Like Xdebug? Consider a donation: http://xdebug.org/donate.php
twitter: @derickr and @xdebug
2012/3/6 Derick Rethans derick@php.net
just a quick note on 5.3.11 planning:
We will migrate to git in roughly one week. I'll give it a few days to
verify migration works fine afterwards and then start the 5.3.11
process. Best is to get outstanding fixes in early. ;-)I'd like to get my simple ZEND_DONT_UNLOAD_MODULES patch in:
Index: Zend/zend_API.c
--- Zend/zend_API.c (revision 322920)
+++ Zend/zend_API.c (working copy)
@@ -2134,7 +2134,7 @@#if HAVE_LIBDL
#if !(defined(NETWARE) && defined(APACHE_1_BUILD))
if (module->handle) {
if (module->handle && !getenv("ZEND_DONT_UNLOAD_MODULES")) { DL_UNLOAD(module->handle); }
#endif
cheers,
Derick--
http://derickrethans.nl | http://xdebug.org
Like Xdebug? Consider a donation: http://xdebug.org/donate.php
twitter: @derickr and @xdebug--
+10000 for this one :)
Julien
Could you explain the use case for this? Just for my own curiosity, I am sure you have a valid reason for it.
I have always found that only bad things happen when you let extensions/modules/shared libs stay loaded during the double load of apache.
Thanks!
Brian
just a quick note on 5.3.11 planning:
We will migrate to git in roughly one week. I'll give it a few days to
verify migration works fine afterwards and then start the 5.3.11
process. Best is to get outstanding fixes in early. ;-)I'd like to get my simple ZEND_DONT_UNLOAD_MODULES patch in:
Index: Zend/zend_API.c
--- Zend/zend_API.c (revision 322920)
+++ Zend/zend_API.c (working copy)
@@ -2134,7 +2134,7 @@#if HAVE_LIBDL
#if !(defined(NETWARE) && defined(APACHE_1_BUILD))
- if (module->handle) {
- if (module->handle && !getenv("ZEND_DONT_UNLOAD_MODULES")) {
DL_UNLOAD(module->handle);
}
#endifcheers,
Derick--
http://derickrethans.nl | http://xdebug.org
Like Xdebug? Consider a donation: http://xdebug.org/donate.php
twitter: @derickr and @xdebug
Could you explain the use case for this? Just for my own curiosity, I
am sure you have a valid reason for it.I have always found that only bad things happen when you let
extensions/modules/shared libs stay loaded during the double load of
apache.
Well, it's more meant for debugging only (on the command line):
http://drck.me/vlgrnd-shared-8po
cheers,
Derick
--
http://derickrethans.nl | http://xdebug.org
Like Xdebug? Consider a donation: http://xdebug.org/donate.php
twitter: @derickr and @xdebug
I'd like to get my simple ZEND_DONT_UNLOAD_MODULES patch in:
Yeah, it's proven and useful. Please also add the part from
README.ZEND_MM.
johannes