From owner-freebsd-stable@FreeBSD.ORG Tue Aug 26 20:54:02 2008 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5A69A106566C for ; Tue, 26 Aug 2008 20:54:02 +0000 (UTC) (envelope-from chris@smartt.com) Received: from barium.smartt.com (barium.smartt.com [69.67.187.30]) by mx1.freebsd.org (Postfix) with ESMTP id 2C5E38FC17 for ; Tue, 26 Aug 2008 20:54:02 +0000 (UTC) (envelope-from chris@smartt.com) Received: from [69.31.174.220] (unknown [69.31.174.220]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by barium.smartt.com (Postfix) with ESMTPS id 8A03710E45A; Tue, 26 Aug 2008 13:36:26 -0700 (PDT) Message-ID: <48B46953.6090307@smartt.com> Date: Tue, 26 Aug 2008 13:36:35 -0700 From: Chris St Denis User-Agent: Thunderbird 2.0.0.16 (Windows/20080708) MIME-Version: 1.0 To: chris#@1command.com References: <20080826124253.7rfp8sb8rcgs0o0o@webmail.1command.com> In-Reply-To: <20080826124253.7rfp8sb8rcgs0o0o@webmail.1command.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-stable@freebsd.org Subject: Re: changing a ports final destination via make knobs question... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Aug 2008 20:54:02 -0000 chris#@1command.com wrote: > Greetings, > Given that the folks at PHP have decided that no one is allowed > to use PHP4 any longer. I've decided to *attempt* to install a copy > of PHP5 (cgi only) along side my already installed/configured, and > in use copy of PHP4 (apache_module, CLI, & CGI). I spent some time > attempting to find successful stories regarding my attempt. But all > were for different OS's, and most were *quite* dated. So I took a > stab at it, after looking at the Makefile in lang/php5. But it did > *NOT* end up where I thought it would. In fact, it clobbered > some of my PHP4 install. SO, please find here my desperate plea > for the make knob(s)/env options required to install a copy of > PHP5 (CGI) beside my already installed/working PHP4. I had tried/ > hoped to simply create a --prefix=php5/, thinking that I'd end up > with: /usr/local/bin/php5/(php-cgi, phpize, php-config), and > /usr/local/etc/php5/php-ini-*, /usr/local/include/php5/*, > /usr/local/lib/php5/*. by way of the ports system. But I *clearly* > didn't set things correctly. > > *Any* help/advice would be *GREATLY* appreciated. > > Thank you for all your time and consideration. > > --Chris > > > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" This should probably go on freebsd-questions list Try *make **PREFIX=/usr/local/php5* and *make install **PREFIX=/usr/local/php5* I did this to get php4 working as a cgi with php5 installed regularly as mod_php. Seems to work ok. * *