annotate src/gnutls-1-fixes.patch @ 4315:0a747a64a790

gnutls: update to 3.4.17 * src/gnutls-1-fixes.patch: update patch from mxe.cc * src/gnutls.mk: update version, cheksum * src/nettle-1-fixes.patch: update patch from mxe.cc * src/nettle.mk: update version checksum v3.3
author John D
date Wed, 04 Jan 2017 08:32:20 -0500
parents 9d1dbbcac6ea
children 0cf6aa8f90de
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4315
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
1 This file is part of MXE. See LICENSE.md for licensing information.
2389
d850f952f766 update package gnutls
Mark Brand <mabrand@mabrand.nl>
parents: 2353
diff changeset
2
4315
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
3 Contains ad hoc patches for cross building.
2264
335b2c80a2db update package gnutls
Mark Brand <mabrand@mabrand.nl>
parents: 2246
diff changeset
4
4315
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
5 From a769aa5f4edb5a4a7b6dc36d5d9a889f2249a48f Mon Sep 17 00:00:00 2001
3267
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents: 2821
diff changeset
6 From: Mark Brand <mabrand@mabrand.nl>
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents: 2821
diff changeset
7 Date: Mon, 4 Feb 2013 16:11:12 +0100
4315
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
8 Subject: [PATCH 1/3] add missing private lib to pc file
2748
3dc2260fa84d package gnutls: automake 1.12 compatibility
Mark Brand <mabrand@mabrand.nl>
parents: 2353
diff changeset
9
3dc2260fa84d package gnutls: automake 1.12 compatibility
Mark Brand <mabrand@mabrand.nl>
parents: 2353
diff changeset
10
3267
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents: 2821
diff changeset
11 diff --git a/lib/gnutls.pc.in b/lib/gnutls.pc.in
4315
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
12 index f1a4157..9b1ed59 100644
3267
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents: 2821
diff changeset
13 --- a/lib/gnutls.pc.in
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents: 2821
diff changeset
14 +++ b/lib/gnutls.pc.in
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents: 2821
diff changeset
15 @@ -19,6 +19,6 @@ Description: Transport Security Layer implementation for the GNU system
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents: 2821
diff changeset
16 URL: http://www.gnutls.org/
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents: 2821
diff changeset
17 Version: @VERSION@
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents: 2821
diff changeset
18 Libs: -L${libdir} -lgnutls
4315
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
19 -Libs.private: @LIBZ@ @LIBINTL@ @LIBSOCKET@ @LIBPTHREAD@ @LIBICONV@ @P11_KIT_LIBS@ @LIB_SELECT@ @TSS_LIBS@ @GMP_LIBS@
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
20 +Libs.private: @LIBZ@ @LIBINTL@ @LIBSOCKET@ @LIBPTHREAD@ @LIBICONV@ @P11_KIT_LIBS@ @LIB_SELECT@ @TSS_LIBS@ @GMP_LIBS@ -lcrypt32
3267
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents: 2821
diff changeset
21 @GNUTLS_REQUIRES_PRIVATE@
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents: 2821
diff changeset
22 Cflags: -I${includedir}
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents: 2821
diff changeset
23 --
4315
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
24 2.5.0
2748
3dc2260fa84d package gnutls: automake 1.12 compatibility
Mark Brand <mabrand@mabrand.nl>
parents: 2353
diff changeset
25
3dc2260fa84d package gnutls: automake 1.12 compatibility
Mark Brand <mabrand@mabrand.nl>
parents: 2353
diff changeset
26
4315
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
27 From 8afb001057028f6a3c671406c8914540c3b9b6e6 Mon Sep 17 00:00:00 2001
3824
9d1dbbcac6ea gnutls: update gnutls from mxe.cc
John Donoghue
parents: 3595
diff changeset
28 From: Mark Brand <mabrand@mabrand.nl>
9d1dbbcac6ea gnutls: update gnutls from mxe.cc
John Donoghue
parents: 3595
diff changeset
29 Date: Mon, 24 Nov 2014 08:56:48 +0100
4315
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
30 Subject: [PATCH 2/3] windows build fix: ws2tcpip.h supplies inet_ntop
3824
9d1dbbcac6ea gnutls: update gnutls from mxe.cc
John Donoghue
parents: 3595
diff changeset
31
9d1dbbcac6ea gnutls: update gnutls from mxe.cc
John Donoghue
parents: 3595
diff changeset
32 Follow-up to 492c2b937ab66134d0b37499a6f3a747e19bc31a
9d1dbbcac6ea gnutls: update gnutls from mxe.cc
John Donoghue
parents: 3595
diff changeset
33
9d1dbbcac6ea gnutls: update gnutls from mxe.cc
John Donoghue
parents: 3595
diff changeset
34 Signed-off-by: Mark Brand <mabrand@mabrand.nl>
9d1dbbcac6ea gnutls: update gnutls from mxe.cc
John Donoghue
parents: 3595
diff changeset
35
9d1dbbcac6ea gnutls: update gnutls from mxe.cc
John Donoghue
parents: 3595
diff changeset
36 taken from: http://lists.gnutls.org/pipermail/gnutls-devel/2014-November/007250.html
9d1dbbcac6ea gnutls: update gnutls from mxe.cc
John Donoghue
parents: 3595
diff changeset
37
9d1dbbcac6ea gnutls: update gnutls from mxe.cc
John Donoghue
parents: 3595
diff changeset
38 diff --git a/lib/x509/output.c b/lib/x509/output.c
4315
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
39 index b126c30..a97d445 100644
3824
9d1dbbcac6ea gnutls: update gnutls from mxe.cc
John Donoghue
parents: 3595
diff changeset
40 --- a/lib/x509/output.c
9d1dbbcac6ea gnutls: update gnutls from mxe.cc
John Donoghue
parents: 3595
diff changeset
41 +++ b/lib/x509/output.c
4315
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
42 @@ -34,7 +34,11 @@
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
43 #include <gnutls-idna.h>
3595
fc2b5e19d737 gnutls: update to 3.2.14
John Donoghue
parents: 3267
diff changeset
44
3824
9d1dbbcac6ea gnutls: update gnutls from mxe.cc
John Donoghue
parents: 3595
diff changeset
45 #ifdef HAVE_INET_NTOP
9d1dbbcac6ea gnutls: update gnutls from mxe.cc
John Donoghue
parents: 3595
diff changeset
46 -# include <arpa/inet.h>
9d1dbbcac6ea gnutls: update gnutls from mxe.cc
John Donoghue
parents: 3595
diff changeset
47 +# ifdef _WIN32
9d1dbbcac6ea gnutls: update gnutls from mxe.cc
John Donoghue
parents: 3595
diff changeset
48 +# include <ws2tcpip.h>
9d1dbbcac6ea gnutls: update gnutls from mxe.cc
John Donoghue
parents: 3595
diff changeset
49 +# else
9d1dbbcac6ea gnutls: update gnutls from mxe.cc
John Donoghue
parents: 3595
diff changeset
50 +# include <arpa/inet.h>
9d1dbbcac6ea gnutls: update gnutls from mxe.cc
John Donoghue
parents: 3595
diff changeset
51 +# endif
9d1dbbcac6ea gnutls: update gnutls from mxe.cc
John Donoghue
parents: 3595
diff changeset
52 #endif
3595
fc2b5e19d737 gnutls: update to 3.2.14
John Donoghue
parents: 3267
diff changeset
53
3824
9d1dbbcac6ea gnutls: update gnutls from mxe.cc
John Donoghue
parents: 3595
diff changeset
54 #define addf _gnutls_buffer_append_printf
3595
fc2b5e19d737 gnutls: update to 3.2.14
John Donoghue
parents: 3267
diff changeset
55 --
4315
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
56 2.5.0
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
57
3595
fc2b5e19d737 gnutls: update to 3.2.14
John Donoghue
parents: 3267
diff changeset
58
4315
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
59 diff -ur gnutls-3.4.17.orig/configure.ac gnutls-3.4.17/configure.ac
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
60 --- gnutls-3.4.17.orig/configure.ac 2017-01-02 10:05:15.291188739 -0500
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
61 +++ gnutls-3.4.17/configure.ac 2017-01-02 10:06:04.003488874 -0500
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
62 @@ -26,7 +26,7 @@
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
63 AC_CONFIG_MACRO_DIR([m4])
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
64 AC_CANONICAL_HOST
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
65
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
66 -AM_INIT_AUTOMAKE([1.12.2 subdir-objects no-dist-gzip dist-xz -Wall -Wno-override])
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
67 +AM_INIT_AUTOMAKE([1.11.6 subdir-objects no-dist-gzip dist-xz -Wall -Wno-override])
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
68 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
69 AC_CONFIG_HEADERS([config.h])
0a747a64a790 gnutls: update to 3.4.17
John D
parents: 3824
diff changeset
70