rpms/gdb/FC-4 gdb-6.3-augmS-20060303.patch, 1.1, 1.2 gdb-6.3-cfaval-20060303.patch, 1.1, 1.2 gdb-6.3-prelink-core-20060223.patch, 1.2, 1.3 gdb.spec, 1.172, 1.173

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Tue Mar 7 05:13:20 UTC 2006


Author: aoliva

Update of /cvs/dist/rpms/gdb/FC-4
In directory cvs.devel.redhat.com:/tmp/cvs-serv14260/gdb-FC-4

Modified Files:
	gdb-6.3-augmS-20060303.patch gdb-6.3-cfaval-20060303.patch 
	gdb-6.3-prelink-core-20060223.patch gdb.spec 
Log Message:
* Tue Mar  7 2006 Alexandre Oliva <aoliva at redhat.com> - 6.3.0.0-1.115
- Change dwarf2 frame identifiers to use the actual PC instead of the
function's entry point.
- Fix FSF and GDB contact addresses in new testcases.
- Change prelink test to issue untested instead of warning message if
system libraries are not prelinked.



gdb-6.3-augmS-20060303.patch:
 dwarf2-frame.c                       |   34 +++++
 dwarf2-frame.h                       |    8 +
 testsuite/gdb.dwarf2/signal-augm.S   |  207 +++++++++++++++++++++++++++++++++++
 testsuite/gdb.dwarf2/signal-augm.c   |  198 +++++++++++++++++++++++++++++++++
 testsuite/gdb.dwarf2/signal-augm.exp |   77 +++++++++++++
 5 files changed, 521 insertions(+), 3 deletions(-)

Index: gdb-6.3-augmS-20060303.patch
===================================================================
RCS file: /cvs/dist/rpms/gdb/FC-4/gdb-6.3-augmS-20060303.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gdb-6.3-augmS-20060303.patch	3 Mar 2006 19:10:48 -0000	1.1
+++ gdb-6.3-augmS-20060303.patch	7 Mar 2006 05:13:17 -0000	1.2
@@ -107,7 +107,7 @@
 +
 +   You should have received a copy of the GNU General Public License
 +   along with this program; if not, write to the Free Software
-+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
++   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
 +
 +   Written by Jakub Jelinek, as testcase for GCC PR 26208.  */
 +
@@ -319,7 +319,7 @@
 +
 +   You should have received a copy of the GNU General Public License
 +   along with this program; if not, write to the Free Software
-+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
++   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
 +
 +   Written by Jakub Jelinek, as testcase for GCC PR 26208.  GDB does
 +   not need all of it, since all we do is to try to recognize signal
@@ -520,10 +520,10 @@
 +#
 +# You should have received a copy of the GNU General Public License
 +# along with this program; if not, write to the Free Software
-+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
++# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
 +
 +# Please email any bugs, comments, and/or additions to this file to:
-+# bug-gdb at prep.ai.mit.edu
++# bug-gdb at gnu.org
 +
 +# This file was written by Alexandre Oliva <aoliva at redhat.com>
 +

gdb-6.3-cfaval-20060303.patch:
 gdb/dwarf2-frame.c                        |   90 ++++++++++
 gdb/dwarf2-frame.h                        |    4 
 gdb/testsuite/gdb.dwarf2/cfa-val-expr-1.c |  261 ++++++++++++++++++++++++++++++
 gdb/testsuite/gdb.dwarf2/cfa-val-expr-2.c |  226 +++++++++++++++++++++++++
 gdb/testsuite/gdb.dwarf2/cfa-val-expr.exp |   91 ++++++++++
 gdb/valarith.c                            |    9 -
 include/elf/dwarf2.h                      |   68 +++++++
 7 files changed, 743 insertions(+), 6 deletions(-)

Index: gdb-6.3-cfaval-20060303.patch
===================================================================
RCS file: /cvs/dist/rpms/gdb/FC-4/gdb-6.3-cfaval-20060303.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gdb-6.3-cfaval-20060303.patch	3 Mar 2006 19:10:48 -0000	1.1
+++ gdb-6.3-cfaval-20060303.patch	7 Mar 2006 05:13:17 -0000	1.2
@@ -29,7 +29,7 @@
 	DWARF 3).
 
 for gdb/ChangeLog
