forked from termux/termux-packages
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ncmpcpp: link against libandroid-support
ncmpcpp segfaults on android 9 because it picks up iconv in libc.so if we don't link against libandroid-support.so properly. This fixes termux#3333.
- Loading branch information
Showing
2 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- ../configure.ac.orig 2019-04-13 16:42:43.319705874 +0000 | ||
+++ ./configure.ac 2019-04-13 16:42:50.146372491 +0000 | ||
@@ -78,7 +78,7 @@ | ||
AC_SUBST(BOOST_LOCALE_LDFLAGS) | ||
AC_SUBST(BOOST_LOCALE_LIBS) | ||
LDFLAGS="$LDFLAGS $BOOST_LOCALE_LDFLAGS" | ||
-LIBS="$LIBS $BOOST_LOCALE_LIBS" | ||
+LIBS="$LIBS $BOOST_LOCALE_LIBS -landroid-support" | ||
|
||
BOOST_PROGRAM_OPTIONS | ||
AC_SUBST(BOOST_PROGRAM_OPTIONS_LDFLAGS) |