diff options
author | Khem Raj <raj.khem@gmail.com> | 2021-02-05 18:45:29 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-02-05 18:47:13 -0800 |
commit | 1ef86daeb53d37e28f9eba48ae8fdc377e7faacc (patch) | |
tree | 649cc0aaf088a457df949e2a8ce682526c3f313c /meta-gnome | |
parent | 3aa40ae9edbd41f6484af325b94b854a0637f17c (diff) | |
download | meta-openembedded-1ef86daeb53d37e28f9eba48ae8fdc377e7faacc.tar.gz |
libmypaint: Fix build with autotools 2.70+
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Cc: Andreas Müller <schnitzeltony@gmail.com>
Diffstat (limited to 'meta-gnome')
-rw-r--r-- | meta-gnome/recipes-gimp/mypaint/libmypaint/0001-make-build-compatible-w.-autoconf-2.7.patch | 32 | ||||
-rw-r--r-- | meta-gnome/recipes-gimp/mypaint/libmypaint_git.bb | 4 |
2 files changed, 35 insertions, 1 deletions
diff --git a/meta-gnome/recipes-gimp/mypaint/libmypaint/0001-make-build-compatible-w.-autoconf-2.7.patch b/meta-gnome/recipes-gimp/mypaint/libmypaint/0001-make-build-compatible-w.-autoconf-2.7.patch new file mode 100644 index 000000000..28e279438 --- /dev/null +++ b/meta-gnome/recipes-gimp/mypaint/libmypaint/0001-make-build-compatible-w.-autoconf-2.7.patch | |||
@@ -0,0 +1,32 @@ | |||
1 | From 712a101c9aa2eb8548e4d0100a4a2eaf76fad164 Mon Sep 17 00:00:00 2001 | ||
2 | From: Jesper Lloyd <jpl.lloyd@gmail.com> | ||
3 | Date: Wed, 20 Jan 2021 20:21:53 +0100 | ||
4 | Subject: [PATCH] make build compatible w. autoconf 2.7 | ||
5 | |||
6 | Workaround for stricter behaviour (due to a bugfix) in 2.7, | ||
7 | which makes a failing intltoolize macro check fail the build. | ||
8 | |||
9 | Fix provided by hosiet. | ||
10 | |||
11 | Upstream-Status: Backport [https://github.com/mypaint/libmypaint/commit/a6bac154db018e1f1cc4dbddc34f6c8422c891fb] | ||
12 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
13 | --- | ||
14 | configure.ac | 2 +- | ||
15 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
16 | |||
17 | diff --git a/configure.ac b/configure.ac | ||
18 | index 416d9fe..48b9d02 100644 | ||
19 | --- a/configure.ac | ||
20 | +++ b/configure.ac | ||
21 | @@ -248,7 +248,7 @@ if test "x$enable_i18n" != "xno"; then | ||
22 | AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", | ||
23 | [The prefix for our gettext translation domains.]) | ||
24 | AC_SUBST(GETTEXT_PACKAGE) | ||
25 | - IT_PROG_INTLTOOL | ||
26 | +IT_PROG_INTLTOOL | ||
27 | AM_GLIB_GNU_GETTEXT | ||
28 | |||
29 | dnl Debian: stdlib | ||
30 | -- | ||
31 | 2.30.0 | ||
32 | |||
diff --git a/meta-gnome/recipes-gimp/mypaint/libmypaint_git.bb b/meta-gnome/recipes-gimp/mypaint/libmypaint_git.bb index 37d41780d..e711a2a7f 100644 --- a/meta-gnome/recipes-gimp/mypaint/libmypaint_git.bb +++ b/meta-gnome/recipes-gimp/mypaint/libmypaint_git.bb | |||
@@ -12,7 +12,9 @@ DEPENDS = " \ | |||
12 | 12 | ||
13 | inherit autotools gobject-introspection gettext python3native | 13 | inherit autotools gobject-introspection gettext python3native |
14 | 14 | ||
15 | SRC_URI = "git://github.com/mypaint/libmypaint.git;protocol=https;branch=libmypaint-v1" | 15 | SRC_URI = "git://github.com/mypaint/libmypaint.git;protocol=https;branch=libmypaint-v1 \ |
16 | file://0001-make-build-compatible-w.-autoconf-2.7.patch \ | ||
17 | " | ||
16 | SRCREV = "2768251dacce3939136c839aeca413f4aa4241d0" | 18 | SRCREV = "2768251dacce3939136c839aeca413f4aa4241d0" |
17 | PV = "1.6.1" | 19 | PV = "1.6.1" |
18 | S = "${WORKDIR}/git" | 20 | S = "${WORKDIR}/git" |