506 lines
17 KiB
RPMSpec
506 lines
17 KiB
RPMSpec
Summary: A GNU collection of binary utilities.
|
|
Name: binutils
|
|
Version: 2.13.90.0.4
|
|
Release: 1
|
|
Copyright: GPL
|
|
Group: Development/Tools
|
|
URL: http://sources.redhat.com/binutils
|
|
Source: ftp://ftp.kernel.org/pub/linux/devel/binutils/binutils-%{version}.tar.bz2
|
|
Patch1: binutils-2.13.90.0.4-glibc21.patch
|
|
Patch2: binutils-2.11.93.0.2-sparc-nonpic.patch
|
|
Patch5: binutils-2.13.90.0.4-ntpoff.patch
|
|
Patch6: binutils-2.13.90.0.4-ppc-rela.patch
|
|
Patch7: binutils-2.13.90.0.4-tls-assert.patch
|
|
Patch8: binutils-2.13.90.0.4-tpoff32-2.patch
|
|
Patch9: binutils-2.13.90.0.4-tls-fixes.patch
|
|
Patch10: binutils-2.13.90.0.4-ia64-brl.patch
|
|
Patch11: binutils-2.13.90.0.4-ia64-pcrel21m.patch
|
|
Patch12: binutils-2.13.90.0.4-jumbo.patch
|
|
|
|
Buildroot: /var/tmp/binutils-root
|
|
BuildRequires: texinfo >= 4.0, dejagnu
|
|
Prereq: /sbin/install-info
|
|
%ifarch ia64
|
|
Obsoletes: gnupro
|
|
%endif
|
|
|
|
%define _gnu %{nil}
|
|
|
|
%description
|
|
Binutils is a collection of binary utilities, including ar (for
|
|
creating, modifying and extracting from archives), as (a family of GNU
|
|
assemblers), gprof (for displaying call graph profile data), ld (the
|
|
GNU linker), nm (for listing symbols from object files), objcopy (for
|
|
copying and translating object files), objdump (for displaying
|
|
information from object files), ranlib (for generating an index for
|
|
the contents of an archive), size (for listing the section sizes of an
|
|
object or archive file), strings (for listing printable strings from
|
|
files), strip (for discarding symbols), and addr2line (for converting
|
|
addresses to file and line).
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch1 -p0 -b .glibc21~
|
|
cp -a ld/Makefile.in ld/Makefile.in.tmp
|
|
sed '/^ALL_EMULATIONS/s/eelf_i386_chaos.o/eelf_i386_chaos.o eelf_i386_glibc21.o/' ld/Makefile.in.tmp > ld/Makefile.in
|
|
rm ld/Makefile.in.tmp
|
|
%patch2 -p0 -b .sparc-nonpic~
|
|
%patch5 -p0 -b .ntpoff~
|
|
%patch6 -p0 -b .ppc-rela~
|
|
%patch7 -p0 -b .tls-assert~
|
|
%patch8 -p0 -b .tpoff32-2~
|
|
%patch9 -p0 -b .tls-fixes~
|
|
%patch10 -p0 -b .ia64-brl~
|
|
%patch11 -p0 -b .ia64-pcrel21m~
|
|
%patch12 -p0 -b .jumbo~
|
|
|
|
%build
|
|
mkdir build-%{_target_platform}
|
|
cd build-%{_target_platform}
|
|
CFLAGS="${CFLAGS:-%optflags}" ../configure \
|
|
%{_target_platform} --prefix=%{_prefix} --exec-prefix=%{_exec_prefix} \
|
|
--bindir=%{_bindir} --sbindir=%{_sbindir} --sysconfdir=%{_sysconfdir} \
|
|
--datadir=%{_datadir} --includedir=%{_includedir} --libdir=%{_libdir} \
|
|
--libexecdir=%{_libexecdir} --localstatedir=%{_localstatedir} \
|
|
--sharedstatedir=%{_sharedstatedir} --mandir=%{_mandir} \
|
|
--infodir=%{_infodir} --enable-shared
|
|
make tooldir=%{_prefix} all info
|
|
echo ====================TESTING=========================
|
|
make -k check || :
|
|
echo ====================TESTING END=====================
|
|
cd ..
|
|
|
|
%install
|
|
rm -rf ${RPM_BUILD_ROOT}
|
|
mkdir -p ${RPM_BUILD_ROOT}%{_prefix}
|
|
cd build-%{_target_platform}
|
|
%makeinstall
|
|
make prefix=${RPM_BUILD_ROOT}%{_prefix} infodir=${RPM_BUILD_ROOT}%{_infodir} install-info
|
|
strip ${RPM_BUILD_ROOT}%{_prefix}/bin/*
|
|
gzip -q9f ${RPM_BUILD_ROOT}%{_infodir}/*.info*
|
|
|
|
#install -m 644 libiberty/libiberty.a ${RPM_BUILD_ROOT}%{_prefix}/%{_lib}
|
|
install -m 644 ../include/libiberty.h ${RPM_BUILD_ROOT}%{_prefix}/include
|
|
# Remove Windows/Novell only man pages
|
|
rm -f ${RPM_BUILD_ROOT}%{_mandir}/man1/{dlltool,nlmconv,windres}*
|
|
|
|
chmod +x ${RPM_BUILD_ROOT}%{_prefix}/%{_lib}/lib*.so*
|
|
|
|
# This one comes from gcc
|
|
rm -f ${RPM_BUILD_ROOT}%{_prefix}/bin/c++filt
|
|
|
|
cd ..
|
|
%find_lang binutils
|
|
%find_lang opcodes
|
|
%find_lang bfd
|
|
%find_lang gas
|
|
%find_lang ld
|
|
cat opcodes.lang >> binutils.lang
|
|
cat bfd.lang >> binutils.lang
|
|
cat gas.lang >> binutils.lang
|
|
cat ld.lang >> binutils.lang
|
|
|
|
%clean
|
|
rm -rf ${RPM_BUILD_ROOT}
|
|
|
|
%post
|
|
/sbin/ldconfig
|
|
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
|
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/bfd.info.gz
|
|
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/binutils.info.gz
|
|
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/gprof.info.gz
|
|
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/ld.info.gz
|
|
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/standards.info.gz
|
|
|
|
%preun
|
|
if [ $1 = 0 ] ;then
|
|
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
|
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz
|
|
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz
|
|
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz
|
|
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz
|
|
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/standards.info.gz
|
|
fi
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files -f binutils.lang
|
|
%defattr(-,root,root)
|
|
%doc README
|
|
%{_prefix}/bin/*
|
|
%{_mandir}/man1/*
|
|
%{_prefix}/include/*
|
|
%{_prefix}/%{_lib}/*
|
|
%{_infodir}/*info*
|
|
|
|
%changelog
|
|
* Tue Oct 1 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.4-1
|
|
- update to 2.13.90.0.4
|
|
- x86-64 TLS support
|
|
- some IA-32 TLS fixes
|
|
- some backported patches from trunk
|
|
- include opcodes, ld, gas and bfd l10n too
|
|
|
|
* Thu Sep 19 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.2-3
|
|
- allow addends for IA-32 TLS @tpoff, @ntpoff and @dtpoff
|
|
- clear memory at *r_offset of dynamic relocs on PPC
|
|
- avoid ld crash if accessing non-local symbols through LE relocs
|
|
- new IA-32 TLS relocs, bugfixes and testcases
|
|
- use brl insn on IA-64 (Richard Henderson)
|
|
- fix R_IA64_PCREL21{M,F} handling (Richard Henderson)
|
|
- build in separate builddir, so that gasp tests don't fail
|
|
- include localization
|
|
|
|
* Thu Aug 8 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.2-2
|
|
- fix R_386_TPOFF32 addends (#70824)
|
|
|
|
* Sat Aug 3 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.2-1
|
|
- update to 2.13.90.0.2
|
|
- fix ld TLS assertion failure (#70084)
|
|
- fix readelf --debug-dump= handling to match man page and --help
|
|
(#68997)
|
|
- fix _GLOBAL_OFFSET_TABLE gas handling (#70241)
|
|
|
|
* Wed Jul 24 2002 Jakub Jelinek <jakub@redhat.com> 2.12.90.0.15-1
|
|
- update to 2.12.90.0.15
|
|
- TLS .tbss fix
|
|
- don't use rpm %%configure macro, it is broken too often (#69366)
|
|
|
|
* Thu May 30 2002 Jakub Jelinek <jakub@redhat.com> 2.12.90.0.9-1
|
|
- update to 2.12.90.0.9
|
|
- TLS support
|
|
- remove gasp.info from %%post/%%preun (#65400)
|
|
|
|
* Mon Apr 29 2002 Jakub Jelinek <jakub@redhat.com> 2.12.90.0.7-1
|
|
- update to 2.12.90.0.7
|
|
- run make check
|
|
|
|
* Mon Apr 29 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-12
|
|
- fix .hidden handling on SPARC (Richard Henderson)
|
|
- don't crash when linking -shared non-pic code with SHF_MERGE
|
|
- fix .eh_frame_hdr for DW_EH_PE_aligned
|
|
- correctly adjust DW_EH_PE_pcrel encoded personalities in CIEs
|
|
|
|
* Fri Apr 5 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-11
|
|
- don't emit dynamic R_SPARC_DISP* relocs against STV_HIDDEN symbols
|
|
into shared libraries
|
|
|
|
* Thu Mar 21 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-10
|
|
- don't merge IA-64 unwind info sections together during ld -r
|
|
|
|
* Mon Mar 11 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-9
|
|
- fix DATA_SEGMENT_ALIGN on ia64/alpha/sparc/sparc64
|
|
|
|
* Fri Mar 8 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-8
|
|
- don't crash on SHN_UNDEF local dynsyms (Andrew MacLeod)
|
|
|
|
* Thu Mar 7 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-7
|
|
- fix bfd configury bug (Alan Modra)
|
|
|
|
* Tue Mar 5 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-6
|
|
- don't copy visibility when equating symbols
|
|
- fix alpha .text/.data with .previous directive bug
|
|
|
|
* Tue Mar 5 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-5
|
|
- fix SHF_MERGE crash with --gc-sections (#60369)
|
|
- C++ symbol versioning patch
|
|
|
|
* Fri Feb 22 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-4
|
|
- add DW_EH_PE_absptr -> DW_EH_PE_pcrel optimization for shared libs,
|
|
if DW_EH_PE_absptr cannot be converted that way, don't build the
|
|
.eh_frame_hdr search table
|
|
|
|
* Fri Feb 15 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-3
|
|
- fix ld -N broken by last patch
|
|
|
|
* Tue Feb 12 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-2
|
|
- trade one saved runtime page for data segment (=almost always not shared)
|
|
for up to one page of disk space where possible
|
|
|
|
* Fri Feb 8 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-1
|
|
- update to 2.11.93.0.2
|
|
- use %%{ix86} instead of i386 for -z combreloc default (#59086)
|
|
|
|
* Thu Jan 31 2002 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-10
|
|
- don't create SHN_UNDEF STB_WEAK symbols unless there are any relocations
|
|
against them
|
|
|
|
* Wed Jan 30 2002 Bill Nottingham <notting@redhat.com> 2.11.92.0.12-9.1
|
|
- rebuild (fix ia64 miscompilation)
|
|
|
|
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
|
- automated rebuild
|
|
|
|
* Fri Dec 28 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-8
|
|
- two further .eh_frame patch fixes
|
|
|
|
* Wed Dec 19 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-7
|
|
- as ld is currently not able to shrink input sections to zero size
|
|
during discard_info, build a fake minimal CIE in that case
|
|
- update elf-strtab patch to what was commited
|
|
|
|
* Mon Dec 17 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-6
|
|
- one more .eh_frame patch fix
|
|
- fix alpha .eh_frame handling
|
|
- optimize elf-strtab finalize
|
|
|
|
* Sat Dec 15 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-5
|
|
- yet another fix for the .eh_frame patch
|
|
|
|
* Fri Dec 14 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-4
|
|
- Alan Modra's patch to avoid crash if there is no dynobj
|
|
|
|
* Thu Dec 13 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-3
|
|
- H.J.'s patch to avoid crash if input files are not ELF
|
|
- don't crash if a SHF_MERGE for some reason could not be merged
|
|
- fix objcopy/strip to preserve SHF_MERGE sh_entsize
|
|
- optimize .eh_frame sections, add PT_GNU_EH_FRAME support
|
|
- support anonymous version tags in version script
|
|
|
|
* Tue Nov 27 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-2
|
|
- fix IA-64 SHF_MERGE handling
|
|
|
|
* Tue Nov 27 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-1
|
|
- update to 2.11.92.0.12
|
|
- optimize .dynstr and .shstrtab sections (#55524)
|
|
- fix ld.1 glitch (#55459)
|
|
- turn relocs against SHF_MERGE local symbols with zero addend
|
|
into STT_SECTION + addend
|
|
- remove man pages for programs not included (nlmconv, windres, dlltool;
|
|
#55456, #55461)
|
|
- add BuildRequires for texinfo
|
|
|
|
* Thu Oct 25 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.7-2
|
|
- duh, fix strings on bfd objects (#55084)
|
|
|
|
* Sat Oct 20 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.7-1
|
|
- update to 2.11.92.0.7
|
|
- remove .rel{,a}.dyn from output if it is empty
|
|
|
|
* Thu Oct 11 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.5-2
|
|
- fix strings patch
|
|
- use getc_unlocked in strings to speed it up by 50% on large files
|
|
|
|
* Wed Oct 10 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.5-1
|
|
- update to 2.11.92.0.5
|
|
- binutils localization (#45148)
|
|
- fix typo in REPORT_BUGS_TO (#54325)
|
|
- support files bigger than 2GB in strings (#54406)
|
|
|
|
* Wed Sep 26 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-12
|
|
- on IA-64, don't mix R_IA64_IPLTLSB relocs with non-PLT relocs in
|
|
.rela.dyn section.
|
|
|
|
* Tue Sep 25 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-11
|
|
- add iplt support for IA-64 (Richard Henderson)
|
|
- switch to new section flags for SHF_MERGE and SHF_STRINGS, put
|
|
in compatibility code
|
|
- "s" section flag for small data sections on IA-64 and Alpha
|
|
(Richard Henderson)
|
|
- fix sparc64 .plt[32768+] handling
|
|
- don't emit .rela.stab on sparc
|
|
|
|
* Mon Sep 10 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-10
|
|
- fix SHF_MERGE on Sparc
|
|
|
|
* Fri Aug 31 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-9
|
|
- on Alpha, copy *r_offset to R_ALPHA_RELATIVE's r_addend
|
|
|
|
* Thu Aug 30 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-8
|
|
- on IA-64, put crtend{,S}.o's .IA_64.unwind section last in
|
|
.IA_64.unwind output section (for compatibility with 7.1 eh)
|
|
|
|
* Fri Aug 24 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-7
|
|
- put RELATIVE relocs first, not last
|
|
- enable -z combreloc by default on IA-{32,64}, Alpha, Sparc*
|
|
|
|
* Thu Aug 23 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-6
|
|
- support for -z combreloc
|
|
- remove .dynamic patch, -z combreloc patch does this better
|
|
- set STT_FUNC default symbol sizes in .endp directive on IA-64
|
|
|
|
* Mon Jul 16 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-5
|
|
- fix last patch (H.J.Lu)
|
|
|
|
* Fri Jul 13 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-4
|
|
- fix placing of orphan sections
|
|
|
|
* Sat Jun 23 2001 Jakub Jelinek <jakub@redhat.com>
|
|
- fix SHF_MERGE support on Alpha
|
|
|
|
* Fri Jun 8 2001 Jakub Jelinek <jakub@redhat.com>
|
|
- 2.11.90.0.8
|
|
- some SHF_MERGE suport fixes
|
|
- don't build with tooldir /usrusr instead of /usr (#40937)
|
|
- reserve few .dynamic entries for prelinking
|
|
|
|
* Mon Apr 16 2001 Jakub Jelinek <jakub@redhat.com>
|
|
- 2.11.90.0.5
|
|
- SHF_MERGE support
|
|
|
|
* Tue Apr 3 2001 Jakub Jelinek <jakub@redhat.com>
|
|
- 2.11.90.0.4
|
|
- fix uleb128 support, so that CVS gcc bootstraps
|
|
- some ia64 fixes
|
|
|
|
* Mon Mar 19 2001 Jakub Jelinek <jakub@redhat.com>
|
|
- add -Bgroup support from Ulrich Drepper
|
|
|
|
* Fri Mar 9 2001 Jakub Jelinek <jakub@redhat.com>
|
|
- hack - add elf_i386_glibc21 emulation
|
|
|
|
* Fri Feb 16 2001 Jakub Jelinek <jakub@redhat.com>
|
|
- 2.10.91.0.2
|
|
|
|
* Fri Feb 9 2001 Jakub Jelinek <jakub@redhat.com>
|
|
- 2.10.1.0.7
|
|
- remove ExcludeArch ia64
|
|
- back out the -oformat, -omagic and -output change for now
|
|
|
|
* Fri Dec 15 2000 Jakub Jelinek <jakub@redhat.com>
|
|
- Prereq /sbin/install-info
|
|
|
|
* Tue Nov 21 2000 Jakub Jelinek <jakub@redhat.com>
|
|
- 2.10.1.0.2
|
|
|
|
* Tue Nov 21 2000 Jakub Jelinek <jakub@redhat.com>
|
|
- add one more alpha patch
|
|
|
|
* Wed Nov 15 2000 Jakub Jelinek <jakub@redhat.com>
|
|
- fix alpha visibility as problem
|
|
- add support for Ultra-III
|
|
|
|
* Fri Sep 15 2000 Jakub Jelinek <jakub@redhat.com>
|
|
- and one more alpha patch
|
|
|
|
* Fri Sep 15 2000 Jakub Jelinek <jakub@redhat.com>
|
|
- two sparc patches
|
|
|
|
* Mon Jul 24 2000 Jakub Jelinek <jakub@redhat.com>
|
|
- 2.10.0.18
|
|
|
|
* Mon Jul 10 2000 Jakub Jelinek <jakub@redhat.com>
|
|
- 2.10.0.12
|
|
|
|
* Mon Jun 26 2000 Jakub Jelinek <jakub@redhat.com>
|
|
- 2.10.0.9
|
|
|
|
* Thu Jun 15 2000 Jakub Jelinek <jakub@redhat.com>
|
|
- fix ld -r
|
|
|
|
* Mon Jun 5 2000 Jakub Jelinek <jakub@redhat.com>
|
|
- 2.9.5.0.46
|
|
- use _mandir/_infodir/_lib
|
|
|
|
* Mon May 8 2000 Bernhard Rosenkraenzer <bero@redhat.com>
|
|
- 2.9.5.0.41
|
|
|
|
* Wed Apr 12 2000 Bernhard Rosenkraenzer <bero@redhat.com>
|
|
- 2.9.5.0.34
|
|
|
|
* Wed Mar 22 2000 Bernhard Rosenkraenzer <bero@redhat.com>
|
|
- 2.9.5.0.31
|
|
|
|
* Fri Feb 04 2000 Cristian Gafton <gafton@redhat.com>
|
|
- man pages are compressed
|
|
- apply kingdon's patch from #5031
|
|
|
|
* Wed Jan 19 2000 Jeff Johnson <jbj@redhat.com>
|
|
- Permit package to be built with a prefix other than /usr.
|
|
|
|
* Thu Jan 13 2000 Cristian Gafton <gafton@redhat.com>
|
|
- add pacth from hjl to fix the versioning problems in ld
|
|
|
|
* Tue Jan 11 2000 Bernhard Rosenkraenzer <bero@redhat.com>
|
|
- Add sparc patches from Jakub Jelinek <jakub@redhat.com>
|
|
- Add URL:
|
|
|
|
* Tue Dec 14 1999 Bernhard Rosenkraenzer <bero@redhat.com>
|
|
- 2.9.5.0.22
|
|
|
|
* Wed Nov 24 1999 Bernhard Rosenkraenzer <bero@redhat.com>
|
|
- 2.9.5.0.19
|
|
|
|
* Sun Oct 24 1999 Bernhard Rosenkraenzer <bero@redhat.com>
|
|
- 2.9.5.0.16
|
|
|
|
* Mon Sep 06 1999 Jakub Jelinek <jj@ultra.linux.cz>
|
|
- make shared non-pic libraries work on sparc with glibc 2.1.
|
|
|
|
* Fri Aug 27 1999 Jim Kingdon
|
|
- No source/spec changes, just rebuilding with egcs-1.1.2-18 because
|
|
the older egcs was miscompling gprof.
|
|
|
|
* Mon Apr 26 1999 Cristian Gafton <gafton@redhat.com>
|
|
- back out very *stupid* sparc patch done by HJLu. People, keep out of
|
|
things you don't understand.
|
|
- add alpha relax patch from rth
|
|
|
|
* Mon Apr 05 1999 Cristian Gafton <gafton@redhat.com>
|
|
- version 2.9.1.0.23
|
|
- patch to make texinfo documentation compile
|
|
- auto rebuild in the new build environment (release 2)
|
|
|
|
* Tue Feb 23 1999 Cristian Gafton <gafton@redhat.com>
|
|
- updated to 2.9.1.0.21
|
|
- merged with UltraPenguin
|
|
|
|
* Mon Jan 04 1999 Cristian Gafton <gafton@redhat.com>
|
|
- added ARM patch from philb
|
|
- version 2.9.1.0.19a
|
|
- added a patch to allow arm* arch to be identified as an ARM
|
|
|
|
* Thu Oct 01 1998 Cristian Gafton <gafton@redhat.com>
|
|
- updated to 2.9.1.0.14.
|
|
|
|
* Sat Sep 19 1998 Jeff Johnson <jbj@redhat.com>
|
|
- updated to 2.9.1.0.13.
|
|
|
|
* Wed Sep 09 1998 Cristian Gafton <gafton@redhat.com>
|
|
- updated to 2.9.1.0.12
|
|
|
|
* Thu Jul 2 1998 Jeff Johnson <jbj@redhat.com>
|
|
- updated to 2.9.1.0.7.
|
|
|
|
* Wed Jun 03 1998 Jeff Johnson <jbj@redhat.com>
|
|
- updated to 2.9.1.0.6.
|
|
|
|
* Tue Jun 02 1998 Erik Troan <ewt@redhat.com>
|
|
- added patch from rth to get right offsets for sections in relocateable
|
|
objects on sparc32
|
|
|
|
* Thu May 07 1998 Prospector System <bugs@redhat.com>
|
|
- translations modified for de, fr, tr
|
|
|
|
* Tue May 05 1998 Cristian Gafton <gafton@redhat.com>
|
|
- version 2.9.1.0.4 is out; even more, it is public !
|
|
|
|
* Tue May 05 1998 Jeff Johnson <jbj@redhat.com>
|
|
- updated to 2.9.1.0.3.
|
|
|
|
* Mon Apr 20 1998 Cristian Gafton <gafton@redhat.com>
|
|
- updated to 2.9.0.3
|
|
|
|
* Tue Apr 14 1998 Cristian Gafton <gafton@redhat.com>
|
|
- upgraded to 2.9.0.2
|
|
|
|
* Sun Apr 05 1998 Cristian Gafton <gafton@redhat.com>
|
|
- updated to 2.8.1.0.29 (HJ warned me that this thing is a moving target...
|
|
:-)
|
|
- "fixed" the damn make install command so that all tools get installed
|
|
|
|
* Thu Apr 02 1998 Cristian Gafton <gafton@redhat.com>
|
|
- upgraded again to 2.8.1.0.28 (at least on alpha now egcs will compile)
|
|
- added info packages handling
|
|
|
|
* Tue Mar 10 1998 Cristian Gafton <gafton@redhat.com>
|
|
- upgraded to 2.8.1.0.23
|
|
|
|
* Mon Mar 02 1998 Cristian Gafton <gafton@redhat.com>
|
|
- updated to 2.8.1.0.15 (required to compile the newer glibc)
|
|
- all patches are obsoleted now
|
|
|
|
* Wed Oct 22 1997 Erik Troan <ewt@redhat.com>
|
|
- added 2.8.1.0.1 patch from hj
|
|
- added patch for alpha palcode form rth
|