libtool-vl.spec 21 KB

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