-2006-03-03  Alexandre Oliva  <aoliva at redhat.com>
+2006-03-07  Alexandre Oliva  <aoliva at redhat.com>
 
 	* dwarf2-frame.h (enum dwarf2_frame_reg_rule): Add
 	DWARF2_FRAME_REG_SAVED_VAL_OFFSET and
@@ -37,6 +37,7 @@
 	* dwarf2-frame.c (execute_cfa_program): Handle val_offset,
 	val_offset_sf and val_expression.
 	(dwarf2_frame_prev_register): Handle the new reg rules.
+	(dwarf2_frame_this_id): Use pc instead of function entry point.
 
 2005-08-11  Andreas Schwab  <schwab at suse.de>
 
@@ -45,7 +46,7 @@
 	operators.
 
 for gdb/testsuite/ChangeLog
-2006-03-03  Alexandre Oliva  <aoliva at redhat.com>
+2006-03-07  Alexandre Oliva  <aoliva at redhat.com>
 
 	* gdb.dwarf2/cfa-val-expr.exp: New test.
 	* gdb.dwarf2/cfa-val-expr-1.c, gdb.dwarf2/cfa-val-expr-2.c:
@@ -53,8 +54,8 @@
 
 Index: gdb-6.3/gdb/dwarf2-frame.c
 ===================================================================
---- gdb-6.3.orig/gdb/dwarf2-frame.c	2006-03-03 13:51:53.000000000 -0300
-+++ gdb-6.3/gdb/dwarf2-frame.c	2006-03-03 14:28:03.000000000 -0300
+--- gdb-6.3.orig/gdb/dwarf2-frame.c	2006-03-04 09:17:24.000000000 -0300
++++ gdb-6.3/gdb/dwarf2-frame.c	2006-03-07 01:44:55.000000000 -0300
 @@ -435,6 +435,34 @@ bad CFI data; mismatched DW_CFA_restore_
  	      fs->regs.reg[reg].loc.offset = offset;
  	      break;
@@ -135,6 +136,15 @@
  
  
  struct dwarf2_frame_cache
+@@ -734,7 +793,7 @@ dwarf2_frame_this_id (struct frame_info 
+   struct dwarf2_frame_cache *cache =
+     dwarf2_frame_cache (next_frame, this_cache);
+ 
+-  (*this_id) = frame_id_build (cache->cfa, frame_func_unwind (next_frame));
++  (*this_id) = frame_id_build (cache->cfa, frame_pc_unwind (next_frame));
+ }
+ 
+ static void
 @@ -797,6 +856,28 @@ dwarf2_frame_prev_register (struct frame
  	}
        break;
