Blame SPECS/make.spec

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