This commit is contained in:
parent
0255a8ed6d
commit
d64e29bbb5
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 15:00:24 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
- Fix crash.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Sep 24 14:23:01 CEST 2008 - schwab@suse.de
|
Wed Sep 24 14:23:01 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
4
gdb.spec
4
gdb.spec
@ -20,7 +20,7 @@
|
|||||||
Name: gdb
|
Name: gdb
|
||||||
Summary: The GNU Debugger
|
Summary: The GNU Debugger
|
||||||
Version: 6.8.50.20080924
|
Version: 6.8.50.20080924
|
||||||
Release: 1
|
Release: 2
|
||||||
BuildRequires: bison dejagnu flex gcc-c++ gcc-fortran gcc-java gcc-objc python-devel readline-devel zlib-devel
|
BuildRequires: bison dejagnu flex gcc-c++ gcc-fortran gcc-java gcc-objc python-devel readline-devel zlib-devel
|
||||||
%if 0%{?suse_version} > 1020
|
%if 0%{?suse_version} > 1020
|
||||||
BuildRequires: libexpat-devel
|
BuildRequires: libexpat-devel
|
||||||
@ -201,6 +201,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Oct 07 2008 schwab@suse.de
|
||||||
|
- Fix crash.
|
||||||
* Wed Sep 24 2008 schwab@suse.de
|
* Wed Sep 24 2008 schwab@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
- Add POWER7 support.
|
- Add POWER7 support.
|
||||||
|
@ -41,7 +41,7 @@
|
|||||||
+ if ((b->type == bp_breakpoint
|
+ if ((b->type == bp_breakpoint
|
||||||
+ || b->type == bp_hardware_breakpoint)
|
+ || b->type == bp_hardware_breakpoint)
|
||||||
+ && b->enable_state == bp_enabled
|
+ && b->enable_state == bp_enabled
|
||||||
+ && !b->loc->duplicate)
|
+ && b->loc && !b->loc->duplicate)
|
||||||
+ {
|
+ {
|
||||||
+ b->enable_state = bp_startup_disabled;
|
+ b->enable_state = bp_startup_disabled;
|
||||||
+ if (!silent)
|
+ if (!silent)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user