summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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
-rw-r--r--meta/recipes-support/libcheck/libcheck_0.9.11.bb (renamed from meta/recipes-support/libcheck/libcheck_0.9.10.bb)6
3 files changed, 2 insertions, 45 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
diff --git a/meta/recipes-support/libcheck/libcheck_0.9.10.bb b/meta/recipes-support/libcheck/libcheck_0.9.11.bb
index 05e49c7337..781b9508a1 100644
--- a/meta/recipes-support/libcheck/libcheck_0.9.10.bb
+++ b/meta/recipes-support/libcheck/libcheck_0.9.11.bb
@@ -6,12 +6,10 @@ LICENSE = "LGPLv2.1+"
6LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=2d5025d4aa3495befef8f17206a5b0a1" 6LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=2d5025d4aa3495befef8f17206a5b0a1"
7 7
8SRC_URI = "${SOURCEFORGE_MIRROR}/check/check-${PV}.tar.gz \ 8SRC_URI = "${SOURCEFORGE_MIRROR}/check/check-${PV}.tar.gz \
9 file://libcheck_fix_for_automake-1.12.patch \
10 file://ignore_automake_warning.patch \
11 " 9 "
12 10
13SRC_URI[md5sum] = "6d10a8efb9a683467b92b3bce97aeb30" 11SRC_URI[md5sum] = "fd5a03979bcab9fb80ba005b55f54178"
14SRC_URI[sha256sum] = "823819235753e94ae0bcab3c46cc209de166c32ff2f52cefe120597db4403e6d" 12SRC_URI[sha256sum] = "ea4e8c7ffb00bb4ffb3f59f11744a71f1cc4212c79f3083c7d9a4b0953976936"
15 13
16S = "${WORKDIR}/check-${PV}" 14S = "${WORKDIR}/check-${PV}"
17 15