summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/libidn/libidn/libidn_fix_for_automake-1.12.patch
blob: 3c0559e34f4fdbb74eb72e556caea65a3fd3b131 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
From d4f64b78419139eda3c0e1c6ee116bb5f70ea67c Mon Sep 17 00:00:00 2001
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Date: Wed, 2 May 2012 18:05:19 -0700
Subject: [PATCH] libtasn1: fix build with automake 1.12

Upstream-Status: Pending

This patch fixes following issue with automake 1.12

| automake: warnings are treated as errors
| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: warning: 'libidn.la': linking libtool libraries using a non-POSIX
| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'

Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
2012/05/03

---
 configure.ac | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/configure.ac b/configure.ac
index 8297649..7b9626e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -33,6 +33,10 @@ AC_SUBST(LT_CURRENT, 18)
 AC_SUBST(LT_REVISION, 0)
 AC_SUBST(LT_AGE, 6)
 
+# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
+m4_pattern_allow([AM_PROG_AR])
+AM_PROG_AR
+
 AC_PROG_CC
 gl_EARLY
 lgl_EARLY