diff mbox series

libss: add newer libreadline.so.7 to dlopen path

Message ID 1519305903-10026-1-git-send-email-lczerner@redhat.com
State Accepted, archived
Headers show
Series libss: add newer libreadline.so.7 to dlopen path | expand

Commit Message

Lukas Czerner Feb. 22, 2018, 1:25 p.m. UTC
Rawhide now has libreadline.so.7. Add it to the list of libs to look
for.

Based on commit 4e79a19fe0b6dc3c2bd9cae9dfdbc5e96a3f98f8 for previous
libreadline version.

Signed-off-by: Lukas Czerner <lczerner@redhat.com>
---
 lib/ss/get_readline.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Theodore Ts'o Feb. 23, 2018, 8:48 p.m. UTC | #1
On Thu, Feb 22, 2018 at 02:25:03PM +0100, Lukas Czerner wrote:
> Rawhide now has libreadline.so.7. Add it to the list of libs to look
> for.
> 
> Based on commit 4e79a19fe0b6dc3c2bd9cae9dfdbc5e96a3f98f8 for previous
> libreadline version.
> 
> Signed-off-by: Lukas Czerner <lczerner@redhat.com>

Applied, thanks.

					- Ted
diff mbox series

Patch

diff --git a/lib/ss/get_readline.c b/lib/ss/get_readline.c
index 9365be0..11c72b3 100644
--- a/lib/ss/get_readline.c
+++ b/lib/ss/get_readline.c
@@ -37,7 +37,7 @@  static void ss_release_readline(ss_data *info)
 #endif
 
 /* Libraries we will try to use for readline/editline functionality */
-#define DEFAULT_LIBPATH "libreadline.so.6:libreadline.so.5:libreadline.so.4:libreadline.so:libedit.so.2:libedit.so:libeditline.so.0:libeditline.so"
+#define DEFAULT_LIBPATH "libreadline.so.7:libreadline.so.6:libreadline.so.5:libreadline.so.4:libreadline.so:libedit.so.2:libedit.so:libeditline.so.0:libeditline.so"
 
 #ifdef HAVE_DLOPEN
 void ss_get_readline(int sci_idx)