[gnome-continuous-yocto/gnomeostree-3.14-dizzy] valgrind: Enable building valgrind on host with 4.x kernel



commit a3edea4f238380e845ce26dd13f8153f4d5324bc
Author: Vadim Rutkovsky <vrutkovs redhat com>
Date:   Mon Aug 17 14:47:36 2015 +0200

    valgrind: Enable building valgrind on host with 4.x kernel

 .../valgrind/enable.building.on.4.x.kernel.patch   |   39 ++++++++++++++++++++
 meta/recipes-devtools/valgrind/valgrind_3.9.0.bb   |    1 +
 2 files changed, 40 insertions(+), 0 deletions(-)
---
diff --git a/meta/recipes-devtools/valgrind/valgrind/enable.building.on.4.x.kernel.patch 
b/meta/recipes-devtools/valgrind/valgrind/enable.building.on.4.x.kernel.patch
new file mode 100644
index 0000000..9187361
--- /dev/null
+++ b/meta/recipes-devtools/valgrind/valgrind/enable.building.on.4.x.kernel.patch
@@ -0,0 +1,39 @@
+Enable building valgrind on host with 4.x kernel.
+
+For OpenEmbedded builds we should be checking something like
+OLDEST_KERNEL instead of `uname -r`, but this is good enough for now.
+
+Building on 4.x* currently fails with:
+  configure:5556: checking for the kernel version
+  configure:5579: result: unsupported (4.0.0-rc3-00111-gaffb817)
+  configure:5581: error: Valgrind works on kernels 2.4, 2.6
+
+Upstream-Status: Pending
+Signed-off-by: Martin Jansa <Martin Jansa gmail com>
+
+http://git.yoctoproject.org/cgit.cgi/poky/plain/meta/recipes-devtools/valgrind/valgrind/enable.building.on.4.x.kernel.patch
+
+--- valgrind-3.9.0/configure.ac.orig   2015-03-13 19:17:01.247310868 +0100
++++ valgrind-3.9.0/configure.ac        2015-03-13 19:19:27.388316108 +0100
+@@ -276,9 +276,9 @@
+         kernel=`uname -r`
+ 
+         case "${kernel}" in
+-             2.6.*|3.*) 
+-                  AC_MSG_RESULT([2.6.x/3.x family (${kernel})])
+-                  AC_DEFINE([KERNEL_2_6], 1, [Define to 1 if you're using Linux 2.6.x or Linux 3.x])
++             2.6.*|3.*|4.*) 
++                  AC_MSG_RESULT([2.6.x/3.x/4.x family (${kernel})])
++                  AC_DEFINE([KERNEL_2_6], 1, [Define to 1 if you're using Linux 2.6.x or Linux 3.x or Linux 
4.x])
+                   ;;
+ 
+              2.4.*) 
+@@ -288,7 +288,7 @@
+ 
+              *) 
+                   AC_MSG_RESULT([unsupported (${kernel})])
+-                  AC_MSG_ERROR([Valgrind works on kernels 2.4, 2.6])
++                  AC_MSG_ERROR([Valgrind works on kernels 2.4, 2.6, 3.x, 4.x])
+                   ;;
+         esac
+ 
diff --git a/meta/recipes-devtools/valgrind/valgrind_3.9.0.bb 
b/meta/recipes-devtools/valgrind/valgrind_3.9.0.bb
index c415e77..5a5fb55 100644
--- a/meta/recipes-devtools/valgrind/valgrind_3.9.0.bb
+++ b/meta/recipes-devtools/valgrind/valgrind_3.9.0.bb
@@ -21,6 +21,7 @@ SRC_URI = "http://www.valgrind.org/downloads/valgrind-${PV}.tar.bz2 \
            file://remove-ppc-tests-failing-build.patch \
            file://add-ptest.patch \
            file://run-ptest \
+           file://enable.building.on.4.x.kernel.patch \
           "
 
 SRC_URI[md5sum] = "0947de8112f946b9ce64764af7be6df2"


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]