[PHP-DEV] __sleep and hidden variables

2004-12-12 Thread Alan Knowles
I'm trying to serialize DBDO objects, which contain alot of hidden information at present, within the bound object. looking at the serialization code, it appears to only access the zval.value.obj.properties directly, rather than calling the property_read handler on the object. - are there any

Re: [PHP-DEV] [PATCH] stream_socket_pair

2004-12-12 Thread Wez Furlong
Committed, complete with configure checks. --Wez. On Wed, 08 Dec 2004 19:36:54 +0100, six <[EMAIL PROTECTED]> wrote: > i'm reposting this patch which adds the stream_socket_pair function, > I've posted it one month ago, made some requested modifications but it > seems nobody commited it so if yo

RE: [PHP-DEV] ./configure, PHP, SuSE and the AMD64

2004-12-12 Thread Hans Zaunere
> I've committed the core changes to add --with-libdir and updated most of > the extensions which I could test here. > > Hans, can you test out HEAD on your SLES box? You should just use > --with-libdir=lib64 and then e.g. --with-mysql=/usr will correctly pick > up the system MySQL libraries in

RE: [PHP-DEV] ./configure, PHP, SuSE and the AMD64

2004-12-12 Thread Jani Taskinen
On Sun, 12 Dec 2004, Hans Zaunere wrote: >-- the latest RCs of both 4.3.10 and 5.0.3 work properly, and will >always use libs in /lib64 or /usr/lib64, and ./configure and compile >work correctly. Interesting to hear that 4.3.10 works as it hasn't been touched at all? (I might have missed

RE: [PHP-DEV] ./configure, PHP, SuSE and the AMD64

2004-12-12 Thread Hans Zaunere
> >-- the latest RCs of both 4.3.10 and 5.0.3 work properly, and will > >always use libs in /lib64 or /usr/lib64, and ./configure and compile > >work correctly. > > Interesting to hear that 4.3.10 works as it hasn't been touched at all? > (I might have missed some fix, but AFAICT, this wa

RE: [PHP-DEV] ./configure, PHP, SuSE and the AMD64

2004-12-12 Thread Hans Zaunere
> > I've committed the core changes to add --with-libdir and updated most of > > the extensions which I could test here. > > > > Hans, can you test out HEAD on your SLES box? You should just use > > --with-libdir=lib64 and then e.g. --with-mysql=/usr will correctly pick > > up the system MySQL li

Re: [PHP-DEV] __sleep and hidden variables

2004-12-12 Thread Marcus Boerger
Hello Alan, the current plan is to write two new handlers that store/read the object from a string and have the old handlers as a fallback if implemented. regards marcus Sunday, December 12, 2004, 2:41:50 PM, you wrote: > I'm trying to serialize DBDO objects, which contain alot of hidden > i