From owner-freebsd-questions@FreeBSD.ORG Wed Feb 1 01:00:41 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 2063116A420 for ; Wed, 1 Feb 2006 01:00:41 +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 79DDD43D48 for ; Wed, 1 Feb 2006 01:00:40 +0000 (GMT) (envelope-from freebsd@philip.pjkh.com) Received: from bravo.pjkh.com (unknown [72.36.232.219]) by bravo.pjkh.com (Postfix) with ESMTP id 1D1EF13C405; Mon, 30 Jan 2006 18:18:23 -0600 (CST) Received: by bravo.pjkh.com (Postfix, from userid 1001) id A55DC13C403; Mon, 30 Jan 2006 18:18:22 -0600 (CST) Received: from localhost (localhost [127.0.0.1]) by bravo.pjkh.com (Postfix) with ESMTP id A1BB713C402; Mon, 30 Jan 2006 18:18:22 -0600 (CST) Date: Mon, 30 Jan 2006 18:18:22 -0600 (CST) From: Philip Hallstrom To: Graham Bentley In-Reply-To: <001a01c625fa$ec17eb00$0807a8c0@admin> Message-ID: <20060130181659.W33972@bravo.pjkh.com> References: <001a01c625fa$ec17eb00$0807a8c0@admin> 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: How to get latest and greatest FAMP 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: Wed, 01 Feb 2006 01:00:41 -0000 > I wanted to do a quick test of Apache21, MySQL5 and PHP5 > I tried a minimal install of FreeBSD 6.0 then pkg_add -r which > worked fine up until PHP5 where I was told that Apache21 > conflicted with Apache13 that was to be installed as aPHP5 > dependancy. I pkg_delete and went ahead with installing > PHP5 then Apache13 but when I tried to pkg_delete Apache13 > so I could install Apache21 was told that I coudl not remove it ? If you're talking about /usr/ports/lang/php5, then it's Makefile has this: .if defined(WITH_APACHE) .if ${APACHE_VERSION} > 13 CONFIGURE_ARGS+=--with-apxs2=${APXS} .else CONFIGURE_ARGS+=--with-apxs=${APXS} .endif .endif I haven't done it, but I'm guessing if you install apache21 first, then set APACHE_VERSION = 21 in your environment, then make, it would do what you wanted. -philip