Codebase list libmypaint / 15db1dd
add patch 0004 for autoconf2.70 hack Boyuan Yang 3 years ago
3 changed file(s) with 33 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
0 libmypaint (1.6.0-2) UNRELEASED; urgency=medium
0 libmypaint (1.6.0-2) unstable; urgency=medium
11
22 [ Debian Janitor ]
33 * Set upstream metadata fields: Bug-Database, Bug-Submit.
44
5 -- Boyuan Yang <byang@debian.org> Sat, 23 May 2020 06:34:06 +0800
5 [ Boyuan Yang ]
6 * debian/patches/0004: Add dirty workaround to fix FTBFS with
7 autoconf 2.70. (Closes: #978854)
8
9 -- Boyuan Yang <byang@debian.org> Mon, 18 Jan 2021 11:24:19 -0500
610
711 libmypaint (1.6.0-1) unstable; urgency=medium
812
0 From: Boyuan Yang <byang@debian.org>
1 Date: Mon, 18 Jan 2021 11:16:53 -0500
2 Subject: configure.ac: autoconf2.70 hack
3
4 Very dirty hack to make configure.ac compatible with
5 autoconf 2.70.
6
7 Forwarded: https://github.com/mypaint/libmypaint/issues/178
8 Bug-Debian: https://bugs.debian.org/978854
9 ---
10 configure.ac | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/configure.ac b/configure.ac
14 index 527d753..954b15b 100644
15 --- a/configure.ac
16 +++ b/configure.ac
17 @@ -236,7 +236,7 @@ if test "x$enable_i18n" != "xno"; then
18 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE",
19 [The prefix for our gettext translation domains.])
20 AC_SUBST(GETTEXT_PACKAGE)
21 - IT_PROG_INTLTOOL
22 +IT_PROG_INTLTOOL([0.50.1])
23 AM_GLIB_GNU_GETTEXT
24
25 dnl Debian: stdlib
00 0002-configure.ac-Force-using-python3.patch
11 0002-Make-the-build-reproducible.patch
22 0003-Makefile.am-Hardcode-release-LDFLAGS-for-now.patch
3 0004-configure.ac-autoconf2.70-hack.patch