Gentoo Archives: gentoo-commits

From: "Kristian Fiskerstrand (k_f)" <k_f@g.o>
To: gentoo-commits@l.g.o
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
Date: Sun, 28 Jun 2015 19:19:48
Message-Id: 20150628191939.3358E744@oystercatcher.gentoo.org
1 k_f 15/06/28 19:19:39
2
3 Added: libgcrypt-1.6.3-freebsd-mpi.patch
4 Removed: libgcrypt-1.6.0-serial-tests.patch
5 libgcrypt-1.6.1-x32-compat.patch
6 Log:
7 Fix compile issue on fbsd (bug #494740). Cleanup old.
8
9 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x250B7AFED6379D85!)
10
11 Revision Changes Path
12 1.1 dev-libs/libgcrypt/files/libgcrypt-1.6.3-freebsd-mpi.patch
13
14 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
15 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
16
17 Index: libgcrypt-1.6.3-freebsd-mpi.patch
18 ===================================================================
19 From a36ee7501f68ad7ebcfe31f9659430b9d2c3ddd1 Mon Sep 17 00:00:00 2001
20 From: NIIBE Yutaka <gniibe@××××.org>
21 Date: Thu, 11 Jun 2015 16:19:49 +0900
22 Subject: [PATCH 1/1] mpi: Support FreeBSD 10 or later.
23
24 * mpi/config.links: Include FreeBSD 10 to 29.
25
26 --
27
28 Thanks to Yuta SATOH.
29
30 GnuPG-bug-id: 1936, 1974
31 ---
32 mpi/config.links | 12 +++++++-----
33 1 file changed, 7 insertions(+), 5 deletions(-)
34
35 diff --git a/mpi/config.links b/mpi/config.links
36 index 2fb5e8a..3ead4f0 100644
37 --- a/mpi/config.links
38 +++ b/mpi/config.links
39 @@ -50,11 +50,12 @@ case "${host}" in
40 path=""
41 mpi_cpu_arch="x86"
42 ;;
43 - i[3467]86*-*-openbsd* | \
44 - i[3467]86*-*-freebsd*-elf | \
45 - i[3467]86*-*-freebsd[3-9]* | \
46 - i[3467]86*-*-freebsdelf* | \
47 - i[3467]86*-*-netbsd* | \
48 + i[3467]86*-*-openbsd* | \
49 + i[3467]86*-*-freebsd*-elf | \
50 + i[3467]86*-*-freebsd[3-9]* | \
51 + i[3467]86*-*-freebsd[12][0-9]*| \
52 + i[3467]86*-*-freebsdelf* | \
53 + i[3467]86*-*-netbsd* | \
54 i[3467]86*-*-k*bsd*)
55 echo '#define ELF_SYNTAX' >>./mpi/asm-syntax.h
56 cat $srcdir/mpi/i386/syntax.h >>./mpi/asm-syntax.h
57 @@ -64,6 +65,7 @@ case "${host}" in
58 i586*-*-openbsd* | \
59 i586*-*-freebsd*-elf | \
60 i586*-*-freebsd[3-9]* | \
61 + i586*-*-freebsd[12][0-9]*| \
62 i586*-*-freebsdelf* | \
63 i586*-*-netbsd* | \
64 i586*-*-k*bsd* | \
65 --
66 2.1.4