summaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato/eds/evolution-data-server/fix_for_automake-1.12.x.patch
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2012-07-09 05:00:44 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-17 10:54:04 +0100
commitfc537f344796765c3d2a095c4edb6f7d85d49b79 (patch)
treedce65bbbdd7098bf3aed7bf5161e93cd58c603bd /meta/recipes-sato/eds/evolution-data-server/fix_for_automake-1.12.x.patch
parent2bea94d98c1c2f8b2ae4559d510e4e770439747c (diff)
downloadpoky-fc537f344796765c3d2a095c4edb6f7d85d49b79.tar.gz
evolution-data-server: fix build with automake 1.12.x
Added 2 patches: avoid_automake_errors.patch fix_for_automake-1.12.x.patch More information in the patch headers. (From OE-Core rev: 64c2aa566f022525c7ef0acd7a80359446675990) Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato/eds/evolution-data-server/fix_for_automake-1.12.x.patch')
-rw-r--r--meta/recipes-sato/eds/evolution-data-server/fix_for_automake-1.12.x.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-sato/eds/evolution-data-server/fix_for_automake-1.12.x.patch b/meta/recipes-sato/eds/evolution-data-server/fix_for_automake-1.12.x.patch
new file mode 100644
index 0000000000..ac77a6d5a5
--- /dev/null
+++ b/meta/recipes-sato/eds/evolution-data-server/fix_for_automake-1.12.x.patch
@@ -0,0 +1,28 @@
1Upstream-Status: Pending
2
3Fixed these kinds if warning-errors
4
5warning: 'libebookbackendfile.la': linking libtool libraries using a non-POSIX archiver requires 'AM_PROG_AR' in 'configure.ac'
6Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
72012/07/09
8
9Index: git/configure.ac
10===================================================================
11--- git.orig/configure.ac
12+++ git/configure.ac
13@@ -17,6 +17,7 @@ dnl This number is meaningless, but we'r
14 dnl library names for backward compatibility.
15 m4_define([api_version], [1.2])
16
17+
18 dnl Autoconf / Automake Initialization
19 AC_PREREQ(2.58)
20 AC_INIT([evolution-data-server],[eds_version],[http://bugzilla.gnome.org/enter_bug.cgi?product=Evolution-Data-Server])
21@@ -30,6 +31,7 @@ AC_LANG(C)
22
23 dnl Automake 1.11 - Silent Build Rules
24 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
25+m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) # required by automake 1.12
26
27 dnl Required Package Versions
28 m4_define([glib_minimum_version], [2.16.1])