2014-02-08 18:04:03 +00:00
|
|
|
--- a/configure
|
|
|
|
+++ b/configure
|
|
|
|
@@ -8803,6 +8803,7 @@ fi
|
2010-11-03 23:18:21 +00:00
|
|
|
# Check whether --with-faad was given.
|
|
|
|
if test "${with_faad+set}" = set; then :
|
|
|
|
withval=$with_faad;
|
|
|
|
+ faad_prefix=$with_faad;
|
|
|
|
else
|
|
|
|
faad_prefix=""
|
|
|
|
fi
|
2014-02-08 18:04:03 +00:00
|
|
|
--- a/src/input/file_input_plugin.c
|
|
|
|
+++ b/src/input/file_input_plugin.c
|
|
|
|
@@ -79,10 +79,6 @@ input_file_open(const char *filename, GE
|
2011-03-10 16:57:22 +00:00
|
|
|
return false;
|
|
|
|
}
|
2010-11-03 23:18:21 +00:00
|
|
|
|
|
|
|
-#ifdef POSIX_FADV_SEQUENTIAL
|
2011-03-10 16:57:22 +00:00
|
|
|
- posix_fadvise(fd, (off_t)0, st.st_size, POSIX_FADV_SEQUENTIAL);
|
2010-11-03 23:18:21 +00:00
|
|
|
-#endif
|
|
|
|
-
|
2011-03-10 16:57:22 +00:00
|
|
|
fis = g_new(struct file_input_stream, 1);
|
|
|
|
input_stream_init(&fis->base, &input_plugin_file, filename);
|
|
|
|
|