libtool-vl.spec 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613
  1. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  2. %define gcc_version 10.2.1
  3. Summary: The GNU Portable Library Tool
  4. Summary(ja): GNU ポータブルライブラリツール
  5. Name: libtool
  6. Version: 2.4.6
  7. Release: 7%{?_dist_release}
  8. Group: programming
  9. Vendor: Project Vine
  10. Distribution: Vine Linux
  11. License: GPLv2+ and LGPLv2+ and GFDL
  12. URL: http://www.gnu.org/software/libtool/
  13. Source: http://ftp.gnu.org/gnu/libtool/libtool-%{version}.tar.xz
  14. Patch0: libtool-2.4.6-rpath.patch
  15. # ~> downstream (TODO)
  16. Patch1: libtool-2.4.6-am-1.16-test.patch
  17. # ~> upstream 702a97fbb
  18. Patch2: libtool-2.4.6-specs.patch
  19. # See the rhbz#1289759 and rhbz#1214506. We disable hardening namely because
  20. # that bakes the CFLAGS/LDFLAGS into installed /bin/libtool and ltmain.sh files.
  21. # At the same time we want to have libltdl.so hardened. Downstream-only patch.
  22. %undefine _hardened_build
  23. Patch3: libtool-2.4.6-hardening.patch
  24. # rhbz#1622611, upstream 350082b6aa89f9ef603fcebbb4cf33f15a743f2f
  25. Patch4: libtool-2.4.6-fatal-handler.patch
  26. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  27. Requires(post): /sbin/install-info
  28. Requires(preun): /sbin/install-info
  29. BuildRequires: autoconf >= 2.59, automake >= 1.9.2, texinfo, help2man
  30. Requires: autoconf >= 2.58, automake >= 1.4
  31. # make sure we can configure all supported langs
  32. BuildRequires: gcc, gcc-c++, libstdc++-devel, gcc-gfortran
  33. #BuildRequires: gcc-java
  34. # /usr/bin/libtool includes paths within gcc's versioned directories
  35. # Libtool must be rebuilt whenever a new upstream gcc is built
  36. Requires: gcc = %{gcc_version}
  37. Requires: autoconf >= 2.50, automake >= 1.4p1, m4, perl
  38. Requires: libtool-ltdl = %{version}-%{release}, mktemp
  39. %description
  40. GNU Libtool is a set of shell scripts which automatically configure UNIX and
  41. UNIX-like systems to generically build shared libraries. Libtool provides a
  42. consistent, portable interface which simplifies the process of using shared
  43. libraries.
  44. If you are developing programs which will use shared libraries, but do not use
  45. the rest of the GNU Autotools (such as GNU Autoconf and GNU Automake), you
  46. should install the libtool package.
  47. The libtool package also includes all files needed to integrate the GNU
  48. Portable Library Tool (libtool) and the GNU Libtool Dynamic Module Loader
  49. (ltdl) into a package built using the GNU Autotools (including GNU Autoconf
  50. and GNU Automake).
  51. This package includes a modification from the original GNU Libtool to allow
  52. support for multi-architecture systems, such as the AMD64 Opteron and the Intel
  53. 64-bit Xeon.
  54. %description -l ja
  55. GNU Libtoolは、UNIX及びUNIXライクなアーキテクチャで共有ライブラリを汎用的
  56. にビルドするための設定を自動化するシェルスクリプトのセットです。libtoolは、
  57. 共有ライブラリを利用する工程を単純化する首尾一貫した移植可能なインターフェー
  58. スを提供します。
  59. もし、GNU Autotools (GNU Autoconf および GNU Automake) を使わずに共有ライ
  60. ブラリを利用するプログラムを開発するなら、libtool パッケージをインストール
  61. する必要があります。
  62. このパッケージの Libtool は、AMD64 や Intel EM64T などのマルチアーキテクチャ
  63. システムをサポートするために、オリジナルのGNU Libtoolから変更が施されています。
  64. %package ltdl
  65. Summary: Runtime libraries for GNU Libtool Dynamic Module Loader
  66. Summary(ja): GNU Libtool ダイナミックモジュールローダのランタイムライブラリ
  67. Group: system
  68. Provides: libtool-libs = %{version}-%{release}
  69. Obsoletes: libtool-libs < 1.5.20
  70. License: LGPL
  71. Requires(post): /sbin/ldconfig
  72. Requires(postun): /sbin/ldconfig
  73. %description ltdl
  74. The libtool-ltdl package contains the GNU Libtool Dynamic Module Loader, a
  75. library that provides a consistent, portable interface which simplifies the
  76. process of using dynamic modules.
  77. These runtime libraries are needed by programs that link directly to the
  78. system-installed ltdl libraries; they are not needed by software built using the
  79. rest of the GNU Autotools (including GNU Autoconf and GNU Automake).
  80. %description -l ja ltdl
  81. libtool-ltdl パッケージにはGNU Libtool 動的モジュールローダのランタイムライ
  82. ブラリが含まれています。GNU Libtool 動的モジュールローダは、動的モジュールを
  83. 利用する工程を単純化する首尾一貫した移植可能なインターフェースを提供します。
  84. %package ltdl-devel
  85. Summary: Tools needed for development using the GNU Libtool Dynamic Module Loader
  86. Summary(ja): GNU Libtool ダイナミックモジュールローダを使った開発に必要なファイル群
  87. Group: programming
  88. Requires: libtool-ltdl = %{version}-%{release}
  89. License: LGPL
  90. %description ltdl-devel
  91. Static libraries and header files for development with ltdl.
  92. %description -l ja ltdl-devel
  93. ltdlを使った開発に必要なスタティックライブラリおよびヘッダファイル
  94. ## to build compat32 for x86_64 architecture support
  95. %package -n compat32-%{name}-ltdl
  96. Summary: Runtime libraries for GNU Libtool Dynamic Module Loader
  97. Group: system
  98. %description -n compat32-%{name}-ltdl
  99. The libtool-ltdl package contains the GNU Libtool Dynamic Module Loader, a
  100. library that provides a consistent, portable interface which simplifies the
  101. process of using dynamic modules.
  102. %package -n compat32-%{name}-ltdl-devel
  103. Summary: Tools needed for development using the GNU Libtool Dynamic Module Loader
  104. Group: programming
  105. Requires: compat32-%{name}-ltdl = %{version}-%{release}
  106. %description -n compat32-%{name}-ltdl-devel
  107. Static libraries and header files for development with ltdl.
  108. %debug_package
  109. %prep
  110. %setup -q
  111. %patch0 -p1
  112. %patch1 -p1
  113. %patch2 -p1
  114. %patch3 -p1
  115. %patch4 -p1
  116. %build
  117. autoreconf -v
  118. export CC=gcc
  119. export CXX=g++
  120. export F77=gfortran
  121. export CFLAGS="$RPM_OPT_FLAGS -fPIC"
  122. # dumb redhat-rpm-config replaces config.{sub,guess} with ancient ones in %%configure, use ./configure instead:
  123. ./configure --prefix=%{_prefix} --exec-prefix=%{_prefix} --bindir=%{_bindir} --sbindir=%{_sbindir} --sysconfdir=%{_sysconfdir} --datadir=%{_datadir} --includedir=%{_includedir} --libdir=%{_libdir} --libexecdir=%{_libexecdir} --localstatedir=%{_localstatedir} --mandir=%{_mandir} --infodir=%{_infodir}
  124. # build not smp safe:
  125. make #%{?_smp_mflags}
  126. #check
  127. #make check VERBOSE=yes > make_check.log 2>&1 || (cat make_check.log && false)
  128. %install
  129. rm -rf %{buildroot}
  130. make install DESTDIR=$RPM_BUILD_ROOT
  131. rm -f %{buildroot}%{_infodir}/dir
  132. rm -f %{buildroot}%{_libdir}/libltdl.{a,la}
  133. %clean
  134. rm -rf %{buildroot}
  135. %post
  136. /sbin/install-info %{_infodir}/libtool.info.gz %{_infodir}/dir || :
  137. %preun
  138. if [ "$1" = 0 ]; then
  139. /sbin/install-info --delete %{_infodir}/libtool.info.gz %{_infodir}/dir || :
  140. fi
  141. %post ltdl -p /sbin/ldconfig
  142. %postun ltdl -p /sbin/ldconfig
  143. %post -n compat32-%{name}-ltdl -p /sbin/ldconfig
  144. %postun -n compat32-%{name}-ltdl -p /sbin/ldconfig
  145. %files
  146. %defattr(-,root,root)
  147. %license COPYING
  148. %doc AUTHORS NEWS README THANKS TODO ChangeLog
  149. %{_bindir}/libtool
  150. %{_bindir}/libtoolize
  151. %{_datadir}/aclocal/*.m4
  152. %{_datadir}/libtool
  153. %{_infodir}/libtool.info*.gz
  154. %{_mandir}/man1/libtool.1.gz
  155. %{_mandir}/man1/libtoolize.1.gz
  156. %files ltdl
  157. %defattr(-,root,root)
  158. %license libltdl/COPYING.LIB
  159. %doc libltdl/README
  160. %{_libdir}/libltdl.so.*
  161. %files ltdl-devel
  162. %defattr(-,root,root)
  163. %{_libdir}/libltdl.so
  164. %{_includedir}/ltdl.h
  165. %{_includedir}/libltdl/*
  166. %if %{build_compat32}
  167. ## to build compat32 for x86_64 architecture support
  168. %files -n compat32-%{name}-ltdl
  169. %defattr(-,root,root)
  170. %{_libdir}/libltdl.so.*
  171. %files -n compat32-%{name}-ltdl-devel
  172. %defattr(-,root,root)
  173. %{_libdir}/libltdl.so
  174. %endif
  175. %changelog
  176. * Tue Feb 09 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.4.6-7
  177. - rebuilt with gcc-10.2.1.
  178. * Fri Mar 20 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.4.6-6
  179. - rebuilt with gcc-9.3.1.
  180. * Sun Sep 22 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.4.6-5
  181. - rebuilt with gcc-8.3.1.
  182. * Thu Aug 29 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.4.6-4
  183. - imported Patch1-4 from rawhide.
  184. * Mon Jan 21 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.4.6-3
  185. - rebuilt with gcc-8.2.0.
  186. * Sun Jun 26 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.6-2
  187. - rebuild with gcc-5.4.0
  188. * Sat May 07 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.6-1
  189. - new upstream release
  190. - update Patch0 (libtool-2.4.6-rpath.patch)
  191. * Mon Nov 04 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.2-4
  192. - rebuild with gcc-4.8.2-1
  193. * Tue Oct 01 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.2-3
  194. - rebuild with gcc-4.8.1-2
  195. * Mon Sep 30 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.2-2
  196. - rebuild with gcc-4.8.1
  197. - add BuildRequires: help2man
  198. * Sat Dec 03 2011 NAKAMURA Kenta <kenta@vinelinux.org> 2.4.2-1
  199. - new upstream release
  200. * Mon Nov 28 2011 NAKAMURA Kenta <kenta@vinelinux.org> 2.4-2
  201. - rebuilt with gcc-4.6.2
  202. * Wed Aug 17 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4-1
  203. - new upstream release
  204. - update Patch0
  205. * Sun Mar 20 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.2.6b-2
  206. - rebuilt with gcc-4.4.5
  207. * Sat Feb 13 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.2.6b-1
  208. - new upstream release
  209. * Mon Jan 25 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.2.6a-4
  210. - rebuilt with gcc-4.4.3-1 (w/o gcc-java)
  211. * Tue May 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.6a-3
  212. - remove comment before compat32 scriptlet to avoid scriptlet failure.
  213. * Sun May 10 2009 NAKAMURA Kenta <kenta@vinelinux.org> 2.2.6a-2
  214. - removed %%if !%%{build_compat32} case condition
  215. * Wed Apr 15 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.6a-1
  216. - update to 2.2.6a
  217. - remove libltdl static library
  218. * Wed Jun 18 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.5.26-3
  219. - updated to 1.5.26, importing changes from Fedora 1.5.26-2
  220. - new versioning policy; spec in UTF-8
  221. - define gcc_version to 4.1.2 for Vine
  222. * Wed May 30 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.5.22-0vl4
  223. - rebuilt with gcc-4.1.2-0vl10 (gcc -dumpversion begets 4.1.2, not 4.1.3)
  224. * Tue May 22 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.22-0vl3
  225. - remove BuildRequires: libstdc++3-devel
  226. - add Requres: libtool-ltdl instead of libtool-libs
  227. * Sun May 06 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.5.22-0vl2
  228. - rebuilt with gcc4 (F77=gfortran now)
  229. - import Patch2 and Patch3 from FC6 1.5.22-6.1
  230. - Thu Jun 29 2006 Karsten Hopp <karsten@redhat.de> 1.5.22-6
  231. - detect gcc path at runtime instead of requiring one specific version
  232. - Thu Jun 29 2006 Karsten Hopp <karsten@redhat.de> 1.5.22-5
  233. - miscellaneous upstream fixes
  234. * Sat Sep 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.22-0vl1
  235. - new upstream release
  236. * Mon Feb 06 2006 Shu KONNO <owa@bg.wakwak.com> 1.5.20-0vl4
  237. - moved macros (_lib, gcc -m32) to /usr/lib/rpm/rpmrc or macros files
  238. - changed '%postun -p /sbin/ldconfig' to '%postun' and /sbin/ldconfig command
  239. * Thu Feb 02 2006 Shu KONNO <owa@bg.wakwak.com> 1.5.20-0vl3
  240. - added compat32-* packages for x86_64 architecture support
  241. * Mon Oct 24 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.20-0vl2
  242. - add Japanese Summaries and descriptions
  243. * Mon Oct 24 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.20-0vl1
  244. - new upstream release
  245. * Tue Aug 16 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.5.18-3vl1
  246. - updated to 1.5.18 based on Fedora package
  247. * Sun Feb 6 2005 Daniel Reed <djr@redhat.com> 1.5.12.multilib2-3.4.3
  248. - update to the 1.5.12 bugfix release
  249. - Makes use of $datarootdir, which is necessary for Autoconf >= 2.60.
  250. - Correctly skip hppa, x86_64, and s390* in tests/demo-nopic.test.
  251. - Interpret `include' statements in toplevel ld.so.conf file.
  252. - While "parsing" /etc/ld.so.conf, skip comments.
  253. - add dependency on gcc version; /usr/bin/libtool hardcodes paths into
  254. gcc's internal directories
  255. - replace "libtool-libs" with "libtool-ltdl" and "libtool-ltdl-devel"
  256. * Tue Oct 26 2004 Daniel Reed <djr@redhat.com> 1.5.10-1
  257. - update to the 1.5.10 bugfix release
  258. - obsoletes libtool-1.4-nonneg.patch
  259. - obsoletes libtool-1.5-libtool.m4-x86_64.patch
  260. - obsoletes libtool-1.4.2-multilib.patch
  261. - obsoletes libtool-1.4.2-demo.patch
  262. - obsoletes libtool-1.5-testfailure.patch
  263. * Thu May 13 2004 Thomas Woerner <twoerner@redhat.com> - 1.5.6-2
  264. - compile libltdl.a PIC
  265. * Sun Mar 20 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.5.6-0vl2
  266. - rebuild with gcc-3.3.5
  267. * Sun May 2 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.6-0vl1
  268. - new upstream release
  269. * Fri Feb 20 2004 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 1.5.2-2vl1
  270. - merged with fedora-1.5.2-2
  271. * Mon Jan 26 2004 Jens Petersen <petersen@redhat.com> - 1.5.2-1
  272. - update to 1.5.2 bugfix release
  273. - update libtool-1.5-libtool.m4-x86_64.patch
  274. - nolonger need libtool-1.5-mktemp.patch, libtool-1.5-expsym-linux.patch,
  275. libtool-1.5-readonlysym.patch, libtool-1.5-relink-libdir-order-91110.patch,
  276. libtool-1.5-AC_PROG_LD_GNU-quote-v-97608.patch and libtool-1.5-nostdlib.patch
  277. * Tue Oct 28 2003 Jens Petersen <petersen@redhat.com> - 1.5-8
  278. - update libtool-1.4.2-multilib.patch to also deal with powerpc64 (#103316)
  279. [Joe Orton]
  280. * Wed Sep 03 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5-5vl1
  281. - merged with rawhide 1.5-5
  282. * Mon Dec 09 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.4.3-2vl2
  283. - based on 1.4.3-2 from Rawhide and built for Vine Linux
  284. - added BuildPreReq: automake14
  285. * Thu Jul 17 2003 Jens Petersen <petersen@redhat.com> - 1.5-5
  286. - bring back libtool-1.4.2-demo.patch to disable nopic tests on amd64
  287. and s390x again
  288. * Tue Jul 15 2003 Owen Taylor <otaylor@redhat.com>
  289. - Fix misapplied chunk for expsym-linux patch
  290. * Tue Jul 8 2003 Jens Petersen <petersen@redhat.com> - 1.5-4
  291. - remove the quotes around LD in AC_PROG_LD_GNU (#97608)
  292. [reported by twaugh]
  293. - use -nostdlib also when linking with g++ and non-GNU ld in
  294. _LT_AC_LANG_CXX_CONFIG [reported by fnasser, patch by aoliva]
  295. - use %%configure with CC and CXX set
  296. * Thu Jun 12 2003 Jens Petersen <petersen@redhat.com> - 1.5-3
  297. - don't use %%configure since target options caused libtool to assume
  298. i386-redhat-linux-gcc instead of gcc for CC (reported by Joe Orton)
  299. - add libtool-1.5-relink-libdir-order-91110.patch to fix order of lib dirs
  300. searched when relinking (#91110) [patch from Joe Orton]
  301. * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
  302. - rebuilt
  303. * Thu May 1 2003 Jens Petersen <petersen@redhat.com> - 1.5-1
  304. - update to 1.5
  305. - no longer override config.{guess,sub} for rpmbuild %%configure,
  306. redhat-rpm-config owns those now
  307. - update and rename libtool-1.4.2-s390_x86_64.patch to
  308. libtool-1.5-libtool.m4-x86_64.patch since s390 now included
  309. - buildrequire autoconf and automake, no longer automake14
  310. - skip make check on s390 temporarily
  311. - no longer skip demo-nopic.test on x86_64, s390 and s390x
  312. - from Owen Taylor
  313. - add libtool-1.4.2-expsym-linux.patch (#55607) [from James Henstridge]
  314. - add quoting in mktemp patch
  315. - add libtool-1.5-readonlysym.patch
  316. - add libtool-1.5-testfailure.patch workaround
  317. - relink patch no longer needed
  318. * Sat Feb 08 2003 Florian La Roche <Florian.LaRoche@redhat.de> - 1.4.3-5
  319. - add config.guess and config.sub, otherwise old versions of
  320. these files can creep into /usr/share/libtool/
  321. * Wed Jan 22 2003 Tim Powers <timp@redhat.com>
  322. - rebuilt
  323. * Mon Jan 13 2003 Jens Petersen <petersen@redhat.com> 1.4.3-3
  324. - fix mktemp to work when running mktemp fails (#76602)
  325. [reported by (Oron Peled)]
  326. - remove info dir file, don't exclude it
  327. - fix typo in -libs description (#79619)
  328. - use buildroot instead of RPM_BUILD_ROOT
  329. * Tue Jan 07 2003 Karsten Hopp <karsten@redhat.de> 1.4.3-2.2
  330. - use lib64 on s390x, too.
  331. * Thu Dec 5 2002 Jens Petersen <petersen@redhat.com>
  332. - add comment to explain why we use an old Automake for building
  333. - buildrequire automake14
  334. * Sat Nov 23 2002 Jens Petersen <petersen@redhat.com>
  335. - add --without check build option to allow disabling of "make check"
  336. - exclude info dir file rather than removing
  337. * Sat Nov 23 2002 Jens Petersen <petersen@redhat.com> 1.4.3-2
  338. - define SED in ltmain.sh for historic ltconfig files
  339. - define macro AUTOTOOLS to hold automake-1.4 and aclocal-1.4, and use it
  340. - leave old missing file for now
  341. - general spec file cleanup
  342. - don't copy install files to demo nor mess with installed ltdl files
  343. - don't need to run make in doc
  344. - force removal of info dir file
  345. - don't need to create install prefix dir
  346. - don't bother gzipping info files ourselves
  347. * Mon Nov 18 2002 Jens Petersen <petersen@redhat.com> 1.4.3-1
  348. - update to 1.4.3
  349. - remove obsolete patches (test-quote, dup-deps, libtoolize-configure.ac)
  350. - apply the multilib patch to just the original config files
  351. - update x86_64/s390 patch and just apply to original config files
  352. - use automake-1.4 in "make check" for demo-make.test to pass!
  353. - remove info dir file that is not installed
  354. - make autoreconf update missing
  355. * Mon Oct 07 2002 Phil Knirsch <pknirsch@redhat.com> 1.4.2-12.2
  356. - Added s390x and x64_64 support.
  357. * Fri Oct 4 2002 Nalin Dahyabhai <nalin@redhat.com> 1.4.2-12.1
  358. - rebuild
  359. * Fri Sep 13 2002 Nalin Dahyabhai <nalin@redhat.com>
  360. - patch to find the proper libdir on multilib boxes
  361. * Mon Aug 19 2002 Jens Petersen <petersen@redhat.com> 1.4.2-12
  362. - don't include demo in doc, specially now that we "make check" (#71609)
  363. * Tue Aug 13 2002 Jens Petersen <petersen@redhat.com> 1.4.2-11
  364. - don't hardcode "configure.in" in libtoolize (#70864)
  365. [reported by bastiaan@webcriminals.com]
  366. - make check, but not on ia64
  367. * Fri Jun 21 2002 Tim Powers <timp@redhat.com> 1.4.2-10
  368. - automated rebuild
  369. * Thu May 23 2002 Tim Powers <timp@redhat.com> 1.4.2-9
  370. - automated rebuild
  371. * Fri Apr 26 2002 Jens Petersen <petersen@redhat.com> 1.4.2-8
  372. - add old patch from aoliva to fix relinking when installing into a buildroot
  373. - backport dup-deps fix from cvs stable branch
  374. * Wed Mar 27 2002 Jens Petersen <petersen@redhat.com> 1.4.2-7
  375. - run ldconfig in postin and postun
  376. * Thu Feb 28 2002 Jens Petersen <petersen@redhat.com> 1.4.2-6
  377. - rebuild in new environment
  378. * Tue Feb 12 2002 Jens Petersen <petersen@redhat.com> 1.4.2-5
  379. - revert filemagic and archive-shared patches following cvs (#54887)
  380. - don't change "&& test" to "-a" in ltmain.in
  381. * Wed Jan 09 2002 Tim Powers <timp@redhat.com> 1.4.2-4
  382. - automated rebuild
  383. * Mon Dec 3 2001 Jens Petersen <petersen@redhat.com> 1.4.2-3
  384. - test quoting patch should be on ltmain.in not ltmain.sh (#53276)
  385. - use file_magic for Linux ELF (#54887)
  386. - allow link against an archive when building a shared library (#54887)
  387. - include ltdl.m4 in manifest (#56671)
  388. * Wed Oct 24 2001 Jens Petersen <petersen@redhat.com> 1.4.2-2
  389. - added URL to spec
  390. * Tue Sep 18 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.4.2-1
  391. - 1.4.2 - sync up with autoconf...
  392. * Thu Jul 5 2001 Bernhard Rosenkraenzer <bero@redhat.de> 1.4-8
  393. - extend s390 patch to 2 more files
  394. - s/Copyright/License/
  395. * Wed Jul 04 2001 Karsten Hopp <karsten@redhat.de>
  396. - add s390 patch for deplibs_check_method=pass_all
  397. * Tue Jun 12 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  398. - add patches from Tim Waugh #42724
  399. * Mon Jun 11 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  400. - add patches from cvs mainline
  401. * Thu Jun 07 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  402. - fix a "test" bug in ltmain.sh
  403. * Sun Jun 03 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  404. - disable the post commands to modify /usr/share/doc/
  405. * Sat May 12 2001 Owen Taylor <otaylor@redhat.com>
  406. - Require automake 1.4p1
  407. * Wed May 09 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  408. - update to libtool 1.4
  409. - adjust or remove patches
  410. * Thu Jul 13 2000 Elliot Lee <sopwith@redhat.com>
  411. - Fix recognition of ^0[0-9]+$ as a non-negative integer.
  412. * Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
  413. - automatic rebuild
  414. * Fri Jul 7 2000 Nalin Dahyabhai <nalin@redhat.com>
  415. - patch to use mktemp to create the tempdir
  416. - use %%configure after defining __libtoolize to /bin/true
  417. * Mon Jul 3 2000 Matt Wilson <msw@redhat.com>
  418. - subpackage libltdl into libtool-libs
  419. * Sun Jun 18 2000 Bill Nottingham <notting@redhat.com>
  420. - running libtoolize on the libtool source tree ain't right :)
  421. * Mon Jun 5 2000 Jeff Johnson <jbj@redhat.com>
  422. - FHS packaging.
  423. * Thu Jun 1 2000 Nalin Dahyabhai <nalin@redhat.com>
  424. - update to 1.3.5.
  425. * Fri Mar 3 2000 Jeff Johnson <jbj@redhat.com>
  426. - add prereqs for m4 and perl inorder to run autoconf/automake.
  427. * Mon Feb 28 2000 Jeff Johnson <jbj@redhat.com>
  428. - functional /usr/doc/libtool-*/demo by end-user %post procedure (#9719).
  429. * Wed Dec 22 1999 Jeff Johnson <jbj@redhat.com>
  430. - update to 1.3.4.
  431. * Mon Dec 6 1999 Jeff Johnson <jbj@redhat.com>
  432. - change from noarch to per-arch in order to package libltdl.a (#7493).
  433. * Thu Jul 15 1999 Jeff Johnson <jbj@redhat.com>
  434. - update to 1.3.3.
  435. * Mon Jun 14 1999 Jeff Johnson <jbj@redhat.com>
  436. - update to 1.3.2.
  437. * Tue May 11 1999 Jeff Johnson <jbj@redhat.com>
  438. - explicitly disable per-arch libraries (#2210)
  439. - undo hard links and remove zero length file (#2689)
  440. * Sat May 1 1999 Jeff Johnson <jbj@redhat.com>
  441. - update to 1.3.
  442. * Fri Mar 26 1999 Cristian Gafton <gafton@redhat.com>
  443. - disable the --cache-file passing to ltconfig; this breaks the older
  444. ltconfig scripts found around.
  445. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  446. - auto rebuild in the new build environment (release 2)
  447. * Fri Mar 19 1999 Jeff Johnson <jbj@redhat.com>
  448. - update to 1.2f
  449. * Tue Mar 16 1999 Cristian Gafton <gafton@redhat.com>
  450. - completed arm patch
  451. - added patch to make it more arm-friendly
  452. - upgrade to version 1.2d
  453. * Thu May 07 1998 Donnie Barnes <djb@redhat.com>
  454. - fixed busted group
  455. * Sat Jan 24 1998 Marc Ewing <marc@redhat.com>
  456. - Update to 1.0h
  457. - added install-info support
  458. * Tue Nov 25 1997 Elliot Lee <sopwith@redhat.com>
  459. - Update to 1.0f
  460. - BuildRoot it
  461. - Make it a noarch package