From owner-freebsd-ports@FreeBSD.ORG Wed Aug 27 12:16:12 2014 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 16AB0FF6 for ; Wed, 27 Aug 2014 12:16:12 +0000 (UTC) Received: from smtp.digiware.nl (unknown [IPv6:2001:4cb8:90:ffff::3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CBD92392E for ; Wed, 27 Aug 2014 12:16:11 +0000 (UTC) Received: from rack1.digiware.nl (unknown [127.0.0.1]) by smtp.digiware.nl (Postfix) with ESMTP id A31401534C0 for ; Wed, 27 Aug 2014 14:15:59 +0200 (CEST) X-Virus-Scanned: amavisd-new at digiware.nl Received: from smtp.digiware.nl ([127.0.0.1]) by rack1.digiware.nl (rack1.digiware.nl [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id czM7Jf1b6sTH; Wed, 27 Aug 2014 14:15:38 +0200 (CEST) Received: from [IPv6:2001:4cb8:3:1:d0d6:3810:b54e:7558] (unknown [IPv6:2001:4cb8:3:1:d0d6:3810:b54e:7558]) by smtp.digiware.nl (Postfix) with ESMTP id 3AE7D1534C4 for ; Wed, 27 Aug 2014 14:15:38 +0200 (CEST) Message-ID: <53FDCBD8.4060306@digiware.nl> Date: Wed, 27 Aug 2014 14:15:20 +0200 From: Willem Jan Withagen Organization: Digiware Management b.v. User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: ports@freebsd.org Subject: Building subversion-1.8.10 under poudriere Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Aug 2014 12:16:12 -0000 Hi, Starting to use poudriere, and I'm pleasantly surprised. And even more after the first install steps. Don't have to go to all the different servers copy my ports-configs, and build... So I'm trying to get subversion build in poudriere for 9.3 amd and I keep running into: ---- cd subversion/svn && /bin/sh /wrkdirs/usr/ports/devel/subversion/work/subversion-1.8.10/libtool --tag=CC --silent --mode=link clang -all-static -Werror=unknown-warning-option -O2 -pipe -fpic -DPIC -fno-strict-aliasing -L/usr/local/lib -L/usr/local/lib/db5 -L/usr/local/lib -rpath /usr/local/lib -o svn add-cmd.lo blame-cmd.lo cat-cmd.lo changelist-cmd.lo checkout-cmd.lo cl-conflicts.lo cleanup-cmd.lo commit-cmd.lo conflict-callbacks.lo copy-cmd.lo delete-cmd.lo deprecated.lo diff-cmd.lo export-cmd.lo file-merge.lo help-cmd.lo import-cmd.lo info-cmd.lo list-cmd.lo lock-cmd.lo log-cmd.lo merge-cmd.lo mergeinfo-cmd.lo mkdir-cmd.lo move-cmd.lo notify.lo patch-cmd.lo propdel-cmd.lo propedit-cmd.lo propget-cmd.lo proplist-cmd.lo props.lo propset-cmd.lo relocate-cmd.lo resolve-cmd.lo resolved-cmd.lo revert-cmd.lo status-cmd.lo status.lo svn.lo switch-cmd.lo unlock-cmd.lo update-cmd.lo upgrade-cmd.lo util.lo ../../subversion/libsvn_client/libsvn_client-1.la ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/lib -laprutil-1 -ldb-5.3 -lgdbm -lexpat -liconv -L/usr/local/lib -lapr-1 -lcrypt -pthread -lintl /usr/local/lib/libapr-1.a(apr_snprintf.o): In function `apr_vformatter': strings/apr_snprintf.c:(.text+0x61c): undefined reference to `isnan' clang: error: linker command failed with exit code 1 (use -v to see invocation) *** [subversion/svn/svn] Error code 1 Stop in /wrkdirs/usr/ports/devel/subversion/work/subversion-1.8.10. *** [do-build] Error code 1 Stop in /usr/ports/devel/subversion. ===> Cleaning for subversion-1.8.10_1 ---- If I build just "by hand" in /usr/ports it all just works fine. Trashing the whole config and restarting does not help. So one way or another the compiling/building oversees the fact that in isnan() is a macro, and expects to link against a function to be supplied by a library. Any suggestions as to how to fix this? Normally I'd just try to whack the source into a working version, and go make && make install. But how to do something like this under poudriere Thanx, --WjW