diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2012-05-02 13:49:21 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-25 11:17:36 +0100 |
commit | 000bfb7961ad106a93be8fc98118c533bd6b690d (patch) | |
tree | f35c231d72e42679c39ca461ed90bdcf444b747e /meta/recipes-support/mpfr/mpfr-3.1.0 | |
parent | 902a528867292172bfb060a31767f7b5e39f40c1 (diff) | |
download | openembedded-core-000bfb7961ad106a93be8fc98118c533bd6b690d.tar.gz openembedded-core-000bfb7961ad106a93be8fc98118c533bd6b690d.tar.bz2 openembedded-core-000bfb7961ad106a93be8fc98118c533bd6b690d.zip |
mpfr: fix build with automake 1.12
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'meta/recipes-support/mpfr/mpfr-3.1.0')
-rw-r--r-- | meta/recipes-support/mpfr/mpfr-3.1.0/mpfr_fix_for_automake-1.12.patch | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-support/mpfr/mpfr-3.1.0/mpfr_fix_for_automake-1.12.patch b/meta/recipes-support/mpfr/mpfr-3.1.0/mpfr_fix_for_automake-1.12.patch new file mode 100644 index 0000000000..5b0a24aa3e --- /dev/null +++ b/meta/recipes-support/mpfr/mpfr-3.1.0/mpfr_fix_for_automake-1.12.patch @@ -0,0 +1,35 @@ +Upstream-Status: Pending + +this patch avoids these issues with automake 1.12 + +| configure.ac:304: error: automatic de-ANSI-fication support has been removed +| tests/Makefile.am:12: error: automatic de-ANSI-fication support has been removed + +Signed-Off-By: Nitin A Kamble <nitin.a.kamble@.intel.com> +2012/05/02 + +Index: mpfr-3.1.0/configure.ac +=================================================================== +--- mpfr-3.1.0.orig/configure.ac ++++ mpfr-3.1.0/configure.ac +@@ -301,7 +301,6 @@ if test "$test_CFLAGS" != set && test -n + fi + + AM_PROG_CC_C_O +-AM_C_PROTOTYPES + + case $host in + *-apple-darwin*) +Index: mpfr-3.1.0/tests/Makefile.am +=================================================================== +--- mpfr-3.1.0.orig/tests/Makefile.am ++++ mpfr-3.1.0/tests/Makefile.am +@@ -9,7 +9,7 @@ + # PARTICULAR PURPOSE. + + +-AUTOMAKE_OPTIONS = 1.6 gnu $(top_builddir)/ansi2knr ++AUTOMAKE_OPTIONS = 1.6 gnu + + # tversion is run + # * at the beginning so that the user gets a possible version error |