summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorJarno Rajahalme <jarno@ovn.org>2016-10-20 15:22:14 -0700
committerJarno Rajahalme <jarno@ovn.org>2016-10-20 15:27:27 -0700
commit94f2dc197c9771c98dc5ec085a2428d6bc06a80e (patch)
treea608d934ea37736273941c1904fb57f24a039792 /acinclude.m4
parent9f04eabe2e57740c16a93df057084535fbe1f131 (diff)
downloadopenvswitch-94f2dc197c9771c98dc5ec085a2428d6bc06a80e.tar.gz
configure: Support compiling with Linux 4.8.
Datapath should now compile and work with Linux 4.8. Signed-off-by: Jarno Rajahalme <jarno@ovn.org> Acked-by: Pravin B Shelar <pshelar@ovn.org>
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index a3c95f564..2c500a8d1 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -134,10 +134,10 @@ AC_DEFUN([OVS_CHECK_LINUX], [
AC_MSG_RESULT([$kversion])
if test "$version" -ge 4; then
- if test "$version" = 4 && test "$patchlevel" -le 7; then
+ if test "$version" = 4 && test "$patchlevel" -le 8; then
: # Linux 4.x
else
- AC_ERROR([Linux kernel in $KBUILD is version $kversion, but version newer than 4.7.x is not supported (please refer to the FAQ for advice)])
+ AC_ERROR([Linux kernel in $KBUILD is version $kversion, but version newer than 4.8.x is not supported (please refer to the FAQ for advice)])
fi
elif test "$version" = 3 && test "$patchlevel" -ge 10; then
: # Linux 3.x