5c40ff
Summary: A utility for unpacking zip files
5c40ff
Name: unzip
5c40ff
Version: 6.0
5c40ff
Release: 20%{?dist}
5c40ff
License: BSD
5c40ff
Group: Applications/Archiving
5c40ff
Source: http://downloads.sourceforge.net/infozip/unzip60.tar.gz
5c40ff
# Not sent to upstream.
5c40ff
Patch1: unzip-6.0-bzip2-configure.patch
5c40ff
# Upstream plans to do this in zip (hopefully also in unzip).
5c40ff
Patch2: unzip-6.0-exec-shield.patch
5c40ff
# Upstream plans to do similar thing.
5c40ff
Patch3: unzip-6.0-close.patch
5c40ff
# Details in rhbz#532380.
5c40ff
# Reported to upstream: http://www.info-zip.org/board/board.pl?m-1259575993/
5c40ff
Patch4: unzip-6.0-attribs-overflow.patch
5c40ff
# Not sent to upstream, as it's Fedora/RHEL specific.
5c40ff
# Modify the configure script not to request the strip of binaries.
5c40ff
Patch5: unzip-6.0-configure.patch
5c40ff
Patch6: unzip-6.0-manpage-fix.patch
5c40ff
# Update match.c with recmatch() from zip 3.0's util.c
5c40ff
# This also resolves the license issue in that old function.
5c40ff
# Original came from here: https://projects.parabolagnulinux.org/abslibre.git/plain/libre/unzip-libre/match.patch
5c40ff
Patch7: unzip-6.0-fix-recmatch.patch
5c40ff
#Improve covered options in -hh usage and manpages(#948808)
5c40ff
Patch8: unzip-6.0-manpageandusage.patch
5c40ff
# downstream patch - repair file mach.c
5c40ff
Patch9: unzip-6.0-caseinsensitive.patch
5c40ff
Patch10: unzip-6.0-cve-2014-9636.patch
5c40ff
Patch11: unzip-6.0-cve-2014-8139.patch
5c40ff
Patch12: unzip-6.0-cve-2014-8140.patch
5c40ff
Patch13: unzip-6.0-cve-2014-8141.patch
5c40ff
Patch14: unzip-6.0-format-secure.patch
5c40ff
Patch15: unzip-6.0-alt-iconv-utf8.patch
5c40ff
Patch16: unzip-6.0-alt-iconv-utf8-print.patch
5c40ff
Patch17: unzip-6.0-symlink.patch
5c40ff
5c40ff
5c40ff
#Patch14: unzip-6.0-alt-iconv-utf8.patch
5c40ff
#Patch15: unzip-6.0-symlink.patch
5c40ff
#Patch16: unzip-6.0-format-secure.patch
5c40ff
#Patch17: unzip-6.0-alt-iconv-utf8-print.patch
5c40ff
5c40ff
Patch24: unzip-6.0-cve-2018-18384.patch
5c40ff
5c40ff
5c40ff
URL: http://www.info-zip.org/UnZip.html
5c40ff
BuildRequires:  bzip2-devel
5c40ff
5c40ff
%description
5c40ff
The unzip utility is used to list, test, or extract files from a zip
5c40ff
archive.  Zip archives are commonly found on MS-DOS systems.  The zip
5c40ff
utility, included in the zip package, creates zip archives.  Zip and
5c40ff
unzip are both compatible with archives created by PKWARE(R)'s PKZIP
5c40ff
for MS-DOS, but the programs' options and default behaviors do differ
5c40ff
in some respects.
5c40ff
5c40ff
Install the unzip package if you need to list, test or extract files from
5c40ff
a zip archive.
5c40ff
5c40ff
%prep
5c40ff
%setup -q -n unzip60
5c40ff
%patch1 -p1 -b .bzip2-configure
5c40ff
%patch2 -p1 -b .exec-shield
5c40ff
%patch3 -p1 -b .close
5c40ff
%patch4 -p1 -b .attribs-overflow
5c40ff
%patch5 -p1 -b .nostrip
5c40ff
%patch6 -p1 -b .manpage-fix
5c40ff
%patch7 -p1 -b .recmatch
5c40ff
%patch8 -p1 -b .usage
5c40ff
%patch9 -p1 -b .caseinsensitive
5c40ff
%patch10 -p1 -b .cve-2014-9636.patch
5c40ff
%patch11 -p1 -b .cve-2014-8139.patch
5c40ff
%patch12 -p1 -b .cve-2014-8140.patch
5c40ff
%patch13 -p1 -b .cve-2014-8141.patch
5c40ff
%patch14 -p1 -b .wformat
5c40ff
%patch15 -p1 -b .utf
5c40ff
%patch16 -p1 -b .utf-print
5c40ff
%patch17 -p1 -b .symlink
5c40ff
5c40ff
 # Settings for EL <= 7
