From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 44F76138D03 for ; Sun, 28 Jun 2015 19:19:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C1D29E08C4; Sun, 28 Jun 2015 19:19:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5F94CE08C4 for ; Sun, 28 Jun 2015 19:19:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A11633409FE for ; Sun, 28 Jun 2015 19:19:41 +0000 (UTC) Received: by oystercatcher.gentoo.org (Postfix, from userid 2365) id 3358E744; Sun, 28 Jun 2015 19:19:39 +0000 (UTC) From: "Kristian Fiskerstrand (k_f)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, k_f@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libgcrypt/files: libgcrypt-1.6.3-freebsd-mpi.patch libgcrypt-1.6.0-serial-tests.patch libgcrypt-1.6.1-x32-compat.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: libgcrypt-1.6.3-freebsd-mpi.patch libgcrypt-1.6.0-serial-tests.patch libgcrypt-1.6.1-x32-compat.patch X-VCS-Directories: dev-libs/libgcrypt/files X-VCS-Committer: k_f X-VCS-Committer-Name: Kristian Fiskerstrand Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20150628191939.3358E744@oystercatcher.gentoo.org> Date: Sun, 28 Jun 2015 19:19:39 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 405100f5-07e0-4d99-be27-a5a6987acd3f X-Archives-Hash: 8d01b7f593c310d95a216c0e8f4704dc k_f 15/06/28 19:19:39 Added: libgcrypt-1.6.3-freebsd-mpi.patch Removed: libgcrypt-1.6.0-serial-tests.patch libgcrypt-1.6.1-x32-compat.patch Log: Fix compile issue on fbsd (bug #494740). Cleanup old. (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x250B7AFED6379D85!) Revision Changes Path 1.1 dev-libs/libgcrypt/files/libgcrypt-1.6.3-freebsd-mpi.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgcrypt/files/libgcrypt-1.6.3-freebsd-mpi.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgcrypt/files/libgcrypt-1.6.3-freebsd-mpi.patch?rev=1.1&content-type=text/plain Index: libgcrypt-1.6.3-freebsd-mpi.patch =================================================================== >From a36ee7501f68ad7ebcfe31f9659430b9d2c3ddd1 Mon Sep 17 00:00:00 2001 From: NIIBE Yutaka Date: Thu, 11 Jun 2015 16:19:49 +0900 Subject: [PATCH 1/1] mpi: Support FreeBSD 10 or later. * mpi/config.links: Include FreeBSD 10 to 29. -- Thanks to Yuta SATOH. GnuPG-bug-id: 1936, 1974 --- mpi/config.links | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/mpi/config.links b/mpi/config.links index 2fb5e8a..3ead4f0 100644 --- a/mpi/config.links +++ b/mpi/config.links @@ -50,11 +50,12 @@ case "${host}" in path="" mpi_cpu_arch="x86" ;; - i[3467]86*-*-openbsd* | \ - i[3467]86*-*-freebsd*-elf | \ - i[3467]86*-*-freebsd[3-9]* | \ - i[3467]86*-*-freebsdelf* | \ - i[3467]86*-*-netbsd* | \ + i[3467]86*-*-openbsd* | \ + i[3467]86*-*-freebsd*-elf | \ + i[3467]86*-*-freebsd[3-9]* | \ + i[3467]86*-*-freebsd[12][0-9]*| \ + i[3467]86*-*-freebsdelf* | \ + i[3467]86*-*-netbsd* | \ i[3467]86*-*-k*bsd*) echo '#define ELF_SYNTAX' >>./mpi/asm-syntax.h cat $srcdir/mpi/i386/syntax.h >>./mpi/asm-syntax.h @@ -64,6 +65,7 @@ case "${host}" in i586*-*-openbsd* | \ i586*-*-freebsd*-elf | \ i586*-*-freebsd[3-9]* | \ + i586*-*-freebsd[12][0-9]*| \ i586*-*-freebsdelf* | \ i586*-*-netbsd* | \ i586*-*-k*bsd* | \ -- 2.1.4