summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-01-28 22:31:10 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-01-29 21:21:53 +0000
commit1cd82ae6557bd20b33d0827cbc0a3f386f4da5b1 (patch)
tree991d95790cd38185667e6e4851db7896cd3e0fa1 /meta
parent77493aa990d9bfa99055f427abc20e120ae29bf9 (diff)
downloadpoky-1cd82ae6557bd20b33d0827cbc0a3f386f4da5b1.tar.gz
msmtp: Fix to work with autoconf 2.70
Add the required gettext version macro to work with the new autoconf version. (From OE-Core rev: e8c0012ea036cb962db25a5941619c22e7218985) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-extended/msmtp/msmtp/autoconf270.patch17
-rw-r--r--meta/recipes-extended/msmtp/msmtp_1.8.14.bb3
2 files changed, 19 insertions, 1 deletions
diff --git a/meta/recipes-extended/msmtp/msmtp/autoconf270.patch b/meta/recipes-extended/msmtp/msmtp/autoconf270.patch
new file mode 100644
index 0000000000..6efd3d6d7c
--- /dev/null
+++ b/meta/recipes-extended/msmtp/msmtp/autoconf270.patch
@@ -0,0 +1,17 @@
1Update to add the required gettext version to work with autoconf 2.70
2
3Upstream-Status: Pending
4RP - 2021/1/28
5
6Index: msmtp-1.8.14/configure.ac
7===================================================================
8--- msmtp-1.8.14.orig/configure.ac
9+++ msmtp-1.8.14/configure.ac
10@@ -44,6 +44,7 @@ case "${target}" in *-*-mingw*) LIBS="$L
11
12 dnl Gettext
13 AM_GNU_GETTEXT([external])
14+AM_GNU_GETTEXT_VERSION([0.21])
15
16 dnl Headers, functions, and types
17 AC_CHECK_HEADERS([sysexits.h netdb.h arpa/inet.h sys/select.h sys/socket.h sys/wait.h netinet/in.h])
diff --git a/meta/recipes-extended/msmtp/msmtp_1.8.14.bb b/meta/recipes-extended/msmtp/msmtp_1.8.14.bb
index 3bd5f9edeb..c35c8e7ecc 100644
--- a/meta/recipes-extended/msmtp/msmtp_1.8.14.bb
+++ b/meta/recipes-extended/msmtp/msmtp_1.8.14.bb
@@ -10,7 +10,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
10 10
11UPSTREAM_CHECK_URI = "https://marlam.de/msmtp/download/" 11UPSTREAM_CHECK_URI = "https://marlam.de/msmtp/download/"
12 12
13SRC_URI = "https://marlam.de/${BPN}/releases/${BP}.tar.xz" 13SRC_URI = "https://marlam.de/${BPN}/releases/${BP}.tar.xz \
14 file://autoconf270.patch"
14SRC_URI[sha256sum] = "d56f065d711486e9c234618515a02a48a48dab4051b34f3e108fbecb6fb773b4" 15SRC_URI[sha256sum] = "d56f065d711486e9c234618515a02a48a48dab4051b34f3e108fbecb6fb773b4"
15 16
16inherit gettext autotools update-alternatives pkgconfig 17inherit gettext autotools update-alternatives pkgconfig