5c40ff
%if 0%{?rhel} && 0%{?rhel} <= 7
5c40ff
%{!?__global_ldflags: %global __global_ldflags -Wl,-z,relro}
5c40ff
%endif
5c40ff
5c40ff
5c40ff
%patch24 -p1 -b .cve-2018-18384
5c40ff
5c40ff
%build
5c40ff
make -f unix/Makefile CF_NOOPT="-I. -DUNIX $RPM_OPT_FLAGS -DNOMEMCPY -DNO_LCHMOD" LFLAGS2="%{?__global_ldflags}" generic_gcc %{?_smp_mflags}
5c40ff
5c40ff
%install
5c40ff
rm -rf $RPM_BUILD_ROOT
5c40ff
make -f unix/Makefile prefix=$RPM_BUILD_ROOT%{_prefix} MANDIR=$RPM_BUILD_ROOT/%{_mandir}/man1 INSTALL="cp -p" install
5c40ff
5c40ff
%files
5c40ff
%defattr(-,root,root)
5c40ff
%doc README BUGS LICENSE
5c40ff
%{_bindir}/*
5c40ff
%{_mandir}/*/*
5c40ff
5c40ff
%changelog
5c40ff
* Mon Feb 25 2019 Jakub Martisko <jamartis@redhat.com> - 6.0-20
5c40ff
- Fix CVE-2018-18384
5c40ff
  Resolves: CVE-2018-18384
5c40ff
5c40ff
* Tue Jan 09 2018 Jakub Martisko <jamartis@redhat.com> - 6.0-19
5c40ff
- rename patch unzip-6.0-nostrip.patch to unzip-6.0-configure.patch
5c40ff
- make linking flags configurable from the specc file
5c40ff
- set linking flags to use relro hardening
5c40ff
  Related: #1531116 
5c40ff
5c40ff
* Tue Jan 09 2018 Jakub Martisko <jamartis@redhat.com> - 6.0-18
5c40ff
- Add -DNOLCHMOD build option, since lchmod is not availabel on Linux
5c40ff
  Anyway
5c40ff
  Related: #1531116 
5c40ff
5c40ff
* Thu Jan 04 2018 Jakub Martisko <jamartis@redhat.com> - 6.0-17
5c40ff
- Fix error with wrong CRC checks by adding -DNOMEMCPY flag
5c40ff
  Resolves: #1525636 
5c40ff
5c40ff
* Wed Nov 25 2015 Petr Stodulka <pstodulk@redhat.com> - 6.0-16
5c40ff
- Added patch for build option "-Werror=format-security"
5c40ff
- Added support of non-unicode non-latin charset
5c40ff
- Fix print of non-ascii filenames
5c40ff
- Fix troubles with symlinks for archives with many files
5c40ff
  Resolves: rhbz#1276746, rhbz#1286165, rhbz#1276744
5c40ff
5c40ff
5c40ff
* Wed Feb 25 2015 Petr Stodulka <pstodulk@redhat.com> - 6.0-15
5c40ff
- Fix CVE-2014-9636 CVE-2014-8139 CVE-2014-8140 CVE-2014-8141
5c40ff
  Resolves: #1196134 #1196122 #1196126 #1196130
5c40ff
5c40ff
* Tue Jul 22 2014 Petr Stodulka <pstodulk@redhat.com> - 6.0-14
5c40ff
- Fix caseinsensitive bug
5c40ff
  Resolves: #1104018
