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