From owner-freebsd-questions@FreeBSD.ORG Mon Sep 19 19:11:30 2011 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 58367106566C for ; Mon, 19 Sep 2011 19:11:30 +0000 (UTC) (envelope-from brandon@301south.net) Received: from ocean.301south.net (ocean.301south.net [98.173.24.155]) by mx1.freebsd.org (Postfix) with ESMTP id 3E7668FC14 for ; Mon, 19 Sep 2011 19:11:30 +0000 (UTC) Received: from 301south.net (localhost [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: b) by ocean.301south.net (Postfix) with ESMTPSA id C6B0F84841 for ; Mon, 19 Sep 2011 11:51:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=301south.net; s=301south; t=1316458304; bh=w32LE1breuDl8bywYUnvharisGW0z2IJh8iwR+ietjQ=; h=Date:From:To:Subject:Message-ID:MIME-Version:Content-Type; b=CZz8//ExOIytnCSfnfsB32zBTCXowC5iSzNPvEPo0w5sL7RfN9UOQ15DXuETOFFqs iWSWYn26ohLu8pphRfqFw== Date: Mon, 19 Sep 2011 11:51:44 -0700 (PDT) From: Brandon Kuczenski To: freebsd-questions@freebsd.org Message-ID: User-Agent: Alpine 2.00 (DEB 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII Subject: Using ports and packages together (or, how do I get mod_php5 ? ) 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: Mon, 19 Sep 2011 19:11:30 -0000 Hi, I'm running RELENG_8_2 and I've been using packages instead of ports for most things, because they're so much quicker. But certain packages aren't compiled the way I need them to be-- postfix had no TLS or SASL support, for example, so I built it from the port. However, that is beginning to lead to some dependency issues. When attempting to build php5 in order to obtain the apache module (see: http://lists.freebsd.org/pipermail/freebsd-questions/2009-March/195199.html ) Portinstall informs that libtool-2.2.10 (from the release package) is too old, that I need to upgrade to libtool 2.4 (which is available from the port). I'm concerned that, if I have some packages built from ports and some installed from the release, that the system will become unstable if things get too out of sync. Am I incorrect? i.e. should I just go ahead and install libtool 2.4 from the port? I don't see this discussed explicitly in the handbook. Thanks in advance, Brandon