summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libcheck/libcheck
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2013-11-09 11:30:00 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-11-20 14:03:23 +0000
commit20efe19ed0a8b99fb1926c66728f0af7b086b4be (patch)
tree69ede035f31402916b1f561bdabd44a4de272dd7 /meta/recipes-support/libcheck/libcheck
parent0079588f5f8cd2d917a8b21320051eb6e08fd8d2 (diff)
downloadpoky-20efe19ed0a8b99fb1926c66728f0af7b086b4be.tar.gz
libcheck: upgrade to 0.9.11
Both patches have been merged upstream. (From OE-Core rev: 9982f9836f06b1a9282d657ee249eb08261518cb) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libcheck/libcheck')
-rw-r--r--meta/recipes-support/libcheck/libcheck/ignore_automake_warning.patch15
-rw-r--r--meta/recipes-support/libcheck/libcheck/libcheck_fix_for_automake-1.12.patch26
2 files changed, 0 insertions, 41 deletions
diff --git a/meta/recipes-support/libcheck/libcheck/ignore_automake_warning.patch b/meta/recipes-support/libcheck/libcheck/ignore_automake_warning.patch
deleted file mode 100644
index 51c5863f09..0000000000
--- a/meta/recipes-support/libcheck/libcheck/ignore_automake_warning.patch
+++ /dev/null
@@ -1,15 +0,0 @@
1Upstream-Status: Inappropriate [configuration]
2
3Signed-off-by: Marko Lindqvist <cazfi74@gmail.com>
4diff -Nurd check-0.9.10/configure.ac check-0.9.10/configure.ac
5--- check-0.9.10/configure.ac 2013-04-18 13:19:02.000000000 +0300
6+++ check-0.9.10/configure.ac 2013-10-25 00:26:43.102413363 +0300
7@@ -26,7 +26,7 @@
8 AC_USE_SYSTEM_EXTENSIONS
9
10 # really severe build strictness
11-AM_INIT_AUTOMAKE([-Wall -Werror gnits 1.9.6])
12+AM_INIT_AUTOMAKE([-Wall gnits 1.9.6])
13
14 # From patch 2803433, request system extensions to generate 64-bit safe code
15 AC_USE_SYSTEM_EXTENSIONS
diff --git a/meta/recipes-support/libcheck/libcheck/libcheck_fix_for_automake-1.12.patch b/meta/recipes-support/libcheck/libcheck/libcheck_fix_for_automake-1.12.patch
deleted file mode 100644
index 263f6d6f0d..0000000000
--- a/meta/recipes-support/libcheck/libcheck/libcheck_fix_for_automake-1.12.patch
+++ /dev/null
@@ -1,26 +0,0 @@
1Upstream-Status: Pending
2
3This patch fixes following issue 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: 'libcompat.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
9Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
102012/05/03
11
12Index: check-0.9.8/configure.ac
13===================================================================
14--- check-0.9.8.orig/configure.ac
15+++ check-0.9.8/configure.ac
16@@ -103,6 +103,10 @@ AC_PROG_INSTALL
17 AC_PROG_LN_S
18 AC_PROG_LIBTOOL
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 # add these options to CFLAGS if the compiler supports them
25 AC_DEFUN([AX_CFLAGS_ADD],[AX_C_CHECK_FLAG($1, , , CFLAGS="$CFLAGS $1")])
26 AX_CFLAGS_WARN_ALL_ANSI