From owner-freebsd-questions@FreeBSD.ORG Sat Jun 30 11:14:04 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5D91C106564A for ; Sat, 30 Jun 2012 11:14:04 +0000 (UTC) (envelope-from c@sormarken.no) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id 26F428FC0C for ; Sat, 30 Jun 2012 11:14:03 +0000 (UTC) Received: by pbbro2 with SMTP id ro2so6160069pbb.13 for ; Sat, 30 Jun 2012 04:14:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sormarken.no; s=google; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=bOdzq1wUsQuBr1poqd6w16Wr53JQ1uJJF31IESZ26yU=; b=XrdJlRUUBF9od0LnEJY3G8o+IBhL7kru6EF9CNvRcBd+gU4nObvk08bK4CXW0fGi9M 899IA86nvvIablUM08aqUrx24jFbqu+ObTuelgXmlrXZBOYdPK8Smf4Eva6APyQ5lumA VxMKJrKBGQp2/w/hKo0gHKw++Y+p3Apc2cQqI= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding:x-gm-message-state; bh=bOdzq1wUsQuBr1poqd6w16Wr53JQ1uJJF31IESZ26yU=; b=AuyCiaB9FG9/88zIZQHk5hH4ycPeCCPH6FINCsU5dkB7D2erylO1GlytxoMm0kBByW Mz1FACKLhyxDowvFEpRnk4PRqyNCvvGtFmqxcBXTMzp8UKZqSlSxzqlyF2sbctvrFFXb MNynTrzAwEXtFrSTOReR4RK3yR+QqJY71XukhrjvZH7Ik0q7gJ+YkN+Wl33xLIKUA78E 406mEHU0HNv/ReM4yYsxNhSmaqaP/+AEtwAD7Ds6itGeFuPkxP5O6RKRpML06nD5Pzl/ KbPhrJ7A9uNpc4AJENvUICp3OKbtP/oC+b6l7ApXEJL+ZnCcPNm69J1AFtkPh9xLdI0r rj2g== Received: by 10.68.138.195 with SMTP id qs3mr14370404pbb.15.1341054843420; Sat, 30 Jun 2012 04:14:03 -0700 (PDT) Received: from mbpsormarkencom.local (203.141.138.247.static.zoot.jp. [203.141.138.247]) by mx.google.com with ESMTPS id np8sm7993972pbc.71.2012.06.30.04.14.00 (version=SSLv3 cipher=OTHER); Sat, 30 Jun 2012 04:14:02 -0700 (PDT) Message-ID: <4FEEDF77.7040005@sormarken.no> Date: Sat, 30 Jun 2012 20:13:59 +0900 From: =?ISO-8859-1?Q?Christian_S=F8rmarken?= User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:13.0) Gecko/20120614 Thunderbird/13.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Gm-Message-State: ALoCoQmNn97PEah8Wo7CH8N/O4WARW6F0emrFenyMsW956GkjwnryvYMB+EZHXn2ZyAfh7oBfcB9 Subject: libtorrent-rasterbar fails with "Could not link against boost_thread-boost_thread" 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: Sat, 30 Jun 2012 11:14:04 -0000 Dear community, While attempting to build libtorrent-rasterbar net-p2p/libtorrent-rasterbar-15, it fails make config. The last output is as following: Checking for boost libraries: checking for boostlib >= 1.36... yes checking whether the Boost::System library is available... yes checking for exit in -lboost_system... yes checking whether the Boost::Filesystem library is available... yes checking for exit in -lboost_filesystem... yes checking whether the Boost::Thread library is available... yes checking for exit in -lboost_thread... no checking for exit in -lboost_thread-boost_thread... no configure: error: Could not link against boost_thread-boost_thread ! ===> Script "configure" failed unexpectedly. I am currently running FreeBSD 9.0-RELEASE, and compiling with lang/gcc (version 4.6). I have the following in make.conf: WITH_OPENSSL_PORT=YES WITHOUT_X11=yes CPUTYPE?=native .if !empty(.CURDIR:M/usr/ports/*) && exists(/usr/local/bin/gcc46) CC=gcc46 CXX=g++46 CPP=cpp46 .endif # added by use.perl 2012-06-30 08:15:47 PERL_VERSION=5.12.4 and the following in /etc/libmap.conf libgcc_s.so.1 gcc46/libgcc_s.so.1 libgomp.so.1 gcc46/libgomp.so.1 libobjc.so.3 gcc46/libobjc.so.3 libssp.so.0 gcc46/libssp.so.0 libstdc++.so.6 gcc46/libstdc++.so.6 Any idea why libtorrent-rasterbar is unable to link against boost_thread-boost_thread? Python27 is compiled WITH "THREADS Threading support" and WITHOUT "PTH Use GNU Pth for threading/multiprocessing". Am I simply overlooking something here? Best regards, Chris