summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/valgrind/valgrind-3.8.1/configure-with-newer-glibc.patch
diff options
context:
space:
mode:
authorCristiana Voicu <cristiana.voicu@intel.com>2013-12-20 11:43:49 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-12-21 17:22:38 +0000
commit2ccdb82a359ffe9ae3f45d239d63fdf77cbb973f (patch)
tree330b79c4fe1d6b1daeb9128537680d53543b7b18 /meta/recipes-devtools/valgrind/valgrind-3.8.1/configure-with-newer-glibc.patch
parent63fb3587fcbfb7bea471056808fdf51a79a43960 (diff)
downloadpoky-2ccdb82a359ffe9ae3f45d239d63fdf77cbb973f.tar.gz
valgrind: upgrade to 3.9.0
Changed patches directory to "valgrind"; Removed 4 patches because they were merged upstream; Updated 2 patches because now it has configure.ac instead of .in; Changed license md5 for 2 files because of a small change for copyright year (From OE-Core rev: 57794c201aa732392a135e03e04faf18929f645f) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/valgrind/valgrind-3.8.1/configure-with-newer-glibc.patch')
-rw-r--r--meta/recipes-devtools/valgrind/valgrind-3.8.1/configure-with-newer-glibc.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/meta/recipes-devtools/valgrind/valgrind-3.8.1/configure-with-newer-glibc.patch b/meta/recipes-devtools/valgrind/valgrind-3.8.1/configure-with-newer-glibc.patch
deleted file mode 100644
index d3cea234cb..0000000000
--- a/meta/recipes-devtools/valgrind/valgrind-3.8.1/configure-with-newer-glibc.patch
+++ /dev/null
@@ -1,41 +0,0 @@
1Add case for glibc 2.16 and correct error message to denote support until 2.16
2
3Signed-off-by: Khem Raj <raj.khem@gmail.com>
4Signed-off-by: Saul Wold <sgw@linux.intel.com>
5Signed-off-by: Radu Moisan <radu.moisan@intel.com>
6
7Upstream-Status: Pending
8Index: valgrind-3.8.1/configure.in
9===================================================================
10--- valgrind-3.8.1.orig/configure.in
11+++ valgrind-3.8.1/configure.in
12@@ -910,6 +910,20 @@ case "${GLIBC_VERSION}" in
13 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
14 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
15 ;;
16+ 2.16)
17+ AC_MSG_RESULT(2.16 family)
18+ AC_DEFINE([GLIBC_2_16], 1, [Define to 1 if you're using glibc 2.16.x])
19+ DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
20+ DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
21+ DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
22+ ;;
23+ 2.17)
24+ AC_MSG_RESULT(2.17 family)
25+ AC_DEFINE([GLIBC_2_17], 1, [Define to 1 if you're using glibc 2.17.x])
26+ DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
27+ DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
28+ DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
29+ ;;
30 darwin)
31 AC_MSG_RESULT(Darwin)
32 AC_DEFINE([DARWIN_LIBC], 1, [Define to 1 if you're using Darwin])
33@@ -923,7 +937,7 @@ case "${GLIBC_VERSION}" in
34
35 *)
36 AC_MSG_RESULT([unsupported version ${GLIBC_VERSION}])
37- AC_MSG_ERROR([Valgrind requires glibc version 2.2 - 2.16])
38+ AC_MSG_ERROR([Valgrind requires glibc version 2.2 - 2.17])
39 AC_MSG_ERROR([or Darwin libc])
40 ;;
41 esac