From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9477 invoked by alias); 26 Aug 2002 00:01:00 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 9389 invoked from network); 26 Aug 2002 00:00:54 -0000 Received: from unknown (HELO localhost.redhat.com) (66.30.197.194) by sources.redhat.com with SMTP; 26 Aug 2002 00:00:54 -0000 Received: by localhost.redhat.com (Postfix, from userid 469) id AD6C010AAA; Sun, 25 Aug 2002 19:58:59 -0400 (EDT) From: Elena Zannoni MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15721.28483.103146.37277@localhost.redhat.com> Date: Sun, 25 Aug 2002 17:01:00 -0000 To: gdb@sources.redhat.com Cc: eliz@is.elta.co.il Subject: Readline import branch X-SW-Source: 2002-08/txt/msg00317.txt.bz2 I made a branch of gdb+dejagnu, called readline_4_3-import-branch, and imported readline 4.3 onto this branch. Please give it a test. I am expecially concerned about the platforms that define DOS and DJGPP, since gdb's readline has some local conditionals and I am not sure I merged those right. Also, I am having some troubles with 'make info' in the readline/doc directory. It probably requires texinfo4.2 (which I don't have handy). I had to modify gdb as follows. I ran the testsuite on Linux i386 and didn't spot anything obviously wrong. Elena 2002-08-25 Elena Zannoni * cli/cli-cmds.c: Include readline/tilde.h. * cli/cli-setshow.c: Ditto. * defs.h: Don't export tilde_expand anymore, since readline exports it. Index: defs.h =================================================================== RCS file: /cvs/src/src/gdb/defs.h,v retrieving revision 1.94 diff -u -r1.94 defs.h --- defs.h 1 Aug 2002 17:18:32 -0000 1.94 +++ defs.h 25 Aug 2002 23:46:00 -0000 @@ -614,10 +614,6 @@ struct frame_info; -/* From readline (but not in any readline .h files). */ - -extern char *tilde_expand (char *); - /* Control types for commands */ enum misc_command_type Index: cli/cli-cmds.c =================================================================== RCS file: /cvs/src/src/gdb/cli/cli-cmds.c,v retrieving revision 1.20 diff -u -r1.20 cli-cmds.c --- cli/cli-cmds.c 30 Jul 2002 13:45:14 -0000 1.20 +++ cli/cli-cmds.c 24 Aug 2002 23:11:57 -0000 @@ -19,6 +19,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include #include "defs.h" #include "completer.h" #include "target.h" /* For baud_rate, remote_debug and remote_timeout */ Index: cli/cli-setshow.c =================================================================== RCS file: /cvs/src/src/gdb/cli/cli-setshow.c,v retrieving revision 1.9 diff -u -r1.9 cli-setshow.c --- cli/cli-setshow.c 30 Jul 2002 13:45:14 -0000 1.9 +++ cli/cli-setshow.c 24 Aug 2002 23:11:57 -0000 @@ -17,6 +17,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include #include "defs.h" #include "value.h" #include