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