blob: 43bd23294483e5f00888ccfa7784910b901f17a1 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From cdd9e2e960eeb4eda7b08f0113d0cd03524c1d45 Mon Sep 17 00:00:00 2001
2From: Nitin A Kamble <nitin.a.kamble@intel.com>
3Date: Tue, 10 Jul 2012 02:44:30 -0700
4Subject: [PATCH] libidn: fix build with automake 1.12
5
6Upstream-Status: Inappropriate
Patrick Williamsc124f4f2015-09-15 14:41:29 -05007
8automake 1.12.x has deprecated AM_PROG_MKDIR_P , and throws a warning for that,
9and the warnings are treated as errors because of the -Werror parameter.
10
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080011These AM_PROG_MKDIR_P are coming from gettext, and the latest gettext code has not
Patrick Williamsc124f4f2015-09-15 14:41:29 -050012eliminated these deprecated macros yet. So disable the treatment of warnings
13as errors until gettext is updated to remove the deprecated macros.
14
Patrick Williamsc0f7c042017-02-23 20:41:17 -060015Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500162012/07/10
17
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080018---
19 configure.ac | 2 +-
20 1 file changed, 1 insertion(+), 1 deletion(-)
21
22diff --git a/configure.ac b/configure.ac
23index 261dad2..c4f935e 100644
24--- a/configure.ac
25+++ b/configure.ac
26@@ -22,7 +22,7 @@ AC_INIT([GNU Libidn], [1.34], [bug-libidn@gnu.org])
Patrick Williamsc124f4f2015-09-15 14:41:29 -050027 AC_CONFIG_AUX_DIR([build-aux])
28 AC_CONFIG_MACRO_DIR([m4])
29 AC_CONFIG_HEADERS(config.h)
30-AM_INIT_AUTOMAKE([1.10 -Wall -Werror -Wno-override])
31+AM_INIT_AUTOMAKE([1.10 -Wall -Wno-override])
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080032 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
Patrick Williamsc124f4f2015-09-15 14:41:29 -050033
34 # Library code modified: REVISION++