diff options
author | Peter Seiderer <ps.report@gmx.net> | 2015-10-31 13:05:56 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-10-31 15:42:36 +0100 |
commit | a24893ceeef515396362f50e65411d4e90fdc9ec (patch) | |
tree | 64947dae571043ee229f13468eb5429ff52aad4a /package/valgrind/0002-Fix-configure-for-Linux-kernel-4.0-rc1.patch | |
parent | 40c2b4e95297761aa7c40d7c814b3e209bb4ce55 (diff) | |
download | buildroot-a24893ceeef515396362f50e65411d4e90fdc9ec.tar.gz buildroot-a24893ceeef515396362f50e65411d4e90fdc9ec.zip |
valgrind: bump version to 3.11.0
- rebase patch 0001-workaround-SIGSEGV-on-PPC.patch
- remove upstream applied patches
0002-Fix-configure-for-Linux-kernel-4.0-rc1.patch
0004-configure.ac-Generalize-glibc-version-check.patch
- rebase 0003-add-missing-ptrace-getsiginfo-on-powerpc.patch
(convert to git patch format, rename to
0002-Define-PTRACE_GETSIGINFO-on-PowerPC-when-not-availab.patch)
- remove legacy VALGRIND_AUTORECONF=YES (no more patch touching confgure.ac)
- add '--disable-ubsan' for new undefined behaviour sanitiser option
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/valgrind/0002-Fix-configure-for-Linux-kernel-4.0-rc1.patch')
-rw-r--r-- | package/valgrind/0002-Fix-configure-for-Linux-kernel-4.0-rc1.patch | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/package/valgrind/0002-Fix-configure-for-Linux-kernel-4.0-rc1.patch b/package/valgrind/0002-Fix-configure-for-Linux-kernel-4.0-rc1.patch deleted file mode 100644 index 1d0ba26b40..0000000000 --- a/package/valgrind/0002-Fix-configure-for-Linux-kernel-4.0-rc1.patch +++ /dev/null @@ -1,48 +0,0 @@ -From 8e958577f01e2e877fb1dbdca09718ef6ea0c748 Mon Sep 17 00:00:00 2001 -From: cborntra <cborntra@a5019735-40e9-0310-863c-91ae7b9d1cf9> -Date: Mon, 23 Feb 2015 20:19:03 +0000 -Subject: [PATCH] Fix configure for Linux kernel >= 4.0-rc1 In addition raise - the minimal Linux version to 2.6 as there is almost no test coverage for 2.4 - and 2.6 was released in 2003. - -Signed-off-by: Christian Artin <christian@gridshowsystems.com> - -git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14955 a5019735-40e9-0310-863c-91ae7b9d1cf9 ---- - configure.ac | 18 ++++++------------ - 1 file changed, 6 insertions(+), 12 deletions(-) - -diff --git a/configure.ac b/configure.ac -index bdf5f22..136f49a 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -325,20 +325,14 @@ case "${host_os}" in - 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.4.*) -- AC_MSG_RESULT([2.4 family (${kernel})]) -- AC_DEFINE([KERNEL_2_4], 1, [Define to 1 if you're using Linux 2.4.x]) -- ;; -- -- *) -+ 0.*|1.*|2.0.*|2.1.*|2.2.*|2.3.*|2.4.*|2.5.*) - AC_MSG_RESULT([unsupported (${kernel})]) -- AC_MSG_ERROR([Valgrind works on kernels 2.4, 2.6]) -+ AC_MSG_ERROR([Valgrind needs a Linux kernel >= 2.6]) - ;; -+ -+ *) -+ AC_MSG_RESULT([2.6 or later (${kernel})]) -+ ;; - esac - - ;; --- -2.3.7 - |