Karsten Hopp 2e5956
Summary:    A GNU tool for automatically configuring source code
Karsten Hopp 2e5956
Name:       autoconf
Karsten Hopp 67e91b
Version:    2.69
Pavel Raiskup 504519
Release:    14%{?dist}
Karsten Hopp aaebb1
License:    GPLv2+ and GFDL
Karsten Hopp 2e5956
Group:      Development/Tools
Pavel Raiskup c047b3
Source0:    http://ftpmirror.gnu.org/autoconf/autoconf-%{version}.tar.xz
Pavel Raiskup c047b3
Source1:    config.site
Karsten Hopp 2e5956
URL:        http://www.gnu.org/software/autoconf/
Štěpán Kasal 3d6770
BuildArch: noarch
Štěpán Kasal 3d6770
BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Štěpán Kasal 3d6770
Karsten Hopp 0f8823
# run "make check" by default
Karsten Hopp 0f8823
%bcond_without check
Karsten Hopp 0f8823
Štěpán Kasal 4870ac
# m4 >= 1.4.6 is required, >= 1.4.14 is recommended:
Štěpán Kasal 4870ac
BuildRequires:      m4 >= 1.4.14
Štěpán Kasal 4870ac
Requires:           m4 >= 1.4.14
Štěpán Kasal 80edf5
BuildRequires:      emacs
Štěpán Kasal d293e3
# the filtering macros are currently in /etc/rpm/macros.perl:
Karsten Hopp 0f8823
BuildRequires:      perl-macros
Karsten Hopp 0f8823
BuildRequires:      perl(Data::Dumper)
Pavel Raiskup c3f287
# from f19, Text::ParseWords is not the part of 'perl' package
Pavel Raiskup c3f287
BuildRequires:      perl(Text::ParseWords)
Karsten Hopp 0f8823
Karsten Hopp 0f8823
%if %{with check}
Karsten Hopp 0f8823
# For extended testsuite coverage
Karsten Hopp 0f8823
BuildRequires:      gcc-gfortran
Karsten Hopp 268f37
%if 0%{?fedora} >= 15
Karsten Hopp 0f8823
BuildRequires:      erlang
Karsten Hopp a3d24c
%endif
Karsten Hopp 268f37
%endif
Štěpán Kasal 3d6770
Karsten Hopp 0f8823
Requires(post):     /sbin/install-info
Karsten Hopp 0f8823
Requires(preun):    /sbin/install-info
Karsten Hopp 0f8823
Karsten Hopp c6fa37
# filter out bogus perl(Autom4te*) dependencies
Karsten Hopp 0f8823
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(Autom4te::
Karsten Hopp 0f8823
%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}^perl\\(Autom4te::
Karsten Hopp a2e8dd
cvsdist 35ebdb
%description
cvsdist 35ebdb
GNU's Autoconf is a tool for configuring source code and Makefiles.
cvsdist 35ebdb
Using Autoconf, programmers can create portable and configurable
Pavel Raiskup 0d3705
packages, since the person building the package is allowed to
cvsdist 096a4d
specify various configuration options.
cvsdist 35ebdb
cvsdist 096a4d
You should install Autoconf if you are developing software and
cvsdist 096a4d
would like to create shell scripts that configure your source code
cvsdist 096a4d
packages. If you are installing Autoconf, you will also need to
cvsdist 096a4d
install the GNU m4 package.
cvsdist 35ebdb
cvsdist 9c4bf0
Note that the Autoconf package is not required for the end-user who
cvsdist e36451
may be configuring software with an Autoconf-generated script;
cvsdist 096a4d
Autoconf is only required for the generation of the scripts, not
cvsdist 096a4d
their use.
cvsdist 35ebdb
cvsdist 35ebdb
%prep
Karsten Hopp 2e5956
%setup -q
cvsdist 35ebdb
cvsdist 35ebdb
%build
Štěpán Kasal 80edf5
%configure
Štěpán Kasal 80edf5
# not parallel safe
Štěpán Kasal 80edf5
make
Karsten Hopp 402b9e
Štěpán Kasal 02b7a3
%check
Karsten Hopp 0f8823
%if %{with check}
Pavel Raiskup 0d3705
make check # TESTSUITEFLAGS='1-198 200-' # will disable nr. 199.
Karsten Hopp a3d24c
%endif
cvsdist 35ebdb
cvsdist 35ebdb
%install
Pavel Raiskup 0d3705
make install DESTDIR=%{buildroot}
Pavel Raiskup c047b3
mkdir -p %{buildroot}/share
Pavel Raiskup 836b1c
install -m 0644 %{SOURCE1} %{buildroot}%{_datadir}
cvsdist 35ebdb
cvsdist 35ebdb
%post
Karsten Hopp c6fa37
/sbin/install-info %{_infodir}/autoconf.info %{_infodir}/dir || :
cvsdist 35ebdb
cvsdist 35ebdb
%preun
cvsdist 35ebdb
if [ "$1" = 0 ]; then
Karsten Hopp c6fa37
    /sbin/install-info --del %{_infodir}/autoconf.info %{_infodir}/dir || :
cvsdist 35ebdb
fi
cvsdist 35ebdb
cvsdist 35ebdb
%files
cvsdist 35ebdb
%{_bindir}/*
cvsdist a0e91e
%{_infodir}/autoconf.info*
cvsdist a0e91e
# don't include standards.info, because it comes from binutils...
cvsdist a0e91e
%exclude %{_infodir}/standards*
Pavel Raiskup 0d3705
# don't include info's TOP directory
Pavel Raiskup 0d3705
%exclude %{_infodir}/dir
Karsten Hopp 2e5956
%{_datadir}/autoconf/
Pavel Raiskup 836b1c
%config %{_datadir}/config.site
Karsten Hopp ee3be2
%dir %{_datadir}/emacs/
Karsten Hopp 2e5956
%{_datadir}/emacs/site-lisp/
cvsdist a0e91e
%{_mandir}/man1/*
Karsten Hopp 0f8823
%doc AUTHORS COPYING* ChangeLog NEWS README THANKS TODO
cvsdist 35ebdb
cvsdist 35ebdb
%changelog
Pavel Raiskup 504519
* Tue Dec 17 2013 Pavel Raiskup <praiskup@redhat.com> - 2.69-14
Pavel Raiskup 504519
- fix config.site to not affect cross compilation (Stefan Sørensen, #1042775)
Pavel Raiskup 504519
Dennis Gilmore 59af63
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.69-13
Dennis Gilmore 59af63
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
Dennis Gilmore 59af63
Petr Písař 07feb4
* Thu Jul 18 2013 Petr Pisar <ppisar@redhat.com> - 2.69-12
Petr Písař 07feb4
- Perl 5.18 rebuild
Petr Písař 07feb4
Pavel Raiskup 836b1c
* Mon Jun 17 2013 Pavel Raiskup <praiskup@redhat.com> - 2.69-11
Pavel Raiskup 836b1c
- config.site installation should be safe as long as the CONFIG_SITE=NONE is
Pavel Raiskup 836b1c
  exported by the rpmbuild environment (#772999)
Pavel Raiskup 836b1c
Pavel Raiskup c3f287
* Thu Feb 14 2013 Pavel Raiskup <praiskup@redhat.com> - 2.69-10
Pavel Raiskup c3f287
- BR the perl(Text::ParseWords) explicitly to enable build again
Pavel Raiskup c3f287
Dennis Gilmore e025fa
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.69-10
Dennis Gilmore e025fa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
Dennis Gilmore e025fa
Pavel Raiskup 9c7c57
* Wed Jan 23 2013 Pavel Raiskup <praiskup@redhat.com> - 2.69-9
Pavel Raiskup 9c7c57
- disable 'config.site' under /usr/share for now
Pavel Raiskup 9c7c57
Pavel Raiskup 41a646
* Tue Jan 15 2013 Pavel Raiskup <praiskup@redhat.com> - 2.69-8
Pavel Raiskup 41a646
- the 'INSTALL' file can be used as template file for packages which are using
Pavel Raiskup 41a646
  autoconf - mark it for installation again (#661623)
Pavel Raiskup 41a646
Pavel Raiskup 1bc161
* Tue Jan 08 2013 Pavel Raiskup <praiskup@redhat.com> - 2.69-7
Pavel Raiskup 1bc161
- Support the 'config.site' file in /usr/share
Pavel Raiskup 1bc161
Pavel Raiskup 0d3705
* Thu Oct 25 2012 Pavel Raiskup <praiskup@redhat.com> - 2.69-6
Pavel Raiskup 0d3705
- fedora-review (minor) fixes and typos: trim lines, remove defattr(,,), do not
Pavel Raiskup 0d3705
  run `rm -rf %%{buildroot} at the beginning of install section, use curly
Pavel Raiskup 0d3705
  brackets only around rpm macros/variables and not around shell variables,
Pavel Raiskup 0d3705
  remove clean section
Pavel Raiskup 0d3705
Pavel Raiskup 8b66b8
* Wed Sep 26 2012 Pavel Raiskup <praiskup@redhat.com> - 2.69-5
Pavel Raiskup 8b66b8
- do not install the "INSTALL" documentation file (#661623)
Pavel Raiskup 8b66b8
Karsten Hopp 268f37
* Thu Sep 13 2012 Karsten Hopp <karsten@redhat.com> 2.69-4
Karsten Hopp 268f37
- don't require erlang in RHEL
Karsten Hopp 268f37
Dennis Gilmore fbfa2b
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.69-3
Dennis Gilmore fbfa2b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
Dennis Gilmore fbfa2b
Karsten Hopp 0f8823
* Mon Jun 18 2012 Karsten Hopp <karsten@redhat.com> 2.69-2
Karsten Hopp 0f8823
- spec file changes by Ralf Corsépius:
Karsten Hopp 0f8823
- Use %%bcond_without for --with/out=check.
Karsten Hopp 0f8823
- Add BR: perl(Data::Dumper).
Karsten Hopp 0f8823
- Remove BR: automake (Testsuite doesn't need automake).
Karsten Hopp 0f8823
- Add BR: gcc-gfortran, erlang (Extend testsuite).
Karsten Hopp 0f8823
- Remove TESTSUITEFLAGS (Was referring to autoconf < 2.69).
Karsten Hopp 0f8823
- Add rpm-4.9 perl-filters %%__provides_exclude, %%__requires_exclude.
Karsten Hopp 0f8823
  Remove rpm-4.8 perl-filters (Address RHBZ 823770).
Karsten Hopp 0f8823
- Reflect autoconf being GPLv3'ed.
Karsten Hopp 0f8823
- Add BR: perl-macros, Remove BR: perl-devel
Karsten Hopp 0f8823
Karsten Hopp 67e91b
* Tue May 15 2012 Karsten Hopp <karsten@redhat.com> 2.69-1
Karsten Hopp 67e91b
- update to 2.69
Karsten Hopp 67e91b
Dennis Gilmore 0958ee
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.68-3
Dennis Gilmore 0958ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
Dennis Gilmore 0958ee
Dennis Gilmore 73dd53
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.68-2
Dennis Gilmore 73dd53
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
Dennis Gilmore 73dd53
Karsten Hopp 40b807
* Mon Dec 06 2010 Karsten Hopp <karsten@redhat.com> 2.68-1
Karsten Hopp 40b807
- update to 2.68
Karsten Hopp 40b807
Karsten Hopp a3d24c
* Tue Jul 06 2010 Karsten Hopp <karsten@redhat.com> 2.66-2
Karsten Hopp a3d24c
- add 2 upstream patches (#611661)
Karsten Hopp a3d24c
- allow rpmbuild --without check
Karsten Hopp a3d24c
Štěpán Kasal 4870ac
* Mon Jul  5 2010 Stepan Kasal <kasal@ucw.cz> - 2.66-1
Štěpán Kasal 4870ac
- new upstream version, drop upstreamed patches
Štěpán Kasal 4870ac
Štěpán Kasal d293e3
* Tue Mar  2 2010 Stepan Kasal <skasal@redhat.com> - 2.65-2
Štěpán Kasal d293e3
- use perl filtering macros
Štěpán Kasal d293e3
Štěpán Kasal 3d6770
* Wed Nov 25 2009 Stepan Kasal <skasal@redhat.com> - 2.65-1
Štěpán Kasal 3d6770
- new upstream version
Štěpán Kasal 3d6770
- backported patch: make AC_FUNC_MMAP work with C++ again
Štěpán Kasal 3d6770
Štěpán Kasal cd8d15
* Tue Nov 24 2009 Stepan Kasal <skasal@redhat.com> - 2.64-2
Štěpán Kasal cd8d15
- add back upstream AH_CHECK_HEADERS, backported from upstream
Štěpán Kasal cd8d15
  fixes some build failures
Štěpán Kasal cd8d15
Štěpán Kasal 80edf5
* Fri Oct 30 2009 Stepan Kasal <skasal@redhat.com> - 2.64-1
Štěpán Kasal 80edf5
- new upstream version
Štěpán Kasal 80edf5
- skip failing test
Štěpán Kasal 80edf5
Ville Skyttä a2593c
* Tue Aug 11 2009 Ville Skyttä <ville.skytta@iki.fi> - 2.63-4
Ville Skyttä a2593c
- Use lzma compressed upstream tarball.
Ville Skyttä a2593c
Jesse Keating 46f255
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.63-3
Jesse Keating 46f255
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
Jesse Keating 46f255
Jesse Keating bb87a2
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.63-2
Jesse Keating bb87a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
Jesse Keating bb87a2
Štěpán Kasal d4b551
* Wed Sep 17 2008 Stepan Kasal <skasal@redhat.com> 2.63-1
Štěpán Kasal d4b551
- upstream bugfix release
Štěpán Kasal d4b551
- all patches dropped, the issues are fixed upstream
Štěpán Kasal d4b551
Karsten Hopp 4fc95d
* Mon Jul 07 2008 Karsten Hopp <karsten@redhat.com> 2.62-5
Karsten Hopp 4fc95d
- fix multiline variables (p.e. #449467)
Karsten Hopp 4fc95d
Štěpán Kasal 02b7a3
* Fri Jul  4 2008 Stepan Kasal <skasal@redhat.com> 2.62-4
Štěpán Kasal 02b7a3
- add a quick fix for #449944
Štěpán Kasal 02b7a3
- remove Requires: mktemp, imake, grep; these are required by the generated
Štěpán Kasal 02b7a3
  configure, but not by Autoconf.
Štěpán Kasal 02b7a3
- switch on make check
Štěpán Kasal 02b7a3
Karsten Hopp 6f8699
* Tue Jun 24 2008 Karsten Hopp <karsten@redhat.com> 2.62-3
Karsten Hopp 6f8699
- add fix for same line comments #449245 (Ralf Wildenhues)
Karsten Hopp 6f8699
Karsten Hopp 295e29
* Fri Jun 06 2008 Karsten Hopp <karsten@redhat.com> 2.62-2
Pavel Raiskup 0d3705
- add upstream fix from Eric Blake for #449973,
Karsten Hopp 295e29
  m4_if releated error message from autotest
Karsten Hopp 295e29
Karsten Hopp 394ef1
* Tue May 13 2008 Karsten Hopp <karsten@redhat.com> 2.62-1
Karsten Hopp 394ef1
- autoconf-2.62
Karsten Hopp 394ef1
Štěpán Kasal e1d97c
* Mon Oct 29 2007 Stepan Kasal <skasal@redhat.com> 2.61-10
Štěpán Kasal e1d97c
- require m4 >= 1.4.7
Štěpán Kasal 856382
- Resolves: #236073
Štěpán Kasal e1d97c
Karsten Hopp aaebb1
* Wed Aug 08 2007 Karsten Hopp <karsten@redhat.com> 2.61-9
Karsten Hopp aaebb1
- update license tag
Karsten Hopp aaebb1
Karsten Hopp ee3be2
* Tue Feb 27 2007 Karsten Hopp <karsten@redhat.com> 2.61-8
Karsten Hopp ee3be2
- own %%{_datadir}/emacs/ (#225296)
Karsten Hopp ee3be2
Karsten Hopp 648cba
* Mon Feb 26 2007 Karsten Hopp <karsten@redhat.com> 2.61-7
Karsten Hopp 648cba
- add Requires: grep
Karsten Hopp 648cba
Karsten Hopp c6fa37
* Thu Feb 22 2007 Karsten Hopp <karsten@redhat.com> 2.61-6
Karsten Hopp c6fa37
- drop gawk, sed requirements (#225296)
Karsten Hopp c6fa37
- add some comments
Karsten Hopp c6fa37
Karsten Hopp a2e8dd
* Mon Feb 19 2007 Karsten Hopp <karsten@redhat.com> 2.61-5
Karsten Hopp a2e8dd
- use ./configure
Karsten Hopp a2e8dd
- filter dependencies
Karsten Hopp a2e8dd
Karsten Hopp 2e5956
* Thu Feb 15 2007 Karsten Hopp <karsten@redhat.com> 2.61-4
Karsten Hopp 2e5956
- add disttag
Karsten Hopp 2e5956
- replace  tabs with spaces
Karsten Hopp 2e5956
- fix buildroot
Karsten Hopp 2e5956
- use Requires(post), Requires(preun)
Karsten Hopp 2e5956
- use make install DESTDIR=....
Pavel Raiskup 0d3705
- drop perl requirement as it gets pulled it automatically
Karsten Hopp 2e5956
Karsten Hopp bd408e
* Thu Jan 18 2007 Karsten Hopp <karsten@redhat.com> 2.61-3
Karsten Hopp bd408e
- don't abort (un)install scriptlets when _excludedocs is set (Ville Skyttä)
Karsten Hopp bd408e
Karsten Hopp 1ebd60
* Tue Nov 21 2006 Karsten Hopp <karsten@redhat.com> 2.61-2
Karsten Hopp 1ebd60
- drop obsolete linkX11 patch
Karsten Hopp 1ebd60
Karsten Hopp e52242
* Tue Nov 21 2006 Karsten Hopp <karsten@redhat.com> 2.61-1
Karsten Hopp e52242
- autoconf-2.61
Karsten Hopp e52242
Karsten Hopp fc2123
* Thu Nov 09 2006 Karsten Hopp <karsten@redhat.com> 2.60-4
Karsten Hopp 6af49d
- autoconf-2.60
Karsten Hopp 6af49d
skasal 1886a0
* Fri Oct 13 2006 Stepan Kasal <skasal@redhat.com> 2.59-12
skasal 1886a0
- Add autoconf-2.59-lock.patch to eliminate a perl warning (#210653).
skasal 1886a0
Karsten Hopp 7001fd
* Thu Jul 27 2006 Karsten Hopp <karsten@redhat.de> 2.59-11
Karsten Hopp 7001fd
- Requires imake for _AC_PATH_X
Karsten Hopp 7001fd
Karsten Hopp 2aabcf
* Thu Jul 20 2006 Karsten Hopp <karsten@redhat.de> 2.59-10
Karsten Hopp 2aabcf
- rebuild
Karsten Hopp 2aabcf
Karsten Hopp 8a4c30
* Wed Jul 19 2006 Karsten Hopp <karsten@redhat.de> 2.59-9
Karsten Hopp 8a4c30
- rebuild
Karsten Hopp 8a4c30
Karsten Hopp b69861
* Tue May 16 2006 Karsten Hopp <karsten@redhat.de> 2.59-8
Karsten Hopp b69861
- try to link with libX11 instead of libXt
Karsten Hopp b69861
Karsten Hopp 8950c8
* Wed Feb 15 2006 Karsten Hopp <karsten@redhat.de> 2.59-7
Karsten Hopp 8950c8
- XrmInitialize takes no argument (#181340)
Karsten Hopp 8950c8
Karsten Hopp 402b9e
* Mon Feb 06 2006 Karsten Hopp <karsten@redhat.de> 2.59-6
Karsten Hopp 402b9e
- check for Xlib.h instead of Intrinsic.h to find X11 headers
Karsten Hopp 402b9e
  (#176379)
Karsten Hopp 402b9e
Jesse Keating aa97ee
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
Jesse Keating aa97ee
- rebuilt
Jesse Keating aa97ee
dreed 0220c3
* Tue Sep 21 2004 Daniel Reed <djr@redhat.com> - 2.59-5
dreed 11434f
- rebuilt for dist-fc3
dreed 11434f
cvsdist 9cacb7
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 9cacb7
- rebuilt
cvsdist 9cacb7
cvsdist 4b58b0
* Thu Dec 18 2003 Jens Petersen <petersen@redhat.com> - 2.59-2
cvsdist 4b58b0
- rebuild with perl-5.8.2 [Harald Hoyer]
cvsdist 4b58b0
cvsdist 7ae1b0
* Thu Nov 13 2003 Jens Petersen <petersen@redhat.com> - 2.59-1
cvsdist 7ae1b0
- update to 2.59 bugfix release
cvsdist 7ae1b0
- remove autoconf-2.58-fix-ac_abs-109267.patch no longer needed
cvsdist 7ae1b0
cvsdist 7ae1b0
* Fri Nov  7 2003 Jens Petersen <petersen@redhat.com> - 2.58-2
cvsdist 7ae1b0
- fix problem with ac_abs_{build,src}dir (#109267) [reported by Joe Orton,
cvsdist 7ae1b0
  patch by Alexandre Duret-Lutz]
cvsdist 7ae1b0
cvsdist 7ae1b0
* Wed Nov  5 2003 Jens Petersen <petersen@redhat.com> - 2.58-1
cvsdist 7ae1b0
- 2.58 release
cvsdist 7ae1b0
cvsdist a0e91e
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
cvsdist a0e91e
- rebuilt
cvsdist a0e91e
cvsdist a0e91e
* Thu Dec 12 2002 Elliot Lee <sopwith@redhat.com> 2.57-2
cvsdist a0e91e
- Fix missing/unpackaged file
cvsdist a0e91e
cvsdist a0e91e
* Thu Dec  5 2002 Jens Petersen <petersen@redhat.com> 2.57-1
cvsdist a0e91e
- update to 2.57 bugfix release
cvsdist a0e91e
- buildrequire emacs (#79031), sed and m4
cvsdist a0e91e
cvsdist a0e91e
* Sat Nov 23 2002 Jens Petersen <petersen@redhat.com> 2.56-2
cvsdist a0e91e
- add --without check build option to control whether "make check" run
cvsdist a0e91e
- don't gzip info files explicitly
cvsdist a0e91e
- use exclude for unwanted info files
cvsdist a0e91e
cvsdist a0e91e
* Thu Nov 21 2002 Jens Petersen <petersen@redhat.com>
cvsdist a0e91e
- no longer obsolete autoconf253
cvsdist a0e91e
cvsdist a0e91e
* Mon Nov 18 2002 Jens Petersen <petersen@redhat.com> 2.56-1
cvsdist a0e91e
- update to 2.56
cvsdist a0e91e
- obsolete autoheader-warn patch
cvsdist a0e91e
- no longer provide autoconf253
cvsdist a0e91e
- include site-lisp and man files
cvsdist a0e91e
- remove info dir which is not in the manifest
cvsdist a0e91e
- do not version suffix bin files for now
cvsdist 825d4f
cvsdist 478625
* Mon Aug 19 2002 Jens Petersen <petersen@redhat.com> 2.53-8
cvsdist 478625
- make check
cvsdist 478625
cvsdist 096a4d
* Fri Jun 28 2002 Jens Petersen <petersen@redhat.com> 2.53-7
cvsdist 096a4d
- update url (#66840)
cvsdist 096a4d
- added doc files
cvsdist 096a4d
cvsdist 096a4d
* Fri Jun 21 2002 Tim Powers <timp@redhat.com> 2.53-6
cvsdist 096a4d
- automated rebuild
cvsdist 096a4d
cvsdist 096a4d
* Sun May 26 2002 Tim Powers <timp@redhat.com> 2.53-5
cvsdist 096a4d
- automated rebuild
cvsdist 096a4d
cvsdist 096a4d
* Mon May 20 2002 Bill Nottingham <notting@redhat.com> 2.53-4
cvsdist 096a4d
- provide autoconf253
cvsdist 096a4d
cvsdist 096a4d
* Thu May 16 2002 Bill Nottingham <notting@redhat.com> 2.53-3
cvsdist 096a4d
- obsolete autoconf253
cvsdist 096a4d
cvsdist 096a4d
* Wed May  8 2002 Jens Petersen <petersen@redhat.com> 2.53-2
cvsdist 096a4d
- patch autoheader so that --warnings=CATEGORY works (#64566)
cvsdist 096a4d
  [reported with fix by hjl@gnu.org]
cvsdist 096a4d
cvsdist 096a4d
* Tue Apr 23 2002 Jens Petersen <petersen@redhat.com> 2.53-1
cvsdist 096a4d
- update to autoconf-2.53
cvsdist 096a4d
- drop mawk patch again
cvsdist 096a4d
- version suffix bindir files and add symlinks to unversioned names
cvsdist 096a4d
cvsdist 096a4d
* Fri Feb  1 2002 Jens Petersen <petersen@redhat.com> 2.52-7
cvsdist 096a4d
- revert to 2.52 (also fixes #58210!)
cvsdist 096a4d
- remove relversion variable
cvsdist 096a4d
- bring back mawk -> gawk patch
cvsdist 096a4d
cvsdist 096a4d
* Wed Jan 09 2002 Tim Powers <timp@redhat.com> 2.52-6
cvsdist 096a4d
- automated rebuild
cvsdist 096a4d
cvsdist 096a4d
* Thu Dec 20 2001 Jens Petersen <petersen@redhat.com> 2.52-5
cvsdist 096a4d
- update to 2.52f
cvsdist 424a92
- add URL
cvsdist 096a4d
- minor description improvements
cvsdist 096a4d
- define relversion to carry version number
cvsdist 096a4d
- mawk.patch no longer needed
cvsdist 424a92
cvsdist 096a4d
* Sat Nov 17 2001 Florian La Roche <Florian.LaRoche@redhat.de> 2.52-4
cvsdist 096a4d
- rebuild
cvsdist ae6733
cvsdist 096a4d
* Wed Sep 19 2001 Jens Petersen <petersen@redhat.com> 2.52-3
cvsdist 096a4d
- restore patch to prefer gawk to mawk
cvsdist ae6733
cvsdist 096a4d
* Tue Sep 18 2001 Florian La Roche <Florian.LaRoche@redhat.de> 2.52-2
cvsdist 096a4d
- update to 2.52d
cvsdist 9c4bf0
cvsdist 096a4d
* Mon Sep 17 2001 Jens Petersen <petersen@redhat.com> 2.52-1
cvsdist 096a4d
- update to 2.52
cvsdist 096a4d
- remove obsolete patches, since already new version
cvsdist 096a4d
- dont install install-sh
cvsdist e36451
cvsdist e36451
* Tue Jul 10 2001 Jens Petersen <petersen@redhat.com>
cvsdist e36451
- add patch to include various standard C headers as needed
cvsdist e36451
  by various autoconf tests (#19114)
cvsdist e36451
- add patch to autoscan.pl to get a better choice of init
cvsdist e36451
  file (#42071), to test for CPP after CC (#42072) and to
cvsdist e36451
  detect C++ source and g++ (#42073).
cvsdist e36451
cvsdist e36451
* Tue Jun 26 2001 Jens Petersen <petersen@redhat.com>
cvsdist e36451
- Add a back-port of _AC_PROG_CXX_EXIT_DECLARATION
cvsdist e36451
  from version 2.50 to make detection of C++ exit()
cvsdist e36451
  declaration prototype platform independent.  The check is
cvsdist e36451
  done in AC_PROG_CXX with the result stored in "confdefs.h".
cvsdist e36451
  The exit() prototype in AC_TRY_RUN_NATIVE is no longer needed.
cvsdist e36451
  (fixes #18829)
cvsdist e36451
cvsdist 7b269c
* Wed Nov 29 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist 7b269c
- Fix up interoperability with glibc 2.2 and gcc 2.96:
cvsdist 7b269c
  AC_TRY_RUN_NATIVE in C++ mode added a prototype for exit() to
cvsdist 7b269c
  the test code without throwing an exception, causing a conflict
cvsdist 7b269c
  with stdlib.h --> AC_TRY_RUN_NATIVE for C++ code including stdlib.h
cvsdist 7b269c
  always failed, returning wrong results
cvsdist 3c8700
cvsdist 35ebdb
* Fri Jul 21 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 35ebdb
- add textutils as a dependency (#14439)
cvsdist 35ebdb
cvsdist 35ebdb
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
cvsdist 35ebdb
- automatic rebuild
cvsdist 35ebdb
cvsdist 35ebdb
* Mon Jun  5 2000 Jeff Johnson <jbj@redhat.com>
cvsdist 35ebdb
- FHS packaging.
cvsdist 35ebdb
cvsdist 35ebdb
* Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com>
cvsdist 35ebdb
- fix preun
cvsdist 35ebdb
cvsdist 35ebdb
* Fri Mar 26 1999 Cristian Gafton <gafton@redhat.com>
cvsdist 35ebdb
- add patch to help autoconf clean after itself and not leave /tmp clobbered
cvsdist 35ebdb
  with acin.* and acout.* files (can you say annoying?)
cvsdist 35ebdb
Pavel Raiskup 0d3705
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
cvsdist 35ebdb
- auto rebuild in the new build environment (release 4)
cvsdist 35ebdb
- use gawk, not mawk
cvsdist 35ebdb
cvsdist 35ebdb
* Thu Mar 18 1999 Preston Brown <pbrown@redhat.com>
cvsdist 35ebdb
- moved /usr/lib/autoconf to /usr/share/autoconf (with automake)
cvsdist 35ebdb
cvsdist 35ebdb
* Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
cvsdist 35ebdb
- Injected new description and group.
cvsdist 35ebdb
cvsdist 35ebdb
* Tue Jan 12 1999 Jeff Johnson <jbj@redhat.com>
cvsdist 35ebdb
- update to 2.13.
cvsdist 35ebdb
cvsdist 35ebdb
* Fri Dec 18 1998 Cristian Gafton <gafton@redhat.com>
cvsdist 35ebdb
- build against glibc 2.1
cvsdist 35ebdb
cvsdist 35ebdb
* Mon Oct 05 1998 Cristian Gafton <gafton@redhat.com>
cvsdist 35ebdb
- requires perl
cvsdist 35ebdb
cvsdist 35ebdb
* Thu Aug 27 1998 Cristian Gafton <gafton@redhat.com>
cvsdist 35ebdb
- patch for fixing /tmp race conditions
cvsdist 35ebdb
cvsdist 35ebdb
* Sun Oct 19 1997 Erik Troan <ewt@redhat.com>
cvsdist 35ebdb
- spec file cleanups
cvsdist 35ebdb
- made a noarch package
cvsdist 35ebdb
- uses autoconf
cvsdist 35ebdb
- uses install-info
cvsdist 35ebdb
cvsdist 35ebdb
* Thu Jul 17 1997 Erik Troan <ewt@redhat.com>
cvsdist 35ebdb
- built with glibc