Blame SPECS/make.spec

0c7b6a
# -*- coding: utf-8 -*-
0c7b6a
Summary: A GNU tool which simplifies the build process for users
0c7b6a
Name: make
0c7b6a
Epoch: 1
0c7b6a
Version: 4.2.1
c51ffe
Release: 10%{?dist}
0c7b6a
License: GPLv3+
0c7b6a
Group: Development/Tools
0c7b6a
URL: http://www.gnu.org/software/make/
0c7b6a
Source: ftp://ftp.gnu.org/gnu/make/make-%{version}.tar.bz2
0c7b6a
0c7b6a
Patch0: make-4.2-getcwd.patch
0c7b6a
Patch1: make-4.0-newlines.patch
0c7b6a
0c7b6a
# Assume we don't have clock_gettime in configure, so that
0c7b6a
# make is not linked against -lpthread (and thus does not
0c7b6a
# limit stack to 2MB).
0c7b6a
Patch2: make-4.0-noclock_gettime.patch
0c7b6a
0c7b6a
# BZs #142691, #17374
0c7b6a
Patch3: make-4.2-j8k.patch
0c7b6a
0c7b6a
# Upstream: https://savannah.gnu.org/bugs/?30748
0c7b6a
# The default value of .SHELL_FLAGS is -c.
0c7b6a
Patch4: make-4.0-weird-shell.patch
0c7b6a
0c7b6a
# Upstream patch: https://git.savannah.gnu.org/cgit/make.git/patch/?id=193f1e81edd6b1b56b0eb0ff8aa4b41c7b4257b4
0c7b6a
# Fixes wrong assumptions of glibc's glob internals.
0c7b6a
Patch5: make-4.2.1-glob-fix-2.patch
0c7b6a
# Upstream patch: https://git.savannah.gnu.org/cgit/make.git/patch/?id=48c8a116a914a325a0497721f5d8b58d5bba34d4
0c7b6a
# Fixes incorrect use of glibc 2.27 glob internals.
0c7b6a
Patch6: make-4.2.1-glob-fix.patch
0c7b6a
Patch7: make-4.2.1-glob-fix-3.patch
0c7b6a
0c7b6a
# Perl 5.26 is removed the implicit CWD in @INC. 
0c7b6a
# Provide relative path.  Also provide better error for missing tests.
0c7b6a
Patch8: make-4.2.1-test-driver.patch
c51ffe
 
