From: Bart Van Assche Date: Sun, 5 Jun 2011 08:51:47 +0000 (+0000) Subject: Make Valgrind build on Linux kernel 3.0 and beyond. Closes #274926. An official X-Git-Tag: svn/VALGRIND_3_7_0~441 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e0518c5f9c7e291c7947b77731198b2a28cef0d8;p=thirdparty%2Fvalgrind.git Make Valgrind build on Linux kernel 3.0 and beyond. Closes #274926. An official statement that the Linux kernel 3.0 API and ABI is compatible with Linux kernel 2.6 can be found here: http://lkml.org/lkml/2011/5/29/204. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11796 --- diff --git a/configure.in b/configure.in index e95b4d7cb6..559c1b4702 100644 --- a/configure.in +++ b/configure.in @@ -225,7 +225,7 @@ case "${host_os}" in kernel=`uname -r` case "${kernel}" in - 2.6.*) + 2.6.*|3.*) AC_MSG_RESULT([2.6 family (${kernel})]) AC_DEFINE([KERNEL_2_6], 1, [Define to 1 if you're using Linux 2.6.x]) ;;