From owner-freebsd-questions@FreeBSD.ORG Mon May 22 14:54:49 2006 Return-Path: X-Original-To: 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 2073916B23B for ; Mon, 22 May 2006 14:54:49 +0000 (UTC) (envelope-from db@traceroute.dk) Received: from cicero2.cybercity.dk (cicero2.cybercity.dk [212.242.40.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65D9943D6E for ; Mon, 22 May 2006 14:54:47 +0000 (GMT) (envelope-from db@traceroute.dk) Received: from user3.cybercity.dk (user3.cybercity.dk [212.242.41.36]) by cicero2.cybercity.dk (Postfix) with ESMTP id 677A5245BC9 for ; Mon, 22 May 2006 16:54:46 +0200 (CEST) Received: from [10.0.0.3] (0x5552f5a8.adsl.cybercity.dk [85.82.245.168]) by user3.cybercity.dk (Postfix) with ESMTP id A517693C30 for ; Mon, 22 May 2006 16:54:45 +0200 (CEST) Message-ID: <4471D158.8000008@traceroute.dk> Date: Mon, 22 May 2006 14:57:28 +0000 From: db User-Agent: Thunderbird 1.5.0.2 (X11/20060425) MIME-Version: 1.0 To: questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: LIB_DEPENDS problem 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, 22 May 2006 14:54:57 -0000 Hi all I'm trying to make a new port that depends on ACE and pqxx, but it can't find lib pqxx even though it is installed. work# make -DNO_CHECKSUM ===> WARNING: Vulnerability database out of date, checking anyway ===> Extracting for esad-0.1 ===> Patching for esad-0.1 ===> esad-0.1 depends on shared library: ACE_SSL - found ===> esad-0.1 depends on shared library: pqxx - not found ===> Verifying install for pqxx in /usr/ports/databases/postgresql-libpqxx ===> WARNING: Vulnerability database out of date, checking anyway ===> Extracting for postgresql-libpqxx-2.5.5 ^C work# pkg_info | grep postgresql-libpqxx postgresql-libpqxx-2.5.5 A new C++ interface for PostgreSQL work# ls /usr/local/lib/libpqxx* /usr/local/lib/libpqxx-2.5.5.so /usr/local/lib/libpqxx.la /usr/local/lib/libpqxx.a /usr/local/lib/libpqxx.so work# ldconfig -r | grep pqxx work# From the Makefile: LIB_DEPENDS= ACE_SSL:${PORTSDIR}/devel/ace \ pqxx:${PORTSDIR}/databases/postgresql-libpqxx System: FreeBSD 6.0-SECURITY on a ia32. Anyone? Best regards db