From owner-freebsd-ports@FreeBSD.ORG Sat Oct 14 07:48:27 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C738216A403 for ; Sat, 14 Oct 2006 07:48:27 +0000 (UTC) (envelope-from parv@pair.com) Received: from mta13.adelphia.net (mta13.mail.adelphia.net [68.168.78.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2D2543D46 for ; Sat, 14 Oct 2006 07:48:26 +0000 (GMT) (envelope-from parv@pair.com) Received: from default.chvlva.adelphia.net ([69.160.66.115]) by mta13.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with ESMTP id <20061014074825.EEUQ3369.mta13.adelphia.net@default.chvlva.adelphia.net>; Sat, 14 Oct 2006 03:48:25 -0400 Received: by default.chvlva.adelphia.net (Postfix, from userid 1000) id 28D2BB791; Sat, 14 Oct 2006 03:48:23 -0400 (EDT) Date: Sat, 14 Oct 2006 03:48:23 -0400 From: Parv To: Dmitry Marakasov Message-ID: <20061014074823.GA25137@holestein.holy.cow> Mail-Followup-To: Dmitry Marakasov , ports@freebsd.org References: <7daacbbe0609070526y30f48d41u9f2c8dd74d43823e@mail.gmail.com> <20060907181108.GB90551@hades.panopticon> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060907181108.GB90551@hades.panopticon> Cc: ports@freebsd.org Subject: Re: Rebuild ports statically linked to libcrypto(3) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Oct 2006 07:48:27 -0000 in message <20060907181108.GB90551@hades.panopticon>, wrote Dmitry Marakasov thusly... > > for port in `pkg_info -oaq`; do > grep OPENSSL /usr/ports/$port/Makefile >/dev/null && > echo $port; > done > > This will list all ports that use OPENSSL, and no need to search > for executables/libs linked with libcrypto dynamically or > statically. That sees to miss security/nss port (apparently used by firefox). Running ldd(1) on some of the installed files (say "certutil") shows linking with libssl3 (on 6-STABLE) ... # ldd /misc/local/bin/certutil /misc/local/bin/certutil: libssl3.so.1 => /usr/local/lib/libssl3.so.1 (0x1ac99000) libsmime3.so.1 => /usr/local/lib/libsmime3.so.1 (0x1acc0000) libnss3.so.1 => /usr/local/lib/libnss3.so.1 (0x1ace3000) libplc4.so.1 => /usr/local/lib/libplc4.so.1 (0x1ad52000) libplds4.so.1 => /usr/local/lib/libplds4.so.1 (0x1ad7d000) libnspr4.so.1 => /usr/local/lib/libnspr4.so.1 (0x1ada7000) libpthread.so.2 => /lib/libpthread.so.2 (0x1addb000) libc.so.6 => /lib/libc.so.6 (0x1ae02000) libsoftokn3.so.1 => /usr/local/lib/libsoftokn3.so.1 (0x1aef8000) - Parv --