From patchwork Tue Jan 26 04:19:38 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eric Sandeen X-Patchwork-Id: 43676 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id C5AC3B7CCD for ; Tue, 26 Jan 2010 15:19:45 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750939Ab0AZETn (ORCPT ); Mon, 25 Jan 2010 23:19:43 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754470Ab0AZETn (ORCPT ); Mon, 25 Jan 2010 23:19:43 -0500 Received: from mx1.redhat.com ([209.132.183.28]:57091 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750939Ab0AZETm (ORCPT ); Mon, 25 Jan 2010 23:19:42 -0500 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o0Q4Jgug010422 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 25 Jan 2010 23:19:42 -0500 Received: from Liberator.local (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o0Q4JckB030589 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 25 Jan 2010 23:19:41 -0500 Message-ID: <4B5E6D5A.9000900@redhat.com> Date: Mon, 25 Jan 2010 22:19:38 -0600 From: Eric Sandeen User-Agent: Thunderbird 2.0.0.23 (Macintosh/20090812) MIME-Version: 1.0 To: ext4 development Subject: [PATCH] libss: add newer libreadline to dlopen path X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org 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 --- -- 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 --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) {