Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:68577 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 55070 invoked from network); 20 Aug 2013 03:59:17 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 20 Aug 2013 03:59:17 -0000 Authentication-Results: pb1.pair.com smtp.mail=jdavidlists@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=jdavidlists@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.223.172 as permitted sender) X-PHP-List-Original-Sender: jdavidlists@gmail.com X-Host-Fingerprint: 209.85.223.172 mail-ie0-f172.google.com Received: from [209.85.223.172] ([209.85.223.172:42237] helo=mail-ie0-f172.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 9D/DD-22131-599E2125 for ; Mon, 19 Aug 2013 23:59:17 -0400 Received: by mail-ie0-f172.google.com with SMTP id c10so1041311ieb.17 for ; Mon, 19 Aug 2013 20:59:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type:content-transfer-encoding; bh=ml87myzZIccIrCH1dKU0uEcE2jp5c3Fr/w0OKI/Wh+Y=; b=nHAjuSgeD76WBCojm2iVncAz4ExGZOW/76sV3/PkGlddh0Z5hBhfj0a1Sj/bPCMxa1 Ip8+EmgVCoMa3dQwSOuUenbLCjCEllmQ78lisIiAie+T3gsMsUwJw7LgnMJcW+K/9/Mt wUUqpoBtcbaA+cY9/ssUkOEzgNdpfqxok6nvkJUw4cWHiJ1ITuFdGBcPRsWtv4SwBmIc fsK0c1CqHseNkQyKJrW3L0+fFr3MuHUWDJ4GUo6Y0DVk+X/Dmq8CleqHMDb2zhVu1/kU FfryWsqN0fMmOMlTOXYpBFVs6oyyIyY0bUpX4+K50iQSHsmSpiE3kDgjvXb2NBrPsmc8 BdNw== MIME-Version: 1.0 X-Received: by 10.50.178.133 with SMTP id cy5mr5116296igc.26.1376971154472; Mon, 19 Aug 2013 20:59:14 -0700 (PDT) Sender: jdavidlists@gmail.com Received: by 10.42.150.196 with HTTP; Mon, 19 Aug 2013 20:59:14 -0700 (PDT) In-Reply-To: <1376956154.4056.63.camel@guybrush> References: <1376956154.4056.63.camel@guybrush> Date: Mon, 19 Aug 2013 23:59:14 -0400 X-Google-Sender-Auth: 6d4zr9761l545hVZhrG9IOIVgak Message-ID: To: =?ISO-8859-1?Q?Johannes_Schl=FCter?= Cc: Michael Wallner , Sara Golemon , PHP internals Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: Re: [PHP-DEV] Interest in a "null" SAPI for embedding? From: j.david.lists@gmail.com (J David) On Mon, Aug 19, 2013 at 7:49 PM, Johannes Schl=FCter wrote: > Ah, there's another thing to mind: Extensions can be marked as "cli > extensions", if statically compiled they become only part of the CLI > binary, not other SAPIs. Think readline & pcntl. The logical expectation then would be not to include them in the shlib build, as that is not the CLI binary. Of course nothing would prevent making them part of a CLI binary that links to the shlib. But definitely, in any case where statically-linked anything is the goal, using an option that builds almost all the code into a shared library may cause an endless and entertaining variety of problems and conflicts. The solution for such cases would appear to be fairly straightforward: do not use that option in those cases where it produces a non-viable result. Thanks!