Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:30245 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 67949 invoked by uid 1010); 19 Jun 2007 08:46:22 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 67932 invoked from network); 19 Jun 2007 08:46:22 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 19 Jun 2007 08:46:22 -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=bad Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.146.180 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: pierre.php@gmail.com X-Host-Fingerprint: 209.85.146.180 wa-out-1112.google.com Received: from [209.85.146.180] ([209.85.146.180:52895] helo=wa-out-1112.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 8A/B3-39378-CD797764 for ; Tue, 19 Jun 2007 04:46:21 -0400 Received: by wa-out-1112.google.com with SMTP id l24so2568385waf for ; Tue, 19 Jun 2007 01:45:50 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=JiDaEksBFdC+x881Y/3e1qI9dXBYQRiYYwvolYoEmBix8ujG/dqiXJMDCHYtMd0oEEqJY6qMFLLvFP02gvmQ1UE5j5RTiXB4CRdjbkRvrygCWufORDiWk6XPJBJRgCe5OWbWwqd45peRfZ/MXZiGLtmQ6XRgUyC+7nvzVAtV5a8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=AOC+CQpYIxQWenguXGphEKytuizOt2ahSZ7dIvIjrL/WzMAk5zSYreeD5RgXyaPe060fJN9X2/1tGq5JinRy62JvXSWuzs0Q41v3oS0OuuezSBNbVx8fw+XHsZs7UXFQfKEAncrFB65ObAP4j8Msvm8+ZWUtMZyqE6II1TDkvlk= Received: by 10.114.56.1 with SMTP id e1mr7101024waa.1182242749967; Tue, 19 Jun 2007 01:45:49 -0700 (PDT) Received: by 10.114.47.2 with HTTP; Tue, 19 Jun 2007 01:45:49 -0700 (PDT) Message-ID: Date: Tue, 19 Jun 2007 10:45:49 +0200 To: "Stefan Priebsch" Cc: "Andi Gutmans" , internals@lists.php.net In-Reply-To: <46779579.9020206@e-novative.de> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <698DE66518E7CA45812BD18E807866CE49E7BF@us-ex1.zend.net> <46777CFB.8080707@e-novative.de> <46779579.9020206@e-novative.de> Subject: Re: [PHP-DEV] Feature(let) idea From: pierre.php@gmail.com (Pierre) On 6/19/07, Stefan Priebsch wrote: > Pierre, > > > The idea is to use the same set of "extension=3Dfoo" directives for all > > platforms (nearly all). It is relatively obvious that extension_dir > > will differ. > > > > I like this idea and will ease our life, a litte :) > > I got that, and I like simplification. It would just not really make > php.ini files "portable" between Windows and Unix. It will make extension mgr life easier, not more, not less, and that's already a lot :) > I could even think of some other feature(let)s that might help us move > into that direction: > > - define a unified path separator for include_path (the system-dependend > ones could still be accepted, thus keeping BC) > - accept paths in php.ini with forward slashes on all systems (I think > Apache also does -even requires- it that way) We support / on windows already. If someone uses \ only, he puts himself in the non ""portable"" side. I don't really see a reason to stop to support one or another. > - also make zend_extension and zend_extension_ts "guess" wether dll or > so is to be loaded just like the extension directive yes. That being said, a 100% portable php.ini is not possible, the main problem I had so far was to deal with different extension names on the various platforms. However, it was less than a problem after that dl() has been deprecated. But it can make installer/tester life easier to have one common way to define extension in php.ini, even if the various paths differ (to stay on topic). Gr=FC=DF --Pierre