From fac8b4bd78cd0f33cf71f4a8525f2f56b5e6b3f2 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 3 Oct 2010 16:00:09 -0400 Subject: fallocate: fix build failure with old linux headers If linux/falloc.h does not exist, the build system still enables the fallocate util, but ultimately fails when it tries to include the header and use a define from it. Signed-off-by: Mike Frysinger --- sys-utils/fallocate.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'sys-utils/fallocate.c') diff --git a/sys-utils/fallocate.c b/sys-utils/fallocate.c index d1f43c242..fd4d2a9ad 100644 --- a/sys-utils/fallocate.c +++ b/sys-utils/fallocate.c @@ -37,7 +37,11 @@ # include #endif -#include /* for FALLOC_FL_* flags */ +#ifdef HAVE_LINUX_FALLOC_H +# include /* for FALLOC_FL_* flags */ +#else +# define FALLOC_FL_KEEP_SIZE 1 +#endif #include "nls.h" #include "strtosize.h" -- cgit v1.2.3-55-g7522