e4ab46
# See the bug #429880
e4ab46
%global gcc_major  %(gcc -dumpversion || echo "666")
e4ab46
# See rhbz#1193591
e4ab46
%global automake_version %(set -- `automake --version | head -n 1` ; echo ${4-unknown})
e4ab46
e4ab46
%bcond_without check
e4ab46
e4ab46
Summary: The GNU Portable Library Tool
e4ab46
Name:    libtool
e4ab46
Version: 2.4.6
e4ab46
Release: 25%{?dist}
e4ab46
License: GPLv2+ and LGPLv2+ and GFDL
e4ab46
URL:     http://www.gnu.org/software/libtool/
e4ab46
Group:   Development/Tools
e4ab46
e4ab46
Source:  http://ftp.gnu.org/gnu/libtool/libtool-%{version}.tar.xz
e4ab46
e4ab46
# ~> downstream
e4ab46
# ~> remove possibly once #1158915 gets fixed somehow
e4ab46
Patch0:  libtool-2.4.5-rpath.patch
e4ab46
e4ab46
# ~> downstream (TODO)
e4ab46
Patch1: libtool-2.4.6-am-1.16-test.patch
e4ab46
e4ab46
# ~> upstream 702a97fbb
e4ab46
Patch2: libtool-2.4.6-specs.patch
e4ab46
e4ab46
# See the rhbz#1289759 and rhbz#1214506.  We disable hardening namely because
e4ab46
# that bakes the CFLAGS/LDFLAGS into installed /bin/libtool and ltmain.sh files.
e4ab46
# At the same time we want to have libltdl.so hardened.  Downstream-only patch.
e4ab46
%undefine _hardened_build
e4ab46
Patch3: libtool-2.4.6-hardening.patch
e4ab46
e4ab46
%if ! 0%{?_module_build}
e4ab46
Patch100: libtool-nodocs.patch
e4ab46
%endif
e4ab46
e4ab46
# /usr/bin/libtool includes paths within gcc's versioned directories
e4ab46
# Libtool must be rebuilt whenever a new upstream gcc is built
e4ab46
# Starting with gcc 7 gcc in Fedora is packaged so that only major
e4ab46
# number changes need libtool rebuilding.
e4ab46
Requires: gcc(major) = %{gcc_major}
e4ab46
Requires: autoconf, automake, sed, tar, findutils
e4ab46
Requires(post):  /sbin/install-info
e4ab46
Requires(preun): /sbin/install-info
e4ab46
e4ab46
%if ! 0%{?_module_build}
e4ab46
BuildRequires: texinfo
e4ab46
%endif
e4ab46
BuildRequires: autoconf, automake
e4ab46
BuildRequires: help2man
e4ab46
e4ab46
# make sure we can configure all supported langs
e4ab46
BuildRequires: libstdc++-devel, gcc-gfortran
e4ab46
e4ab46
e4ab46
%description
e4ab46
GNU Libtool is a set of shell scripts which automatically configure UNIX and
e4ab46
UNIX-like systems to generically build shared libraries. Libtool provides a
e4ab46
consistent, portable interface which simplifies the process of using shared
e4ab46
libraries.
e4ab46
e4ab46
If you are developing programs which will use shared libraries, but do not use
e4ab46
the rest of the GNU Autotools (such as GNU Autoconf and GNU Automake), you
e4ab46
should install the libtool package.
e4ab46
e4ab46
The libtool package also includes all files needed to integrate the GNU
e4ab46
Portable Library Tool (libtool) and the GNU Libtool Dynamic Module Loader
e4ab46
(ltdl) into a package built using the GNU Autotools (including GNU Autoconf
e4ab46
and GNU Automake).
e4ab46
e4ab46
e4ab46
%package ltdl
e4ab46
Summary:  Runtime libraries for GNU Libtool Dynamic Module Loader
e4ab46
Group:    System Environment/Libraries
e4ab46
Provides: %{name}-libs = %{version}-%{release}
e4ab46
License:  LGPLv2+
e4ab46
Requires(post):  /sbin/ldconfig
e4ab46
Requires(postun):  /sbin/ldconfig
e4ab46
e4ab46
e4ab46
%description ltdl
e4ab46
The libtool-ltdl package contains the GNU Libtool Dynamic Module Loader, a
e4ab46
library that provides a consistent, portable interface which simplifies the
e4ab46
process of using dynamic modules.
e4ab46
e4ab46
These runtime libraries are needed by programs that link directly to the
e4ab46
system-installed ltdl libraries; they are not needed by software built using
e4ab46
the rest of the GNU Autotools (including GNU Autoconf and GNU Automake).
e4ab46
e4ab46
e4ab46
%package ltdl-devel
e4ab46
Summary: Tools needed for development using the GNU Libtool Dynamic Module Loader
e4ab46
Group:    Development/Libraries
e4ab46
Requires: automake = %automake_version
e4ab46
Requires: %{name}-ltdl = %{version}-%{release}
e4ab46
License:  LGPLv2+
e4ab46
e4ab46
e4ab46
%description ltdl-devel
e4ab46
Static libraries and header files for development with ltdl.
e4ab46
e4ab46
e4ab46
%prep
e4ab46
%setup -n libtool-%{version} -q
e4ab46
%patch0 -p1 -b .rpath
e4ab46
%patch1 -p1 -b .test
e4ab46
%patch2 -p1 -b .gcc-specs
e4ab46
%patch3 -p1 -b .ltdl-hardening
e4ab46
%if ! 0%{?_module_build}
e4ab46
%patch100 -p1 -b .nodocs
e4ab46
%endif
e4ab46
e4ab46
autoreconf -v
e4ab46
e4ab46
%build
e4ab46
export CC=gcc
e4ab46
export CXX=g++
e4ab46
export F77=gfortran
e4ab46
export CFLAGS="$RPM_OPT_FLAGS -fPIC"
e4ab46
e4ab46
%configure  --prefix=%{_prefix}                 \
e4ab46
            --exec-prefix=%{_prefix}            \
e4ab46
            --bindir=%{_bindir}                 \
e4ab46
            --sbindir=%{_sbindir}               \
e4ab46
            --sysconfdir=%{_sysconfdir}         \
e4ab46
            --datadir=%{_datadir}               \
e4ab46
            --includedir=%{_includedir}         \
e4ab46
            --libdir=%{_libdir}                 \
e4ab46
            --libexecdir=%{_libexecdir}         \
