From: Mathieu Desnoyers Date: Fri, 17 Apr 2015 18:49:38 +0000 (-0400) Subject: Fix: kernels >= 2.6.33 put utsrelease.h in generated/ X-Git-Tag: v2.6.1~20 X-Git-Url: https://git.lttng.org/?p=lttng-modules.git;a=commitdiff_plain;h=025f881d6a178f4b662b8487a0a7a203e58c3e7c Fix: kernels >= 2.6.33 put utsrelease.h in generated/ Signed-off-by: Mathieu Desnoyers --- diff --git a/lttng-kernel-version.h b/lttng-kernel-version.h index e8353fd4..ec8cee0b 100644 --- a/lttng-kernel-version.h +++ b/lttng-kernel-version.h @@ -24,7 +24,12 @@ */ #include + +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,33)) +#include +#else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,33)) */ #include +#endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,33)) */ /* * This macro checks if the kernel version is between the two specified