You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
481 B

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