e4ab46
            --localstatedir=%{_localstatedir}   \
e4ab46
            --mandir=%{_mandir}                 \
e4ab46
            --infodir=%{_infodir}
e4ab46
e4ab46
make %{?_smp_mflags} \
e4ab46
    CUSTOM_LTDL_CFLAGS="%_hardening_cflags" \
e4ab46
    CUSTOM_LTDL_LDFLAGS="%_hardening_ldflags"
e4ab46
e4ab46
e4ab46
%check
e4ab46
%if %{with check}
e4ab46
make check VERBOSE=yes || { cat testsuite.log ; false ; }
e4ab46
%endif
e4ab46
e4ab46
e4ab46
%install
e4ab46
make install DESTDIR=%{buildroot}
e4ab46
# info's TOP dir (by default owned by info)
e4ab46
rm -f %{buildroot}%{_infodir}/dir
e4ab46
# *.la *.a files generated by libtool shouldn't be distributed (and the
e4ab46
# `./configure --disable-static' breaks testsuite)
e4ab46
rm -f %{buildroot}%{_libdir}/libltdl.{a,la}
e4ab46
e4ab46
e4ab46
%post
e4ab46
/sbin/install-info %{_infodir}/libtool.info.gz %{_infodir}/dir || :
e4ab46
e4ab46
e4ab46
%post ltdl -p /sbin/ldconfig
e4ab46
e4ab46
e4ab46
%preun
e4ab46
if [ "$1" = 0 ]; then
e4ab46
   /sbin/install-info --delete %{_infodir}/libtool.info.gz %{_infodir}/dir || :
