summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/libidn/libidn/avoid_AM_PROG_MKDIR_P_warning_error_with_automake_1.12.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/libidn/libidn/avoid_AM_PROG_MKDIR_P_warning_error_with_automake_1.12.patch')
-rw-r--r--meta/recipes-extended/libidn/libidn/avoid_AM_PROG_MKDIR_P_warning_error_with_automake_1.12.patch25
1 files changed, 17 insertions, 8 deletions
diff --git a/meta/recipes-extended/libidn/libidn/avoid_AM_PROG_MKDIR_P_warning_error_with_automake_1.12.patch b/meta/recipes-extended/libidn/libidn/avoid_AM_PROG_MKDIR_P_warning_error_with_automake_1.12.patch
index 98ba4d6ff6..43bd232944 100644
--- a/meta/recipes-extended/libidn/libidn/avoid_AM_PROG_MKDIR_P_warning_error_with_automake_1.12.patch
+++ b/meta/recipes-extended/libidn/libidn/avoid_AM_PROG_MKDIR_P_warning_error_with_automake_1.12.patch
@@ -1,25 +1,34 @@
1Upstream-Status: Inappropriate 1From 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
2 7
3automake 1.12.x has deprecated AM_PROG_MKDIR_P , and throws a warning for that, 8automake 1.12.x has deprecated AM_PROG_MKDIR_P , and throws a warning for that,
4and the warnings are treated as errors because of the -Werror parameter. 9and the warnings are treated as errors because of the -Werror parameter.
5 10
6These AM_PROG_MKDIR_P are coming from gettext, and the latest gettext code has not 11These AM_PROG_MKDIR_P are coming from gettext, and the latest gettext code has not
7eliminated these deprecated macros yet. So disable the treatment of warnings 12eliminated these deprecated macros yet. So disable the treatment of warnings
8as errors until gettext is updated to remove the deprecated macros. 13as errors until gettext is updated to remove the deprecated macros.
9 14
10Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> 15Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
112012/07/10 162012/07/10
12 17
13Index: libidn-1.24/configure.ac 18---
14=================================================================== 19 configure.ac | 2 +-
15--- libidn-1.24.orig/configure.ac 20 1 file changed, 1 insertion(+), 1 deletion(-)
16+++ libidn-1.24/configure.ac 21
17@@ -23,7 +23,7 @@ AC_COPYRIGHT([Copyright (c) 2002-2011 Si 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])
18 AC_CONFIG_AUX_DIR([build-aux]) 27 AC_CONFIG_AUX_DIR([build-aux])
19 AC_CONFIG_MACRO_DIR([m4]) 28 AC_CONFIG_MACRO_DIR([m4])
20 AC_CONFIG_HEADERS(config.h) 29 AC_CONFIG_HEADERS(config.h)
21-AM_INIT_AUTOMAKE([1.10 -Wall -Werror -Wno-override]) 30-AM_INIT_AUTOMAKE([1.10 -Wall -Werror -Wno-override])
22+AM_INIT_AUTOMAKE([1.10 -Wall -Wno-override]) 31+AM_INIT_AUTOMAKE([1.10 -Wall -Wno-override])
23 AM_SILENT_RULES([yes]) 32 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
24 33
25 # Library code modified: REVISION++ 34 # Library code modified: REVISION++