Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:46521 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 61529 invoked from network); 24 Dec 2009 03:07:54 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 24 Dec 2009 03:07:54 -0000 Authentication-Results: pb1.pair.com header.from=tjerk.meesters@gmail.com; sender-id=pass; domainkeys=bad Authentication-Results: pb1.pair.com smtp.mail=tjerk.meesters@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.222.176 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: tjerk.meesters@gmail.com X-Host-Fingerprint: 209.85.222.176 mail-pz0-f176.google.com Received: from [209.85.222.176] ([209.85.222.176:41851] helo=mail-pz0-f176.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 25/97-21037-90BD23B4 for ; Wed, 23 Dec 2009 22:07:53 -0500 Received: by pzk6 with SMTP id 6so6216571pzk.29 for ; Wed, 23 Dec 2009 19:07:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to:cc :content-type; bh=nUk8KkuhdAD4mVd7JWWlmgYEEmow6fNOq2kTKzp0Pcs=; b=QnBxgKB/EwPg5Kw7BJDBjrZY1cXlGHUL3jJo+HJoSJq3yu5el1qZ1+6cRZyGJhqGMG ZrCLwIR4bGj3AaVAgpAAFzq9d8fVUv7XI1V1qWQHEbpz7fQEbLuZ9HrbjExwET95QUNC JQ95XEnLM8XGI7wt+ZcQWwAdTmlPZ2kuT/eFo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; b=wxyBuY8Ok+6cNZtVs2aPibWn40308/iCo97SxsyrUFC9ayCacsdih5+LpuGAmnNwTC 7bRrWKhfEyqd4G0gpd2mKF59CDAvo+H/sH3oyVOmoe3xCYIJOpc25c7gc1S53Of5/fgR QP/rexCVrh4sdoqQGEhf8qaDBMOK7RH5O/jwE= MIME-Version: 1.0 Sender: tjerk.meesters@gmail.com Received: by 10.142.121.3 with SMTP id t3mr7270146wfc.246.1261624070525; Wed, 23 Dec 2009 19:07:50 -0800 (PST) In-Reply-To: References: <8cf711460912231013n47344746qec880bacfd19e9f4@mail.gmail.com> <8cf711460912231712o49eedadv2bdd0f242969256f@mail.gmail.com> Date: Thu, 24 Dec 2009 11:07:50 +0800 X-Google-Sender-Auth: 5b2202e719fc32fd Message-ID: To: Michael Shadle Cc: Mikko Koppanen , Pierre Joye , =?ISO-8859-1?Q?Johannes_Schl=FCter?= , php-dev Content-Type: text/plain; charset=ISO-8859-1 Subject: Re: [PHP-DEV] Proposal: allow for includes in php.ini From: datibbaw@php.net (Tjerk Anne Meesters) On Thu, Dec 24, 2009 at 9:28 AM, Michael Shadle wrote: > On Wed, Dec 23, 2009 at 5:12 PM, Mikko Koppanen wrote: >> Hi, >> >> I think this is the feature (in trunk currently): >> >> http://svn.php.net/viewvc?view=revision&revision=28287 > > This is not the same, this is just an additional way to still have > static dirs defined only at compile time, or maybe environment > variable. > > Am I not explaining this properly enough? It should be supported from > the configuration file itself. This feature in trunk doesn't add > anything new for me. > Sorry for reposting this; my last reply didn't make it onto the list due to my lovely iPod =X The most tempting reason for me to support include support (or better yet, include glob support) would be to have better control of what gets loaded for each SAPI; for instance, load module A for CLI, load module A+B for CGI, but only only module B for fpm, etc. This would otherwise only be possible by compiling each binary separately and running ./configure && make && make install for each.