libtool-vl.spec 20 KB

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