Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:31799 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 37988 invoked by uid 1010); 21 Aug 2007 17:37:21 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 37973 invoked from network); 21 Aug 2007 17:37:21 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 21 Aug 2007 17:37:21 -0000 Authentication-Results: pb1.pair.com header.from=johannes@php.net; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=johannes@php.net; spf=unknown; sender-id=unknown Received-SPF: unknown (pb1.pair.com: domain php.net does not designate 83.243.58.163 as permitted sender) X-PHP-List-Original-Sender: johannes@php.net X-Host-Fingerprint: 83.243.58.163 mail4.netbeat.de Received: from [83.243.58.163] ([83.243.58.163:36490] helo=mail4.netbeat.de) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 80/10-36283-EC22BC64 for ; Tue, 21 Aug 2007 13:37:20 -0400 Received: (qmail 455 invoked by uid 507); 21 Aug 2007 17:37:14 -0000 Received: from unknown (HELO ?192.168.1.102?) (postmaster%schlueters.de@82.135.76.9) by mail4.netbeat.de with ESMTPA; 21 Aug 2007 17:37:14 -0000 To: John Mendenhall Cc: internals@lists.php.net In-Reply-To: <20070821005233.GC14775@calvin.surfutopia.net> References: <20070821005233.GC14775@calvin.surfutopia.net> Content-Type: text/plain Date: Tue, 21 Aug 2007 19:37:14 +0200 Message-ID: <1187717834.2989.62.camel@johannes.nop> Mime-Version: 1.0 X-Mailer: Evolution 2.10.3 (2.10.3-2.fc7) Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] php 4.4.7 make install with pear causes zend freeing errors From: johannes@php.net (Johannes =?ISO-8859-1?Q?Schl=FCter?=) On Mon, 2007-08-20 at 17:52 -0700, John Mendenhall wrote: > I have recently upgraded from php 4.4.0, to php 4.4.7. > I am running this on openbsd 3.6 i386. > > My configure options are as follows: > > ----- > ./configure \ > --prefix=/usr/local/php4 \ > --with-apxs=/usr/sbin/apxs \ > --enable-debug \ [...] You shouldn't use --enable-debug as long as you're not trying to fix some bugs in PHP. The messages you've sent are only shown when that debug flag is set since it's known that under some circumstances the engine can't really free memory until the script ends. The notices are there to see if they accidentally forgot to free some memory which might be freed before. johannes