From b6a39114e17cdff615a1b80eefb07f58c75d25eb Mon Sep 17 00:00:00 2001 From: Tom Yan Date: Sat, 22 Sep 2018 09:04:08 +0800 Subject: [PATCH] mpd: remove libevent from LD_PRELOAD --- packages/mpd/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mpd/build.sh b/packages/mpd/build.sh index c699790a8..6bebd0168 100644 --- a/packages/mpd/build.sh +++ b/packages/mpd/build.sh @@ -49,7 +49,7 @@ termux_step_make_install () { # in a system vendor dir, reported by live_the_dream on #termux: local FFMPEG_LIBS="" lib # c++_shared needs to go first in every c++ app that uses audio directly. - for lib in c++_shared curl ssl event opus vorbis avcodec avfilter avformat avutil postproc swresample swscale sqlite3; do + for lib in c++_shared curl ssl opus vorbis avcodec avfilter avformat avutil postproc swresample swscale sqlite3; do if [ -n "$FFMPEG_LIBS" ]; then FFMPEG_LIBS+=":"; fi FFMPEG_LIBS+="$TERMUX_PREFIX/lib/lib${lib}.so" done