@@ -180,8 +190,8 @@
  {
 Index: gdb-6.3/gdb/dwarf2-frame.h
 ===================================================================
---- gdb-6.3.orig/gdb/dwarf2-frame.h	2006-03-03 13:51:53.000000000 -0300
-+++ gdb-6.3/gdb/dwarf2-frame.h	2006-03-03 13:51:55.000000000 -0300
+--- gdb-6.3.orig/gdb/dwarf2-frame.h	2006-03-04 09:17:24.000000000 -0300
++++ gdb-6.3/gdb/dwarf2-frame.h	2006-03-04 09:17:24.000000000 -0300
 @@ -55,6 +55,10 @@ enum dwarf2_frame_reg_rule
       register.  */
    DWARF2_FRAME_REG_INDIRECT,
@@ -196,7 +206,7 @@
 Index: gdb-6.3/gdb/testsuite/gdb.dwarf2/cfa-val-expr-1.c
 ===================================================================
 --- /dev/null	1970-01-01 00:00:00.000000000 +0000
-+++ gdb-6.3/gdb/testsuite/gdb.dwarf2/cfa-val-expr-1.c	2006-03-03 13:51:55.000000000 -0300
++++ gdb-6.3/gdb/testsuite/gdb.dwarf2/cfa-val-expr-1.c	2006-03-04 09:17:24.000000000 -0300
 @@ -0,0 +1,261 @@
 +/* This testcase is part of GDB, the GNU debugger.
 +
@@ -214,7 +224,7 @@
 +
 +   You should have received a copy of the GNU General Public License
 +   along with this program; if not, write to the Free Software
-+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
++   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
 +
 +   Written by Jakub Jelinek, as testcase for Dwarf3 value expression
 +   support in GCC unwinders.  GDB does not need all of it, since all
@@ -462,7 +472,7 @@
 Index: gdb-6.3/gdb/testsuite/gdb.dwarf2/cfa-val-expr-2.c
 ===================================================================
 --- /dev/null	1970-01-01 00:00:00.000000000 +0000
-+++ gdb-6.3/gdb/testsuite/gdb.dwarf2/cfa-val-expr-2.c	2006-03-03 13:51:55.000000000 -0300
++++ gdb-6.3/gdb/testsuite/gdb.dwarf2/cfa-val-expr-2.c	2006-03-04 09:17:24.000000000 -0300
 @@ -0,0 +1,226 @@
 +/* This testcase is part of GDB, the GNU debugger.
 +
@@ -480,7 +490,7 @@
 +
 +   You should have received a copy of the GNU General Public License
 +   along with this program; if not, write to the Free Software
-+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
++   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
 +
 +   Written by Jakub Jelinek, as testcase for Dwarf3 value expression
 +   support in GCC unwinders.  GDB does not need all of it, since all
@@ -693,8 +703,8 @@
 Index: gdb-6.3/gdb/testsuite/gdb.dwarf2/cfa-val-expr.exp
 ===================================================================
 --- /dev/null	1970-01-01 00:00:00.000000000 +0000
-+++ gdb-6.3/gdb/testsuite/gdb.dwarf2/cfa-val-expr.exp	2006-03-03 13:51:55.000000000 -0300
-@@ -0,0 +1,87 @@
++++ gdb-6.3/gdb/testsuite/gdb.dwarf2/cfa-val-expr.exp	2006-03-07 01:35:17.000000000 -0300
+@@ -0,0 +1,91 @@
 +# Copyright 2006 Free Software Foundation, Inc.
 +
 +# This program is free software; you can redistribute it and/or modify
@@ -709,10 +719,10 @@
 +#
 +# You should have received a copy of the GNU General Public License
 +# along with this program; if not, write to the Free Software
-+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
++# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
 +
 +# Please email any bugs, comments, and/or additions to this file to:
-+# bug-gdb at prep.ai.mit.edu
++# bug-gdb at gnu.org
 +
 +# This file was written by Alexandre Oliva <aoliva at redhat.com>
 +
@@ -759,6 +769,10 @@
 +gdb_test "run" ".*Breakpoint 1.*" "stopped at fn5 ($tnum)"
 +gdb_test "backtrace" ".*\#0 .* fn5 .*\#1 .* bar .*\#2 .* _L_mutex.* .*\#3 .* foo .*\#4 .* fn2 .*\#5 .* fn1 .*\#6 .* main.*" "backtrace ($tnum)"
 +
++if {![istarget x86_64-*-linux*]} {
++    return 0;
++}
++
 +set tnum 2
 +set testfile "cfa-val-expr-$tnum"
 +
@@ -784,8 +798,8 @@
 +return 0
 Index: gdb-6.3/include/elf/dwarf2.h
 ===================================================================
---- gdb-6.3.orig/include/elf/dwarf2.h	2006-03-03 13:55:48.000000000 -0300
-+++ gdb-6.3/include/elf/dwarf2.h	2006-03-03 14:27:03.000000000 -0300
+--- gdb-6.3.orig/include/elf/dwarf2.h	2006-03-04 09:15:43.000000000 -0300
++++ gdb-6.3/include/elf/dwarf2.h	2006-03-04 09:17:24.000000000 -0300
 @@ -1,7 +1,7 @@
 -/* Declarations and definitions of codes relating to the DWARF2 symbolic
 -   debugging information format.
@@ -921,8 +935,8 @@
      /* UPC.  */
 Index: gdb-6.3/gdb/valarith.c
 ===================================================================
---- gdb-6.3.orig/gdb/valarith.c	2004-09-20 17:18:39.000000000 -0300
-+++ gdb-6.3/gdb/valarith.c	2006-03-03 15:45:05.000000000 -0300
+--- gdb-6.3.orig/gdb/valarith.c	2006-03-04 09:15:43.000000000 -0300
++++ gdb-6.3/gdb/valarith.c	2006-03-04 09:17:24.000000000 -0300
 @@ -881,7 +881,14 @@ value_binop (struct value *arg1, struct 
           Use the signedness of the operand with the greater length.
           If both operands are of equal length, use unsigned operation

gdb-6.3-prelink-core-20060223.patch:
 Makefile.in                      |    2 
 mipsnbsd-tdep.c                  |    6 +
 solib-legacy.c                   |   11 +++
 solib-svr4.c                     |  124 +++++++++++++++++++++++++++++++++++----
 solib-svr4.h                     |    6 +
 testsuite/gdb.base/prelink-lib.c |   34 ++++++++++
 testsuite/gdb.base/prelink.c     |   30 +++++++++
 testsuite/gdb.base/prelink.exp   |  115 ++++++++++++++++++++++++++++++++++++
 8 files changed, 317 insertions(+), 11 deletions(-)

Index: gdb-6.3-prelink-core-20060223.patch
===================================================================
RCS file: /cvs/dist/rpms/gdb/FC-4/gdb-6.3-prelink-core-20060223.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gdb-6.3-prelink-core-20060223.patch	3 Mar 2006 19:10:48 -0000	1.2
+++ gdb-6.3-prelink-core-20060223.patch	7 Mar 2006 05:13:17 -0000	1.3
@@ -18,11 +18,12 @@
 	* Makefile.in (solib-svr4.o): Depend on $(elf_bfd_h).
 
 for gdb/testsuite/ChangeLog
-2006-03-03  Alexandre Oliva  <aoliva at redhat.com>
+2006-03-07  Alexandre Oliva  <aoliva at redhat.com>
 
-	* gdb.base/prelink.exp: Add -q to prelink runs.  Rename
-	executable to prelinkt.  Don't re-prelink if we didn't get a
-	core file.  Test prelink -u exit status to tell whether
+	* gdb.base/prelink.c, gdb.base/prelink-lib.c: Update FSF address.
+	* gdb.base/prelink.exp: Likewise.  Add -q to prelink runs.
+	Rename executable to prelinkt.  Don't re-prelink if we didn't
+	get a core file.  Test prelink -u exit status to tell whether
 	prelinking failed.  Use gdb_test_multiple.
 
 2006-02-28  Alexandre Oliva  <aoliva at redhat.com>
@@ -32,8 +33,8 @@
 
 Index: gdb-6.3/gdb/mipsnbsd-tdep.c
 ===================================================================
---- gdb-6.3.orig/gdb/mipsnbsd-tdep.c	2006-02-23 17:39:41.000000000 -0300
-+++ gdb-6.3/gdb/mipsnbsd-tdep.c	2006-02-23 17:39:57.000000000 -0300
+--- gdb-6.3.orig/gdb/mipsnbsd-tdep.c	2006-03-07 01:45:10.000000000 -0300
++++ gdb-6.3/gdb/mipsnbsd-tdep.c	2006-03-07 01:45:13.000000000 -0300
 @@ -295,6 +295,9 @@ mipsnbsd_ilp32_solib_svr4_fetch_link_map
        lmo.l_name_offset = 8;
        lmo.l_name_size   = 4;
@@ -56,8 +57,8 @@
  
 Index: gdb-6.3/gdb/solib-legacy.c
 ===================================================================
---- gdb-6.3.orig/gdb/solib-legacy.c	2006-02-23 17:39:41.000000000 -0300
-+++ gdb-6.3/gdb/solib-legacy.c	2006-02-23 17:39:57.000000000 -0300
+--- gdb-6.3.orig/gdb/solib-legacy.c	2006-03-07 01:45:10.000000000 -0300
++++ gdb-6.3/gdb/solib-legacy.c	2006-03-07 01:45:13.000000000 -0300
 @@ -68,6 +68,9 @@ legacy_svr4_fetch_link_map_offsets (void
        lmo.l_next_offset = offsetof (struct link_map, l_next);
        lmo.l_next_size = fieldsize (struct link_map, l_next);
@@ -92,8 +93,8 @@
  #endif /* HAVE_STRUCT_LINK_MAP_WITH_L_MEMBERS */
 Index: gdb-6.3/gdb/solib-svr4.c
 ===================================================================
---- gdb-6.3.orig/gdb/solib-svr4.c	2006-02-23 17:39:41.000000000 -0300
-+++ gdb-6.3/gdb/solib-svr4.c	2006-02-23 17:39:57.000000000 -0300
+--- gdb-6.3.orig/gdb/solib-svr4.c	2006-03-07 01:45:10.000000000 -0300
++++ gdb-6.3/gdb/solib-svr4.c	2006-03-07 01:45:13.000000000 -0300
 @@ -36,10 +36,13 @@
  #include "inferior.h"
  #include "command.h"
@@ -300,8 +301,8 @@
  			  SO_NAME_MAX_PATH_SIZE - 1, &errcode);
 Index: gdb-6.3/gdb/solib-svr4.h
 ===================================================================
---- gdb-6.3.orig/gdb/solib-svr4.h	2006-02-23 17:39:41.000000000 -0300
-+++ gdb-6.3/gdb/solib-svr4.h	2006-02-23 17:39:57.000000000 -0300
+--- gdb-6.3.orig/gdb/solib-svr4.h	2006-03-07 01:45:10.000000000 -0300
++++ gdb-6.3/gdb/solib-svr4.h	2006-03-07 01:45:13.000000000 -0300
 @@ -51,6 +51,12 @@ struct link_map_offsets
      /* Size of l_addr field in struct link_map.  */
      int l_addr_size;
@@ -317,8 +318,8 @@
  
 Index: gdb-6.3/gdb/Makefile.in
 ===================================================================
---- gdb-6.3.orig/gdb/Makefile.in	2006-02-23 17:39:41.000000000 -0300
-+++ gdb-6.3/gdb/Makefile.in	2006-02-23 17:39:57.000000000 -0300
+--- gdb-6.3.orig/gdb/Makefile.in	2006-03-07 01:45:10.000000000 -0300
++++ gdb-6.3/gdb/Makefile.in	2006-03-07 01:45:13.000000000 -0300
 @@ -2535,7 +2535,7 @@ solib-sunos.o: solib-sunos.c $(defs_h) $
  solib-svr4.o: solib-svr4.c $(defs_h) $(elf_external_h) $(elf_common_h) \
  	$(elf_mips_h) $(symtab_h) $(bfd_h) $(symfile_h) $(objfiles_h) \
@@ -331,8 +332,27 @@
 Index: gdb-6.3/gdb/testsuite/gdb.base/prelink-lib.c
 ===================================================================
 --- /dev/null	1970-01-01 00:00:00.000000000 +0000
-+++ gdb-6.3/gdb/testsuite/gdb.base/prelink-lib.c	2006-02-23 17:39:57.000000000 -0300
-@@ -0,0 +1,15 @@
++++ gdb-6.3/gdb/testsuite/gdb.base/prelink-lib.c	2006-03-07 01:45:13.000000000 -0300
+@@ -0,0 +1,34 @@
++/* This testcase is part of GDB, the GNU debugger.
++
++   Copyright 2006  Free Software Foundation, Inc.
++
++   This program is free software; you can redistribute it and/or modify
++   it under the terms of the GNU General Public License as published by
++   the Free Software Foundation; either version 2 of the License, or
++   (at your option) any later version.
++
++   This program is distributed in the hope that it will be useful,
++   but WITHOUT ANY WARRANTY; without even the implied warranty of
++   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++   GNU General Public License for more details.
++
++   You should have received a copy of the GNU General Public License
++   along with this program; if not, write to the Free Software
++   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
++*/
++
 +int
 +g (void (*p)(void))
 +{
@@ -351,8 +371,27 @@
 Index: gdb-6.3/gdb/testsuite/gdb.base/prelink.c
 ===================================================================
 --- /dev/null	1970-01-01 00:00:00.000000000 +0000
-+++ gdb-6.3/gdb/testsuite/gdb.base/prelink.c	2006-02-23 17:39:57.000000000 -0300
-@@ -0,0 +1,11 @@
++++ gdb-6.3/gdb/testsuite/gdb.base/prelink.c	2006-03-07 01:45:13.000000000 -0300
+@@ -0,0 +1,30 @@
++/* This testcase is part of GDB, the GNU debugger.
++
++   Copyright 2006  Free Software Foundation, Inc.
++
++   This program is free software; you can redistribute it and/or modify
++   it under the terms of the GNU General Public License as published by
++   the Free Software Foundation; either version 2 of the License, or
++   (at your option) any later version.
++
++   This program is distributed in the hope that it will be useful,
++   but WITHOUT ANY WARRANTY; without even the implied warranty of
++   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++   GNU General Public License for more details.
++
++   You should have received a copy of the GNU General Public License
++   along with this program; if not, write to the Free Software
++   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
++*/
++
 +#include <stdio.h>
 +
 +extern void (*h (void)) (void (*)(void));
@@ -367,7 +406,7 @@
 Index: gdb-6.3/gdb/testsuite/gdb.base/prelink.exp
 ===================================================================
 --- /dev/null	1970-01-01 00:00:00.000000000 +0000
-+++ gdb-6.3/gdb/testsuite/gdb.base/prelink.exp	2006-03-03 14:35:19.000000000 -0300
++++ gdb-6.3/gdb/testsuite/gdb.base/prelink.exp	2006-03-07 01:50:42.000000000 -0300
 @@ -0,0 +1,115 @@
 +# Copyright 2006 Free Software Foundation, Inc.
 +
@@ -383,10 +422,10 @@
 +#
 +# You should have received a copy of the GNU General Public License
 +# along with this program; if not, write to the Free Software
-+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
++# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
 +
 +# Please email any bugs, comments, and/or additions to this file to:
-+# bug-gdb at prep.ai.mit.edu
++# bug-gdb at gnu.org
 +
 +# This file was written by Alexandre Oliva <aoliva at redhat.com>
 +
@@ -461,7 +500,7 @@
 +}
 +
 +if {[catch "system \"prelink -uN ${libfile}\""] != 0} {
-+    warning "${libfile} was not prelinked, maybe system libraries are not prelinked?"
++    untested "${libfile} was not prelinked, maybe system libraries are not prelinked?"
 +    return 0
 +}
 +catch "system \"prelink -qNR ${libfile}\""


Index: gdb.spec
===================================================================
RCS file: /cvs/dist/rpms/gdb/FC-4/gdb.spec,v
retrieving revision 1.172
retrieving revision 1.173
diff -u -r1.172 -r1.173
--- gdb.spec	3 Mar 2006 19:10:48 -0000	1.172
+++ gdb.spec	7 Mar 2006 05:13:17 -0000	1.173
@@ -11,7 +11,7 @@
 Version: 6.3.0.0
 
 # The release always contains a leading reserved number, start it at 0.
-Release: 1.113
+Release: 1.117
 
 License: GPL
 Group: Development/Debuggers
@@ -549,7 +549,17 @@
 # don't include the files in include, they are part of binutils
 
 %changelog
-* Fri Mar  3 2006 Alexandre Oliva <aoliva at redhat.com> - 6.3.0.0-1.113
+* Tue Mar  7 2006 Alexandre Oliva <aoliva at redhat.com> - 6.3.0.0-1.117
+- Bump up release number.
+
+* Tue Mar  7 2006 Alexandre Oliva <aoliva at redhat.com> - 6.3.0.0-1.115
+- Change dwarf2 frame identifiers to use the actual PC instead of the
+function's entry point.
+- Fix FSF and GDB contact addresses in new testcases.
+- Change prelink test to issue untested instead of warning message if
+system libraries are not prelinked.
+
+* Fri Mar  3 2006 Alexandre Oliva <aoliva at redhat.com> - 6.3.0.0-1.114
 - Bump up release number.
 
 * Fri Mar  3 2006 Alexandre Oliva <aoliva at redhat.com> - 6.3.0.0-1.111




More information about the fedora-cvs-commits mailing list