[PHP-DEV] [Fwd: [PHP-CVS] Apache2Filter on Linux]

2002-04-14 Thread Sebastian Bergmann
This should have gone here, sorry. Sebastian Bergmann wrote: In recent days I tested the Apache2Filter on Windows, where it currently works better than not so long ago, ie. before Aaron and Cliff came along :-) Yesterday I set up Linux on my notebook, and made fresh checkouts of Apache 2

Re: [PHP-DEV] T1lib thread safety

2002-04-14 Thread Shane Caraveo
It would be nice to have it as a flag in the module, like the api numbers. Shane Stig S. Bakken wrote: Should we print a warning at the end of configure listing what libraries you are trying to link with that we know are not thread safe? - Stig On Sat, 2002-04-13 at 07:00, Rasmus

[PHP-DEV] ImageTTFText stupid implementation.

2002-04-14 Thread Vergoz Michael (SYSDOOR)
Hello list, The function ImageTTFText do a anti-aliasing automaticaly. Is stupid, cuz, for exemple i using a 'pixel typografi' and i don't need the anti-aliasing. Perhaps any function can stop the anti-aliasing for this function or perhaps i'm stupid ;) Regards,Vergoz

Re: [PHP-DEV] ImageTTFText stupid implementation.

2002-04-14 Thread Markus Fischer
RTFM: From: http://www.php.net/manual/en/function.imagettftext.php Col is the color index. Using the negative of a color index has the effect of turning off antialiasing. So, yes, you're the stupid one. Next time ask on php-general@ ;-) On Sun, Apr 14, 2002 at

Re: [PHP-DEV] ImageTTFText stupid implementation.

2002-04-14 Thread Vergoz Michael (SYSDOOR)
heh i'm okay, but how to change the font color right now ??? Cordialement, Vergoz Michael http://www.sysdoor.com [EMAIL PROTECTED] - Original Message - From: Markus Fischer [EMAIL PROTECTED] To: Vergoz Michael (SYSDOOR) [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Sunday, April 14, 2002

[PHP-DEV] Constant Classes

2002-04-14 Thread medvitz
This may have been addressed already but: If I have the following code: class Beer { ... } $a = new Beer(); define('BaseBeer', $a); $b = BaseBeer; Will $a $b be the same object or will $b be a copy. (Under ZE2). Thx. Medvitz -- PHP Development Mailing List http://www.php.net/

Re: [PHP-DEV] Constant Classes

2002-04-14 Thread fabwash
Definitely a copy if you're drunk after all those beers.. (sorry couldn't resist) Fab. - Original Message - From: medvitz [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, April 14, 2002 10:33 AM Subject: [PHP-DEV] Constant Classes This may have been addressed already but:

Re: [PHP-DEV] Re: cvs: php4 /sapi/apache config.m4 /sapi/apache2filterconfig.m4

2002-04-14 Thread Jani Taskinen
I made the configure stop if someone tries using the --with-apache with apache2. (in 4.2.0) In HEAD it fails too but with different message. Adding static module build for Apache2 is not that easy after all..to get it work, I had to make some pretty ugly hacks and

[PHP-DEV] Re: Apache2Filter on Linux

2002-04-14 Thread Cliff Woolley
On Sun, 14 Apr 2002, Sebastian Bergmann wrote: In recent days I tested the Apache2Filter on Windows, where it currently works better than not so long ago, ie. before Aaron and Cliff came along :-) Yesterday I set up Linux on my notebook, and made fresh checkouts of Apache 2 and

[PHP-DEV] Re: [PHP-QA] PHP Test results

2002-04-14 Thread Melvyn Sopacua
On Sun, 14 Apr 2002, Melvyn Sopacua wrote: On Sun, 14 Apr 2002 [EMAIL PROTECTED] wrote: Hello Melvyn, should be fixed now, can you test the latest CVS (the branch PHP_4_2_0) and HEAD ? PHP_4_2_0 OK. HEAD doesn't compile for me, allthough I can fixit. poll is not a standard

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:36AM

Re: [PHP-DEV] Re: Apache2Filter on Linux

2002-04-14 Thread Cliff Woolley
On Sun, 14 Apr 2002, Sebastian Bergmann wrote: Cliff Woolley wrote: PS: What MPM are you using? Does changing it make a difference? The default one. Haven't tried changing it. Prefork. Okay, I've seen that problem, too. I'll work on it. It *could* be related to the libtool DSO

Re: [PHP-DEV] C++ Class Wrapping

2002-04-14 Thread David Eriksson
On Sat, 13 Apr 2002, medvitz wrote: Is there a way to wrap existing c++ classes into a PHP class (via an extension) ? You may want to look at the Universe PHP extension. It is 90% C++ code. http://universe.2good.nu It contains a special part called Zpp to create a PHP class with a

[PHP-DEV] poll4bsd

2002-04-14 Thread Wez Furlong
Thanks for the poll emulation, but it doesn't make sense to include it in PHP: main/network.c only uses poll() to check for POLLHUP, which is not implemented by that library. Thats the reason why I added it in addition to the select() call that (indirectly!) follows the poll call. The solution

[PHP-DEV] PHP 4.2.0 RC4

2002-04-14 Thread Derick Rethans
Hello, this evening RC4 was released, you can find it at www.php.net/~derick . Please test as much as possible; if everything goes alright, RC4 will be the tag on which the release will be baed. Packing will be done on Friday April 19, 2002 and the release will follow 3 days later. regards,

Re: [PHP-DEV] Re: cvs: php4 / run-tests.php

2002-04-14 Thread Marcus Börger
I think we must do something to the tests. We have either cgi (only this could test post/get) and cli which is available for whatever target you build. But they behave different: cli coes not change the execution directory cgi does whether i add -C or not. The problem is that all tests must have

[PHP-DEV] Re: poll4bsd

2002-04-14 Thread Melvyn Sopacua
On Sun, 14 Apr 2002, Wez Furlong wrote: Thanks for the poll emulation, but it doesn't make sense to include it in PHP: main/network.c only uses poll() to check for POLLHUP, which is not implemented by that library. Hmm, that explains the pth trouble. I guess I better move that lib

RE: [PHP-DEV] Re: cvs: php4 / run-tests.php

2002-04-14 Thread James Cox
I am working on tests. -- james -Original Message- From: Marcus Borger [mailto:[EMAIL PROTECTED]] Sent: Sunday, April 14, 2002 9:30 PM To: [EMAIL PROTECTED] Subject: Re: [PHP-DEV] Re: cvs: php4 / run-tests.php I think we must do something to the tests. We have either cgi (only this

Re: [PHP-DEV] Constant Classes

2002-04-14 Thread Zeev Suraski
It'll be the same object. At 17:33 14/04/2002, medvitz wrote: This may have been addressed already but: If I have the following code: class Beer { ... } $a = new Beer(); define('BaseBeer', $a); $b = BaseBeer; Will $a $b be the same object or will $b be a copy. (Under ZE2). Thx.