From owner-freebsd-current@FreeBSD.ORG Sun Oct 13 11:54:31 2013 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3C5658B0 for ; Sun, 13 Oct 2013 11:54:31 +0000 (UTC) (envelope-from ubm@u-boot-man.de) Received: from mail.upper.net (mail.upper.net [62.75.224.33]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CC6142FDB for ; Sun, 13 Oct 2013 11:54:30 +0000 (UTC) Received: from ubm.strangled.net (mail.upper.net [62.75.224.33]) (authenticated bits=0) by mail.upper.net (8.12.10/8.12.10/SuSE Linux 0.7) with ESMTP id r9DBsHkl003048; Sun, 13 Oct 2013 13:54:18 +0200 Received: from ubm.strangled.net ([92.231.39.23] helo=ubm.strangled.net) by ASSP.nospam.UpPeRnEt; 13 Oct 2013 13:54:17 +0200 Date: Sun, 13 Oct 2013 13:54:17 +0200 From: Marc "UBM" Bocklet To: Guido Falsi Subject: Re: Possible iconv fallout? Message-Id: <20131013135417.82e8db7113d7fedf19f112b4@u-boot-man.de> In-Reply-To: <52593C6F.6080709@madpilot.net> References: <20131012132908.a122b1b3f85d9936b87fb4f3@u-boot-man.de> <52593C6F.6080709@madpilot.net> X-Mailer: Sylpheed 3.3.0 (GTK+ 2.24.19; amd64-portbld-freebsd10.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Sun, 13 Oct 2013 12:42:10 +0000 Cc: current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Oct 2013 11:54:31 -0000 On Sat, 12 Oct 2013 14:11:27 +0200 Guido Falsi wrote: > It most probably is some libtool ".la" file still referencing the > libiconv .la file. > > Please run the following command: > > find /usr/local/lib -name '*.la' -exec grep -n libiconv.la {} \; -print > | xargs -n 1 pkg which -qo | sort -u > > This will give you a list of ports still having reference to > libiconv.la, which does not exist anymore. > > These ports need to be reinstalled. I hope there are not many! :) Thanks a bunch, there were only about 6 ports and after I figured out the right order of updating/reinstalling them, everything went smoothly (though I had to sprinkle some LDFLAGS+=-ltinfow in there)! :-) Bye Marc