OBS User unknown 2007-10-19 13:09:59 +00:00 committed by Git OBS Bridge
parent 74731a1a8f
commit cc9b1186a8
2 changed files with 14 additions and 2 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Fri Oct 19 15:02:27 CEST 2007 - olh@suse.de
- allow build with old distributions, libexpat-devel is new in 10.3
-------------------------------------------------------------------
Thu Oct 11 18:52:04 CEST 2007 - schwab@suse.de

View File

@ -11,7 +11,12 @@
# norootforbuild
Name: gdb
BuildRequires: bison dejagnu flex gcc-c++ gcc-fortran gcc-java gcc-objc libexpat-devel readline-devel
BuildRequires: bison dejagnu flex gcc-c++ gcc-fortran gcc-java gcc-objc readline-devel
%if 0%{?suse_version} > 1020
BuildRequires: libexpat-devel
%else
BuildRequires: expat
%endif
%ifarch %ix86 x86_64 ia64
BuildRequires: libunwind-devel
%endif
@ -24,7 +29,7 @@ Group: Development/Tools/Debuggers
AutoReqProv: on
PreReq: %{install_info_prereq}
Version: 6.7
Release: 1
Release: 5
Summary: The GNU Debugger
Source: gdb-%{version}.tar.bz2
Patch2: warn.patch
@ -131,6 +136,8 @@ rm -rf $RPM_BUILD_ROOT
%{_mandir}/man1/gdbserver.1.gz
%endif
%changelog
* Fri Oct 19 2007 - olh@suse.de
- allow build with old distributions, libexpat-devel is new in 10.3
* Thu Oct 11 2007 - schwab@suse.de
- Update to gdb 6.7.
* Resolved 101 resource leaks, null pointer dereferences, etc. in gdb,