From e9eae040866ff20c3b6df7bd3f726198e0e1a541 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Wed, 17 Oct 2012 09:35:36 +0200 Subject: fix for Linux 3.5 and 3.6 --- 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 a0ae69a..40c7d4b 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 <= 4 +#if OS_MINOR_VERSION >= 0 && OS_MINOR_VERSION <= 6 #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 8bd5dcc..81e1d76 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 <= 4 +#if OS_MINOR_VERSION >= 0 && OS_MINOR_VERSION <= 6 #define HAVE_LOCK_F #define HAVE_LOCALTIME_R #define HAVE_DLFCN -- cgit v1.2.3-54-g00ecf