RE: [PHP-DEV] [PATCH] ext/gettext/gettext.dsp

2003-03-20 Thread Nathan Fredrickson
Here's the patch. (Attachment extension had to be .txt) > -Original Message- > From: Nathan Fredrickson [mailto:[EMAIL PROTECTED] > Sent: Friday, March 21, 2003 2:39 AM > To: php.internals > Subject: [PHP-DEV] [PATCH] ext/gettext/gettext.dsp > > > The attached patch contains a couple of ch

[PHP-DEV] [PATCH] ext/gettext/gettext.dsp

2003-03-20 Thread Nathan Fredrickson
The attached patch contains a couple of changes to win32 project file for the gettext extension. Add defines necessary to enable plural gettext functions on win32. These functions exist in the current libintl-1.dll, but are currently unaccessible from php. /D HAVE_NGETTEXT=1 /D HAVE_DNGETTEXT=1

Re: [PHP-DEV] CVS Account Request: imran

2003-03-20 Thread David Brown
On Thu, Mar 20, 2003 at 07:54:14AM -, imran asghar wrote: | to know with new bugs. If you're looking for information on existing PHP bugs (or are interested in reporting new ones), you probably want http://bugs.php.net/, not a CVS account. -- PHP Internals - PHP Runtime Development Mailing

[PHP-DEV] server crashes - Apache/2.0.44 (Win32) w PHP/4.2.4-dev

2003-03-20 Thread Frederic . Hahn
Hi List! I did post this to the apache list already - but noone could help me - maybe one of you can. I am not sure whether this is an apache or php or even w2k problem - maybe anything like this has happend to you already. Thank you! > Hi apache users! > > We have a strange problem with ou

[PHP-DEV] Pb __clone method crash

2003-03-20 Thread Fabrice Le Coz
Hi, return of the __clone() method crash. name = $name; } function __clone() { echo "cloning ...\n"; $this->name = "test ".$that->name; } } $test = new test("essai"); $test1 = $test; $test2 = $test->__clone(); $test1->name = "arthur"; echo "test : $test->name\n"