c51ffe
# Upstream patch: https://git.savannah.gnu.org/cgit/make.git/commit/?id=b552b05251980f693c729e251f93f5225b400714
c51ffe
# Avoids hangs in parallel builds
c51ffe
Patch9: make-4.2.1-nonblocking-reads.patch
0c7b6a
0c7b6a
# Unfortunately the glob patches configure.ac, so:
0c7b6a
BuildRequires: autoconf, automake
0c7b6a
0c7b6a
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
0c7b6a
Requires(post): /sbin/install-info
0c7b6a
Requires(preun): /sbin/install-info
0c7b6a
BuildRequires: procps
0c7b6a
BuildRequires: perl-interpreter
0c7b6a
0c7b6a
%description
0c7b6a
A GNU tool for controlling the generation of executables and other
0c7b6a
non-source files of a program from the program's source files. Make
0c7b6a
allows users to build and install packages without any significant
0c7b6a
knowledge about the details of the build process. The details about
0c7b6a
how the program should be built are provided for make in the program's
0c7b6a
makefile.
0c7b6a
0c7b6a
%package devel
0c7b6a
Summary: Header file for externally visible definitions
0c7b6a
Group: Development/Libraries
0c7b6a
0c7b6a
%description devel
0c7b6a
The make-devel package contains gnumake.h.
0c7b6a
0c7b6a
%prep
0c7b6a
%autosetup -p1
0c7b6a
0c7b6a
rm -f tests/scripts/features/parallelism.orig
0c7b6a
0c7b6a
%build
0c7b6a
# Since we made a change to configure.ac (and configure) touch
0c7b6a
# the files to avoid rebuild problems with automake versioning.
0c7b6a
# Specifically make expects 1.15 but some systems use 1.16.1.
0c7b6a
touch `find . -name configure`
0c7b6a
touch `find . -name aclocal.m4`
0c7b6a
touch `find . -name Makefile.in`
0c7b6a
0c7b6a
%configure
0c7b6a
make %{?_smp_mflags}
0c7b6a
0c7b6a
%install
0c7b6a
rm -rf ${RPM_BUILD_ROOT}
0c7b6a
make DESTDIR=$RPM_BUILD_ROOT install
0c7b6a
ln -sf make ${RPM_BUILD_ROOT}/%{_bindir}/gmake
0c7b6a
ln -sf make.1 ${RPM_BUILD_ROOT}/%{_mandir}/man1/gmake.1
0c7b6a
rm -f ${RPM_BUILD_ROOT}/%{_infodir}/dir
0c7b6a
0c7b6a
%find_lang %name
0c7b6a
0c7b6a
%check
0c7b6a
echo ============TESTING===============
0c7b6a
/usr/bin/env LANG=C make -k check && true
0c7b6a
echo ============END TESTING===========
0c7b6a
0c7b6a
%clean
0c7b6a
rm -rf ${RPM_BUILD_ROOT}
0c7b6a
0c7b6a
%post
0c7b6a
if [ -f %{_infodir}/make.info.gz ]; then # for --excludedocs
0c7b6a
   /sbin/install-info %{_infodir}/make.info.gz %{_infodir}/dir --entry="* Make: (make).                 The GNU make utility." || :
0c7b6a
fi
0c7b6a
0c7b6a
%preun
0c7b6a
if [ $1 = 0 ]; then
0c7b6a
   if [ -f %{_infodir}/make.info.gz ]; then # for --excludedocs
0c7b6a
      /sbin/install-info --delete %{_infodir}/make.info.gz %{_infodir}/dir --entry="* Make: (make).                 The GNU make utility." || :
0c7b6a
   fi
