X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/f1215ac7aa9d9e148e17787e8820c34c0951c558..d4076adb6f40d8fae7d139c6cdf73bd26ee9ce11:/package/e2fsprogs/patches/000-uclibc_compile_fix.patch diff --git a/package/e2fsprogs/patches/000-uclibc_compile_fix.patch b/package/e2fsprogs/patches/000-uclibc_compile_fix.patch new file mode 100644 index 000000000..a2e8e428e --- /dev/null +++ b/package/e2fsprogs/patches/000-uclibc_compile_fix.patch @@ -0,0 +1,15 @@ +Without this patch compiling e2fsprogs 1.42 fails in the case the linux +kernel headers provide linux/falloc.h but the libc is not implementing +fallocate() as it is still the case with latest versions of uClibc. + +--- a/lib/ext2fs/unix_io.c ++++ b/lib/ext2fs/unix_io.c +@@ -895,7 +895,7 @@ static errcode_t unix_discard(io_channel + goto unimplemented; + #endif + } else { +-#ifdef FALLOC_FL_PUNCH_HOLE ++#if defined HAVE_FALLOCATE && defined FALLOC_FL_PUNCH_HOLE + /* + * If we are not on block device, try to use punch hole + * to reclaim free space.