diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2012-05-02 18:05:19 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-25 11:17:57 +0100 |
commit | 724f9ad8cea45ef17ba8667b5b44ef1c5045b1f1 (patch) | |
tree | 4242218da6480b282c59ef978b492c607d1f5967 /meta/recipes-support/gnutls/libtasn1 | |
parent | 0d4d9bd61bcc1a451c226044f2ffee3236f56550 (diff) | |
download | poky-724f9ad8cea45ef17ba8667b5b44ef1c5045b1f1.tar.gz |
libtasn1: fix build with automake 1.12
(From OE-Core rev: 1bb75581291e72c6a61d2a937bda0696221fb1d3)
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/gnutls/libtasn1')
-rw-r--r-- | meta/recipes-support/gnutls/libtasn1/libtasn1_fix_for_automake_1.12.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-support/gnutls/libtasn1/libtasn1_fix_for_automake_1.12.patch b/meta/recipes-support/gnutls/libtasn1/libtasn1_fix_for_automake_1.12.patch new file mode 100644 index 0000000000..5540bef940 --- /dev/null +++ b/meta/recipes-support/gnutls/libtasn1/libtasn1_fix_for_automake_1.12.patch | |||
@@ -0,0 +1,28 @@ | |||
1 | Upstream-Status: Pending | ||
2 | |||
3 | This patch avoids following issues with automake 1.12: | ||
4 | |||
5 | | automake: warnings are treated as errors | ||
6 | | /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: warning: 'libtasn1.la': linking libtool libraries using a non-POSIX | ||
7 | | /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' | ||
8 | |||
9 | Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com> | ||
10 | 2012/05/02 | ||
11 | |||
12 | |||
13 | Index: libtasn1-2.11/configure.ac | ||
14 | =================================================================== | ||
15 | --- libtasn1-2.11.orig/configure.ac | ||
16 | +++ libtasn1-2.11/configure.ac | ||
17 | @@ -38,6 +38,11 @@ lgl_EARLY | ||
18 | AC_PROG_YACC | ||
19 | AC_PROG_LN_S | ||
20 | |||
21 | +# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it | ||
22 | +m4_pattern_allow([AM_PROG_AR]) | ||
23 | +AM_PROG_AR | ||
24 | + | ||
25 | + | ||
26 | dnl Checks for programs. | ||
27 | AC_PROG_INSTALL | ||
28 | AM_MISSING_PROG(HELP2MAN, help2man, $missing_dir) | ||