0c7b6a
fi
0c7b6a
0c7b6a
%files  -f %{name}.lang
0c7b6a
%defattr(-,root,root)
0c7b6a
%license COPYING
0c7b6a
%doc NEWS README AUTHORS
0c7b6a
%{_bindir}/*
0c7b6a
%{_mandir}/man*/*
0c7b6a
%{_infodir}/*.info*
0c7b6a
%{_includedir}/gnumake.h
0c7b6a
0c7b6a
%files devel
0c7b6a
%defattr(-,root,root)
0c7b6a
%{_includedir}/gnumake.h
0c7b6a
0c7b6a
%changelog
c51ffe
* Fri Dec 20 2019 DJ Delorie <dj@redhat.com> - 1:4.2.1-10
c51ffe
- Use a non-blocking read with pselect to avoid hangs. BZ #1774790
c51ffe
0c7b6a
* Fri Sep 28 2018 Patsy Griffin Franklin <pfrankli@redhat.com> 1:4.2.1-9
0c7b6a
- Add -k to make check to insure that all tests are run even if failures
0c7b6a
  occur.
0c7b6a
0c7b6a
* Fri Jul 20 2018 Patsy Griffin Franklin <pfrankli@redhat.com> 1:4.2.1-8
0c7b6a
- Do not enable Guile support. (#1569105)
0c7b6a
0c7b6a
* Mon Jun 11 2018 Patsy Griffin Franklin <pfrankli@redhat.com> 1:4.2.1-7
0c7b6a
- Fix build failure caused by automake versioning differences related
0c7b6a
  to the glob changes. (#1589769)
0c7b6a
- Fix testing failure due to Perl changes related to expanding paths.
0c7b6a
0c7b6a
* Fri Feb 02 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:4.2.1-6
0c7b6a
- Fix wrong assumptions of glibc's glob internals
0c7b6a
0c7b6a
* Thu Feb 01 2018 Richard W.M. Jones <rjones@redhat.com> - 1:4.2.1-5
0c7b6a
- Add upstream patch to fix incorrect use of glibc 2.27 glob internals.
0c7b6a
0c7b6a
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.2.1-4
0c7b6a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
0c7b6a
0c7b6a
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.2.1-3
0c7b6a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
0c7b6a
0c7b6a
* Wed Feb 01 2017 Stephen Gallagher <sgallagh@redhat.com> - 4.2.1-2
0c7b6a
- Add missing %%license macro
0c7b6a
0c7b6a
* Sun Sep 25 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.2.1-1
0c7b6a
- Rebase to make-4.2.1. Remove obsolete patches. BZ #1338558
0c7b6a
0c7b6a
* Sun Sep 25 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.1-6
0c7b6a
- Make test suite requires Perl to run.
0c7b6a
0c7b6a
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.1-5
0c7b6a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
0c7b6a
0c7b6a
* Wed Nov  4 2015 Patsy Franklin <pfrankli@redhat.com> 1:4.1-4
0c7b6a
- Handle NULL returns from ttyname() Upstream Bug 43434.  
0c7b6a
  Resolves: #1277968
0c7b6a
0c7b6a
* Thu Oct 29 2015 Patsy Franklin <pfrankli@redhat.com> 1:4.1-3
0c7b6a
- Enable Guile support.
0c7b6a
0c7b6a
* Thu Oct 29 2015 Patsy Franklin <pfrankli@redhat.com> 1:4.1-2
0c7b6a
- Include patches dropped in last update as they fix reported bugs and
0c7b6a
  update the spec file to include more info on the patches.
0c7b6a
0c7b6a
* Sat Oct 24 2015 Zbigniew Jędrzejewski-Szmek <zbyszek@laptop> - 1:4.1-1
0c7b6a
- Update to latest version
0c7b6a
0c7b6a
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.0-5.1
0c7b6a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
0c7b6a
0c7b6a
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 1:4.0-4.1
0c7b6a
- Rebuilt for Fedora 23 Change
0c7b6a
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
0c7b6a
0c7b6a
* Wed Sep 03 2014 Kyle McMartin <kyle@fedoraproject.org> - 1:4.0-3.1
0c7b6a
- Pass the test-suite unconditionally until I fix the tests to cope with
0c7b6a
  deterministic ar archives (which result in expected rebuilds not occuring)
0c7b6a
0c7b6a
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.0-3
0c7b6a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
0c7b6a
0c7b6a
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.0-2
0c7b6a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
0c7b6a
0c7b6a
* Wed Apr 30 2014 Patsy Franklin <pfrankli@redhat.com> 1:4.0-1
0c7b6a
- Rebase to make-4.0
0c7b6a
  - Created make-devel sub-package to handle new dependency on gnumake.h.
0c7b6a
0c7b6a
* Thu Aug 22 2013 Petr Machata <pmachata@redhat.com> - 1:3.82-19
0c7b6a
- make now restores rlimit to its original values before launching
0c7b6a
  subprocess via $(shell) (make-3.82-func_shell-rlimit.patch)
0c7b6a
- Determinize one test (make-3.82-tests-SECONDARY.patch)
0c7b6a
0c7b6a
* Fri Jul 26 2013 Petr Machata <pmachata@redhat.com> - 1:3.82-18
0c7b6a
- Backport upstream patch that adds wildcard expansion to pattern
0c7b6a
  rules. (make-3.82-stem_glob.patch)
0c7b6a
0c7b6a
* Wed Jun 19 2013 Petr Machata <pmachata@redhat.com> - 1:3.82-17
0c7b6a
- Add another fix for upstream bug 30612
0c7b6a
0c7b6a
* Thu Apr  4 2013 Petr Machata <pmachata@redhat.com> - 1:3.82-16
0c7b6a
- Update config.sub and config.guess to support aarch64
0c7b6a
0c7b6a
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.82-15
0c7b6a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
0c7b6a
0c7b6a
* Thu Nov 29 2012 Petr Machata <pmachata@redhat.com> - 1:3.82-14
0c7b6a
- Drop patch5, which hasn't been applied for years
0c7b6a
0c7b6a
* Mon Sep 10 2012 Petr Machata <pmachata@redhat.com> - 1:3.82-13
0c7b6a
- Add fix for upstream bug 30653
0c7b6a
- Resolves: #835424
0c7b6a
0c7b6a
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.82-12
0c7b6a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
0c7b6a
0c7b6a
* Tue Mar 13 2012 Petr Machata <pmachata@redhat.com> - 1:3.82-11
0c7b6a
- Add a patch for avoiding glob if possible by Michael Meeks
0c7b6a
0c7b6a
* Mon Mar 12 2012 Petr Machata <pmachata@redhat.com> - 1:3.82-10
0c7b6a
- Apply the following patches, proposed upstream by Norbert Thiebaud:
0c7b6a
  - A patch for warning on call of undefined function
0c7b6a
  - A patch for tracing calls to "eval" and "call"
0c7b6a
0c7b6a
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.82-9
0c7b6a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
0c7b6a
0c7b6a
* Thu Nov  3 2011 Petr Machata <pmachata@redhat.com> - 1:3.82-8
0c7b6a
- Add a patch for preserving -j across Makefile rebuild
0c7b6a
- Resolves: #698702
0c7b6a
0c7b6a
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.82-7
0c7b6a
- Rebuilt for glibc bug#747377
0c7b6a
0c7b6a
* Thu May 12 2011 Lubomir Rintel <lkundrak@v3.sk> - 1:3.82-6
0c7b6a
- Fix free-after-use with nested assignments (#703104)
0c7b6a
0c7b6a
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.82-5
0c7b6a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
0c7b6a
0c7b6a
* Wed Oct 27 2010 Petr Machata <pmachata@redhat.com> - 1:3.82-4
0c7b6a
- Fix a discrepancy between behavior of find_next_token and
0c7b6a
  pre-allocation of token memory in func_sort.
0c7b6a
- Resolves: #643359
0c7b6a
0c7b6a
* Wed Sep 29 2010 jkeating - 1:3.82-3
0c7b6a
- Rebuilt for gcc bug 634757
0c7b6a
0c7b6a
* Mon Sep 13 2010 Petr Machata <pmachata@redhat.com> - 1:3.82-2
0c7b6a
- Add upstream fixes for upstream bugs 30612 and 30723
0c7b6a
- Resolves: #631552
0c7b6a
0c7b6a
* Wed Aug 11 2010 Petr Machata <pmachata@redhat.com> - 1:3.82-1
0c7b6a
- Upstream 3.82:
0c7b6a
  - Drop rlimit, fdleak, strcpy-overlap, recursion-test, double-free
0c7b6a
    patches, make supports this functionality now
0c7b6a
  - Disable the memory patch for the time being
0c7b6a
  - Port remaining patches
0c7b6a
  - Add weird-shell patch, upstream bug 30748
0c7b6a
- Resolves: #618998
0c7b6a
0c7b6a
* Wed Aug 11 2010 Petr Machata <pmachata@redhat.com> - 1:3.81-21
0c7b6a
- Add BR procps
0c7b6a
- Resolves: #616813
0c7b6a
0c7b6a
* Thu Jul  1 2010 Petr Machata <pmachata@redhat.com> - 1:3.81-20
0c7b6a
- Add a patch by Steve Kemp @debian that might fix the double free
0c7b6a
  problem.
0c7b6a
- Related: #609806
0c7b6a
0c7b6a
* Fri Jun  4 2010 Petr Machata <pmachata@redhat.com> - 1:3.81-19
0c7b6a
- Fix testsuite on F13
0c7b6a
- Resolves: #600004
0c7b6a
0c7b6a
* Tue Aug 11 2009 Petr Machata <pmachata@redhat.com> - 1:3.81-18
0c7b6a
- Fix installation with --excludedocs
0c7b6a
- Resolves: #515917
0c7b6a
0c7b6a
* Fri Jul 31 2009 Petr Machata <pmachata@redhat.com> - 1:3.81-17
0c7b6a
- Replace the use of strcpy on overlapping areas with memmove
0c7b6a
- Resolves: #514721
0c7b6a
0c7b6a
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.81-16
0c7b6a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
0c7b6a
0c7b6a
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.81-15
0c7b6a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
0c7b6a
0c7b6a
* Mon Sep 22 2008 Petr Machata <pmachata@redhat.com> - 1:3.81-14
0c7b6a
- Fix patches to apply cleanly with fuzz=0
0c7b6a
0c7b6a
* Tue Sep 16 2008 Petr Machata <pmachata@redhat.com> - 1:3.81-13
0c7b6a
- Mark opened files as cloexec to prevent their leaking through fork
0c7b6a
- Resolves: #462090
0c7b6a
0c7b6a
* Tue Mar 25 2008 Petr Machata <pmachata@redhat.com> - 1:3.81-12
0c7b6a
- Fix the rlimit patch.  The success flag is kept in memory shared
0c7b6a
  with parent process after vfork, and so cannot be reset.
0c7b6a
- Related: #214033
0c7b6a
0c7b6a
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1:3.81-11
0c7b6a
- Autorebuild for GCC 4.3
0c7b6a
0c7b6a
* Thu Oct  4 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-10
0c7b6a
- Fix parallel builds with reexec.
0c7b6a
- Related: #212111, #211290
0c7b6a
0c7b6a
* Thu Oct  4 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-8
0c7b6a
- Cleaned up per merge review.
0c7b6a
- Related: #226120
0c7b6a
0c7b6a
* Thu Aug 16 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-7
0c7b6a
- Fix licensing tag.
0c7b6a
0c7b6a
* Fri Mar 16 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-6
0c7b6a
- Always run testsuite with C locale.
0c7b6a
- Resolves: #232607
0c7b6a
0c7b6a
* Thu Feb 22 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-5
0c7b6a
- Fix newline handling for quoted SHELL.
0c7b6a
- Resolves: #219409
0c7b6a
0c7b6a
* Fri Feb  2 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-4
0c7b6a
- Tidy up the specfile per rpmlint comments
0c7b6a
- Use utf-8 and fix national characters in contributor's names
0c7b6a
0c7b6a
* Thu Jan 25 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-3
0c7b6a
- Ville Skyttä: patch for non-failing %%post, %%preun
0c7b6a
- Resolves: #223709
0c7b6a
0c7b6a
* Thu Jan 25 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-2
0c7b6a
- make now restores rlimit to its original values before launching
0c7b6a
  subprocess (#214033)
0c7b6a
0c7b6a
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:3.81-1.1
0c7b6a
- rebuild
0c7b6a
0c7b6a
* Tue May 23 2006 Petr Machata <pmachata@redhat.com> - 1:3.81-1
0c7b6a
- Upstream 3.81:
0c7b6a
  - Contains several backwards incompatible changes.  See NEWS inside
0c7b6a
    the source package to find out more.
0c7b6a
- memory patch and error reporting patch were ported to this version.
0c7b6a
0c7b6a
* Wed Mar 15 2006 Petr Machata <pmachata@redhat.com> 1:3.80-11
0c7b6a
- Applied (five years old) patch from Jonathan Kamens to allow make to
0c7b6a
  handle several pattern-specific variables (#52962).
0c7b6a
0c7b6a
  The patch was changed so that it forces make to process pattern
0c7b6a
  specific variables in the same order as they appear in file.
0c7b6a
  (Upstream make behaves this way, too.)  This is change from old make
0c7b6a
  behavior, which processed the variables in reverse order.  In case
0c7b6a
  you used only x=a assignments, this had the effect of using the
0c7b6a
  first pattern specific variable that matched.  For x+=a this just
0c7b6a
  doesn't work, and it produces absolutely nonintuitive results.
0c7b6a
0c7b6a
- (It would be great if make's target-specific variables were handled
0c7b6a
  the same way as pattern-specific ones, just without the pattern
0c7b6a
  component.  However current handling is documented and considered a
0c7b6a
  feature.)
0c7b6a
0c7b6a
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1:3.80-10.2
0c7b6a
- bump again for double-long bug on ppc(64)
0c7b6a
0c7b6a
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1:3.80-10.1
0c7b6a
- rebuilt for new gcc4.1 snapshot and glibc changes
0c7b6a
0c7b6a
* Thu Feb 02 2006 Petr Machata <pmachata@redhat.com> 3.80-10
0c7b6a
- H.J. Lu caught a typo in the patch and provided a new one. (#175376)
0c7b6a
0c7b6a
* Mon Jan 09 2006 Petr Machata <pmachata@redhat.com> 3.80-9
0c7b6a
- Applied patch from H.J. Lu.  Somehow reduces make's enormous memory
0c7b6a
  consumption. (#175376)
0c7b6a
0c7b6a
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
0c7b6a
- rebuilt
0c7b6a
0c7b6a
* Mon Aug 22 2005 Jakub Jelinek <jakub@redhat.com> 3.80-8
0c7b6a
- make sure errno for error reporting is not lost accross _() calls
0c7b6a
- report EOF on read pipe differently from read returning < 0 reporting
0c7b6a
0c7b6a
* Mon Mar  7 2005 Jakub Jelinek <jakub@redhat.com> 3.80-7
0c7b6a
- rebuilt with GCC 4
0c7b6a
0c7b6a
* Mon Dec 13 2004 Jakub Jelinek <jakub@redhat.com> 3.80-6
0c7b6a
- refuse -jN where N is bigger than PIPE_BUF (#142691, #17374)
0c7b6a
0c7b6a
* Thu Oct  7 2004 Jakub Jelinek <jakub@redhat.com> 3.80-5
0c7b6a
- add URL rpm tag (#134799)
0c7b6a
0c7b6a
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
0c7b6a
- rebuilt
0c7b6a
0c7b6a
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
0c7b6a
- rebuilt
0c7b6a
0c7b6a
* Tue Dec 02 2003 Florian La Roche <Florian.LaRoche@redhat.de>
0c7b6a
- add important bug-fixes from make home-page
0c7b6a
0c7b6a
* Sun Nov 30 2003 Florian La Roche <Florian.LaRoche@redhat.de>
0c7b6a
- update to 3.80
0c7b6a
0c7b6a
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
0c7b6a
- rebuilt
0c7b6a
0c7b6a
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
0c7b6a
- rebuilt
0c7b6a
0c7b6a
* Sun Dec 29 2002 Tim Powers <timp@redhat.com>
0c7b6a
- fix references to %%install in the changelog so that the package will build
0c7b6a
0c7b6a
* Tue Dec 03 2002 Elliot Lee <sopwith@redhat.com> 3.79.1-15
0c7b6a
- _smp_mflags
0c7b6a
- Fix ppc build (sys_siglist issues in patch2)
0c7b6a
0c7b6a
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
0c7b6a
- automated rebuild
0c7b6a
0c7b6a
* Thu May 23 2002 Tim Powers <timp@redhat.com>
0c7b6a
- automated rebuild
0c7b6a
0c7b6a
* Thu May 23 2002 Jakub Jelinek <jakub@redhat.com>
0c7b6a
- Run make check during build
0c7b6a
0c7b6a
* Thu May 23 2002 Bernhard Rosenkraenzer <bero@redhat.com>
0c7b6a
- Fix build with current auto* tools
0c7b6a
0c7b6a
* Fri Jan 25 2002 Jakub Jelinek <jakub@redhat.com>
0c7b6a
- rebuilt with gcc 3.1
0c7b6a
0c7b6a
* Fri Jul  6 2001 Trond Eivind Glomsrød <teg@redhat.com>
0c7b6a
- s/Copyright/License/
0c7b6a
- langify
0c7b6a
- Make sure it isn't setgid if built as root
0c7b6a
0c7b6a
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
0c7b6a
- Bump release + rebuild.
0c7b6a
0c7b6a
* Mon Aug  7 2000 Tim Waugh <twaugh@redhat.com>
0c7b6a
- change info-dir entry so that 'info make' works (#15029).
0c7b6a
0c7b6a
* Tue Aug  1 2000 Jakub Jelinek <jakub@redhat.com>
0c7b6a
- assume we don't have clock_gettime in configure, so that
0c7b6a
  make is not linked against -lpthread (and thus does not
0c7b6a
  limit stack to 2MB).
0c7b6a
0c7b6a
* Sat Jul 22 2000 Jeff Johnson <jbj@redhat.com>
0c7b6a
- add locale files (#14362).
0c7b6a
0c7b6a
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
0c7b6a
- automatic rebuild
0c7b6a
0c7b6a
* Sat Jun 24 2000 Preston Brown <pbrown@redhat.com>
0c7b6a
- 3.79.1 bugfix release
0c7b6a
0c7b6a
* Mon Jun  5 2000 Jeff Johnson <jbj@redhat.com>
0c7b6a
- FHS packaging.
0c7b6a
0c7b6a
* Sun May  7 2000 Bernhard Rosenkraenzer <bero@redhat.com>
0c7b6a
- Fix build for some odd situations, such as
0c7b6a
  - previously installed make != GNU make
0c7b6a
  - /bin/sh != bash
0c7b6a
0c7b6a
* Mon Apr 17 2000 Florian La Roche <Florian.LaRoche@redhat.com>
0c7b6a
- update to 3.79
0c7b6a
0c7b6a
* Thu Feb 24 2000 Cristian Gafton <gafton@redhat.com>
0c7b6a
- add patch from Andreas Jaeger to fix dtype lookups (for glibc 2.1.3
0c7b6a
  builds)
0c7b6a
0c7b6a
* Mon Feb  7 2000 Jeff Johnson <jbj@redhat.com>
0c7b6a
- compress man page.
0c7b6a
0c7b6a
* Fri Jan 21 2000 Cristian Gafton <gafton@redhat.com>
0c7b6a
- apply patch to fix a /tmp race condition from Thomas Biege
0c7b6a
- simplify %%install
0c7b6a
0c7b6a
* Sat Nov 27 1999 Jeff Johnson <jbj@redhat.com>
0c7b6a
- update to 3.78.1.
0c7b6a
0c7b6a
* Thu Apr 15 1999 Bill Nottingham <notting@redhat.com>
0c7b6a
- added a serial tag so it upgrades right
0c7b6a
0c7b6a
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
0c7b6a
- auto rebuild in the new build environment (release 5)
0c7b6a
0c7b6a
* Wed Sep 16 1998 Cristian Gafton <gafton@redhat.com>
0c7b6a
- added a patch for large file support in glob
0c7b6a
 
0c7b6a
* Tue Aug 18 1998 Jeff Johnson <jbj@redhat.com>
0c7b6a
- update to 3.77
0c7b6a
0c7b6a
* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
0c7b6a
- translations modified for de, fr, tr
0c7b6a
0c7b6a
* Thu Oct 16 1997 Donnie Barnes <djb@redhat.com>
0c7b6a
- udpated from 3.75 to 3.76
0c7b6a
- various spec file cleanups
0c7b6a
- added install-info support
0c7b6a
0c7b6a
* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
0c7b6a
- built against glibc