summaryrefslogtreecommitdiffstats
path: root/package/mutt/0001-Fix-static-build-with-libidn2-and-libunistring.patch
diff options
context:
space:
mode:
authorFabrice Fontaine <fontaine.fabrice@gmail.com>2019-01-14 21:25:41 +0100
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>2019-01-14 21:51:33 +0100
commit7dc547c9a809c10150cbefa2aba99a950c0ebc9e (patch)
treeb1cab2f4d4a2444474dfb7070f71987b2751944c /package/mutt/0001-Fix-static-build-with-libidn2-and-libunistring.patch
parentb1056f16f448f30b8642f83c7500d6d809ab9ac3 (diff)
downloadbuildroot-7dc547c9a809c10150cbefa2aba99a950c0ebc9e.tar.gz
buildroot-7dc547c9a809c10150cbefa2aba99a950c0ebc9e.zip
package/mutt: bump to version 1.11.2
Remove patch (rejected upstream: https://gitlab.com/muttmua/mutt/merge_requests/25), an other solution has been preferred: https://gitlab.com/muttmua/mutt/commit/78db40f25c6479b14da5a73adf7207bfbec5ccc5). This other solution doesn't require pkg-config, so we can drop the host-pkgconf dependency. Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Reviewed-by: Ryan Barnett <ryan.barnett@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/mutt/0001-Fix-static-build-with-libidn2-and-libunistring.patch')
-rw-r--r--package/mutt/0001-Fix-static-build-with-libidn2-and-libunistring.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/package/mutt/0001-Fix-static-build-with-libidn2-and-libunistring.patch b/package/mutt/0001-Fix-static-build-with-libidn2-and-libunistring.patch
deleted file mode 100644
index 56b90f5e3b..0000000000
--- a/package/mutt/0001-Fix-static-build-with-libidn2-and-libunistring.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From 1baceb95bd8e6f35c25bc7afdc6a88c8f6264f3f Mon Sep 17 00:00:00 2001
-From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
-Date: Mon, 20 Aug 2018 19:06:08 +0200
-Subject: [PATCH] Fix static build with libidn2 and libunistring
-
-When libidn2 is statically build with libunistring support, mutt needs
-to add -lunistring to LIBS.
-To do that, add a call to PKG_CHECK_MODULES to retrieve this information
-from libidn2.pc
-
-Fixes:
- - http://autobuild.buildroot.net/results/177da8f4798f69298db5385957184f1c53cca923
-
-Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
----
- configure.ac | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/configure.ac b/configure.ac
-index 29252173..2e69ac19 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -1341,6 +1341,10 @@ AC_ARG_WITH(idn2, AS_HELP_STRING([--with-idn2=@<:@PFX@:>@],[Use GNU libidn2 for
- if test "$with_idn2" != "yes" ; then
- CPPFLAGS="$CPPFLAGS -I$with_idn2/include"
- LDFLAGS="$LDFLAGS -L$with_idn2/lib"
-+ else
-+ PKG_CHECK_MODULES([LIBIDN2], libidn2,
-+ [CPPFLAGS="$CPPFLAGS $LIBIDN2_CFLAGS"
-+ LIBS="$LIBIDN2_LIBS"])
- fi
- fi
- ],
---
-2.14.1
-
OpenPOWER on IntegriCloud