From 5b37c14f5a2071ff4d36310d83d8c62b157b4e74 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sat, 17 Aug 2013 15:27:25 +0200 Subject: fixed for Linux kernel 3.10.x --- include/wolf/port/sys.h | 2 +- src/port/sys_internal.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wolf/port/sys.h b/include/wolf/port/sys.h index c5ff517..c8ed388 100644 --- a/include/wolf/port/sys.h +++ b/include/wolf/port/sys.h @@ -53,7 +53,7 @@ #endif /* defined OS_MINOR_VERSION == 6 */ #else #if OS_MAJOR_VERSION == 3 -#if OS_MINOR_VERSION >= 0 && OS_MINOR_VERSION <= 9 +#if OS_MINOR_VERSION >= 0 && OS_MINOR_VERSION <= 10 #define _XOPEN_SOURCE 600 #define HAVE_STDBOOL_H #define HAVE_STDINT_H diff --git a/src/port/sys_internal.h b/src/port/sys_internal.h index 68c70ca..2923b1e 100644 --- a/src/port/sys_internal.h +++ b/src/port/sys_internal.h @@ -38,7 +38,7 @@ #endif /* defined OS_MINOR_VERSION == 6 */ #else #if OS_MAJOR_VERSION == 3 -#if OS_MINOR_VERSION >= 0 && OS_MINOR_VERSION <= 9 +#if OS_MINOR_VERSION >= 0 && OS_MINOR_VERSION <= 10 #define HAVE_LOCK_F #define HAVE_LOCALTIME_R #define HAVE_DLFCN -- cgit v1.2.3-54-g00ecf