summaryrefslogtreecommitdiff
path: root/meta/recipes-devtools/valgrind/valgrind-3.7.0
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2012-07-04 13:12:00 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-17 10:42:41 +0100
commit5a59bf0778608b7c5e1073bf38d36b98d831db0d (patch)
tree3779906cdf874a7d0abc4d5ad982799c49bdf9e7 /meta/recipes-devtools/valgrind/valgrind-3.7.0
parent20c00be5556db5e6680bcdb7d4ec6d4516f4c410 (diff)
downloadopenembedded-core-5a59bf0778608b7c5e1073bf38d36b98d831db0d.tar.gz
openembedded-core-5a59bf0778608b7c5e1073bf38d36b98d831db0d.tar.bz2
openembedded-core-5a59bf0778608b7c5e1073bf38d36b98d831db0d.zip
valgrind: Fix build with eglibc 2.16
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/valgrind/valgrind-3.7.0')
-rw-r--r--meta/recipes-devtools/valgrind/valgrind-3.7.0/configure-with-glibc-2.16.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-devtools/valgrind/valgrind-3.7.0/configure-with-glibc-2.16.patch b/meta/recipes-devtools/valgrind/valgrind-3.7.0/configure-with-glibc-2.16.patch
new file mode 100644
index 0000000000..c622637d2d
--- /dev/null
+++ b/meta/recipes-devtools/valgrind/valgrind-3.7.0/configure-with-glibc-2.16.patch
@@ -0,0 +1,32 @@
+Add case for glibc 2.16 and correct error message to denote support until 2.16
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
+Upstream-Status: Pending
+Index: valgrind-3.7.0/configure.in
+===================================================================
+--- valgrind-3.7.0.orig/configure.in 2012-07-04 12:57:10.557192441 -0700
++++ valgrind-3.7.0/configure.in 2012-07-04 12:57:58.785194776 -0700
+@@ -788,6 +788,13 @@
+ DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
+ DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
+ ;;
++ 2.16)
++ AC_MSG_RESULT(2.16 family)
++ AC_DEFINE([GLIBC_2_16], 1, [Define to 1 if you're using glibc 2.16.x])
++ DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
++ DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
++ DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
++ ;;
+ darwin)
+ AC_MSG_RESULT(Darwin)
+ AC_DEFINE([DARWIN_LIBC], 1, [Define to 1 if you're using Darwin])
+@@ -801,7 +808,7 @@
+
+ *)
+ AC_MSG_RESULT([unsupported version ${GLIBC_VERSION}])
+- AC_MSG_ERROR([Valgrind requires glibc version 2.2 - 2.14])
++ AC_MSG_ERROR([Valgrind requires glibc version 2.2 - 2.16])
+ AC_MSG_ERROR([or Darwin libc])
+ ;;
+ esac