diff mbox

libss: add newer libreadline to dlopen path

Message ID 4B5E6D5A.9000900@redhat.com
State Accepted, archived
Headers show

Commit Message

Eric Sandeen Jan. 26, 2010, 4:19 a.m. UTC
Rawhide now has libreadline.so.6 ... add it to the ever-expanding
list of libs to look for.

Unfortunately without commit 06ef971be505678ee462ae1844204ed24f14aedc
this fails in a rather cryptic way.

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
---



--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Theodore Ts'o Feb. 6, 2010, 1:01 p.m. UTC | #1
On Mon, Jan 25, 2010 at 10:19:38PM -0600, Eric Sandeen wrote:
> Rawhide now has libreadline.so.6 ... add it to the ever-expanding
> list of libs to look for.
> 
> Unfortunately without commit 06ef971be505678ee462ae1844204ed24f14aedc
> this fails in a rather cryptic way.
> 
> Signed-off-by: Eric Sandeen <sandeen@redhat.com>

Thanks, applied.

					- Ted
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/lib/ss/get_readline.c b/lib/ss/get_readline.c
index 16679a3..4421052 100644
--- a/lib/ss/get_readline.c
+++ b/lib/ss/get_readline.c
@@ -36,7 +36,7 @@  static void ss_release_readline(ss_data *info)
 }
 
 /* Libraries we will try to use for readline/editline functionality */
-#define DEFAULT_LIBPATH "libreadline.so.5:libreadline.so.4:libreadline.so:libedit.so.2:libedit.so:libeditline.so.0:libeditline.so"
+#define DEFAULT_LIBPATH "libreadline.so.6:libreadline.so.5:libreadline.so.4:libreadline.so:libedit.so.2:libedit.so:libeditline.so.0:libeditline.so"
 
 void ss_get_readline(int sci_idx)
 {