Blame SPECS/make.spec

f36cf9
# -*- coding: utf-8 -*-
f36cf9
%{?scl:%scl_package make}
f36cf9
Summary: A GNU tool which simplifies the build process for users
f36cf9
Name: %{?scl_prefix}make
f36cf9
Epoch: 1
f36cf9
Version: 4.2.1
f36cf9
Release: 1%{?dist}
f36cf9
License: GPLv2+
f36cf9
Group: Development/Tools
f36cf9
URL: http://www.gnu.org/software/make/
f36cf9
Source: ftp://ftp.gnu.org/gnu/make/make-%{version}.tar.bz2
f36cf9
f36cf9
Patch1: make-4.2-noclock_gettime.patch
f36cf9
Patch2: make-4.2-j8k.patch
f36cf9
Patch3: make-4.2-getcwd.patch
f36cf9
f36cf9
# Upstream: https://savannah.gnu.org/bugs/?30748
f36cf9
Patch4: make-4.2-weird-shell.patch
f36cf9
f36cf9
Patch5: make-4.2-newlines.patch
f36cf9
f36cf9
# http://savannah.gnu.org/bugs/?34335
f36cf9
Patch6: make-4.2-warn_undefined_function.patch
f36cf9
f36cf9
# http://lists.gnu.org/archive/html/bug-make/2011-06/msg00032.html
f36cf9
Patch7: make-4.2-trace.patch
f36cf9
f36cf9
# Buildroot: %(mktemp -ud %{_tmppath}/make-%{version}-%{release}-XXXXXX)
f36cf9
BuildRoot: %{_tmppath}/make-%{version}-%{release}-root-%(%{__id_u} -n)
f36cf9
Requires(post): /sbin/install-info
f36cf9
Requires(preun): /sbin/install-info
f36cf9
BuildRequires: procps
f36cf9
BuildRequires: perl
f36cf9
%{?scl:Requires:%scl_runtime}
f36cf9
f36cf9
%description
f36cf9
A GNU tool for controlling the generation of executables and other
f36cf9
non-source files of a program from the program's source files. Make
f36cf9
allows users to build and install packages without any significant
f36cf9
knowledge about the details of the build process. The details about
f36cf9
how the program should be built are provided for make in the program's
f36cf9
makefile.
f36cf9
f36cf9
%prep
f36cf9
echo "STARTING PREP of make"
f36cf9
%setup -q -n make-%{version}
f36cf9
%patch1 -p1
f36cf9
%patch2 -p1
f36cf9
%patch3 -p1
f36cf9
%patch4 -p1
f36cf9
%patch5 -p1
f36cf9
%patch6 -p1
f36cf9
%patch7 -p1
f36cf9
f36cf9
rm -f tests/scripts/features/parallelism.orig
f36cf9
f36cf9
# Disable the output-sync test until upstream resolves timeout issue.
f36cf9
rm -f tests/scripts/features/output-sync
f36cf9
f36cf9
%build
f36cf9
echo "STARTING CONFIGURE of make"
f36cf9
%configure
f36cf9
echo "STARTING MAKE of make"
f36cf9
make %{?_smp_mflags}
f36cf9
f36cf9
%install
f36cf9
rm -rf ${RPM_BUILD_ROOT}
f36cf9
make DESTDIR=$RPM_BUILD_ROOT install
f36cf9
ln -sf make ${RPM_BUILD_ROOT}/%{_bindir}/gmake
f36cf9
ln -sf make.1 ${RPM_BUILD_ROOT}/%{_mandir}/man1/gmake.1
f36cf9
rm -f ${RPM_BUILD_ROOT}/%{_infodir}/dir
f36cf9
f36cf9
%find_lang make
f36cf9
f36cf9
%check
f36cf9
echo ============TESTING===============
f36cf9
/usr/bin/env LANG=C make check
f36cf9
echo ============END TESTING===========
f36cf9
f36cf9
%clean
f36cf9
rm -rf ${RPM_BUILD_ROOT}
f36cf9
f36cf9
%post
f36cf9
if [ -f %{_infodir}/make.info.gz ]; then # for --excludedocs
f36cf9
   /sbin/install-info %{_infodir}/make.info.gz %{_infodir}/dir --entry="* Make: (make).                 The GNU make utility." || :