e4ab46
fi
e4ab46
e4ab46
e4ab46
%postun ltdl -p /sbin/ldconfig
e4ab46
e4ab46
e4ab46
%files
e4ab46
%license COPYING
e4ab46
%doc AUTHORS NEWS README THANKS TODO ChangeLog*
e4ab46
%{_infodir}/libtool.info*.gz
e4ab46
%{_mandir}/man1/libtool.1*
e4ab46
%{_mandir}/man1/libtoolize.1*
e4ab46
%{_bindir}/libtool
e4ab46
%{_bindir}/libtoolize
e4ab46
%{_datadir}/aclocal/*.m4
e4ab46
%dir %{_datadir}/libtool
e4ab46
%{_datadir}/libtool/build-aux
e4ab46
e4ab46
e4ab46
%files ltdl
e4ab46
%license libltdl/COPYING.LIB
e4ab46
%{_libdir}/libltdl.so.*
e4ab46
e4ab46
e4ab46
%files ltdl-devel
e4ab46
%license libltdl/COPYING.LIB
e4ab46
%doc libltdl/README
e4ab46
%{_datadir}/libtool
e4ab46
%exclude %{_datadir}/libtool/build-aux
e4ab46
%{_includedir}/ltdl.h
e4ab46
%{_includedir}/libltdl
e4ab46
# .so files without version must be in -devel subpackage
e4ab46
%{_libdir}/libltdl.so
e4ab46
e4ab46
e4ab46
%changelog
e4ab46
* Fri May 18 2018 Pavel Raiskup <praiskup@redhat.com> - 2.4.6-25
e4ab46
- bump for automake 1.16
e4ab46
e4ab46
* Fri Apr 20 2018 Pavel Raiskup <praiskup@redhat.com> - 2.4.6-24
e4ab46
- harden libltdl.so (rhbz#1548751)
e4ab46
e4ab46
* Mon Mar 26 2018 Pavel Raiskup <praiskup@redhat.com> - 2.4.6-23
e4ab46
- bake in versioned requirement on automake (rhbz#1193591)
e4ab46
- fix testsuite FTBFS against automake 1.16.1
e4ab46
- bypass -specs=* to gcc (rhbz#985592)
e4ab46
e4ab46
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.6-22
e4ab46
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
e4ab46
e4ab46
* Mon Jan 29 2018 Jakub Jelinek <jakub@redhat.com> - 2.4.6-21
e4ab46
- bump: for gcc 8.*
e4ab46
e4ab46
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.6-20
e4ab46
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
e4ab46
e4ab46
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.6-19
e4ab46
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
e4ab46
e4ab46
* Fri Apr 21 2017 Karsten Hopp <karsten@redhat.com> - 2.4.6-18
e4ab46
- use new _module_build macro to limit dependencies for Modularity
e4ab46
e4ab46
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.6-17
e4ab46
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
e4ab46
e4ab46
* Thu Feb 02 2017 Pavel Raiskup <praiskup@redhat.com> - 2.4.6-16
e4ab46
- use %%license (rhbz#1418518)
e4ab46
e4ab46
* Fri Jan 27 2017 Jakub Jelinek <jakub@redhat.com> - 2.4.6-15
e4ab46
- bump: for gcc 7.*
e4ab46
- require gcc(major) = 7 rather than gcc = 7.0.1
e4ab46
e4ab46
* Tue Jan 03 2017 Pavel Raiskup <praiskup@redhat.com> - 2.4.6-14
e4ab46
- remove duplicate Requires: entry
e4ab46
- use bcond_without instead of PostgreSQL-packaging 'runselftest'
e4ab46
e4ab46
* Thu Dec 22 2016 Pavel Raiskup <praiskup@redhat.com> - 2.4.6-13
e4ab46
- bump: for gcc 6.3.1
e4ab46
e4ab46
* Fri Sep 02 2016 Pavel Raiskup <praiskup@redhat.com> - 2.4.6-12
e4ab46
- bump: for gcc 6.2.1
e4ab46
e4ab46
* Thu Apr 28 2016 Igor Gnatenko <ignatenko@redhat.com> - 2.4.6-11
e4ab46
- Rebuilt for gcc 6.1.1
e4ab46
e4ab46
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.6-10
e4ab46
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
e4ab46
e4ab46
* Thu Jan 28 2016 Jakub Jelinek <jakub@redhat.com> - 2.4.6-9
e4ab46
- rebuilt for gcc 6.0.0
e4ab46
e4ab46
* Tue Dec 08 2015 Pavel Raiskup <praiskup@redhat.com> - 2.4.6-8
e4ab46
- disable hardening (#1289759)
e4ab46
e4ab46
* Tue Dec 08 2015 Kalev Lember <klember@redhat.com> - 2.4.6-7
e4ab46
- Rebuilt for gcc 5.3.1
e4ab46
e4ab46
* Thu Nov 5 2015 Orion Poplawski <orion@cora.nwra.com> - 2.4.6-6
e4ab46
- Rebuild for gcc 5.2.1
e4ab46
e4ab46
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.6-5
e4ab46
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
e4ab46
e4ab46
* Sat Apr 25 2015 Pavel Raiskup <praiskup@redhat.com> - 2.4.6-4
e4ab46
- don't hack the hardening flag into pre-built libtool
e4ab46
e4ab46
* Thu Apr 23 2015 Kalev Lember <kalevlember@gmail.com> - 2.4.6-3
e4ab46
- rebuilt for gcc 5.1.1
e4ab46
e4ab46
* Tue Apr 14 2015 Kalev Lember <kalevlember@gmail.com> - 2.4.6-2
e4ab46
- rebuilt for gcc 5.0.1
e4ab46
e4ab46
* Tue Feb 17 2015 Pavel Raiskup <praiskup@redhat.com> - 2.4.6-1
e4ab46
- rebase to most recent upstream release 2.4.6 (#1159497)
e4ab46
e4ab46
* Fri Feb 06 2015 Jakub Jelinek <jakub@redhat.com> - 2.4.2-32
e4ab46
- rebuilt for gcc 5.0.0
e4ab46
e4ab46
* Sun Nov 02 2014 Jakub Jelinek <jakub@redhat.com> - 2.4.2-31
e4ab46
- rebuilt for gcc 4.9.2
e4ab46
e4ab46
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.2-30
e4ab46
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
e4ab46
e4ab46
* Sat Jul 19 2014 Kalev Lember <kalevlember@gmail.com> - 2.4.2-29
e4ab46
- Rebuild once more for gcc 4.9.1
e4ab46
e4ab46
* Fri Jul 18 2014 Peter Robinson <pbrobinson@fedoraproject.org> 2.4.2-28
e4ab46
- Bump again for gcc 4.9.1 in F-21
e4ab46
e4ab46
* Thu Jul 17 2014 Pavel Raiskup <praiskup@redhat.com> - 2.4.2-27
e4ab46
- rebuild for gcc 4.9.1
e4ab46
e4ab46
* Mon Jun 09 2014 Pavel Raiskup <praiskup@redhat.com> - 2.4.2-26
e4ab46
- gcc-java removed from Fedora completely (#1106080)
e4ab46
- spec cleanup and implement RPM/SRPM hack (#429880)
e4ab46
e4ab46
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.2-25
e4ab46
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
e4ab46
e4ab46
* Thu Apr 10 2014 Jakub Jelinek <jakub@redhat.com> - 2.4.2-24
e4ab46
- rebuilt for gcc 4.9.0
e4ab46
e4ab46
* Tue Jan 07 2014 Pavel Raiskup <praiskup@redhat.com> - 2.4.2-23
e4ab46
- require findutils (minimal installations) (#1047084)
e4ab46
e4ab46
* Wed Oct 23 2013 Pavel Raiskup <praiskup@redhat.com> - 2.4.2-22
e4ab46
- fix powerpcle patch to reflect what is really in upstream
e4ab46
e4ab46
* Thu Oct 17 2013 Jakub Jelinek <jakub@redhat.com> - 2.4.2-21
e4ab46
- rebuilt for gcc 4.8.2
e4ab46
e4ab46
* Tue Oct 15 2013 Pavel Raiskup <praiskup@redhat.com> - 2.4.2-20
e4ab46
- backport support for powerpc*le-linux to libtool.m4
e4ab46
e4ab46
* Thu Oct 10 2013 Pavel Raiskup <praiskup@redhat.com> - 2.4.2-19
e4ab46
- rebuild once again for new config.{sub,guess} in redhat-rpm-config
e4ab46
e4ab46
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.2-18
e4ab46
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
e4ab46
e4ab46
* Wed Jul 10 2013 Pavel Raiskup <praiskup@redhat.com> - 2.4.2-17
e4ab46
- version bump
e4ab46
e4ab46
* Tue Jun 04 2013 Jakub Jelinek <jakub@redhat.com> - 2.4.2-16
e4ab46
- rebuilt for gcc 4.8.1
e4ab46
e4ab46
* Tue May 07 2013 Pavel Raiskup <praiskup@redhat.com> - 2.4.2-15
e4ab46
- revert fix for #636045, thanks to Paolo Bonzini
e4ab46
e4ab46
* Fri Apr 26 2013 Pavel Raiskup <praiskup@redhat.com> - 2.4.2-14
e4ab46
- allow root to copy files into NFS in libtoolize (#740079)
e4ab46
- pre-filter sed's input by dd (#636045)
e4ab46
e4ab46
* Thu Mar 14 2013 Pavel Raiskup <praiskup@redhat.com> - 2.4.2-13
e4ab46
- do not BR gcc-java in RHEL (by dmach)
e4ab46
e4ab46
* Thu Jan 24 2013 Jakub Jelinek <jakub@redhat.com> - 2.4.2-12
e4ab46
- rebuilt for gcc 4.8.0
e4ab46
e4ab46
* Thu Dec 06 2012 Pavel Raiskup <praiskup@redhat.com> - 2.4.2-11
e4ab46
- remove specific version requirements on automake/autoconf
e4ab46
e4ab46
* Thu Oct 25 2012 Pavel Raiskup <praiskup@redhat.com> - 2.4.2-10
e4ab46
- temporarily disable the 'gcj' tests (#869578) -- this is just to (1) allow
e4ab46
  build under f18+ and RHEL-7.0 and (2) don't through out upstream testsuite.
e4ab46
  Added patch must be removed once the 'ecj' utility is fixed
e4ab46
- libtool-ltdl shouldn't own /usr/share/libtool/ directory
e4ab46
- move the .so file without version back to devel package (sorry for that)
e4ab46
e4ab46
* Mon Oct 22 2012 Pavel Raiskup <praiskup@redhat.com> - 2.4.2-9
e4ab46
- fix fedora-review warnings: s/RPM_BUILD_ROOT/buildroot/, remove trailing
e4ab46
  white-spaces, move libltdl.so to ltdl sub-package, remove unnecessary BR
e4ab46
- remove unnecessary newlines
e4ab46
- fix the BuildRequire ~> Require only (#79467 related)
e4ab46
- fix weird build circumstances (don't call ./bootstrap, don't call autoconf
e4ab46
  manually, do not touch configure script)
e4ab46
- remove 'tee' invocation for copying testsuite output (the file
e4ab46
  'test-suite.log' is good enough)
e4ab46
e4ab46
* Thu Oct 04 2012 Pavel Raiskup <praiskup@redhat.com> - 2.4.2-8
e4ab46
- make the libtool dependant on tar (#794675)
e4ab46
e4ab46
* Fri Sep 21 2012 Dan Horák <dan[at]danny.cz> - 2.4.2-7
e4ab46
- rebuild for gcc 4.7.2
e4ab46
e4ab46
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.2-6
e4ab46
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e4ab46
e4ab46
* Sun Jul 15 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 2.4.2-5
e4ab46
- Rebuild
e4ab46
e4ab46
* Fri Jun 29 2012 Richard W.M. Jones <rjones@redhat.com> - 2.4.2-4
e4ab46
- Rebuild for gcc 4.7.1 which just entered Rawhide.
e4ab46
e4ab46
* Thu Jan  5 2012 Mamoru Tasaka <mtasaka@fedoraproject.org> - 2.4.2-3
e4ab46
- really rebuild for gcc 4.7.0
e4ab46
e4ab46
* Tue Jan  3 2012 Jakub Jelinek <jakub@redhat.com> 2.4.2-2
e4ab46
- rebuilt for gcc 4.7.0
e4ab46
e4ab46
* Fri Dec  2 2011 Tom Callaway <spot@fedoraproject.org> 2.4.2-1
e4ab46
- update to 2.4.2
e4ab46
e4ab46
* Thu Oct 27 2011 Jakub Jelinek <jakub@redhat.com> 2.4-7
e4ab46
- rebuilt for gcc 4.6.2
e4ab46
e4ab46
* Tue Jun 28 2011 Peter Robinson <pbrobinson@gmail.com> - 2.4-6
e4ab46
- actually update the hardwired gcc version
e4ab46
e4ab46
* Tue Jun 28 2011 Peter Robinson <pbrobinson@gmail.com> - 2.4-5
e4ab46
- Rebuild for gcc 4.6.1
e4ab46
e4ab46
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4-4
e4ab46
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
e4ab46
e4ab46
* Sat Jan 22 2011 Christopher Aillon <caillon@redhat.com> 2.4-3
e4ab46
- rebuilt for gcc 4.6.0
e4ab46
e4ab46
* Mon Dec 06 2010 Adam Jackson <ajax@redhat.com> 2.4-2
e4ab46
- rebuilt for gcc 4.5.1
e4ab46
e4ab46
* Mon Dec 06 2010 Karsten Hopp <karsten@redhat.com> 2.4-1
e4ab46
- update to libtool-2.4
e4ab46
e4ab46
* Wed Jul  7 2010 Jakub Jelinek <jakub@redhat.com> 2.2.10-2
e4ab46
- rebuilt for gcc 4.5.0
e4ab46
e4ab46
* Thu Jun 24 2010 Karsten Hopp <karsten@redhat.com> 2.2.10-1
e4ab46
- update to libtool-2.2.10
e4ab46
e4ab46
* Sat May  1 2010 Jakub Jelinek <jakub@redhat.com> 2.2.6-20
e4ab46
- rebuilt for gcc 4.4.4
e4ab46
e4ab46
* Mon Apr 12 2010 Karsten Hopp <karsten@redhat.com> 2.2.6-19
e4ab46
- enable selfcheck
e4ab46
- convert changelog files to utf8 (#226050)
e4ab46
e4ab46
* Thu Jan 21 2010 Jakub Jelinek <jakub@redhat.com> 2.2.6-18
e4ab46
- rebuilt for gcc 4.4.3
e4ab46
e4ab46
* Wed Dec 02 2009 Karsten Hopp <karsten@redhat.com> 2.2.6-17
e4ab46
- fix directory name used in libtool tarball
e4ab46
e4ab46
* Wed Dec 02 2009 Karsten Hopp <karsten@redhat.com> 2.2.6-16
e4ab46
- make sure that NVR is higher than previous version
e4ab46
e4ab46
* Wed Dec 02 2009 Karsten Hopp <karsten@redhat.com> 2.2.6b-2
e4ab46
- fix gcc version
e4ab46
e4ab46
* Tue Dec 01 2009 Karsten Hopp <karsten@redhat.com> 2.2.6b-1
e4ab46
- update to 2.2.6b, fixes CVE-2009-3736:
e4ab46
  libltdl may load and execute code from a library in the current directory
e4ab46
e4ab46
* Wed Aug 12 2009 Ville Skyttä <ville.skytta@iki.fi> - 2.2.6-14
e4ab46
- Use lzma compressed upstream tarball.
e4ab46
e4ab46
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.6-13
e4ab46
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
e4ab46
e4ab46
* Wed Jul 22 2009 Matthias Clasen <mclasen@redhat.com> - 2.2.6-12
e4ab46
- Rebuild for gcc 4.4.1
e4ab46
e4ab46
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.6-11
e4ab46
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
e4ab46
e4ab46
* Wed Feb 18 2009 Karsten Hopp <karsten@redhat.com> 2.2.6-10
e4ab46
- remove /lib64 and /usr/lib64 rpath
e4ab46
e4ab46
* Fri Feb  6 2009 Jakub Jelinek <jakub@redhat.com> 2.2.6-9
e4ab46
- rebuilt again for gcc-4.4.0
e4ab46
e4ab46
* Wed Feb 04 2009 Karsten Hopp <karsten@redhat.com> 2.2.6-8
e4ab46
- libtool-ltdl owns /usr/share/libtool, but not the config files
e4ab46
  (#484088)
e4ab46
e4ab46
* Wed Feb  4 2009 Jakub Jelinek <jakub@redhat.com> 2.2.6-7
e4ab46
- rebuilt for gcc-4.4.0
e4ab46
e4ab46
* Wed Jan 28 2009 Karsten Hopp <karsten@redhat.com> 2.2.6-6
e4ab46
- libtool-ltdl now owns /usr/share/libtool (#474672)
e4ab46
e4ab46
* Sat Dec  6 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> 2.2.6-5
e4ab46
- Own /usr/include/libltdl (#475004)
e4ab46
e4ab46
* Wed Dec  3 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> 2.2.6-4
e4ab46
- Well. THAT was pointless...
e4ab46
e4ab46
* Wed Dec  3 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> 2.2.6-3
e4ab46
- Hopefully fix all the build errors we've been seeing (#474330)
e4ab46
e4ab46
* Wed Dec 03 2008 Karsten Hopp <karsten@redhat.com> 2.2.6-2
e4ab46
- add Requires: sed  (Ignacio Vazquez-Abrams)
e4ab46
e4ab46
* Thu Nov 13 2008 Karsten Hopp <karsten@redhat.com> 2.2.6-1
e4ab46
- update to 2.2.6a
e4ab46
e4ab46
* Fri Aug 29 2008 Dennis Gilmore <dennis@ausil.us> 1.5.26-4
e4ab46
- rebuild for gcc-4.3.2
e4ab46
e4ab46
* Thu Aug  7 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.5.26-3
e4ab46
- fix license tag
e4ab46
e4ab46
* Mon Jun 09 2008 Dennis Gilmore <dennis@ausil.us> 1.5.26-2
e4ab46
- build against gcc 4.3.1
e4ab46
e4ab46
* Tue May 20 2008 Stepan Kasal <skasal@redhat.com> 1.5.26-1
e4ab46
- new upstream version, requires autoconf >= 2.58
e4ab46
e4ab46
* Wed Jan 30 2008 Bill Nottingham <notting@redhat.com> 1.5.24-6
e4ab46
- rebuild for new gcc
e4ab46
e4ab46
* Wed Jan 23 2008 Karsten Hopp <karsten@redhat.com> 1.5.24-5
e4ab46
- add missing define
e4ab46
e4ab46
* Wed Jan 23 2008 Karsten Hopp <karsten@redhat.com> 1.5.24-4
e4ab46
- require specific gcc version as that path is hardcoded in libtool
e4ab46
  (#429880)
e4ab46
e4ab46
* Wed Aug 29 2007 Karsten Hopp <karsten@redhat.com> 1.5.24-3
e4ab46
- fix license tag
e4ab46
e4ab46
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 1.5.24-2
e4ab46
- Rebuild for selinux ppc32 issue.
e4ab46
e4ab46
* Tue Jul 24 2007 Karsten Hopp <karsten@redhat.com> 1.5.24-1
e4ab46
- update to libtool 1.5.24
e4ab46
e4ab46
* Thu Apr 05 2007 Karsten Hopp <karsten@redhat.com> 1.5.22-11
e4ab46
- use ./configure so that config.{sub,guess} will not be replaced with ancient
e4ab46
  version of those files (#234778)
e4ab46
e4ab46
* Wed Mar 14 2007 Karsten Hopp <karsten@redhat.com> 1.5.22-10
e4ab46
- add disttag (#232204)
e4ab46
e4ab46
* Wed Feb 21 2007 Karsten Hopp <karsten@redhat.com> 1.5.22-10
e4ab46
- fix libtool-ltdl post/postun requirements
e4ab46
e4ab46
* Thu Feb 08 2007 Karsten Hopp <karsten@redhat.com> 1.5.22-9
e4ab46
- fix ltdl file open (#225116)
e4ab46
- fix lt_unset usage (#227454)
e4ab46
- spec file cleanups for merge review
e4ab46
e4ab46
* Mon Jan 22 2007 Karsten Hopp <karsten@redhat.com> 1.5.22-8
e4ab46
- don't abort (un)install scriptlets when _excludedocs is set (#223708)
e4ab46
e4ab46
* Thu Dec 07 2006 Karsten Hopp <karsten@redhat.com> 1.5.22-7
e4ab46
- update config.guess, config.sub with newer files from automake-1.10
e4ab46
- skip over lines in /etc/ld.so.conf.d/* which don't look like absolute paths
e4ab46
  (p.e. files from kernel-xen). This avoids having unwanted relative paths in
e4ab46
  lib_search_path
e4ab46
e4ab46
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.5.22-6.1
e4ab46
- rebuild
e4ab46
e4ab46
* Thu Jun 29 2006 Karsten Hopp <karsten@redhat.de> 1.5.22-6
e4ab46
- detect gcc path at runtime instead of requiring one specific version
e4ab46
e4ab46
* Thu Jun 29 2006 Karsten Hopp <karsten@redhat.de> 1.5.22-5
e4ab46
- miscellaneous upstream fixes
e4ab46
e4ab46
* Tue Jun 06 2006 Karsten Hopp <karsten@redhat.de> 1.5.22-4
e4ab46
- don't warn when /etc/ld.so.conf.d/*.conf doesn't exist (p.e. in mock)
e4ab46
e4ab46
* Fri May 26 2006 Jakub Jelinek <jakub@redhat.com> 1.5.22-3
e4ab46
- rebuilt with GCC 4.1.0
e4ab46
e4ab46
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.5.22-2.2
e4ab46
- bump again for double-long bug on ppc(64)
e4ab46
e4ab46
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.5.22-2.1
e4ab46
- rebuilt for new gcc4.1 snapshot and glibc changes
e4ab46
e4ab46
* Mon Feb 06 2006 Karsten Hopp <karsten@redhat.de> 1.5.22-2
e4ab46
- libtool-ltdl-devel is LGPL (#168075)
e4ab46
e4ab46
* Tue Dec 20 2005 Karsten Hopp <karsten@redhat.de> 1.5.22-1
e4ab46
- update to 1.5.22, most prominent fixes are:
e4ab46
  - Fix 1.5 regression that caused linking a program `-static' to also
e4ab46
    link statically against installed libtool libraries, contrary to
e4ab46
    documented (and actual 1.4.x) behavior.
e4ab46
  - Fix silent failure of `libtoolize --ltdl' if libltdl files not present.
e4ab46
e4ab46
* Wed Nov 30 2005 Warren Togami <wtogami@redhat.com> 1.5.20-5
e4ab46
- rebuilt with GCC 4.1.0
e4ab46
e4ab46
* Thu Sep 29 2005 Jakub Jelinek <jakub@redhat.com> 1.5.20-4
e4ab46
- rebuilt with GCC 4.0.2
e4ab46
e4ab46
* Wed Sep 14 2005 Karsten Hopp <karsten@redhat.de> 1.5.20-3
e4ab46
- rebuilt
e4ab46
e4ab46
* Mon Sep 12 2005 Karsten Hopp <karsten@redhat.de> 1.5.20-2
e4ab46
- add ltdl license, minor spec-file cleanups (#168075, Ville Skyttä)
e4ab46
e4ab46
* Fri Sep 09 2005 Karsten Hopp <karsten@redhat.de> 1.5.20-1
e4ab46
- update
e4ab46
e4ab46
* Thu Sep 08 2005 Florian La Roche <laroche@redhat.com>
e4ab46
- add version-release to the Provides: and fix our own
e4ab46
  Requires: line to the current naming scheme
e4ab46
e4ab46
* Sat Jul  9 2005 Jakub Jelinek <jakub@redhat.com> 1.5.18-3
e4ab46
- rebuilt with GCC 4.0.1.
e4ab46
e4ab46
* Tue May 17 2005 Alexandre Oliva <aoliva@redhat.com> 1.5.18-2
e4ab46
- Update patch file.
e4ab46
e4ab46
* Tue May 17 2005 Alexandre Oliva <aoliva@redhat.com> 1.5.18-1
e4ab46
- 1.5.18.  Removed .multilib2 suffix.
e4ab46
e4ab46
* Tue Apr 26 2005 Alexandre Oliva <aoliva@redhat.com> 1.5.16.multilib2-1
e4ab46
- 1.5.16 fixes #132435.
e4ab46
e4ab46
* Wed Mar 16 2005 Elliot Lee <sopwith@redhat.com>
e4ab46
- rebuilt
e4ab46
e4ab46
* Tue Mar  1 2005 Alexandre Oliva <aoliva@redhat.com> 1.5.14.multilib2-5
e4ab46
- use gfortran instead of g77.
e4ab46
- rebuild with GCC 4.
e4ab46
e4ab46
* Tue Feb 15 2005 Joe Orton <jorton@redhat.com> 1.5.14.multilib2-4
e4ab46
- revert to the old multilib patch (#138742)
e4ab46
e4ab46
* Sun Feb 13 2005 Florian La Roche <laroche@redhat.com>
e4ab46
- 1.5.14 bugfix release
e4ab46
e4ab46
* Sun Feb  6 2005 Daniel Reed <djr@redhat.com> 1.5.12.multilib2-3.4.3
e4ab46
- update to the 1.5.12 bugfix release
e4ab46
  - Makes use of $datarootdir, which is necessary for Autoconf >= 2.60.
e4ab46
  - Correctly skip hppa, x86_64, and s390* in tests/demo-nopic.test.
e4ab46
  - Interpret `include' statements in toplevel ld.so.conf file.
e4ab46
  - While "parsing" /etc/ld.so.conf, skip comments.
e4ab46
- add dependency on gcc version; /usr/bin/libtool hardcodes paths into gcc's internal directories
e4ab46
- replace "libtool-libs" with "libtool-ltdl" and "libtool-ltdl-devel"
e4ab46
e4ab46
* Tue Oct 26 2004 Daniel Reed <djr@redhat.com> 1.5.10-1
e4ab46
- update to the 1.5.10 bugfix release
e4ab46
  - obsoletes libtool-1.4-nonneg.patch
e4ab46
  - obsoletes libtool-1.5-libtool.m4-x86_64.patch
e4ab46
  - obsoletes libtool-1.4.2-multilib.patch
e4ab46
  - obsoletes libtool-1.4.2-demo.patch
e4ab46
  - obsoletes libtool-1.5-testfailure.patch
e4ab46
e4ab46
* Tue Jul  6 2004 Jens Petersen <petersen@redhat.com> - 1.5.6-4
e4ab46
- improve buildrequires and prereqs
e4ab46
- buildrequire texinfo (Dawid Gajownik, 126950)
e4ab46
e4ab46
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
e4ab46
- rebuilt
e4ab46
e4ab46
* Thu May 13 2004 Thomas Woerner <twoerner@redhat.com> - 1.5.6-2
e4ab46
- compile libltdl.a PIC
e4ab46
e4ab46
* Mon Apr 12 2004 Jens Petersen <petersen@redhat.com> - 1.5.6-1
e4ab46
- update to 1.5.6 bugfix release
e4ab46
e4ab46
* Sun Apr  4 2004 Jens Petersen <petersen@redhat.com> - 1.5.4-1
e4ab46
- 1.5.4 bugfix release
e4ab46
- improve libtool-1.4.2-multilib.patch (Albert Chin) and only apply to
e4ab46
  libtool.m4
e4ab46
- use bootstrap instead of autoreconf to update configuration
e4ab46
- update libtool-1.4.3-ltmain-SED.patch to libtool-1.5.4-ltmain-SED.patch
e4ab46
e4ab46
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
e4ab46
- rebuilt
e4ab46
e4ab46
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
e4ab46
- rebuilt
e4ab46
e4ab46
* Mon Jan 26 2004 Jens Petersen <petersen@redhat.com> - 1.5.2-1
e4ab46
- update to 1.5.2 bugfix release
e4ab46
- update libtool-1.5-libtool.m4-x86_64.patch
e4ab46
- nolonger need libtool-1.5-mktemp.patch, libtool-1.5-expsym-linux.patch,
e4ab46
  libtool-1.5-readonlysym.patch, libtool-1.5-relink-libdir-order-91110.patch,
e4ab46
  libtool-1.5-AC_PROG_LD_GNU-quote-v-97608.patch and libtool-1.5-nostdlib.patch
e4ab46
e4ab46
* Tue Oct 28 2003 Jens Petersen <petersen@redhat.com> - 1.5-8
e4ab46
- update libtool-1.4.2-multilib.patch to also deal with powerpc64 (#103316)
e4ab46
  [Joe Orton]
e4ab46
e4ab46
* Sun Oct 26 2003 Florian La Roche <Florian.LaRoche@redhat.de>
e4ab46
- rebuild again, Jakub has done a new compiler version number
e4ab46
e4ab46
* Thu Oct 02 2003 Florian La Roche <Florian.LaRoche@redhat.de>
e4ab46
- rebuild
e4ab46
e4ab46
* Thu Jul 17 2003 Jens Petersen <petersen@redhat.com> - 1.5-5
e4ab46
- bring back libtool-1.4.2-demo.patch to disable nopic tests on amd64
e4ab46
  and s390x again
e4ab46
e4ab46
* Tue Jul 15 2003 Owen Taylor <otaylor@redhat.com>
e4ab46
- Fix misapplied chunk for expsym-linux patch
e4ab46
e4ab46
* Tue Jul  8 2003 Jens Petersen <petersen@redhat.com> - 1.5-4
e4ab46
- remove the quotes around LD in AC_PROG_LD_GNU (#97608)
e4ab46
  [reported by twaugh]
e4ab46
- use -nostdlib also when linking with g++ and non-GNU ld in
e4ab46
  _LT_AC_LANG_CXX_CONFIG [reported by fnasser, patch by aoliva]
e4ab46
- use %%configure with CC and CXX set
e4ab46
e4ab46
* Thu Jun 12 2003 Jens Petersen <petersen@redhat.com> - 1.5-3
e4ab46
- don't use %%configure since target options caused libtool to assume
e4ab46
  i386-redhat-linux-gcc instead of gcc for CC (reported by Joe Orton)
e4ab46
- add libtool-1.5-relink-libdir-order-91110.patch to fix order of lib dirs
e4ab46
  searched when relinking (#91110) [patch from Joe Orton]
e4ab46
e4ab46
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
e4ab46
- rebuilt
e4ab46
e4ab46
* Thu May  1 2003 Jens Petersen <petersen@redhat.com> - 1.5-1
e4ab46
- update to 1.5
e4ab46
- no longer override config.{guess,sub} for rpmbuild %%configure,
e4ab46
  redhat-rpm-config owns those now
e4ab46
- update and rename libtool-1.4.2-s390_x86_64.patch to
e4ab46
  libtool-1.5-libtool.m4-x86_64.patch since s390 now included
e4ab46
- buildrequire autoconf and automake, no longer automake14
e4ab46
- skip make check on s390 temporarily
e4ab46
- no longer skip demo-nopic.test on x86_64, s390 and s390x
e4ab46
- from Owen Taylor
e4ab46
  - add libtool-1.4.2-expsym-linux.patch (#55607) [from James Henstridge]
e4ab46
  - add quoting in mktemp patch
e4ab46
  - add libtool-1.5-readonlysym.patch
e4ab46
  - add libtool-1.5-testfailure.patch workaround
e4ab46
  - no longer need libtool-1.4.2-relink-58664.patch
e4ab46
e4ab46
* Sat Feb 08 2003 Florian La Roche <Florian.LaRoche@redhat.de> - 1.4.3-5
e4ab46
- add config.guess and config.sub, otherwise old versions of
e4ab46
  these files can creep into /usr/share/libtool/
e4ab46
e4ab46
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
e4ab46
- rebuilt
e4ab46
e4ab46
* Mon Jan 13 2003 Jens Petersen <petersen@redhat.com> 1.4.3-3
e4ab46
- fix mktemp to work when running mktemp fails (#76602)
e4ab46
  [reported by (Oron Peled)]
e4ab46
- remove info dir file, don't exclude it
e4ab46
- fix typo in -libs description (#79619)
e4ab46
- use buildroot instead of RPM_BUILD_ROOT
e4ab46
e4ab46
* Tue Jan 07 2003 Karsten Hopp <karsten@redhat.de> 1.4.3-2.2
e4ab46
- use lib64 on s390x, too.
e4ab46
e4ab46
* Thu Dec  5 2002 Jens Petersen <petersen@redhat.com>
e4ab46
- add comment to explain why we use an old Automake for building
e4ab46
- buildrequire automake14
e4ab46
e4ab46
* Sat Nov 23 2002 Jens Petersen <petersen@redhat.com>
e4ab46
- add --without check build option to allow disabling of "make check"
e4ab46
- exclude info dir file rather than removing
e4ab46
e4ab46
* Sat Nov 23 2002 Jens Petersen <petersen@redhat.com> 1.4.3-2
e4ab46
- define SED in ltmain.sh for historic ltconfig files
e4ab46
- define macro AUTOTOOLS to hold automake-1.4 and aclocal-1.4, and use it
e4ab46
- leave old missing file for now
e4ab46
- general spec file cleanup
e4ab46
  - don't copy install files to demo nor mess with installed ltdl files
e4ab46
  - don't need to run make in doc
e4ab46
  - force removal of info dir file
e4ab46
  - don't need to create install prefix dir
e4ab46
  - don't bother gzipping info files ourselves
e4ab46
e4ab46
* Mon Nov 18 2002 Jens Petersen <petersen@redhat.com> 1.4.3-1
e4ab46
- update to 1.4.3
e4ab46
- remove obsolete patches (test-quote, dup-deps, libtoolize-configure.ac)
e4ab46
- apply the multilib patch to just the original config files
e4ab46
- update x86_64/s390 patch and just apply to original config files
e4ab46
- use automake-1.4 in "make check" for demo-make.test to pass!
e4ab46
- remove info dir file that is not installed
e4ab46
- make autoreconf update missing
e4ab46
e4ab46
* Mon Oct 07 2002 Phil Knirsch <pknirsch@redhat.com>  1.4.2-12.2
e4ab46
- Added s390x and x64_64 support.
e4ab46
e4ab46
* Fri Oct  4 2002 Nalin Dahyabhai <nalin@redhat.com> 1.4.2-12.1
e4ab46
- rebuild
e4ab46
e4ab46
* Fri Sep 13 2002 Nalin Dahyabhai <nalin@redhat.com>
e4ab46
- patch to find the proper libdir on multilib boxes
e4ab46
e4ab46
* Mon Aug 19 2002 Jens Petersen <petersen@redhat.com> 1.4.2-12
e4ab46
- don't include demo in doc, specially now that we "make check" (#71609)
e4ab46
e4ab46
* Tue Aug 13 2002 Jens Petersen <petersen@redhat.com> 1.4.2-11
e4ab46
- don't hardcode "configure.in" in libtoolize (#70864)
e4ab46
  [reported by bastiaan@webcriminals.com]
e4ab46
- make check, but not on ia64
e4ab46
e4ab46
* Fri Jun 21 2002 Tim Powers <timp@redhat.com> 1.4.2-10
e4ab46
- automated rebuild
e4ab46
e4ab46
* Thu May 23 2002 Tim Powers <timp@redhat.com> 1.4.2-9
e4ab46
- automated rebuild
e4ab46
e4ab46
* Fri Apr 26 2002 Jens Petersen <petersen@redhat.com> 1.4.2-8
e4ab46
- add old patch from aoliva to fix relinking when installing into a buildroot
e4ab46
- backport dup-deps fix from cvs stable branch
e4ab46
e4ab46
* Wed Mar 27 2002 Jens Petersen <petersen@redhat.com> 1.4.2-7
e4ab46
- run ldconfig in postin and postun
e4ab46
e4ab46
* Thu Feb 28 2002 Jens Petersen <petersen@redhat.com> 1.4.2-6
e4ab46
- rebuild in new environment
e4ab46
e4ab46
* Tue Feb 12 2002 Jens Petersen <petersen@redhat.com> 1.4.2-5
e4ab46
- revert filemagic and archive-shared patches following cvs (#54887)
e4ab46
- don't change "&& test" to "-a" in ltmain.in
e4ab46
e4ab46
* Wed Jan 09 2002 Tim Powers <timp@redhat.com> 1.4.2-4
e4ab46
- automated rebuild
e4ab46
e4ab46
* Mon Dec  3 2001 Jens Petersen <petersen@redhat.com> 1.4.2-3
e4ab46
- test quoting patch should be on ltmain.in not ltmain.sh (#53276)
e4ab46
- use file_magic for Linux ELF (#54887)
e4ab46
- allow link against an archive when building a shared library (#54887)
e4ab46
- include ltdl.m4 in manifest (#56671)
e4ab46
e4ab46
* Wed Oct 24 2001 Jens Petersen <petersen@redhat.com> 1.4.2-2
e4ab46
- added URL to spec
e4ab46
e4ab46
* Tue Sep 18 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.4.2-1
e4ab46
- 1.4.2 - sync up with autoconf...
e4ab46
e4ab46
* Thu Jul  5 2001 Bernhard Rosenkraenzer <bero@redhat.de> 1.4-8
e4ab46
- extend s390 patch to 2 more files
e4ab46
- s/Copyright/License/
e4ab46
e4ab46
* Wed Jul 04 2001 Karsten Hopp <karsten@redhat.de>
e4ab46
- add s390 patch for deplibs_check_method=pass_all
e4ab46
e4ab46
* Tue Jun 12 2001 Florian La Roche <Florian.LaRoche@redhat.de>
e4ab46
- add patches from Tim Waugh #42724
e4ab46
e4ab46
* Mon Jun 11 2001 Florian La Roche <Florian.LaRoche@redhat.de>
e4ab46
- add patches from cvs mainline
e4ab46
e4ab46
* Thu Jun 07 2001 Florian La Roche <Florian.LaRoche@redhat.de>
e4ab46
- fix a "test" bug in ltmain.sh
e4ab46
e4ab46
* Sun Jun 03 2001 Florian La Roche <Florian.LaRoche@redhat.de>
e4ab46
- disable the post commands to modify /usr/share/doc/
e4ab46
e4ab46
* Sat May 12 2001 Owen Taylor <otaylor@redhat.com>
e4ab46
- Require automake 1.4p1
e4ab46
e4ab46
* Wed May 09 2001 Florian La Roche <Florian.LaRoche@redhat.de>
e4ab46
- update to libtool 1.4
e4ab46
- adjust or remove patches
e4ab46
e4ab46
* Thu Jul 13 2000 Elliot Lee <sopwith@redhat.com>
e4ab46
- Fix recognition of ^0[0-9]+$ as a non-negative integer.
e4ab46
e4ab46
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
e4ab46
- automatic rebuild
e4ab46
e4ab46
* Fri Jul  7 2000 Nalin Dahyabhai <nalin@redhat.com>
e4ab46
- patch to use mktemp to create the tempdir
e4ab46
- use %%configure after defining __libtoolize to /bin/true
e4ab46
e4ab46
* Mon Jul  3 2000 Matt Wilson <msw@redhat.com>
e4ab46
- subpackage libltdl into libtool-libs
e4ab46
e4ab46
* Sun Jun 18 2000 Bill Nottingham <notting@redhat.com>
e4ab46
- running libtoolize on the libtool source tree ain't right :)
e4ab46
e4ab46
* Mon Jun  5 2000 Jeff Johnson <jbj@redhat.com>
e4ab46
- FHS packaging.
e4ab46
e4ab46
* Thu Jun  1 2000 Nalin Dahyabhai <nalin@redhat.com>
e4ab46
- update to 1.3.5.
e4ab46
e4ab46
* Fri Mar  3 2000 Jeff Johnson <jbj@redhat.com>
e4ab46
- add prereqs for m4 and perl inorder to run autoconf/automake.
e4ab46
e4ab46
* Mon Feb 28 2000 Jeff Johnson <jbj@redhat.com>
e4ab46
- functional /usr/doc/libtool-*/demo by end-user %%post procedure (#9719).
e4ab46
e4ab46
* Wed Dec 22 1999 Jeff Johnson <jbj@redhat.com>
e4ab46
- update to 1.3.4.
e4ab46
e4ab46
* Mon Dec  6 1999 Jeff Johnson <jbj@redhat.com>
e4ab46
- change from noarch to per-arch in order to package libltdl.a (#7493).
e4ab46
e4ab46
* Thu Jul 15 1999 Jeff Johnson <jbj@redhat.com>
e4ab46
- update to 1.3.3.
e4ab46
e4ab46
* Mon Jun 14 1999 Jeff Johnson <jbj@redhat.com>
e4ab46
- update to 1.3.2.
e4ab46
e4ab46
* Tue May 11 1999 Jeff Johnson <jbj@redhat.com>
e4ab46
- explicitly disable per-arch libraries (#2210)
e4ab46
- undo hard links and remove zero length file (#2689)
e4ab46
e4ab46
* Sat May  1 1999 Jeff Johnson <jbj@redhat.com>
e4ab46
- update to 1.3.
e4ab46
e4ab46
* Fri Mar 26 1999 Cristian Gafton <gafton@redhat.com>
e4ab46
- disable the --cache-file passing to ltconfig; this breaks the older
e4ab46
  ltconfig scripts found around.
e4ab46
e4ab46
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
e4ab46
- auto rebuild in the new build environment (release 2)
e4ab46
e4ab46
* Fri Mar 19 1999 Jeff Johnson <jbj@redhat.com>
e4ab46
- update to 1.2f
e4ab46
e4ab46
* Tue Mar 16 1999 Cristian Gafton <gafton@redhat.com>
e4ab46
- completed arm patch
e4ab46
- added patch to make it more arm-friendly
e4ab46
- upgrade to version 1.2d
e4ab46
e4ab46
* Thu May 07 1998 Donnie Barnes <djb@redhat.com>
e4ab46
- fixed busted group
e4ab46
e4ab46
* Sat Jan 24 1998 Marc Ewing <marc@redhat.com>
e4ab46
- Update to 1.0h
e4ab46
- added install-info support
e4ab46
e4ab46
* Tue Nov 25 1997 Elliot Lee <sopwith@redhat.com>
e4ab46
- Update to 1.0f
e4ab46
- BuildRoot it
e4ab46
- Make it a noarch package