From 9ef8c7757dfda32023451b7ea90f5d49e836b21f Mon Sep 17 00:00:00 2001 From: Nadav Tasher Date: Tue, 7 Jan 2025 00:46:36 +0200 Subject: Revert "features.h: error out when attempting to compile with TIME64 for 32bit targets on Linux versions prior to 5.1.0" This reverts previous changes made to features.h which caused redefinitions when including `features.h`. The reverted functionality will be reintroduced in a future commit. Signed-off-by: Nadav Tasher --- include/features.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/features.h b/include/features.h index 0b09d71a2..1a4efb9db 100644 --- a/include/features.h +++ b/include/features.h @@ -449,12 +449,6 @@ # include #endif -#include - -#if defined(__UCLIBC_USE_TIME64__) && __TARGET_ARCH_BITS__ == 32 && LINUX_VERSION_CODE < KERNEL_VERSION(5,1,0) -#error 64bit time on 32bit targets is not supported on Linux < 5.1.0 -#endif - #if defined(__UCLIBC_USE_TIME64__) || __TARGET_ARCH_BITS__ == 64 #define __USE_TIME_BITS64 1 #endif -- cgit v1.2.3