From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19012 invoked by alias); 28 Dec 2003 23:14:26 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 19004 invoked from network); 28 Dec 2003 23:14:19 -0000 Received: from unknown (HELO bilbo) (80.24.13.86) by sources.redhat.com with SMTP; 28 Dec 2003 23:14:19 -0000 Received: from aragorn ([192.168.0.3]) by bilbo with esmtp (Exim 3.35 #1 (Debian)) id 1AakH7-00036s-00; Mon, 29 Dec 2003 00:24:45 +0100 Received: from rmh by aragorn with local (Exim 3.36 #1 (Debian)) id 1Aak2j-0000Hx-00; Mon, 29 Dec 2003 00:09:53 +0100 Date: Sun, 28 Dec 2003 23:14:00 -0000 From: Robert Millan To: gdb-patches@sources.redhat.com Cc: glibc-bsd-hackers@nongnu.org Subject: [PATCH] GNU/k*BSD fixes (w/ChangeLog) [gdb] Message-ID: <20031228230941.GA1091@aragorn> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="9amGYk9869ThD9tj" Content-Disposition: inline Organisation: free as in freedom User-Agent: Mutt/1.5.4i X-SW-Source: 2003-12/txt/msg00499.txt.bz2 --9amGYk9869ThD9tj Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 932 Hi! Fixes for triplet detection of GNU/kNetBSD and GNU/kFreeBSD. Patch is attached, ChangeLog as follows. Remember to update config.{guess,sub} in the respective locations (src and src/readline/support). Thanks. for ChangeLog: 2003-12-29 Robert Millan * config.guess: Update. * config.sub: Likewise. for gdb/ChangeLog: 2003-12-29 Robert Millan * configure.host: Match knetbsd*-gnu and kfreebsd*-gnu. * configure.tgt: Likewise. for readline/ChangeLog.gdb: 2003-12-29 Robert Millan * support/config.guess: Update. * support/config.sub: Likewise. -- Robert Millan "[..] but the delight and pride of Aule is in the deed of making, and in the thing made, and neither in possession nor in his own mastery; wherefore he gives and hoards not, and is free from care, passing ever on to some new work." -- J.R.R.T., Ainulindale (Silmarillion) --9amGYk9869ThD9tj Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="gdb.diff" Content-length: 1632 ChangeLog: 2003-12-29 Robert Millan * config.guess: Update. * config.sub: Likewise. gdb/ChangeLog: 2003-12-29 Robert Millan * configure.host: Match knetbsd*-gnu and kfreebsd*-gnu. * configure.tgt: Likewise. readline/ChangeLog.gdb: 2003-12-29 Robert Millan * support/config.guess: Update. * support/config.sub: Likewise. diff -ur src.old/gdb/configure.host src/gdb/configure.host --- src.old/gdb/configure.host 2003-12-01 22:10:46.000000000 +0100 +++ src/gdb/configure.host 2003-12-28 23:54:20.000000000 +0100 @@ -50,8 +50,8 @@ i[34567]86-ncr-*) gdb_host=ncr3000 ;; i[34567]86-*-bsd*) gdb_host=i386bsd ;; i[34567]86-*-dgux*) gdb_host=i386v4 ;; -i[34567]86-*-freebsd*) gdb_host=fbsd ;; -i[34567]86-*-netbsdelf*) gdb_host=nbsdelf ;; +i[34567]86-*-freebsd* | i[34567]86-*-kfreebsd*-gnu) gdb_host=fbsd ;; +i[34567]86-*-netbsdelf* | i[34567]86-*-knetbsd*-gnu) gdb_host=nbsdelf ;; i[34567]86-*-netbsdaout*) gdb_host=nbsdaout ;; i[34567]86-*-netbsd*) gdb_host=nbsdaout ;; i[34567]86-*-go32*) gdb_host=go32 ;; diff -ur src.old/gdb/configure.tgt src/gdb/configure.tgt --- src.old/gdb/configure.tgt 2003-12-01 22:10:46.000000000 +0100 +++ src/gdb/configure.tgt 2003-12-28 23:54:20.000000000 +0100 @@ -78,7 +78,7 @@ i[34567]86-ncr-*) gdb_target=ncr3000 ;; i[34567]86-*-bsd*) gdb_target=i386bsd ;; -i[34567]86-*-netbsd*) gdb_target=nbsd ;; +i[34567]86-*-netbsd* | i[34567]86-*-knetbsd*-gnu) gdb_target=nbsd ;; i[34567]86-*-openbsd*) gdb_target=obsd ;; i[34567]86-*-go32*) gdb_target=i386aout ;; i[34567]86-*-msdosdjgpp*) gdb_target=go32 ;; --9amGYk9869ThD9tj--