Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:6536 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 57001 invoked by uid 1010); 18 Dec 2003 13:43:50 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 56947 invoked from network); 18 Dec 2003 13:43:50 -0000 Received: from unknown (HELO shiva.mind.de) (212.42.230.204) by pb1.pair.com with SMTP; 18 Dec 2003 13:43:50 -0000 Received: from [192.168.1.100] (p508EA7D8.dip.t-dialin.net [80.142.167.216]) by shiva.mind.de (Postfix) with ESMTP id 1116A97B66; Thu, 18 Dec 2003 14:43:49 +0100 (CET) Date: Thu, 18 Dec 2003 14:41:52 +0100 Reply-To: Marcus Boerger X-Priority: 3 (Normal) Message-ID: <791095572125.20031218144152@marcus-boerger.de> To: Pierre-Alain Joye Cc: internals@lists.php.net In-Reply-To: <20031218124303.18e22274.paj@pearfr.org> References: <20031218124303.18e22274.paj@pearfr.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] B3, pear segfault, and msgs about deprecated From: helly@php.net (Marcus Boerger) Hello Pierre-Alain, Thursday, December 18, 2003, 12:43:03 PM, you wrote: > Hello, > I'm trying to see why $ make install-pear-packages segfaults with HEAD. > I hope I'll commit the fixes today. I suspect references problem... > I got new messages (which where not displayed before): > : var: Deprecated. Please use the public/private/protected modifiers in > XXX.php on line XX > Have these warning/notices been introduced recently? > Or is it related to the e_pedantic thing? marcus@zaphod /usr/src/php5 $ php -derror_reporting=4095 -r 'class t {var $x;}' Strict Standards: var: Deprecated. Please use the public/private/protected modifiers in Command line code on line 1 marcus@zaphod /usr/src/php5 $ php -derror_reporting=2047 -r 'class t {var $x;}' marcus@zaphod /usr/src/php5 $ php -r 'var_dump(E_STRICT);' int(2048) regards marcus