packages/sound/mpd/patches/100-compile-fixes.patch
mb 4b53461455 mpd: uClibc-0.9.31 fix
git-svn-id: svn://svn.openwrt.org/openwrt/packages@23846 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-11-03 23:18:21 +00:00

28 lines
929 B
Diff

Index: mpd-0.15.8/configure
===================================================================
--- mpd-0.15.8.orig/configure 2010-11-04 00:14:37.187000000 +0100
+++ mpd-0.15.8/configure 2010-11-04 00:15:00.156000001 +0100
@@ -9191,6 +9191,7 @@
# Check whether --with-faad was given.
if test "${with_faad+set}" = set; then :
withval=$with_faad;
+ faad_prefix=$with_faad;
else
faad_prefix=""
fi
Index: mpd-0.15.8/src/input/file_input_plugin.c
===================================================================
--- mpd-0.15.8.orig/src/input/file_input_plugin.c 2010-11-04 00:15:41.467000002 +0100
+++ mpd-0.15.8/src/input/file_input_plugin.c 2010-11-04 00:15:49.194999211 +0100
@@ -65,10 +65,6 @@
is->size = st.st_size;
-#ifdef POSIX_FADV_SEQUENTIAL
- posix_fadvise(fd, (off_t)0, is->size, POSIX_FADV_SEQUENTIAL);
-#endif
-
is->plugin = &input_plugin_file;
is->data = GINT_TO_POINTER(fd);
is->ready = true;