summaryrefslogtreecommitdiff
path: root/net/transmission/patches/010_libtransmission_fallocate64_eglibc.patch
blob: d4f82fc2cd16a807bc98995d755ecad28dc8286b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--- a/libtransmission/fdlimit.c	2014-07-01 20:08:59.000000000 +0300
+++ b/libtransmission/fdlimit.c	2014-07-13 13:30:17.000000000 +0300
@@ -22,7 +22,8 @@
  #include <fcntl.h>
 #endif
 
-#ifdef HAVE_FALLOCATE64
+/* no need to define fallocate64 in glibc/eglibc case */
+#if defined(__UCLIBC__) && (HAVE_FALLOCATE64)
   /* FIXME can't find the right #include voodoo to pick up the declaration.. */
   extern int fallocate64 (int fd, int mode, uint64_t offset, uint64_t len);
 #endif