Blame SPECS/autoconf.spec

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