f36cf9
fi
f36cf9
f36cf9
%preun
f36cf9
if [ $1 = 0 ]; then
f36cf9
   if [ -f %{_infodir}/make.info.gz ]; then # for --excludedocs
f36cf9
      /sbin/install-info --delete %{_infodir}/make.info.gz %{_infodir}/dir --entry="* Make: (make).                 The GNU make utility." || :
f36cf9
   fi
f36cf9
fi
f36cf9
f36cf9
%files  -f make.lang
f36cf9
%defattr(-,root,root)
f36cf9
%doc NEWS README COPYING AUTHORS
f36cf9
%{_bindir}/*
f36cf9
%{_mandir}/man*/*
f36cf9
%{_infodir}/*.info*
f36cf9
%{_includedir}/gnumake.h
f36cf9
f36cf9
%changelog
f36cf9
* Mon Aug 5 2019 DJ Delorie <dj@redhat.com> - 4.2.1-1
f36cf9
- Reset to -1 for devtoolset-9 (#1736673)
f36cf9
f36cf9
* Fri Jul 13 2018 Patsy Franklin <pfrankli@redhat.com> - 4.2.1-4
f36cf9
- Spec file clean-up and rebuild for DTS 8.0
f36cf9
f36cf9
* Wed Feb 21 2018 Patsy Franklin <pfrankli@redhat.com> - 4.2.1-3
f36cf9
- Rebuild for DTS 7.1
f36cf9
f36cf9
* Tue Jun 13 2017 Patsy Franklin <pfrankli@redhat.com> - 4.2.1-2
f36cf9
- After rebase, output-sync test can randomly timeout.  
f36cf9
  Disable until resolved upstream.
f36cf9
f36cf9
* Thu Jun  8 2017 Patsy Franklin <pfrankli@redhat.com> - 4.2.1-1
f36cf9
- Rebase to make-4.2.1
f36cf9
  Removed two patches that have been resolved upstream.
f36cf9
  Reworked seven patches.
f36cf9
  Resolves: #1455702 and #1455705
f36cf9
- make no longer segfaults inside a chroot without /dev/pts
f36cf9
  Resolves: #1451452 and #1455695
f36cf9
f36cf9
* Tue Sep 13 2016 Patsy Franklin <pfrankli@redhat.com> - 4.1-3
f36cf9
- Increase time before timeout for test fopen-fail to prevent
f36cf9
  failing before issuing expected error.
f36cf9
f36cf9
* Wed Aug 03 2016 Patsy Franklin <pfrankli@redhat.com> - 4.1-2
f36cf9
- Fix the change log to include the BZ.
f36cf9
f36cf9
* Wed Aug 03 2016 Patsy Franklin <pfrankli@redhat.com> - 4.1-1
f36cf9
- Initial version for DTS.  (BZ #1353327)
f36cf9
f36cf9
* Thu Jul 07 2016 Patsy Franklin <pfrankli@redhat.com> - 1:3.82-23
f36cf9
- In very obscure situations we may incorrectly write the free token
f36cf9
  back to the pipe.
f36cf9
  Resolves: #1322670
f36cf9
f36cf9
* Thu Jun 30 2016 Patsy Franklin <pfrankli@redhat.com> - 1:3.82-22
f36cf9
- Check if the target-specific variable is the same as the global
f36cf9
  variable, and if it is, don't free it.  Savannah bug #31743.
f36cf9
  Resolves: #1323206
f36cf9
f36cf9
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1:3.82-21
f36cf9
- Mass rebuild 2014-01-24
f36cf9
f36cf9
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1:3.82-20
f36cf9
- Mass rebuild 2013-12-27
f36cf9
f36cf9
* Thu Aug 22 2013 Petr Machata <pmachata@redhat.com> - 1:3.82-19
f36cf9
- make now restores rlimit to its original values before launching
f36cf9
  subprocess via $(shell) (make-3.82-func_shell-rlimit.patch)
f36cf9
- Determinize one test (make-3.82-tests-SECONDARY.patch)
f36cf9
f36cf9
* Fri Jul 26 2013 Petr Machata <pmachata@redhat.com> - 1:3.82-18
f36cf9
- Backport upstream patch that adds wildcard expansion to pattern
f36cf9
  rules. (make-3.82-stem_glob.patch)
f36cf9
f36cf9
* Wed Jun 19 2013 Petr Machata <pmachata@redhat.com> - 1:3.82-17
f36cf9
- Add another fix for upstream bug 30612
f36cf9
f36cf9
* Thu Apr  4 2013 Petr Machata <pmachata@redhat.com> - 1:3.82-16
f36cf9
- Update config.sub and config.guess to support aarch64
f36cf9
f36cf9
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.82-15
f36cf9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
f36cf9
f36cf9
* Thu Nov 29 2012 Petr Machata <pmachata@redhat.com> - 1:3.82-14
f36cf9
- Drop patch5, which hasn't been applied for years
f36cf9
f36cf9
* Mon Sep 10 2012 Petr Machata <pmachata@redhat.com> - 1:3.82-13
f36cf9
- Add fix for upstream bug 30653
f36cf9
- Resolves: #835424
f36cf9
f36cf9
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.82-12
f36cf9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
f36cf9
f36cf9
* Tue Mar 13 2012 Petr Machata <pmachata@redhat.com> - 1:3.82-11
f36cf9
- Add a patch for avoiding glob if possible by Michael Meeks
f36cf9
f36cf9
* Mon Mar 12 2012 Petr Machata <pmachata@redhat.com> - 1:3.82-10
f36cf9
- Apply the following patches, proposed upstream by Norbert Thiebaud:
f36cf9
  - A patch for warning on call of undefined function
f36cf9
  - A patch for tracing calls to "eval" and "call"
f36cf9
f36cf9
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.82-9
f36cf9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
f36cf9
f36cf9
* Thu Nov  3 2011 Petr Machata <pmachata@redhat.com> - 1:3.82-8
f36cf9
- Add a patch for preserving -j across Makefile rebuild
f36cf9
- Resolves: #698702
f36cf9
f36cf9
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.82-7
f36cf9
- Rebuilt for glibc bug#747377
f36cf9
f36cf9
* Thu May 12 2011 Lubomir Rintel <lkundrak@v3.sk> - 1:3.82-6
f36cf9
- Fix free-after-use with nested assignments (#703104)
f36cf9
f36cf9
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.82-5
f36cf9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
f36cf9
f36cf9
* Wed Oct 27 2010 Petr Machata <pmachata@redhat.com> - 1:3.82-4
f36cf9
- Fix a discrepancy between behavior of find_next_token and
f36cf9
  pre-allocation of token memory in func_sort.
f36cf9
- Resolves: #643359
f36cf9
f36cf9
* Wed Sep 29 2010 jkeating - 1:3.82-3
f36cf9
- Rebuilt for gcc bug 634757
f36cf9
f36cf9
* Mon Sep 13 2010 Petr Machata <pmachata@redhat.com> - 1:3.82-2
f36cf9
- Add upstream fixes for upstream bugs 30612 and 30723
f36cf9
- Resolves: #631552
f36cf9
f36cf9
* Wed Aug 11 2010 Petr Machata <pmachata@redhat.com> - 1:3.82-1
f36cf9
- Upstream 3.82:
f36cf9
  - Drop rlimit, fdleak, strcpy-overlap, recursion-test, double-free
f36cf9
    patches, make supports this functionality now
f36cf9
  - Disable the memory patch for the time being
f36cf9
  - Port remaining patches
f36cf9
  - Add weird-shell patch, upstream bug 30748
f36cf9
- Resolves: #618998
f36cf9
f36cf9
* Wed Aug 11 2010 Petr Machata <pmachata@redhat.com> - 1:3.81-21
f36cf9
- Add BR procps
f36cf9
- Resolves: #616813
f36cf9
f36cf9
* Thu Jul  1 2010 Petr Machata <pmachata@redhat.com> - 1:3.81-20
f36cf9
- Add a patch by Steve Kemp @debian that might fix the double free
f36cf9
  problem.
f36cf9
- Related: #609806
f36cf9
f36cf9
* Fri Jun  4 2010 Petr Machata <pmachata@redhat.com> - 1:3.81-19
f36cf9
- Fix testsuite on F13
f36cf9
- Resolves: #600004
f36cf9
f36cf9
* Tue Aug 11 2009 Petr Machata <pmachata@redhat.com> - 1:3.81-18
f36cf9
- Fix installation with --excludedocs
f36cf9
- Resolves: #515917
f36cf9
f36cf9
* Fri Jul 31 2009 Petr Machata <pmachata@redhat.com> - 1:3.81-17
f36cf9
- Replace the use of strcpy on overlapping areas with memmove
f36cf9
- Resolves: #514721
f36cf9
f36cf9
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.81-16
f36cf9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
f36cf9
f36cf9
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.81-15
f36cf9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
f36cf9
f36cf9
* Mon Sep 22 2008 Petr Machata <pmachata@redhat.com> - 1:3.81-14
f36cf9
- Fix patches to apply cleanly with fuzz=0
f36cf9
f36cf9
* Tue Sep 16 2008 Petr Machata <pmachata@redhat.com> - 1:3.81-13
f36cf9
- Mark opened files as cloexec to prevent their leaking through fork
f36cf9
- Resolves: #462090
f36cf9
f36cf9
* Tue Mar 25 2008 Petr Machata <pmachata@redhat.com> - 1:3.81-12
f36cf9
- Fix the rlimit patch.  The success flag is kept in memory shared
f36cf9
  with parent process after vfork, and so cannot be reset.
f36cf9
- Related: #214033
f36cf9
f36cf9
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1:3.81-11
f36cf9
- Autorebuild for GCC 4.3
f36cf9
f36cf9
* Thu Oct  4 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-10
f36cf9
- Fix parallel builds with reexec.
f36cf9
- Related: #212111, #211290
f36cf9
f36cf9
* Thu Oct  4 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-8
f36cf9
- Cleaned up per merge review.
f36cf9
- Related: #226120
f36cf9
f36cf9
* Thu Aug 16 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-7
f36cf9
- Fix licensing tag.
f36cf9
f36cf9
* Fri Mar 16 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-6
f36cf9
- Always run testsuite with C locale.
f36cf9
- Resolves: #232607
f36cf9
f36cf9
* Thu Feb 22 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-5
f36cf9
- Fix newline handling for quoted SHELL.
f36cf9
- Resolves: #219409
f36cf9
f36cf9
* Fri Feb  2 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-4
f36cf9
- Tidy up the specfile per rpmlint comments
f36cf9
- Use utf-8 and fix national characters in contributor's names
f36cf9
f36cf9
* Thu Jan 25 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-3
f36cf9
- Ville Skyttä: patch for non-failing %%post, %%preun
f36cf9
- Resolves: #223709
f36cf9
f36cf9
* Thu Jan 25 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-2
f36cf9
- make now restores rlimit to its original values before launching
f36cf9
  subprocess (#214033)
f36cf9
f36cf9
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:3.81-1.1
f36cf9
- rebuild
f36cf9
f36cf9
* Tue May 23 2006 Petr Machata <pmachata@redhat.com> - 1:3.81-1
f36cf9
- Upstream 3.81:
f36cf9
  - Contains several backwards incompatible changes.  See NEWS inside
f36cf9
    the source package to find out more.
f36cf9
- memory patch and error reporting patch were ported to this version.
f36cf9
f36cf9
* Wed Mar 15 2006 Petr Machata <pmachata@redhat.com> 1:3.80-11
f36cf9
- Applied (five years old) patch from Jonathan Kamens to allow make to
f36cf9
  handle several pattern-specific variables (#52962).
f36cf9
f36cf9
  The patch was changed so that it forces make to process pattern
f36cf9
  specific variables in the same order as they appear in file.
f36cf9
  (Upstream make behaves this way, too.)  This is change from old make
f36cf9
  behavior, which processed the variables in reverse order.  In case
f36cf9
  you used only x=a assignments, this had the effect of using the
f36cf9
  first pattern specific variable that matched.  For x+=a this just
f36cf9
  doesn't work, and it produces absolutely nonintuitive results.
f36cf9
f36cf9
- (It would be great if make's target-specific variables were handled
f36cf9
  the same way as pattern-specific ones, just without the pattern
f36cf9
  component.  However current handling is documented and considered a
f36cf9
  feature.)
f36cf9
f36cf9
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1:3.80-10.2
f36cf9
- bump again for double-long bug on ppc(64)
f36cf9
f36cf9
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1:3.80-10.1
f36cf9
- rebuilt for new gcc4.1 snapshot and glibc changes
f36cf9
f36cf9
* Thu Feb 02 2006 Petr Machata <pmachata@redhat.com> 3.80-10
f36cf9
- H.J. Lu caught a typo in the patch and provided a new one. (#175376)
f36cf9
f36cf9
* Mon Jan 09 2006 Petr Machata <pmachata@redhat.com> 3.80-9
f36cf9
- Applied patch from H.J. Lu.  Somehow reduces make's enormous memory
f36cf9
  consumption. (#175376)
f36cf9
f36cf9
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
f36cf9
- rebuilt
f36cf9
f36cf9
* Mon Aug 22 2005 Jakub Jelinek <jakub@redhat.com> 3.80-8
f36cf9
- make sure errno for error reporting is not lost accross _() calls
f36cf9
- report EOF on read pipe differently from read returning < 0 reporting
f36cf9
f36cf9
* Mon Mar  7 2005 Jakub Jelinek <jakub@redhat.com> 3.80-7
f36cf9
- rebuilt with GCC 4
f36cf9
f36cf9
* Mon Dec 13 2004 Jakub Jelinek <jakub@redhat.com> 3.80-6
f36cf9
- refuse -jN where N is bigger than PIPE_BUF (#142691, #17374)
f36cf9
f36cf9
* Thu Oct  7 2004 Jakub Jelinek <jakub@redhat.com> 3.80-5
f36cf9
- add URL rpm tag (#134799)
f36cf9
f36cf9
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
f36cf9
- rebuilt
f36cf9
f36cf9
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
f36cf9
- rebuilt
f36cf9
f36cf9
* Tue Dec 02 2003 Florian La Roche <Florian.LaRoche@redhat.de>
f36cf9
- add important bug-fixes from make home-page
f36cf9
f36cf9
* Sun Nov 30 2003 Florian La Roche <Florian.LaRoche@redhat.de>
f36cf9
- update to 3.80
f36cf9
f36cf9
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
f36cf9
- rebuilt
f36cf9
f36cf9
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
f36cf9
- rebuilt
f36cf9
f36cf9
* Sun Dec 29 2002 Tim Powers <timp@redhat.com>
f36cf9
- fix references to %%install in the changelog so that the package will build
f36cf9
f36cf9
* Tue Dec 03 2002 Elliot Lee <sopwith@redhat.com> 3.79.1-15
f36cf9
- _smp_mflags
f36cf9
- Fix ppc build (sys_siglist issues in patch2)
f36cf9
f36cf9
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
f36cf9
- automated rebuild
f36cf9
f36cf9
* Thu May 23 2002 Tim Powers <timp@redhat.com>
f36cf9
- automated rebuild
f36cf9
f36cf9
* Thu May 23 2002 Jakub Jelinek <jakub@redhat.com>
f36cf9
- Run make check during build
f36cf9
f36cf9
* Thu May 23 2002 Bernhard Rosenkraenzer <bero@redhat.com>
f36cf9
- Fix build with current auto* tools
f36cf9
f36cf9
* Fri Jan 25 2002 Jakub Jelinek <jakub@redhat.com>
f36cf9
- rebuilt with gcc 3.1
f36cf9
f36cf9
* Fri Jul  6 2001 Trond Eivind Glomsrød <teg@redhat.com>
f36cf9
- s/Copyright/License/
f36cf9
- langify
f36cf9
- Make sure it isn't setgid if built as root
f36cf9
f36cf9
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
f36cf9
- Bump release + rebuild.
f36cf9
f36cf9
* Mon Aug  7 2000 Tim Waugh <twaugh@redhat.com>
f36cf9
- change info-dir entry so that 'info make' works (#15029).
f36cf9
f36cf9
* Tue Aug  1 2000 Jakub Jelinek <jakub@redhat.com>
f36cf9
- assume we don't have clock_gettime in configure, so that
f36cf9
  make is not linked against -lpthread (and thus does not
f36cf9
  limit stack to 2MB).
f36cf9
f36cf9
* Sat Jul 22 2000 Jeff Johnson <jbj@redhat.com>
f36cf9
- add locale files (#14362).
f36cf9
f36cf9
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
f36cf9
- automatic rebuild
f36cf9
f36cf9
* Sat Jun 24 2000 Preston Brown <pbrown@redhat.com>
f36cf9
- 3.79.1 bugfix release
f36cf9
f36cf9
* Mon Jun  5 2000 Jeff Johnson <jbj@redhat.com>
f36cf9
- FHS packaging.
f36cf9
f36cf9
* Sun May  7 2000 Bernhard Rosenkraenzer <bero@redhat.com>
f36cf9
- Fix build for some odd situations, such as
f36cf9
  - previously installed make != GNU make
f36cf9
  - /bin/sh != bash
f36cf9
f36cf9
* Mon Apr 17 2000 Florian La Roche <Florian.LaRoche@redhat.com>
f36cf9
- update to 3.79
f36cf9
f36cf9
* Thu Feb 24 2000 Cristian Gafton <gafton@redhat.com>
f36cf9
- add patch from Andreas Jaeger to fix dtype lookups (for glibc 2.1.3
f36cf9
  builds)
f36cf9
f36cf9
* Mon Feb  7 2000 Jeff Johnson <jbj@redhat.com>
f36cf9
- compress man page.
f36cf9
f36cf9
* Fri Jan 21 2000 Cristian Gafton <gafton@redhat.com>
f36cf9
- apply patch to fix a /tmp race condition from Thomas Biege
f36cf9
- simplify %%install
f36cf9
f36cf9
* Sat Nov 27 1999 Jeff Johnson <jbj@redhat.com>
f36cf9
- update to 3.78.1.
f36cf9
f36cf9
* Thu Apr 15 1999 Bill Nottingham <notting@redhat.com>
f36cf9
- added a serial tag so it upgrades right
f36cf9
f36cf9
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
f36cf9
- auto rebuild in the new build environment (release 5)
f36cf9
f36cf9
* Wed Sep 16 1998 Cristian Gafton <gafton@redhat.com>
f36cf9
- added a patch for large file support in glob
f36cf9
 
f36cf9
* Tue Aug 18 1998 Jeff Johnson <jbj@redhat.com>
f36cf9
- update to 3.77
f36cf9
f36cf9
* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
f36cf9
- translations modified for de, fr, tr
f36cf9
f36cf9
* Thu Oct 16 1997 Donnie Barnes <djb@redhat.com>
f36cf9
- udpated from 3.75 to 3.76
f36cf9
- various spec file cleanups
f36cf9
- added install-info support
f36cf9
f36cf9
* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
f36cf9
- built against glibc