Blame SPECS/autoconf.spec

8c3380
# Enable Emacs support
8c3380
%bcond_without autoconf_enables_emacs
8c3380
# Run extended test
8c3380
%bcond_without autoconf_enables_optional_test
8c3380
8c3380
Summary:    A GNU tool for automatically configuring source code
8c3380
Name:       autoconf
8c3380
Version:    2.69
8c3380
Release:    27%{?dist}
8c3380
License:    GPLv2+ and GFDL
8c3380
Source0:    http://ftpmirror.gnu.org/autoconf/autoconf-%{version}.tar.xz
8c3380
Source1:    config.site
8c3380
Source2:    autoconf-init.el
8c3380
URL:        http://www.gnu.org/software/autoconf/
8c3380
8c3380
Patch1:     autoconf-2.69-perl-5.22-autoscan.patch
8c3380
8c3380
BuildArch:  noarch
8c3380
8c3380
8c3380
# run "make check" by default
8c3380
%bcond_without check
8c3380
8c3380
# m4 >= 1.4.6 is required, >= 1.4.14 is recommended:
8c3380
BuildRequires:      m4 >= 1.4.14
8c3380
Requires:           m4 >= 1.4.14
8c3380
%if %{with autoconf_enables_emacs}
8c3380
Requires:           emacs-filesystem
8c3380
BuildRequires:      emacs
8c3380
%endif
8c3380
# the filtering macros are currently in /etc/rpm/macros.perl:
8c3380
BuildRequires:      perl-generators
8c3380
BuildRequires:      perl-macros
8c3380
BuildRequires:      perl(Data::Dumper)
8c3380
# from f19, Text::ParseWords is not the part of 'perl' package
8c3380
BuildRequires:      perl(Text::ParseWords)
8c3380
8c3380
# %%configure replaces config.guess/config.sub for us, which confuses autoconf
8c3380
# build system and it produces empty man pages for those scripts if help2man is
8c3380
# not installed
8c3380
BuildRequires:      help2man
8c3380
8c3380
%if %{with check}
8c3380
%if %{with autoconf_enables_optional_test}
8c3380
# For extended testsuite coverage
8c3380
BuildRequires:      gcc-gfortran
8c3380
%if 0%{?fedora} >= 15
8c3380
BuildRequires:      erlang
8c3380
%endif
8c3380
%endif
8c3380
%endif
8c3380
8c3380
Requires(post):     /sbin/install-info
8c3380
Requires(preun):    /sbin/install-info
8c3380
8c3380
# filter out bogus perl(Autom4te*) dependencies
8c3380
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(Autom4te::
8c3380
%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}^perl\\(Autom4te::
8c3380
8c3380
%description
8c3380
GNU's Autoconf is a tool for configuring source code and Makefiles.
8c3380
Using Autoconf, programmers can create portable and configurable
8c3380
packages, since the person building the package is allowed to
8c3380
specify various configuration options.
8c3380
8c3380
You should install Autoconf if you are developing software and
8c3380
would like to create shell scripts that configure your source code
8c3380
packages. If you are installing Autoconf, you will also need to
8c3380
install the GNU m4 package.
8c3380
8c3380
Note that the Autoconf package is not required for the end-user who
8c3380
may be configuring software with an Autoconf-generated script;
8c3380
Autoconf is only required for the generation of the scripts, not
8c3380
their use.
8c3380
8c3380
8c3380
%prep
8c3380
%autosetup -p1
8c3380
8c3380
%build
8c3380
%if %{with autoconf_enables_emacs}
8c3380
export EMACS=%{_bindir}/emacs
8c3380
%else
8c3380
export EMACS=%{_bindir}/false
8c3380
%endif
8c3380
%configure \
8c3380
    %{?with_autoconf_enables_emacs:--with-lispdir=%{_emacs_sitelispdir}/autoconf}
8c3380
make %{?_smp_mflags}
8c3380
8c3380
8c3380
%check
8c3380
%if %{with check}
8c3380
# make check # TESTSUITEFLAGS='1-198 200-' # will disable nr. 199.
8c3380
# make check TESTSUITEFLAGS="-k \!erlang"
8c3380
make check %{?_smp_mflags}
8c3380
%endif
8c3380
8c3380
8c3380
%install
8c3380
make install %{?_smp_mflags} DESTDIR=%{buildroot}
8c3380
mkdir -p %{buildroot}/share
8c3380
install -m 0644 %{SOURCE1} %{buildroot}%{_datadir}
8c3380
8c3380
%if %{with autoconf_enables_emacs}
8c3380
# Create file to activate Emacs modes as required
8c3380
mkdir -p %{buildroot}%{_emacs_sitestartdir}
8c3380
install -p -m 0644 %{SOURCE2} %{buildroot}%{_emacs_sitestartdir}
8c3380
%endif
8c3380
8c3380
8c3380
%post
8c3380
/sbin/install-info %{_infodir}/autoconf.info %{_infodir}/dir || :
8c3380
8c3380
%preun
8c3380
if [ "$1" = 0 ]; then
8c3380
    /sbin/install-info --del %{_infodir}/autoconf.info %{_infodir}/dir || :
8c3380
fi
8c3380
8c3380
8c3380
%files
8c3380
%license COPYING*
8c3380
%{_bindir}/*
8c3380
%{_infodir}/autoconf.info*
8c3380
# don't include standards.info, because it comes from binutils...
8c3380
%exclude %{_infodir}/standards*
8c3380
# don't include info's TOP directory
8c3380
%exclude %{_infodir}/dir
8c3380
%{_datadir}/autoconf/
8c3380
%{_datadir}/config.site
8c3380
%if %{with autoconf_enables_emacs}
8c3380
%{_datadir}/emacs/site-lisp/*
8c3380
%endif
8c3380
%{_mandir}/man1/*
8c3380
%doc AUTHORS ChangeLog NEWS README THANKS TODO
8c3380
8c3380
8c3380
%changelog
8c3380
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.69-27
8c3380
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
8c3380
8c3380
* Fri Oct 27 2017 Pavel Raiskup <praiskup@redhat.com> - 2.69-26
8c3380
- drop %%config attribute for /usr/share/config.site file (rhbz#1506655)
8c3380
8c3380
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.69-25
8c3380
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
8c3380
8c3380
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.69-24
8c3380
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
8c3380
8c3380
* Fri Jul 29 2016 Pavel Raiskup <praiskup@redhat.com> - 2.69-23
8c3380
- re-enable erlang tests, after rhbz#1240487 fix
8c3380
- packaging guidelines fixes
8c3380
8c3380
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.69-22
8c3380
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
8c3380
8c3380
* Mon Jul 13 2015 Pavel Raiskup <praiskup@redhat.com> - 2.69-21
8c3380
- disable erlang tests as erlang on i386 is currently broken (#1236072)
8c3380
8c3380
* Mon Jul 06 2015 Pavel Raiskup <praiskup@redhat.com> - 2.69-21
8c3380
- '{' character in regular expression must be escaped with perl 5.22
8c3380
8c3380
* Fri Jun 26 2015 Pavel Raiskup <praiskup@redhat.com> - 2.69-20
8c3380
- conform to Packaging:Emacs guidelines (#1204274), init script
8c3380
  by Jonathan Underwood
8c3380
8c3380
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.69-19
8c3380
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
8c3380
8c3380
* Fri Mar 20 2015 Pavel Raiskup <praiskup@redhat.com> - 2.69-18
8c3380
- depend on emacs-filesystem (rhbz#1204274)
8c3380
8c3380
* Fri Feb 27 2015 Pavel Raiskup <praiskup@redhat.com> - 2.69-17
8c3380
- config.site: take AC_PREFIX_DEFAULT([/usr]) into account, by
8c3380
  agruen at kernel.org (rhbz#1196340)
8c3380
8c3380
* Wed Nov 12 2014 Pavel Raiskup <praiskup@redhat.com> - 2.69-16
8c3380
- avoid generating empty man pages for gnuconfig (#1162227)
8c3380
8c3380
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.69-15
8c3380
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
8c3380
8c3380
* Tue Dec 17 2013 Pavel Raiskup <praiskup@redhat.com> - 2.69-14
8c3380
- fix config.site to not affect cross compilation (Stefan Sørensen, #1042775)
8c3380
8c3380
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.69-13
8c3380
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
8c3380
8c3380
* Thu Jul 18 2013 Petr Pisar <ppisar@redhat.com> - 2.69-12
8c3380
- Perl 5.18 rebuild
8c3380
8c3380
* Mon Jun 17 2013 Pavel Raiskup <praiskup@redhat.com> - 2.69-11
8c3380
- config.site installation should be safe as long as the CONFIG_SITE=NONE is
8c3380
  exported by the rpmbuild environment (#772999)
8c3380
8c3380
* Thu Feb 14 2013 Pavel Raiskup <praiskup@redhat.com> - 2.69-10
8c3380
- BR the perl(Text::ParseWords) explicitly to enable build again
8c3380
8c3380
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.69-10
8c3380
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
8c3380
8c3380
* Wed Jan 23 2013 Pavel Raiskup <praiskup@redhat.com> - 2.69-9
8c3380
- disable 'config.site' under /usr/share for now
8c3380
8c3380
* Tue Jan 15 2013 Pavel Raiskup <praiskup@redhat.com> - 2.69-8
8c3380
- the 'INSTALL' file can be used as template file for packages which are using
8c3380
  autoconf - mark it for installation again (#661623)
8c3380
8c3380
* Tue Jan 08 2013 Pavel Raiskup <praiskup@redhat.com> - 2.69-7
8c3380
- Support the 'config.site' file in /usr/share
8c3380
8c3380
* Thu Oct 25 2012 Pavel Raiskup <praiskup@redhat.com> - 2.69-6
8c3380
- fedora-review (minor) fixes and typos: trim lines, remove defattr(,,), do not
8c3380
  run `rm -rf %%{buildroot} at the beginning of install section, use curly
8c3380
  brackets only around rpm macros/variables and not around shell variables,
8c3380
  remove clean section
8c3380
8c3380
* Wed Sep 26 2012 Pavel Raiskup <praiskup@redhat.com> - 2.69-5
8c3380
- do not install the "INSTALL" documentation file (#661623)
8c3380
8c3380
* Thu Sep 13 2012 Karsten Hopp <karsten@redhat.com> 2.69-4
8c3380
- don't require erlang in RHEL
8c3380
8c3380
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.69-3
8c3380
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
8c3380
8c3380
* Mon Jun 18 2012 Karsten Hopp <karsten@redhat.com> 2.69-2
8c3380
- spec file changes by Ralf Corsépius:
8c3380
- Use %%bcond_without for --with/out=check.
8c3380
- Add BR: perl(Data::Dumper).
8c3380
- Remove BR: automake (Testsuite doesn't need automake).
8c3380
- Add BR: gcc-gfortran, erlang (Extend testsuite).
8c3380
- Remove TESTSUITEFLAGS (Was referring to autoconf < 2.69).
8c3380
- Add rpm-4.9 perl-filters %%__provides_exclude, %%__requires_exclude.
8c3380
  Remove rpm-4.8 perl-filters (Address RHBZ 823770).
8c3380
- Reflect autoconf being GPLv3'ed.
8c3380
- Add BR: perl-macros, Remove BR: perl-devel
8c3380
8c3380
* Tue May 15 2012 Karsten Hopp <karsten@redhat.com> 2.69-1
8c3380
- update to 2.69
8c3380
8c3380
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.68-3
8c3380
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
8c3380
8c3380
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.68-2
8c3380
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
8c3380
8c3380
* Mon Dec 06 2010 Karsten Hopp <karsten@redhat.com> 2.68-1
8c3380
- update to 2.68
8c3380
8c3380
* Tue Jul 06 2010 Karsten Hopp <karsten@redhat.com> 2.66-2
8c3380
- add 2 upstream patches (#611661)
8c3380
- allow rpmbuild --without check
8c3380
8c3380
* Mon Jul  5 2010 Stepan Kasal <kasal@ucw.cz> - 2.66-1
8c3380
- new upstream version, drop upstreamed patches
8c3380
8c3380
* Tue Mar  2 2010 Stepan Kasal <skasal@redhat.com> - 2.65-2
8c3380
- use perl filtering macros
8c3380
8c3380
* Wed Nov 25 2009 Stepan Kasal <skasal@redhat.com> - 2.65-1
8c3380
- new upstream version
8c3380
- backported patch: make AC_FUNC_MMAP work with C++ again
8c3380
8c3380
* Tue Nov 24 2009 Stepan Kasal <skasal@redhat.com> - 2.64-2
8c3380
- add back upstream AH_CHECK_HEADERS, backported from upstream
8c3380
  fixes some build failures
8c3380
8c3380
* Fri Oct 30 2009 Stepan Kasal <skasal@redhat.com> - 2.64-1
8c3380
- new upstream version
8c3380
- skip failing test
8c3380
8c3380
* Tue Aug 11 2009 Ville Skyttä <ville.skytta@iki.fi> - 2.63-4
8c3380
- Use lzma compressed upstream tarball.
8c3380
8c3380
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.63-3
8c3380
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
8c3380
8c3380
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.63-2
8c3380
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
8c3380
8c3380
* Wed Sep 17 2008 Stepan Kasal <skasal@redhat.com> 2.63-1
8c3380
- upstream bugfix release
8c3380
- all patches dropped, the issues are fixed upstream
8c3380
8c3380
* Mon Jul 07 2008 Karsten Hopp <karsten@redhat.com> 2.62-5
8c3380
- fix multiline variables (p.e. #449467)
8c3380
8c3380
* Fri Jul  4 2008 Stepan Kasal <skasal@redhat.com> 2.62-4
8c3380
- add a quick fix for #449944
8c3380
- remove Requires: mktemp, imake, grep; these are required by the generated
8c3380
  configure, but not by Autoconf.
8c3380
- switch on make check
8c3380
8c3380
* Tue Jun 24 2008 Karsten Hopp <karsten@redhat.com> 2.62-3
8c3380
- add fix for same line comments #449245 (Ralf Wildenhues)
8c3380
8c3380
* Fri Jun 06 2008 Karsten Hopp <karsten@redhat.com> 2.62-2
8c3380
- add upstream fix from Eric Blake for #449973,
8c3380
  m4_if releated error message from autotest
8c3380
8c3380
* Tue May 13 2008 Karsten Hopp <karsten@redhat.com> 2.62-1
8c3380
- autoconf-2.62
8c3380
8c3380
* Mon Oct 29 2007 Stepan Kasal <skasal@redhat.com> 2.61-10
8c3380
- require m4 >= 1.4.7
8c3380
- Resolves: #236073
8c3380
8c3380
* Wed Aug 08 2007 Karsten Hopp <karsten@redhat.com> 2.61-9
8c3380
- update license tag
8c3380
8c3380
* Tue Feb 27 2007 Karsten Hopp <karsten@redhat.com> 2.61-8
8c3380
- own %%{_datadir}/emacs/ (#225296)
8c3380
8c3380
* Mon Feb 26 2007 Karsten Hopp <karsten@redhat.com> 2.61-7
8c3380
- add Requires: grep
8c3380
8c3380
* Thu Feb 22 2007 Karsten Hopp <karsten@redhat.com> 2.61-6
8c3380
- drop gawk, sed requirements (#225296)
8c3380
- add some comments
8c3380
8c3380
* Mon Feb 19 2007 Karsten Hopp <karsten@redhat.com> 2.61-5
8c3380
- use ./configure
8c3380
- filter dependencies
8c3380
8c3380
* Thu Feb 15 2007 Karsten Hopp <karsten@redhat.com> 2.61-4
8c3380
- add disttag
8c3380
- replace  tabs with spaces
8c3380
- fix buildroot
8c3380
- use Requires(post), Requires(preun)
8c3380
- use make install DESTDIR=....
8c3380
- drop perl requirement as it gets pulled it automatically
8c3380
8c3380
* Thu Jan 18 2007 Karsten Hopp <karsten@redhat.com> 2.61-3
8c3380
- don't abort (un)install scriptlets when _excludedocs is set (Ville Skyttä)
8c3380
8c3380
* Tue Nov 21 2006 Karsten Hopp <karsten@redhat.com> 2.61-2
8c3380
- drop obsolete linkX11 patch
8c3380
8c3380
* Tue Nov 21 2006 Karsten Hopp <karsten@redhat.com> 2.61-1
8c3380
- autoconf-2.61
8c3380
8c3380
* Thu Nov 09 2006 Karsten Hopp <karsten@redhat.com> 2.60-4
8c3380
- autoconf-2.60
8c3380
8c3380
* Fri Oct 13 2006 Stepan Kasal <skasal@redhat.com> 2.59-12
8c3380
- Add autoconf-2.59-lock.patch to eliminate a perl warning (#210653).
8c3380
8c3380
* Thu Jul 27 2006 Karsten Hopp <karsten@redhat.de> 2.59-11
8c3380
- Requires imake for _AC_PATH_X
8c3380
8c3380
* Thu Jul 20 2006 Karsten Hopp <karsten@redhat.de> 2.59-10
8c3380
- rebuild
8c3380
8c3380
* Wed Jul 19 2006 Karsten Hopp <karsten@redhat.de> 2.59-9
8c3380
- rebuild
8c3380
8c3380
* Tue May 16 2006 Karsten Hopp <karsten@redhat.de> 2.59-8
8c3380
- try to link with libX11 instead of libXt
8c3380
8c3380
* Wed Feb 15 2006 Karsten Hopp <karsten@redhat.de> 2.59-7
8c3380
- XrmInitialize takes no argument (#181340)
8c3380
8c3380
* Mon Feb 06 2006 Karsten Hopp <karsten@redhat.de> 2.59-6
8c3380
- check for Xlib.h instead of Intrinsic.h to find X11 headers
8c3380
  (#176379)
8c3380
8c3380
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
8c3380
- rebuilt
8c3380
8c3380
* Tue Sep 21 2004 Daniel Reed <djr@redhat.com> - 2.59-5
8c3380
- rebuilt for dist-fc3
8c3380
8c3380
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
8c3380
- rebuilt
8c3380
8c3380
* Thu Dec 18 2003 Jens Petersen <petersen@redhat.com> - 2.59-2
8c3380
- rebuild with perl-5.8.2 [Harald Hoyer]
8c3380
8c3380
* Thu Nov 13 2003 Jens Petersen <petersen@redhat.com> - 2.59-1
8c3380
- update to 2.59 bugfix release
8c3380
- remove autoconf-2.58-fix-ac_abs-109267.patch no longer needed
8c3380
8c3380
* Fri Nov  7 2003 Jens Petersen <petersen@redhat.com> - 2.58-2
8c3380
- fix problem with ac_abs_{build,src}dir (#109267) [reported by Joe Orton,
8c3380
  patch by Alexandre Duret-Lutz]
8c3380
8c3380
* Wed Nov  5 2003 Jens Petersen <petersen@redhat.com> - 2.58-1
8c3380
- 2.58 release
8c3380
8c3380
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
8c3380
- rebuilt
8c3380
8c3380
* Thu Dec 12 2002 Elliot Lee <sopwith@redhat.com> 2.57-2
8c3380
- Fix missing/unpackaged file
8c3380
8c3380
* Thu Dec  5 2002 Jens Petersen <petersen@redhat.com> 2.57-1
8c3380
- update to 2.57 bugfix release
8c3380
- buildrequire emacs (#79031), sed and m4
8c3380
8c3380
* Sat Nov 23 2002 Jens Petersen <petersen@redhat.com> 2.56-2
8c3380
- add --without check build option to control whether "make check" run
8c3380
- don't gzip info files explicitly
8c3380
- use exclude for unwanted info files
8c3380
8c3380
* Thu Nov 21 2002 Jens Petersen <petersen@redhat.com>
8c3380
- no longer obsolete autoconf253
8c3380
8c3380
* Mon Nov 18 2002 Jens Petersen <petersen@redhat.com> 2.56-1
8c3380
- update to 2.56
8c3380
- obsolete autoheader-warn patch
8c3380
- no longer provide autoconf253
8c3380
- include site-lisp and man files
8c3380
- remove info dir which is not in the manifest
8c3380
- do not version suffix bin files for now
8c3380
8c3380
* Mon Aug 19 2002 Jens Petersen <petersen@redhat.com> 2.53-8
8c3380
- make check
8c3380
8c3380
* Fri Jun 28 2002 Jens Petersen <petersen@redhat.com> 2.53-7
8c3380
- update url (#66840)
8c3380
- added doc files
8c3380
8c3380
* Fri Jun 21 2002 Tim Powers <timp@redhat.com> 2.53-6
8c3380
- automated rebuild
8c3380
8c3380
* Sun May 26 2002 Tim Powers <timp@redhat.com> 2.53-5
8c3380
- automated rebuild
8c3380
8c3380
* Mon May 20 2002 Bill Nottingham <notting@redhat.com> 2.53-4
8c3380
- provide autoconf253
8c3380
8c3380
* Thu May 16 2002 Bill Nottingham <notting@redhat.com> 2.53-3
8c3380
- obsolete autoconf253
8c3380
8c3380
* Wed May  8 2002 Jens Petersen <petersen@redhat.com> 2.53-2
8c3380
- patch autoheader so that --warnings=CATEGORY works (#64566)
8c3380
  [reported with fix by hjl@gnu.org]
8c3380
8c3380
* Tue Apr 23 2002 Jens Petersen <petersen@redhat.com> 2.53-1
8c3380
- update to autoconf-2.53
8c3380
- drop mawk patch again
8c3380
- version suffix bindir files and add symlinks to unversioned names
8c3380
8c3380
* Fri Feb  1 2002 Jens Petersen <petersen@redhat.com> 2.52-7
8c3380
- revert to 2.52 (also fixes #58210!)
8c3380
- remove relversion variable
8c3380
- bring back mawk -> gawk patch
8c3380
8c3380
* Wed Jan 09 2002 Tim Powers <timp@redhat.com> 2.52-6
8c3380
- automated rebuild
8c3380
8c3380
* Thu Dec 20 2001 Jens Petersen <petersen@redhat.com> 2.52-5
8c3380
- update to 2.52f
8c3380
- add URL
8c3380
- minor description improvements
8c3380
- define relversion to carry version number
8c3380
- mawk.patch no longer needed
8c3380
8c3380
* Sat Nov 17 2001 Florian La Roche <Florian.LaRoche@redhat.de> 2.52-4
8c3380
- rebuild
8c3380
8c3380
* Wed Sep 19 2001 Jens Petersen <petersen@redhat.com> 2.52-3
8c3380
- restore patch to prefer gawk to mawk
8c3380
8c3380
* Tue Sep 18 2001 Florian La Roche <Florian.LaRoche@redhat.de> 2.52-2
8c3380
- update to 2.52d
8c3380
8c3380
* Mon Sep 17 2001 Jens Petersen <petersen@redhat.com> 2.52-1
8c3380
- update to 2.52
8c3380
- remove obsolete patches, since already new version
8c3380
- dont install install-sh
8c3380
8c3380
* Tue Jul 10 2001 Jens Petersen <petersen@redhat.com>
8c3380
- add patch to include various standard C headers as needed
8c3380
  by various autoconf tests (#19114)
8c3380
- add patch to autoscan.pl to get a better choice of init
8c3380
  file (#42071), to test for CPP after CC (#42072) and to
8c3380
  detect C++ source and g++ (#42073).
8c3380
8c3380
* Tue Jun 26 2001 Jens Petersen <petersen@redhat.com>
8c3380
- Add a back-port of _AC_PROG_CXX_EXIT_DECLARATION
8c3380
  from version 2.50 to make detection of C++ exit()
8c3380
  declaration prototype platform independent.  The check is
8c3380
  done in AC_PROG_CXX with the result stored in "confdefs.h".
8c3380
  The exit() prototype in AC_TRY_RUN_NATIVE is no longer needed.
8c3380
  (fixes #18829)
8c3380
8c3380
* Wed Nov 29 2000 Bernhard Rosenkraenzer <bero@redhat.com>
8c3380
- Fix up interoperability with glibc 2.2 and gcc 2.96:
8c3380
  AC_TRY_RUN_NATIVE in C++ mode added a prototype for exit() to
8c3380
  the test code without throwing an exception, causing a conflict
8c3380
  with stdlib.h --> AC_TRY_RUN_NATIVE for C++ code including stdlib.h
8c3380
  always failed, returning wrong results
8c3380
8c3380
* Fri Jul 21 2000 Nalin Dahyabhai <nalin@redhat.com>
8c3380
- add textutils as a dependency (#14439)
8c3380
8c3380
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
8c3380
- automatic rebuild
8c3380
8c3380
* Mon Jun  5 2000 Jeff Johnson <jbj@redhat.com>
8c3380
- FHS packaging.
8c3380
8c3380
* Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com>
8c3380
- fix preun
8c3380
8c3380
* Fri Mar 26 1999 Cristian Gafton <gafton@redhat.com>
8c3380
- add patch to help autoconf clean after itself and not leave /tmp clobbered
8c3380
  with acin.* and acout.* files (can you say annoying?)
8c3380
8c3380
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
8c3380
- auto rebuild in the new build environment (release 4)
8c3380
- use gawk, not mawk
8c3380
8c3380
* Thu Mar 18 1999 Preston Brown <pbrown@redhat.com>
8c3380
- moved /usr/lib/autoconf to /usr/share/autoconf (with automake)
8c3380
8c3380
* Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
8c3380
- Injected new description and group.
8c3380
8c3380
* Tue Jan 12 1999 Jeff Johnson <jbj@redhat.com>
8c3380
- update to 2.13.
8c3380
8c3380
* Fri Dec 18 1998 Cristian Gafton <gafton@redhat.com>
8c3380
- build against glibc 2.1
8c3380
8c3380
* Mon Oct 05 1998 Cristian Gafton <gafton@redhat.com>
8c3380
- requires perl
8c3380
8c3380
* Thu Aug 27 1998 Cristian Gafton <gafton@redhat.com>
8c3380
- patch for fixing /tmp race conditions
8c3380
8c3380
* Sun Oct 19 1997 Erik Troan <ewt@redhat.com>
8c3380
- spec file cleanups
8c3380
- made a noarch package
8c3380
- uses autoconf
8c3380
- uses install-info
8c3380
8c3380
* Thu Jul 17 1997 Erik Troan <ewt@redhat.com>
8c3380
- built with glibc