From owner-freebsd-questions@FreeBSD.ORG Tue Feb 14 00:02:16 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFD6816A4CD for ; Tue, 14 Feb 2006 00:02:15 +0000 (GMT) (envelope-from freebsd@philip.pjkh.com) Received: from bravo.pjkh.com (bravo.pjkh.com [72.36.232.219]) by mx1.FreeBSD.org (Postfix) with ESMTP id C956843D46 for ; Tue, 14 Feb 2006 00:02:14 +0000 (GMT) (envelope-from freebsd@philip.pjkh.com) Received: from bravo.pjkh.com (bravo.pjkh.com [72.36.232.219]) by bravo.pjkh.com (Postfix) with ESMTP id 70AD313C7C0; Mon, 13 Feb 2006 18:02:56 -0600 (CST) Received: by bravo.pjkh.com (Postfix, from userid 1000) id 3F52213C7BF; Mon, 13 Feb 2006 18:02:56 -0600 (CST) Received: from localhost (localhost [127.0.0.1]) by bravo.pjkh.com (Postfix) with ESMTP id 3E50313C7BE; Mon, 13 Feb 2006 18:02:56 -0600 (CST) Date: Mon, 13 Feb 2006 18:02:56 -0600 (CST) From: Philip Hallstrom To: Dave In-Reply-To: <004801c630ea$3fa8b7a0$0200a8c0@satellite> Message-ID: <20060213180133.N8037@bravo.pjkh.com> References: <004801c630ea$3fa8b7a0$0200a8c0@satellite> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV using ClamSMTP Cc: freebsd-questions@freebsd.org Subject: Re: horde on freebsd6 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Feb 2006 00:02:16 -0000 > Hello, > I've got php4 and apache installed on freebsd6 with several php4 > extensions. Now i want to install horde and imp to test them out while > atempting to decide if horde would be suitable as a webmail solution. I try > the install via ports, but pear always stops saying the port requires the cli > or cgi version of php, but i have a conflicting port installed. I've already > got php4 installed, does anyone have a workaround for this? > Thanks. Not that I've done it, but /usr/ports/devel/pear/Makefile has this in it: WANT_PHP_SCR= yes And in /usr/ports/Mk/bsd.php.mk there are these: # WANT_PHP_CLI=yes - Want the CLI version of PHP. # WANT_PHP_CGI=yes - Want the CGI version of PHP. # WANT_PHP_MOD=yes - Want the Apache Module for PHP. # WANT_PHP_SCR=yes - Want the CLI or the CGI version of PHP. # WANT_PHP_WEB=yes - Want the Apache Module or the CGI version of PHP. # You may combine multiple WANT_PHP_* knobs. So maybe it's as simple as: make install WANT_PHP_MOD=yes Maybe... good luck!