From owner-freebsd-ports@FreeBSD.ORG Sat Aug 11 17:11:03 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 11298106566C for ; Sat, 11 Aug 2012 17:11:03 +0000 (UTC) (envelope-from jespasac@minibofh.org) Received: from mail.minibofh.org (gwgy.x.rootbsd.net [204.109.59.162]) by mx1.freebsd.org (Postfix) with ESMTP id CE1AA8FC0A for ; Sat, 11 Aug 2012 17:11:02 +0000 (UTC) Received: from [192.168.1.65] (c-283271d5.032-140-73746f22.cust.bredbandsbolaget.se [213.113.50.40]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.minibofh.org (Postfix) with ESMTPSA id A341A1DE350; Sat, 11 Aug 2012 19:10:54 +0200 (CEST) Message-ID: <5026921D.7050003@minibofh.org> Date: Sat, 11 Aug 2012 19:10:53 +0200 From: Jordi Espasa Clofent User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:14.0) Gecko/20120714 Thunderbird/14.0 MIME-Version: 1.0 To: tor-dev@lists.torproject.org, freebsd-ports@freebsd.org References: <501DAD7F.3020007@minibofh.org> <501FDDFD.7070809@minibofh.org> <5020079F.3040200@minibofh.org> <5022CB80.1010009@minibofh.org> <5022F1B1.2050805@minibofh.org> <50238B1B.5090305@minibofh.org> <5025175C.10808@minibofh.org> <50252131.6070205@minibofh.org> <5025233D.5020705@minibofh.org> <5025894D.5080107@minibofh.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: Subject: Re: [tor-dev] Fwd: [tor-relays] tcmalloc in FreeBSD [SOLVED ?] 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, 11 Aug 2012 17:11:03 -0000 That's really strange. With a non-modified configure.in (which means that is containing this misplaced stanza), I did: # cd /usr/ports/security/tor/ # make deinstall # make clean # make install and... voilá: mb# ldd /usr/local/bin/tor /usr/local/bin/tor: libtcmalloc.so.2 => /usr/local/lib/libtcmalloc.so.2 (0x2844e000) libz.so.5 => /lib/libz.so.5 (0x281aa000) libm.so.5 => /lib/libm.so.5 (0x281bc000) libevent-2.0.so.6 => /usr/local/lib/event2/libevent-2.0.so.6 (0x284b6000) libssl.so.7 => /usr/local/lib/libssl.so.7 (0x284f1000) libcrypto.so.7 => /usr/local/lib/libcrypto.so.7 (0x2853f000) libthr.so.3 => /lib/libthr.so.3 (0x281df000) libc.so.7 => /lib/libc.so.7 (0x28090000) libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x286a1000) libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x281f4000) So it seems the 'make clean' did some magic. According to man ports(7): clean Remove the expanded source code. This recurses to dependencies unless NOCLEANDEPENDS is defined. Should I understand it was some 'expanded source code' which was breaking my local ports tree?