diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2012-05-03 13:39:38 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-25 11:17:38 +0100 |
commit | dda947447aee5bcf496d7bae2bf0fb6897e2e0f9 (patch) | |
tree | a58ed8df670bb1409d6c59e330bc4aea62984641 /meta/recipes-support/libcroco/files | |
parent | c4fea2a6cb0aa8ee5245a4bb4a9fe1f35fbe2a32 (diff) | |
download | openembedded-core-dda947447aee5bcf496d7bae2bf0fb6897e2e0f9.tar.gz openembedded-core-dda947447aee5bcf496d7bae2bf0fb6897e2e0f9.tar.bz2 openembedded-core-dda947447aee5bcf496d7bae2bf0fb6897e2e0f9.zip |
libcroco: fix build with automake 1.12
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'meta/recipes-support/libcroco/files')
-rw-r--r-- | meta/recipes-support/libcroco/files/libcroco_fix_for_automake-1.12.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-support/libcroco/files/libcroco_fix_for_automake-1.12.patch b/meta/recipes-support/libcroco/files/libcroco_fix_for_automake-1.12.patch new file mode 100644 index 0000000000..9dcf7b039d --- /dev/null +++ b/meta/recipes-support/libcroco/files/libcroco_fix_for_automake-1.12.patch @@ -0,0 +1,22 @@ +Upstream-Status: Pending + +This patch fixes following kind of issues with automake 1.12 + +| configure.in:51: error: automatic de-ANSI-fication support has been removed + +Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com> +2012/05/03 + +Index: libcroco-0.6.3/configure.in +=================================================================== +--- libcroco-0.6.3.orig/configure.in ++++ libcroco-0.6.3/configure.in +@@ -47,8 +47,6 @@ AC_PROG_CC + AC_PROG_INSTALL + AC_PROG_CPP + +-dnl Make sure we have an ANSI compiler +-AM_C_PROTOTYPES + test "x$U" != "x" && AC_MSG_ERROR(Compiler not ANSI compliant) + + dnl Checks for libraries. |