diff options
| -rw-r--r-- | meta/recipes-support/libmpc/libmpc/libmpc_fix_for_automake-1.12.patch | 26 | ||||
| -rw-r--r-- | meta/recipes-support/libmpc/libmpc_0.8.2.bb | 5 |
2 files changed, 29 insertions, 2 deletions
diff --git a/meta/recipes-support/libmpc/libmpc/libmpc_fix_for_automake-1.12.patch b/meta/recipes-support/libmpc/libmpc/libmpc_fix_for_automake-1.12.patch new file mode 100644 index 0000000000..75fa28e338 --- /dev/null +++ b/meta/recipes-support/libmpc/libmpc/libmpc_fix_for_automake-1.12.patch | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | Upstream-Status: Pending | ||
| 2 | |||
| 3 | this fix avoids this error 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: 'libmpc.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 | Index: mpc-0.8.2/configure.ac | ||
| 13 | =================================================================== | ||
| 14 | --- mpc-0.8.2.orig/configure.ac | ||
| 15 | +++ mpc-0.8.2/configure.ac | ||
| 16 | @@ -86,6 +86,10 @@ AC_PROG_EGREP | ||
| 17 | AC_PROG_SED | ||
| 18 | AC_LANG(C) | ||
| 19 | |||
| 20 | +# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it | ||
| 21 | +m4_pattern_allow([AM_PROG_AR]) | ||
| 22 | +AM_PROG_AR | ||
| 23 | + | ||
| 24 | dnl Check for GMP CFLAGS in gmp.h | ||
| 25 | if test -z "$user_redefine_cc" ; then | ||
| 26 | MPC_GMP_CC_CFLAGS | ||
diff --git a/meta/recipes-support/libmpc/libmpc_0.8.2.bb b/meta/recipes-support/libmpc/libmpc_0.8.2.bb index f991a8e419..7a372bab68 100644 --- a/meta/recipes-support/libmpc/libmpc_0.8.2.bb +++ b/meta/recipes-support/libmpc/libmpc_0.8.2.bb | |||
| @@ -2,10 +2,11 @@ require libmpc.inc | |||
| 2 | 2 | ||
| 3 | DEPENDS = "gmp mpfr" | 3 | DEPENDS = "gmp mpfr" |
| 4 | 4 | ||
| 5 | PR = "r0" | 5 | PR = "r1" |
| 6 | LICENSE="LGPLv2.1" | 6 | LICENSE="LGPLv2.1" |
| 7 | LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=7fbc338309ac38fefcd64b04bb903e34" | 7 | LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=7fbc338309ac38fefcd64b04bb903e34" |
| 8 | SRC_URI = "http://www.multiprecision.org/mpc/download/mpc-${PV}.tar.gz" | 8 | SRC_URI = "http://www.multiprecision.org/mpc/download/mpc-${PV}.tar.gz \ |
| 9 | file://libmpc_fix_for_automake-1.12.patch" | ||
| 9 | 10 | ||
| 10 | SRC_URI[md5sum] = "e98267ebd5648a39f881d66797122fb6" | 11 | SRC_URI[md5sum] = "e98267ebd5648a39f881d66797122fb6" |
| 11 | SRC_URI[sha256sum] = "ae79f8d41d8a86456b68607e9ca398d00f8b7342d1d83bcf4428178ac45380c7" | 12 | SRC_URI[sha256sum] = "ae79f8d41d8a86456b68607e9ca398d00f8b7342d1d83bcf4428178ac45380c7" |
