|
From: <sv...@va...> - 2011-06-05 08:56:38
|
Author: bart Date: 2011-06-05 09:51:47 +0100 (Sun, 05 Jun 2011) New Revision: 11796 Log: 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. Modified: trunk/configure.in Modified: trunk/configure.in =================================================================== --- trunk/configure.in 2011-06-03 23:27:39 UTC (rev 11795) +++ trunk/configure.in 2011-06-05 08:51:47 UTC (rev 11796) @@ -225,7 +225,7 @@ 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]) ;; |
|
From: Tom H. <to...@co...> - 2011-06-05 09:59:17
|
On 05/06/11 09:51, sv...@va... wrote: > 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. I'm not sure that having configure print "2.6 family" is a good idea. I know the ABI is the same but it will likely cause confusion. Tom -- Tom Hughes (to...@co...) http://compton.nu/ |