Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:63117 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 48938 invoked from network); 18 Sep 2012 20:36:05 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 18 Sep 2012 20:36:05 -0000 Authentication-Results: pb1.pair.com smtp.mail=hannes.magnusson@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=hannes.magnusson@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.217.170 as permitted sender) X-PHP-List-Original-Sender: hannes.magnusson@gmail.com X-Host-Fingerprint: 209.85.217.170 mail-lb0-f170.google.com Received: from [209.85.217.170] ([209.85.217.170:55138] helo=mail-lb0-f170.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 00/74-07072-33BD8505 for ; Tue, 18 Sep 2012 16:36:04 -0400 Received: by lbbgp3 with SMTP id gp3so334026lbb.29 for ; Tue, 18 Sep 2012 13:36:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=0dVJdazyoIXaMDibvkSOiPhJt18ALAmtYE/EhKQwJTk=; b=QV0tiSAvGP0AWzd8baE7bM51hzaU8jQghpX6HAls0Zw3J7qjyw+V3apVsxDtvsmb8S vHAOnoqyagZIek1bjU1W51VMh04uY4F41BCF7tVgbgGxcZpf9OkFOmOQS2pbyQsJsCEK PbSjgjciLi7iGdeu5mcR2r5D7KL74RbPHnr8Mgf0yZ6WYcPPLQrqR33bNYsToJdOX/m9 9qtJo6Bl87w5idyiudvfrMBr3J3lz+yTLU5ClfVo+UViFVjqm0Zf7/zpqr6TUin7Gr/8 s75YJ+OwwGQYWPvHspXF3eZwFJKwhRUJYeZwJjQrhF06mk4JUODACxZWen8LHt2KcAlx tiKQ== MIME-Version: 1.0 Received: by 10.112.37.102 with SMTP id x6mr315215lbj.66.1348000561121; Tue, 18 Sep 2012 13:36:01 -0700 (PDT) Received: by 10.114.0.238 with HTTP; Tue, 18 Sep 2012 13:36:01 -0700 (PDT) In-Reply-To: References: Date: Tue, 18 Sep 2012 21:36:01 +0100 Message-ID: To: Pierre Joye Cc: Philip Olson , jpauli , Michael Felt , internals@lists.php.net Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] an configure option to "enable-all" From: hannes.magnusson@gmail.com (Hannes Magnusson) On Tue, Sep 18, 2012 at 8:59 AM, Pierre Joye wrote: > hi, > > On Mon, Sep 17, 2012 at 7:54 PM, Hannes Magnusson > wrote: >> Something like the attached patch could work, but that means we would >> have to update all the config.m4s :] > > As far as I remember, the enable/disable option default behavior is > what is used in the --help. So basically we do have --enable-all as Its not "basically". We *do* have it, it is very explicit in the code. > the --disable-all being set to false. I would document that as such > instead of modifying the m4 macros everywhere, much less painful. That patch introduced --enable-all-available which is completely different to --enable-all. --enable-all-available would automatically compile all extensions that the platform supports (i.e. has the libraries available). For extensions the platform is missing the library, it would just jump over it - as aposed to fail and bail out like --enable-all does. -Hannes