[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/exif exif.c

2002-06-22 Thread Markus Fischer
On Sat, Jun 22, 2002 at 08:53:12PM +0200, Marcus Börger wrote : > Question: > > if i use > $width=$height=$image_type=0; > then all three receive the value of $image_type. Where is the failure? Because they it's only one variable and two references ... We've seen this behaviour also wit

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/exif exif.c

2002-06-22 Thread Marcus Börger
At 20:38 22.06.2002, Marcus Börger wrote: >helly Sat Jun 22 14:38:34 2002 EDT > > Modified files: > /php4/ext/exif exif.c > Log: > @exif_read_data returns mime-type now for image and thumbnail And > exif_thumbnail now optionally returns imagetype. (Marcus) > #So now you

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/exif exif.c

2002-04-14 Thread Marcus Börger
Could it be the other way round? I have configured ... --enable-debug \ --enable-experimental-zts \ --enable-tsrm-pth \ --enable-inline-optimization \ CFLAGS=-Wall \ marcus At 17:48 13.04.2002, you wrote: > Maybe you didn't tested ZTS mode? > >On Sat, Apr 13, 2002 at 02:39:36

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/exif exif.c

2002-04-13 Thread Markus Fischer
Maybe you didn't tested ZTS mode? On Sat, Apr 13, 2002 at 02:39:36AM +0200, Marcus Börger wrote : > Sure i do and it worked fine for all tests!? > > marcus > > At 00:02 13.04.2002, you wrote: > >sniper Fri Apr 12 18:02:30 2002 EDT > > > > Modified files: > >/php4/ext/exif

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/exif exif.c

2002-04-13 Thread Marcus Börger
Sure i do and it worked fine for all tests!? marcus At 00:02 13.04.2002, you wrote: >sniper Fri Apr 12 18:02:30 2002 EDT > > Modified files: > /php4/ext/exif exif.c > Log: > Fix the build. > # Marcus, do you TEST build at all before you commit?! > > >Index: php4/ext/exi

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/exif exif.c

2002-03-20 Thread Marcus Börger
"Marcus =?utf-8?B?QsO2cmdlcg==?=" <[EMAIL PROTECTED]> >Cc: "Wez Furlong" <[EMAIL PROTECTED]>, [EMAIL PROTECTED] >Subject: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/exif exif.c > >I've added a flag to make_seekable that allows the caller to indic

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/exif exif.c

2002-03-19 Thread Wez Furlong
I've added a flag to make_seekable that allows the caller to indicate that they prefer a file-based stream as opposed to a temp_stream and enabled the temp streams now in CVS as the default seekable stream. (I forgot to mention that part in my latest commit message). I've also given the temp_stre

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/exif exif.c

2002-03-18 Thread Marcus Börger
At 21:52 18.03.2002, you wrote: > > 2) for seekable streams the copy function should seek to 0 if > > copying all, shouldn't it? > >No: as an example consider some code that is performing an HTTP request. >It might want to store the headers in one stream and the body in another. >So, it would manu

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/exif exif.c

2002-03-18 Thread Wez Furlong
On 18/03/02, "Marcus Börger" wrote: > If have the following annotations to streams: > 1) i do not like the style of how to determine the kine of a stream > instead of > #define php_stream_is(stream, anops)((stream)->ops == anops) > #define PHP_STREAM_IS_STDIO &php_stream_stdio_ops >

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/exif exif.c

2002-03-17 Thread Marcus Börger
Hi Wez, Thanks for your comments. After having some problems with the new functions i switched to use php_stream_open_wrapper( STREAM_MUST_SEEK now. If have the following annotations to streams: 1) i do not like the style of how to determine the kine of a stream instead of #define php_stream_is(st