Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:25685 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 16536 invoked by uid 1010); 14 Sep 2006 14:49:56 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 16521 invoked from network); 14 Sep 2006 14:49:56 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 14 Sep 2006 14:49:56 -0000 Authentication-Results: pb1.pair.com smtp.mail=pierre.php@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=pierre.php@gmail.com; sender-id=pass; domainkeys=good Received-SPF: pass (pb1.pair.com: domain gmail.com designates 64.233.182.189 as permitted sender) DomainKey-Status: good X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: pierre.php@gmail.com X-Host-Fingerprint: 64.233.182.189 nf-out-0910.google.com Linux 2.4/2.6 Received: from [64.233.182.189] ([64.233.182.189:44568] helo=nf-out-0910.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 71/46-45066-0FB69054 for ; Thu, 14 Sep 2006 10:49:55 -0400 Received: by nf-out-0910.google.com with SMTP id y25so2303303nfb for ; Thu, 14 Sep 2006 07:49:17 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=G+IO3DPThHlkoX7+ce5Wz07vlyux8wxDf7kYedbpl3MXqzOI9BBcnKNV9b5JxlR2Rj8/Lf88R/vTKdm80y6RQPrD5a+YQW5otq2MFXcj3/BnolUxiaeypz73oyw5BKD2lZ9Uw2P//LZRdUBOscA2LSfE8KgT5BnIP/mz7Su5S8U= Received: by 10.78.168.6 with SMTP id q6mr937216hue; Thu, 14 Sep 2006 07:49:16 -0700 (PDT) Received: by 10.78.137.6 with HTTP; Thu, 14 Sep 2006 07:49:16 -0700 (PDT) Message-ID: Date: Thu, 14 Sep 2006 16:49:16 +0200 To: "Michael B Allen" Cc: internals@lists.php.net In-Reply-To: <20060914104410.09bdd7f6.mba2000@ioplex.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060914104410.09bdd7f6.mba2000@ioplex.com> Subject: Re: [PHP-DEV] Module API Changes From: pierre.php@gmail.com (Pierre) Hello, On 9/14/06, Michael B Allen wrote: > Are there any other module API changes between 4 and the current version > of PHP that would cause my module to fail to load? PHP internals API has many changes between two major versions. Don't expect a module compiled for php4 to be loaded smoothly in php5, the same applies from one minor version to another. You have to provide a binary per minor version, and for debug or non debug builds, like any other DLL/so. (5.0 and 5.1 are php5 minor versions, for example) --Pierre