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