Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:7336 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 44209 invoked by uid 1010); 26 Jan 2004 21:38:35 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 44111 invoked from network); 26 Jan 2004 21:38:35 -0000 Received: from unknown (HELO lt1.firehawksystems.com) (64.71.143.247) by pb1.pair.com with SMTP; 26 Jan 2004 21:38:35 -0000 Received: from [10.0.0.2] (pcp950510pcs.bechgr01.in.comcast.net [68.57.227.14]) (authenticated bits=0) by lt1.firehawksystems.com (8.12.10/8.12.10) with ESMTP id i0QLbaQi005551 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NO) for ; Mon, 26 Jan 2004 13:37:37 -0800 Mime-Version: 1.0 (Apple Message framework v609) Content-Transfer-Encoding: 7bit Message-ID: Content-Type: text/plain; charset=US-ASCII; format=flowed To: internals@lists.php.net Date: Mon, 26 Jan 2004 16:37:56 -0500 X-Mailer: Apple Mail (2.609) Subject: Compiling 2 SAPIs From: list@firehawksystems.com ("Brian J. France") > I have a project where I need to have both Apache SAPI (shared) and > embed SAPI (shared) compiled/active at the same time. Is that possible > to do at all? Any risk of symbol clashes or other similar problems? Andrei posted this a while ago, but nobody replied and we have learned this is it not possible. With the current state of the code and configuration system what would it take to do something like this: Core PHP code is built into libphpX.so (libphp4.so) All SAPI's require libphpX.so: libphpX_apache.so <- apache sapi libphpX_embeded.so <- apache sapi and the command line sapi would have a depenency on libphpX.so. Brian