From owner-svn-ports-head@FreeBSD.ORG Tue Jan 28 23:27:45 2014 Return-Path: Delivered-To: svn-ports-head@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 68088ED3; Tue, 28 Jan 2014 23:27:45 +0000 (UTC) Received: from cainites.net (tunnel3563.ipv6.xs4all.nl [IPv6:2001:888:10:deb::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 181011585; Tue, 28 Jan 2014 23:27:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=cainites.net; s=default; h=Content-Type:MIME-Version:Message-ID:Date:Subject:In-Reply-To:References:To:From; bh=cREULzh5DsVcGmxPAlqlUb52aH0kL0KCQzG1e15gaDk=; b=OcL/Y4QANeGalQSJ8UNWL7/Tqx2Kq9YArcw5JVry0jmP8NtWL8B1f6FCFgrUTDJx3uQB8uSWoKHwB0RCIB2IqA1BpnRP0c9TQMuYwA3OrY8tIcDohtP6vGtaqGaHpWgPPVxgFi/KyHq/D2YWxpTJaLmFJTEBM91hLHM4F/h2BKk=; Received: from notebook.cainites.net ([2001:888:1deb::22] helo=MandyLAPTOP) by cainites.net with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.82 (FreeBSD)) (envelope-from ) id 1W8I4D-000Mzv-Le; Wed, 29 Jan 2014 00:27:41 +0100 From: "Ralf van der Enden" To: "'Mathieu Arnold'" , "'Danilo Egea Gondolfo'" , , , References: <201401232016.s0NKGv2e009550@svn.freebsd.org> In-Reply-To: Subject: RE: svn commit: r340859 - in head/dns/powerdns-devel: . files Date: Wed, 29 Jan 2014 00:27:38 +0100 Message-ID: <008101cf1c80$8b8a4500$a29ecf00$@cainites.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0082_01CF1C88.ED51E150" X-Mailer: Microsoft Outlook 15.0 thread-index: AQF17CUQVvsG+ZbvY3hGkjQC4vRDuQLneSj0mzXqP0A= Content-Language: nl X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Jan 2014 23:27:45 -0000 This is a multipart message in MIME format. ------=_NextPart_000_0082_01CF1C88.ED51E150 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hi Mathieu, I've been trying to reproduce yor issue, but I can't. Most likely caused by the fact I don't have an i386 environment to test on. Apparently the cryptopp library was built without some functions which require SSE2 support (determined by config.h), but my guess is powerdns' cryptosigners.cc is missing some includes which pull the aforementioned config.h in. The author of powerdns tells me cryptopp has become obsolete, since botan has support for the same and more algorithms and is also faster. A quick fix would be to completely remove cryptopp support, but if you're willing to test a patch we could perhaps keep it. You'll find the patch attached to this email. What I don't understand is why it doesn't break dns/powerdns as well. The code is identical, only the autoconf/automake files differ. Best regards, Ralf van der Enden -----Original Message----- From: Mathieu Arnold [mailto:mat@FreeBSD.org] Sent: vrijdag 24 januari 2014 12:23 To: Danilo Egea Gondolfo; ports-committers@freebsd.org; svn-ports-all@freebsd.org; svn-ports-head@freebsd.org; Ralf van der Enden Subject: Re: svn commit: r340859 - in head/dns/powerdns-devel: . files Hi +--On 23 janvier 2014 20:16:57 +0000 Danilo Egea Gondolfo wrote: | Log: | - Update from 3.3 to 3.3.1 | - Add some experimental backends After that, I get failed builds : -- Mathieu Arnold ------=_NextPart_000_0082_01CF1C88.ED51E150 Content-Type: application/octet-stream; name="patch-pdns__cryptosigners.cc" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="patch-pdns__cryptosigners.cc" --- ./pdns/cryptoppsigners.cc.orig 2013-12-17 11:50:20.000000000 +0100=0A= +++ ./pdns/cryptoppsigners.cc 2014-01-29 00:23:04.329303056 +0100=0A= @@ -5,6 +5,8 @@=0A= #include =0A= #include =0A= #include =0A= +#include =0A= +#include =0A= #include "dnssecinfra.hh"=0A= using namespace CryptoPP;=0A= =0A= ------=_NextPart_000_0082_01CF1C88.ED51E150--