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