From cc90cbc6d36b9f15a461b877b44c7498c2061744 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 12 Feb 2014 09:11:19 -0800 Subject: valgrind: Add glibc 2.19 awareness It wont compile otherwise and fail with errors e.g. Valgrind requires glibc version 2.2 - 2.17 ... Signed-off-by: Khem Raj --- .../valgrind/valgrind/glibc-2.19.patch | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 meta/recipes-devtools/valgrind/valgrind/glibc-2.19.patch (limited to 'meta/recipes-devtools/valgrind/valgrind') diff --git a/meta/recipes-devtools/valgrind/valgrind/glibc-2.19.patch b/meta/recipes-devtools/valgrind/valgrind/glibc-2.19.patch new file mode 100644 index 0000000000..7714b997fe --- /dev/null +++ b/meta/recipes-devtools/valgrind/valgrind/glibc-2.19.patch @@ -0,0 +1,23 @@ +Add support for compiling with glibc 2.19 + +Signed-off-by: Khem Raj + +Upstream-Status: Pending +Index: valgrind-3.9.0/configure.ac +=================================================================== +--- valgrind-3.9.0.orig/configure.ac 2014-02-12 09:03:07.879873700 -0800 ++++ valgrind-3.9.0/configure.ac 2014-02-12 09:07:35.099871774 -0800 +@@ -918,6 +918,13 @@ + DEFAULT_SUPP="$srcdir/glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}" + DEFAULT_SUPP="$srcdir/glibc-2.X-drd.supp ${DEFAULT_SUPP}" + ;; ++ 2.19) ++ AC_MSG_RESULT(2.19 family) ++ AC_DEFINE([GLIBC_2_19], 1, [Define to 1 if you're using glibc 2.19.x]) ++ DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}" ++ DEFAULT_SUPP="$srcdir/glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}" ++ DEFAULT_SUPP="$srcdir/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]) -- cgit 1.2.3-korg