No Description

100-compile-fixes.patch 600B

1234567891011121314151617181920212223
  1. --- a/configure
  2. +++ b/configure
  3. @@ -9821,6 +9821,7 @@ fi
  4. # Check whether --with-faad was given.
  5. if test "${with_faad+set}" = set; then :
  6. withval=$with_faad;
  7. + faad_prefix=$with_faad;
  8. else
  9. faad_prefix=""
  10. fi
  11. --- a/src/input/file_input_plugin.c
  12. +++ b/src/input/file_input_plugin.c
  13. @@ -82,10 +82,6 @@ input_file_open(const char *filename,
  14. return NULL;
  15. }
  16. -#ifdef POSIX_FADV_SEQUENTIAL
  17. - posix_fadvise(fd, (off_t)0, st.st_size, POSIX_FADV_SEQUENTIAL);
  18. -#endif
  19. -
  20. fis = g_new(struct file_input_stream, 1);
  21. input_stream_init(&fis->base, &input_plugin_file, filename,
  22. mutex, cond);