mxe/src/gnutls-1-fixes.patch

50 lines
1.2 KiB
Diff
Raw Normal View History

2012-03-28 14:46:58 +01:00
This file is part of MXE.
2012-03-29 11:14:15 +01:00
See index.html for further information.
2011-07-07 20:39:38 +01:00
Contains ad hoc patches for cross building.
2012-03-17 15:51:56 +00:00
From 6e89465f1e792f5d527708544cce1ef92ae4669b Mon Sep 17 00:00:00 2001
2012-03-28 14:46:58 +01:00
From: MXE
2011-10-29 00:54:39 +01:00
Date: Fri, 28 Oct 2011 09:23:41 +0200
2012-03-17 15:51:56 +00:00
Subject: [PATCH 1/2] add missing static library linking
2011-07-07 20:39:38 +01:00
diff --git a/lib/gnutls.pc.in b/lib/gnutls.pc.in
2012-02-18 21:51:54 +00:00
index c45f8f3..57d0dbb 100644
2011-07-07 20:39:38 +01:00
--- a/lib/gnutls.pc.in
+++ b/lib/gnutls.pc.in
2012-02-18 21:51:54 +00:00
@@ -19,6 +19,6 @@ Description: Transport Security Layer implementation for the GNU system
2011-07-07 20:39:38 +01:00
URL: http://www.gnu.org/software/gnutls/
Version: @VERSION@
Libs: -L${libdir} -lgnutls
2011-10-29 00:54:39 +01:00
-Libs.private: @LTLIBNETTLE@
+Libs.private: @LTLIBNETTLE@ @LIBS@
2011-07-07 20:39:38 +01:00
@GNUTLS_REQUIRES_PRIVATE@
Cflags: -I${includedir}
--
1.7.9.2
2012-03-17 15:51:56 +00:00
From aa11a6f645ce93f80fbffd7e72c6964bdfd68542 Mon Sep 17 00:00:00 2001
2012-03-28 14:46:58 +01:00
From: MXE
Date: Thu, 24 Nov 2011 15:06:06 +0100
2012-03-28 14:46:58 +01:00
Subject: [PATCH 2/2] disable doc and test (MXE specific)
diff --git a/Makefile.am b/Makefile.am
index 0afe4bd..da7436a 100644
--- a/Makefile.am
+++ b/Makefile.am
2012-02-18 21:51:54 +00:00
@@ -23,7 +23,7 @@ DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --disable-valgrind-tests
2012-02-18 21:51:54 +00:00
SUBDIRS = gl lib extra po
2012-02-18 21:51:54 +00:00
-SUBDIRS += src doc tests
+SUBDIRS += src
if HAVE_GUILE
SUBDIRS += guile
--
1.7.9.2