5c40ff
5c40ff
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 6.0-13
5c40ff
- Mass rebuild 2014-01-24
5c40ff
5c40ff
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 6.0-12
5c40ff
- Mass rebuild 2013-12-27
5c40ff
5c40ff
* Fri Sep 27 2013 Ondrej Vasik <ovasik@redhat.com> - 6.0-11
5c40ff
- slightly improve covered options in -hh usage and manpages (#948808)
5c40ff
5c40ff
* Mon Jun 24 2013 Tom Callaway <spot@fedoraproject.org> - 6.0-10
5c40ff
- unset WILD_STOP_AT_DIR
5c40ff
5c40ff
* Tue May 28 2013 Tom Callaway <spot@fedoraproject.org> - 6.0-9
5c40ff
- Apply changes to match.c to sync with recmatch from util.c (from zip 3.0)
5c40ff
  This also resolves the license issue in that file.
5c40ff
5c40ff
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.0-8
5c40ff
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
5c40ff
5c40ff
* Mon Dec 10 2012 Michal Luscon <mluscon@redhat.com> 6.0-7
5c40ff
- Resolves: #884679 - zip files with bzip2 compression 
5c40ff
5c40ff
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.0-6
5c40ff
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
5c40ff
5c40ff
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org>
5c40ff
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
5c40ff
5c40ff
- Fix minor manpage spelling mistake
5c40ff
  Resolves: #675454
5c40ff
5c40ff
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.0-4
5c40ff
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
5c40ff
5c40ff
* Mon May 24 2010 Karel Klic <kklic@redhat.com> - 6.0-3
5c40ff
- Removed BuildRoot tag
5c40ff
- Removed %%clean section
5c40ff
- Removed trailing whitespaces in the spec file
5c40ff
5c40ff
* Mon Nov 30 2009 Karel Klic <kklic@redhat.com> - 6.0-2
5c40ff
- Fixed a buffer overflow (rhbz#532380, unzip-6.0-attribs-overflow.patch)
5c40ff
- Generate debuginfos (rhbz#540220, unzip-6.0-nostrip.patch)
5c40ff
5c40ff
* Mon Nov 16 2009 Karel Klic <kklic@redhat.com> - 6.0-1
5c40ff
- New upstream version
5c40ff
- Compiled using `make generic_gcc` (includes asm)
5c40ff
- Removed unzip542-rpmoptflags.patch, because RPM_OPT_FLAGS
5c40ff
  are provided using command line
5c40ff
- Removed unzip-5.51-link-segv.patch, because the link file
5c40ff
  is not reopened in the current version
5c40ff
- Removed unzip-5.51-link-segv2.patch, the bug was already fixed
5c40ff
  in open_outfile in 5.52
5c40ff
- Removed unzip-5.52-toctou.patch (CAN-2005-2475), the vulnerability
5c40ff
  is fixed in the current version
5c40ff
- Removed unzip-5.52-near-4GB.patch, unzip-5.52-near-4GB2.patch,
5c40ff
  unzip-5.52-4GB3.patch, and unzip-5.52-4GB_types.patch, because
5c40ff
  the current version supports large files
5c40ff
- Removed unzip-5.52-long-filename.patch, the current version
5c40ff
  fixes the vulnerability by checking the length of command line
5c40ff
  arguments in unzip.c
5c40ff
- Removed unzip-5.52-makefile.patch, because we no longer create
5c40ff
  the link manually
5c40ff
- Removed unzip-5.52-open.patch, the current version uses umask.
5c40ff
- Removed unzip-5.52-cve-2008-0888.patch, the current version
5c40ff
  fixes this vulnerability
5c40ff
- Ported unzip-5.52-249057.patch to current version (unzip-6.0-close)
5c40ff
5c40ff
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.52-11
5c40ff
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
5c40ff
5c40ff
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.52-10
5c40ff
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
5c40ff
5c40ff
* Wed Mar 19 2008 Ivana Varekova <varekova@redhat.com> - 5.52-9
5c40ff
- fix crash (double free) on malformed zip archive
5c40ff
  CVE-2008-0888 (#431438)
5c40ff
5c40ff
* Fri Feb  8 2008 Ivana Varekova <varekova@redhat.com> - 5.52-8
5c40ff
- fix output when out of space error appears
5c40ff
5c40ff
* Wed Jan 23 2008 Ivana Varekova <varekova@redhat.com> - 5.52-7
5c40ff
- fix another long file support problem
5c40ff
5c40ff
* Tue Jan 22 2008 Ivana Varekova <varekova@redhat.com> - 5.52-6
5c40ff
- add 4GB patch (#429674)
5c40ff
5c40ff
* Tue Sep  4 2007 Ivana Varekova <varekova@redhat.com> - 5.52-5
5c40ff
- fix open call
5c40ff
5c40ff
* Wed Feb  7 2007 Ivana Varekova <varekova@redhat.com> - 5.52-4
5c40ff
- incorporate the next peckage review comment
5c40ff
5c40ff
* Tue Feb  6 2007 Ivana Varekova <varekova@redhat.com> - 5.52-3
5c40ff
- Resolves: 226516
5c40ff
  Incorporate the package review
5c40ff
5c40ff
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 5.52-2.2.1
5c40ff
- rebuild
5c40ff
5c40ff
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 5.52-2.2
5c40ff
- bump again for double-long bug on ppc(64)
5c40ff
5c40ff
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 5.52-2.1
5c40ff
- rebuilt for new gcc4.1 snapshot and glibc changes
5c40ff
5c40ff
* Mon Feb  6 2006 Ivana Varekova <varekova@redhat.com> 5.52-2
5c40ff
- fix bug 180078 - unzip -l causing error
5c40ff
- fix CVE-2005-4667 - unzip long file name buffer overflow
5c40ff
5c40ff
* Thu Dec 22 2005 Ivana Varekova <varekova@redhat.com> 5.52-1
5c40ff
- update to 5.52
5c40ff
5c40ff
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
5c40ff
- rebuilt
5c40ff
5c40ff
* Wed Aug  3 2005 Ivana Varekova <varekova@redhat.com> 5.51-12
5c40ff
- fix bug 164928 - TOCTOU issue in unzip
5c40ff
5c40ff
* Mon May  9 2005 Ivana Varekova <varekova@redhat.com> 5.51-11
5c40ff
- fix bug 156959 – invalid file mode on created files
5c40ff
5c40ff
* Mon Mar  7 2005 Ivana Varekova <varekova@redhat.com> 5.51-10
5c40ff
- rebuilt
5c40ff
5c40ff
* Thu Feb 10 2005 Ivana Varekova <varekova@redhat.com> 5.51-9
5c40ff
- fix the other problem with unpacking zipfiles containing symlinks
5c40ff
  (bug #134073)
5c40ff
5c40ff
* Thu Feb 03 2005 Ivana Varekova <varekova@redhat.com> 5.51-8
5c40ff
- fix segfault with unpacking of zipfiles containing dangling symlinks
5c40ff
  (bug #134073)
5c40ff
5c40ff
* Thu Dec 02 2004 Lon Hohberger <lhh@redhat.com> 5.51-6
5c40ff
- Rebuild
5c40ff
5c40ff
* Thu Dec 02 2004 Lon Hohberger <lhh@redhat.com> 5.51-5
5c40ff
- Fix segfault on extraction of symlinks
5c40ff
5c40ff
* Mon Jun 21 2004 Lon Hohberger <lhh@redhat.com> 5.51-4
5c40ff
- Extend max file/archive size to 2^32-8193 (4294959103) bytes
5c40ff
5c40ff
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
5c40ff
- rebuilt
5c40ff
5c40ff
* Tue Jun 08 2004 Lon Hohberger <lhh@redhat.com> 5.51-2
5c40ff
- Rebuild
5c40ff
5c40ff
* Tue Jun 08 2004 Lon Hohberger <lhh@redhat.com> 5.51-1.1
5c40ff
- Update to 5.51; remove dotdot patch.
5c40ff
5c40ff
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
5c40ff
- rebuilt
5c40ff
5c40ff
* Mon Nov 17 2003 Lon Hohberger <lhh@redhat.com> 5.50-36
5c40ff
- Rebuild for FC-next
5c40ff
5c40ff
* Fri Aug 01 2003 Lon Hohberger <lhh@redhat.com> 5.50-35
5c40ff
- Rebuild for Severn
5c40ff
5c40ff
* Fri Aug 01 2003 Lon Hohberger <lhh@redhat.com> 5.50-34
5c40ff
- Rebuild for Taroon
5c40ff
5c40ff
* Fri Aug 01 2003 Lon Hohberger <lhh@redhat.com> 5.50-33
5c40ff
- Rebuild for 9 errata
5c40ff
5c40ff
* Fri Aug 01 2003 Lon Hohberger <lhh@redhat.com> 5.50-32
5c40ff
- Rebuild for 8.0 errata
5c40ff
5c40ff
* Fri Aug 01 2003 Lon Hohberger <lhh@redhat.com> 5.50-31
5c40ff
- Rebuild for 7.3 errata
5c40ff
5c40ff
* Wed Jul 30 2003 Lon Hohberger <lhh@redhat.com> 5.50-30
5c40ff
- SECURITY Round 3: Fix up original patch (from 5.50-9) to fix
5c40ff
^V/ exploit, but still allow '-:', which the other patch (5.50-18)
5c40ff
does not allow.  Never allow explicit writing to the root
5c40ff
directory; force users to change there and extract it manually.
5c40ff
5c40ff
* Wed Jul 30 2003 Lon Hohberger <lhh@redhat.com> 5.50-29
5c40ff
- Rebuild for Severn
5c40ff
5c40ff
* Wed Jul 30 2003 Lon Hohberger <lhh@redhat.com> 5.50-28
5c40ff
- Rebuild
5c40ff
5c40ff
* Wed Jul 30 2003 Lon Hohberger <lhh@redhat.com> 5.50-27
5c40ff
- Rebuild for 9
5c40ff
5c40ff
* Wed Jul 30 2003 Lon Hohberger <lhh@redhat.com> 5.50-26
5c40ff
- Rebuild for 8.0
5c40ff
5c40ff
* Tue Jul 22 2003 Lon Hohberger <lhh@redhat.com> 5.50-23
5c40ff
- Rebuild for 7.3
5c40ff
5c40ff
* Mon Jul 21 2003 Lon Hohberger <lhh@redhat.com> 5.50-22
5c40ff
- Rebuild for Severn
5c40ff
5c40ff
* Mon Jul 21 2003 Lon Hohberger <lhh@redhat.com> 5.50-21
5c40ff
- Rebuild
5c40ff
5c40ff
* Mon Jul 21 2003 Lon Hohberger <lhh@redhat.com> 5.50-20
5c40ff
- Rebuild for 9
5c40ff
5c40ff
* Mon Jul 21 2003 Lon Hohberger <lhh@redhat.com> 5.50-19
5c40ff
- Rebuild for 8.0
5c40ff
5c40ff
* Mon Jul 21 2003 Lon Hohberger <lhh@redhat.com> 5.50-18
5c40ff
- SECURITY: Incorporate far cleaner patch from Ben Laurie
5c40ff
<ben@algroup.co.uk> which also fixes ^V/ (quote-slash).
5c40ff
Patch checks post-decode as opposed to inline as previous
5c40ff
patch does.
5c40ff
5c40ff
* Mon Jun 16 2003 Lon Hohberger <lhh@redhat.com> 5.50-17
5c40ff
- Rebuilt per request
5c40ff
5c40ff
* Thu Jun 12 2003 Lon Hohberger <lhh@redhat.com> 5.50-16
5c40ff
- Rebuilt
5c40ff
5c40ff
* Thu Jun 12 2003 Lon Hohberger <lhh@redhat.com> 5.50-15
5c40ff
- Rebuilt
5c40ff
5c40ff
* Thu Jun 12 2003 Lon Hohberger <lhh@redhat.com> 5.50-14
5c40ff
- Rebuilt: Red Hat Linux 9
5c40ff
5c40ff
* Thu Jun 12 2003 Lon Hohberger <lhh@redhat.com> 5.50-13
5c40ff
- Rebuilt: Red Hat Enterprise Linux 2.1
5c40ff
5c40ff
* Thu Jun 12 2003 Lon Hohberger <lhh@redhat.com> 5.50-12
5c40ff
- Rebuilt Red Hat Linux 8.0
5c40ff
5c40ff
* Thu Jun 12 2003 Lon Hohberger <lhh@redhat.com> 5.50-11
5c40ff
- Rebuilt Red Hat Linux 7.3
5c40ff
5c40ff
* Wed Jun 11 2003 Lon Hohberger <lhh@redhat.com> 5.50-10
5c40ff
- Rebuilt
5c40ff
5c40ff
* Wed Jun 11 2003 Lon Hohberger <lhh@redhat.com> 5.50-9
5c40ff
- SECURITY: Scour start of filename for ../ patterns which
5c40ff
include quote and/or control characters.
5c40ff
5c40ff
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
5c40ff
- rebuilt
5c40ff
5c40ff
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
5c40ff
- rebuilt
5c40ff
5c40ff
* Thu Dec 19 2002 Tim Powers <timp@redhat.com>
5c40ff
- bump and rebuild
5c40ff
5c40ff
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
5c40ff
- automated rebuild
5c40ff
5c40ff
* Thu May 23 2002 Tim Powers <timp@redhat.com>
5c40ff
- automated rebuild
5c40ff
5c40ff
* Thu Apr 25 2002 Trond Eivind Glomsrød <teg@redhat.com> 5.50-3
5c40ff
- Rebuild
5c40ff
5c40ff
* Tue Apr  2 2002 Trond Eivind Glomsrød <teg@redhat.com> 5.50-2
5c40ff
- Make it not strip
5c40ff
5c40ff
* Wed Mar 13 2002 Trond Eivind Glomsrød <teg@redhat.com> 5.50-1
5c40ff
- 5.50
5c40ff
5c40ff
* Thu Feb 21 2002 Trond Eivind Glomsrød <teg@redhat.com> 5.42-3
5c40ff
- Rebuild
5c40ff
5c40ff
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
5c40ff
- automated rebuild
5c40ff
5c40ff
* Mon May 21 2001 Trond Eivind Glomsrød <teg@redhat.com>
5c40ff
- 5.42
5c40ff
- Don't strip binaries explicitly
5c40ff
- build without assembly, it doesn't seem to increase performance
5c40ff
- make it respect RPM_OPT_FLAGS, define _GNU_SOURCE
5c40ff
- use %%{_tmppath}
5c40ff
- "License:" replaces "Copyright:"
5c40ff
- Update URL
5c40ff
- include zipgrep
5c40ff
- COPYING doesn't exist anymore, include LICENSE instead
5c40ff
5c40ff
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
5c40ff
- automatic rebuild
5c40ff
5c40ff
* Sun Jun 11 2000 BIll Nottingham <notting@redhat.com>
5c40ff
- rebuild in new env.; FHS fixes.
5c40ff
5c40ff
* Tue Apr 18 2000 Bernhard Rosenkraenzer <bero@redhat.com>
5c40ff
- 4.51 (an acceptable license at last...)
5c40ff
5c40ff
* Thu Feb  3 2000 Bill Nottingham <notting@redhat.com>
5c40ff
- handle compressed man pages
5c40ff
5c40ff
* Fri Jul 30 1999 Bill Nottingham <notting@redhat.com>
5c40ff
- update to 5.40
5c40ff
5c40ff
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
5c40ff
- auto rebuild in the new build environment (release 5)
5c40ff
5c40ff
* Thu Dec 17 1998 Michael Maher <mike@redhat.com>
5c40ff
- built for 6.0
5c40ff
5c40ff
* Tue Aug 11 1998 Jeff Johnson <jbj@redhat.com>
5c40ff
- build root
5c40ff
5c40ff
* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
5c40ff
- translations modified for de, fr, tr
5c40ff
5c40ff
* Tue Oct 21 1997 Erik Troan <ewt@redhat.com>
5c40ff
- builds on non i386 platforms
5c40ff
5c40ff
* Mon Oct 20 1997 Otto Hammersmith <otto@redhat.com>
5c40ff
- updated the version
5c40ff
5c40ff
* Thu Jul 10 1997 Erik Troan <ewt@redhat.com>
5c40ff
- built against glibc