From 166b335e6eeabcbcd0a3f817e210a5166dcdb202 Mon Sep 17 00:00:00 2001 From: Daniel Engberg Date: Sat, 12 Jan 2019 18:07:25 +0100 Subject: readline: Update to 8.0 and various fixes Update (lib)readline to 8.0 Remove autoreconf Remove blankspace at the end of the lines in description Remove --enable-shared and --enable-static as they're enabled by default Remove TARGET_CPPFLAGS Simplify install sections Install readline.pc (pkgconfig) Add patch for linking (lib)ncurses Source: https://git.buildroot.net/buildroot/plain/package/readline/0000-curses-link.patch Signed-off-by: Daniel Engberg --- package/libs/readline/patches/001-curses-link.patch | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 package/libs/readline/patches/001-curses-link.patch (limited to 'package/libs/readline/patches/001-curses-link.patch') diff --git a/package/libs/readline/patches/001-curses-link.patch b/package/libs/readline/patches/001-curses-link.patch new file mode 100644 index 0000000000..dc18931517 --- /dev/null +++ b/package/libs/readline/patches/001-curses-link.patch @@ -0,0 +1,16 @@ +link readline directly to ncurses since it needs symbols from it + +upstream readline does this on purpose (no direct linking), but +it doesn't make much sense in a Linux world + +--- a/support/shobj-conf ++++ b/support/shobj-conf +@@ -42,7 +42,7 @@ SHOBJ_XLDFLAGS= + SHOBJ_LIBS= + + SHLIB_XLDFLAGS= +-SHLIB_LIBS= ++SHLIB_LIBS=-lncurses + + SHLIB_DOT='.' + SHLIB_LIBPREF='lib' -- cgit v1.2.3