-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibtool.spec
1045 lines (760 loc) · 37 KB
/
libtool.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# See the bug #429880
%global gcc_major %(gcc -dumpversion || echo "666")
# See rhbz#1193591
%global automake_version %(set -- `automake --version | head -n 1` ; echo ${4-unknown})
%bcond_without check
Summary: The GNU Portable Library Tool
Name: libtool
Version: 2.5.4
Release: 4.0.riscv64%{?dist}
# To help future rebase, the following licenses were seen in the following files/folders:
# '*' is anything that was not explicitly listed earlier in the folder
#
# From libtool package:
# usr/bin/:
# libtool - GPL-2.0-or-later WITH Libtool-exception AND MIT
# libtoolize - GPL-2.0-or-later AND MIT
# usr/share/:
# aclocal/* - FSFULLR
# doc/libtool:
# AUTHORS - GPL-2.0-or-later
# * - FSFAP
# info/* - GFDL-1.3-or-later
# libtool/build-aux/:
# {compile,depcomp,missing} - GPL-2.0-or-later WITH Autoconf-exception-generic
# config.{guess,sub} - GPL-3.0-or-later WITH Autoconf-exception-generic-3.0
# install-sh - X11 AND LicenseRef-Fedora-public-domain
# ltmain.sh - GPL-2.0-or-later WITH Libtool-exception AND MIT
# usr/share/man/man1/*: generated from usr/bin/libtool{,ize} using help2man
#
# From libtool-ltdl package:
# usr/lib64/
# * - LGPL-2.0-or-later WITH Libtool-exception
#
# From libtool-ltdl-devel package:
# usr/include/* - LGPL-2.0-or-later WITH Libtool-exception
# usr/share/:
# README - FSFAP
# {*.c,*.h,Makefile.am,configure.ac,ltdl.mk} - LGPL-2.0-or-later WITH Libtool-exception
# Makefile.in - FSFULLRWD
# aclocal.m4 - FSFULLR AND FSFULLRWD
# configure - FSFUL
License: GPL-2.0-or-later AND GPL-2.0-or-later WITH Autoconf-exception-generic AND GPL-2.0-or-later WITH Libtool-exception AND LGPL-2.0-or-later WITH Libtool-exception AND GPL-3.0-or-later WITH Autoconf-exception-generic-3.0 AND MIT AND FSFAP AND FSFULLR AND FSFULLRWD AND GFDL-1.3-or-later AND X11 AND LicenseRef-Fedora-public-domain
URL: http://www.gnu.org/software/libtool/
Source: http://ftp.gnu.org/gnu/libtool/libtool-%{version}.tar.xz
# ~> downstream
# ~> remove possibly once #1158915 gets fixed somehow
Patch: libtool-2.4.5-rpath.patch
# See the rhbz#1289759 and rhbz#1214506. We disable hardening namely because
# that bakes the CFLAGS/LDFLAGS into installed /bin/libtool and ltmain.sh files.
# At the same time we want to have libltdl.so hardened. Downstream-only patch.
%undefine _hardened_build
Patch: libtool-2.4.7-hardening.patch
# non-PIC libraries are not supported on ARMv7
# Since we removed "-fPIC" from global CFLAGS this test fails on this arch (as expected)
# Please refer to the following ticket regarding PIC support on ARM:
# https://bugs.launchpad.net/ubuntu/+source/gcc-4.4/+bug/503448
Patch: libtool-2.4.6-disable_non-pic_arm.patch
# Discussion re-opened upstream:
# https://lists.gnu.org/archive/html/bug-libtool/2025-01/msg00004.html
# Patch was already sent in 2022:
# https://lists.gnu.org/archive/html/libtool-patches/2022-02/msg00000.html
Patch: libtool-2.4.6-keep-compiler-deps.patch
# Patch sent upstream
# https://lists.gnu.org/archive/html/libtool-patches/2024-02/msg00002.html
Patch: riscv-non-PIC-into-shared-objects.patch
%if ! 0%{?_module_build}
Patch: libtool-nodocs.patch
%endif
# /usr/bin/libtool includes paths within gcc's versioned directories
# Libtool must be rebuilt whenever a new upstream gcc is built
# Starting with gcc 7 gcc in Fedora is packaged so that only major
# number changes need libtool rebuilding.
Requires: gcc(major) = %{gcc_major}
Requires: autoconf, automake, sed, tar, findutils
%if ! 0%{?_module_build}
BuildRequires: texinfo
%endif
BuildRequires: autoconf, automake
BuildRequires: help2man
# make sure we can configure all supported langs
BuildRequires: libstdc++-devel, gcc-gfortran
BuildRequires: gcc, gcc-c++
BuildRequires: make
%description
GNU Libtool is a set of shell scripts which automatically configure UNIX and
UNIX-like systems to generically build shared libraries. Libtool provides a
consistent, portable interface which simplifies the process of using shared
libraries.
If you are developing programs which will use shared libraries, but do not use
the rest of the GNU Autotools (such as GNU Autoconf and GNU Automake), you
should install the libtool package.
The libtool package also includes all files needed to integrate the GNU
Portable Library Tool (libtool) and the GNU Libtool Dynamic Module Loader
(ltdl) into a package built using the GNU Autotools (including GNU Autoconf
and GNU Automake).
%package ltdl
Summary: Runtime libraries for GNU Libtool Dynamic Module Loader
Provides: %{name}-libs = %{version}-%{release}
License: LGPLv2+
%description ltdl
The libtool-ltdl package contains the GNU Libtool Dynamic Module Loader, a
library that provides a consistent, portable interface which simplifies the
process of using dynamic modules.
These runtime libraries are needed by programs that link directly to the
system-installed ltdl libraries; they are not needed by software built using
the rest of the GNU Autotools (including GNU Autoconf and GNU Automake).
%package ltdl-devel
Summary: Tools needed for development using the GNU Libtool Dynamic Module Loader
Requires: automake = %automake_version
Requires: %{name}-ltdl = %{version}-%{release}
License: LGPLv2+
%description ltdl-devel
Static libraries and header files for development with ltdl.
%prep
%autosetup -n libtool-%{version} -p1
autoreconf -v
%build
%configure
%make_build \
CUSTOM_LTDL_CFLAGS="%_hardening_cflags" \
CUSTOM_LTDL_LDFLAGS="%_hardening_ldflags"
%check
%if %{with check}
make check VERBOSE=yes || { cat tests/testsuite.dir/*/testsuite.log ; false ; }
%endif
%install
%make_install
# info's TOP dir (by default owned by info)
rm -f %{buildroot}%{_infodir}/dir
# *.la *.a files generated by libtool shouldn't be distributed (and the
# `./configure --disable-static' breaks testsuite)
rm -f %{buildroot}%{_libdir}/libltdl.{a,la}
%files
%license COPYING
%doc AUTHORS NEWS README THANKS TODO ChangeLog*
%{_infodir}/libtool.info*.gz
%{_mandir}/man1/libtool.1*
%{_mandir}/man1/libtoolize.1*
%{_bindir}/libtool
%{_bindir}/libtoolize
%{_datadir}/aclocal/*.m4
%dir %{_datadir}/libtool
%{_datadir}/libtool/build-aux
%files ltdl
%license libltdl/COPYING.LIB
%{_libdir}/libltdl.so.*
%files ltdl-devel
%license libltdl/COPYING.LIB
%doc libltdl/README
%{_datadir}/libtool
%exclude %{_datadir}/libtool/build-aux
%{_includedir}/ltdl.h
%{_includedir}/libltdl
# .so files without version must be in -devel subpackage
%{_libdir}/libltdl.so
%changelog
* Fri Jan 24 2025 David Abdurachmanov <[email protected]> - 2.5.4-4.0.riscv64
- RISC-V doesn't allow linking non-PIC into shared objects
* Mon Jan 20 2025 Fedora Release Engineering <[email protected]> - 2.5.4-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
* Sat Jan 11 2025 Jakub Jelinek <[email protected]> - 2.5.4-3
- bump: for gcc 15.* in rawhide
* Thu Jan 09 2025 Frédéric Bérat <[email protected]> - 2.5.4-2
- Re-introduce patch to keep compiler dependency ordering (RHBZ#2331361)
* Thu Nov 21 2024 Frédéric Bérat <[email protected]> - 2.5.4-1
- New upstream release
* Thu Nov 14 2024 Frédéric Bérat <[email protected]> - 2.5.3-1
- New upstream release
- Remove patch numbering as it isn't required anymore
* Thu Jul 18 2024 Fedora Release Engineering <[email protected]> - 2.4.7-12
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
* Fri May 31 2024 Frédéric Bérat <[email protected]> - 2.4.7-11
- Rework hardening patch to include loaders. (RHEL-33501)
* Sun Jan 21 2024 Fedora Release Engineering <[email protected]> - 2.4.7-10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Mon Jan 15 2024 Jakub Jelinek <[email protected]> - 2.4.7-9
- bump: for gcc 14.* in rawhide
* Tue Aug 08 2023 Frederic Berat <[email protected]> - 2.4.7-8
- Migrate to SPDX licenses (#2222091).
* Thu Jul 20 2023 Fedora Release Engineering <[email protected]> - 2.4.7-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
* Thu Jan 19 2023 Fedora Release Engineering <[email protected]> - 2.4.7-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
* Mon Jan 16 2023 Jakub Jelinek <[email protected]> - 2.4.7-5
- bump: for gcc 13.* in rawhide
* Tue Jan 10 2023 Florian Weimer <[email protected]> - 2.4.7-4
- C99 compatibility fix in the testsuite
* Wed Dec 21 2022 Frederic Berat <[email protected]> - 2.4.7-3
- Fix test failure due to grep update
* Thu Jul 21 2022 Fedora Release Engineering <[email protected]> - 2.4.7-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Mon Mar 21 2022 Frederic Berat <[email protected]> - 2.4.7-1
- Rebase to libtool 2.4.7 (#2065004)
* Thu Feb 17 2022 Frederic Berat <[email protected]> - 2.4.6-50
- Keep compiler generated list of library dependencies.
* Sun Feb 13 2022 Jeff Law <[email protected]> - 2.4.6-49
- Re-enable LTO (completing change from Nov 29, 2021)
* Tue Feb 01 2022 Frederic Berat <[email protected]> - 2.4.6-48
- Add support for "-fsanitize", rhbz#2024647
- Add support for "-fuse-ld", rhbz#2024647
- Use make macros (based on Tom Stellard work for f33 and Timm Bäder)
https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
- Disable non-PIC test for ARM as this is not supported on this arch
- Use autosetup
- Use plain %%configure
* Thu Jan 20 2022 Fedora Release Engineering <[email protected]> - 2.4.6-47
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Mon Jan 10 2022 Jakub Jelinek <[email protected]> - 2.4.6-46
- bump: for gcc 12.* in rawhide
* Mon Nov 29 2021 Marek Kulik <[email protected]> - 2.4.6-45
- Enable LTO build
- Add disable-lto-link-order2.patch to pass tests
* Mon Oct 04 2021 Ondrej Dubaj <[email protected]> - 2.4.6-44
- rebuild with automake-1.16.5
* Mon Aug 30 2021 Ondrej Dubaj <[email protected]> - 2.4.6-43
- rebuild with automake-1.16.4
* Thu Jul 22 2021 Fedora Release Engineering <[email protected]> - 2.4.6-42
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Thu Mar 25 2021 Ondrej Dubaj <[email protected]> - 2.4.6-41
- rebuild with automake-1.16.3
* Tue Jan 26 2021 Fedora Release Engineering <[email protected]> - 2.4.6-40
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Mon Dec 07 2020 Jakub Jelinek <[email protected]> - 2.4.6-39
- bump: for gcc 11.* in eln
* Sun Dec 06 2020 Jakub Jelinek <[email protected]> - 2.4.6-38
- bump: for gcc 11.* in rawhide
* Wed Oct 21 2020 Jakub Jelinek <[email protected]> - 2.4.6-37
- bump: for gcc 11.* in eln
* Tue Jul 28 2020 Fedora Release Engineering <[email protected]> - 2.4.6-36
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Tue Apr 21 2020 Jeff Law <[email protected]> - 2.4.6-35
- Disable LTO
* Tue Apr 21 2020 Pavel Raiskup <[email protected]> - 2.4.6-34
- bump for new automake, rhbz#1815814
* Wed Jan 29 2020 Fedora Release Engineering <[email protected]> - 2.4.6-33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Mon Jan 20 2020 Jakub Jelinek <[email protected]> - 2.4.6-32
- bump: for gcc 10.*
* Thu Jul 25 2019 Fedora Release Engineering <[email protected]> - 2.4.6-31
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Wed Apr 24 2019 Björn Esser <[email protected]> - 2.4.6-30
- Remove hardcoded gzip suffix from GNU info pages
* Fri Feb 01 2019 Fedora Release Engineering <[email protected]> - 2.4.6-29
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Mon Jan 21 2019 Björn Esser <[email protected]> - 2.4.6-28
- bump: for gcc 9.*
* Tue Aug 28 2018 Pavel Raiskup <[email protected]> - 2.4.6-27
- BR gcc, gcc-c++ (rhbz#1623078)
* Tue Aug 28 2018 Pavel Raiskup <[email protected]> - 2.4.6-26
- cleanup post/postun, there are RPM triggers nowadays
- fix error: line 2642: func__fatal_error: command not found (rhbz#1622611)
* Fri Jul 13 2018 Fedora Release Engineering <[email protected]> - 2.4.6-25
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Fri Apr 20 2018 Pavel Raiskup <[email protected]> - 2.4.6-24
- harden libltdl.so (rhbz#1548751)
* Mon Mar 26 2018 Pavel Raiskup <[email protected]> - 2.4.6-23
- bake in versioned requirement on automake (rhbz#1193591)
- fix testsuite FTBFS against automake 1.16.1
- bypass -specs=* to gcc (rhbz#985592)
* Wed Feb 07 2018 Fedora Release Engineering <[email protected]> - 2.4.6-22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Mon Jan 29 2018 Jakub Jelinek <[email protected]> - 2.4.6-21
- bump: for gcc 8.*
* Thu Aug 03 2017 Fedora Release Engineering <[email protected]> - 2.4.6-20
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
* Wed Jul 26 2017 Fedora Release Engineering <[email protected]> - 2.4.6-19
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Fri Apr 21 2017 Karsten Hopp <[email protected]> - 2.4.6-18
- use new _module_build macro to limit dependencies for Modularity
* Fri Feb 10 2017 Fedora Release Engineering <[email protected]> - 2.4.6-17
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
* Thu Feb 02 2017 Pavel Raiskup <[email protected]> - 2.4.6-16
- use %%license (rhbz#1418518)
* Fri Jan 27 2017 Jakub Jelinek <[email protected]> - 2.4.6-15
- bump: for gcc 7.*
- require gcc(major) = 7 rather than gcc = 7.0.1
* Tue Jan 03 2017 Pavel Raiskup <[email protected]> - 2.4.6-14
- remove duplicate Requires: entry
- use bcond_without instead of PostgreSQL-packaging 'runselftest'
* Thu Dec 22 2016 Pavel Raiskup <[email protected]> - 2.4.6-13
- bump: for gcc 6.3.1
* Fri Sep 02 2016 Pavel Raiskup <[email protected]> - 2.4.6-12
- bump: for gcc 6.2.1
* Thu Apr 28 2016 Igor Gnatenko <[email protected]> - 2.4.6-11
- Rebuilt for gcc 6.1.1
* Thu Feb 04 2016 Fedora Release Engineering <[email protected]> - 2.4.6-10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
* Thu Jan 28 2016 Jakub Jelinek <[email protected]> - 2.4.6-9
- rebuilt for gcc 6.0.0
* Tue Dec 08 2015 Pavel Raiskup <[email protected]> - 2.4.6-8
- disable hardening (#1289759)
* Tue Dec 08 2015 Kalev Lember <[email protected]> - 2.4.6-7
- Rebuilt for gcc 5.3.1
* Thu Nov 5 2015 Orion Poplawski <[email protected]> - 2.4.6-6
- Rebuild for gcc 5.2.1
* Wed Jun 17 2015 Fedora Release Engineering <[email protected]> - 2.4.6-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Sat Apr 25 2015 Pavel Raiskup <[email protected]> - 2.4.6-4
- don't hack the hardening flag into pre-built libtool
* Thu Apr 23 2015 Kalev Lember <[email protected]> - 2.4.6-3
- rebuilt for gcc 5.1.1
* Tue Apr 14 2015 Kalev Lember <[email protected]> - 2.4.6-2
- rebuilt for gcc 5.0.1
* Tue Feb 17 2015 Pavel Raiskup <[email protected]> - 2.4.6-1
- rebase to most recent upstream release 2.4.6 (#1159497)
* Fri Feb 06 2015 Jakub Jelinek <[email protected]> - 2.4.2-32
- rebuilt for gcc 5.0.0
* Sun Nov 02 2014 Jakub Jelinek <[email protected]> - 2.4.2-31
- rebuilt for gcc 4.9.2
* Sun Aug 17 2014 Fedora Release Engineering <[email protected]> - 2.4.2-30
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
* Sat Jul 19 2014 Kalev Lember <[email protected]> - 2.4.2-29
- Rebuild once more for gcc 4.9.1
* Fri Jul 18 2014 Peter Robinson <[email protected]> 2.4.2-28
- Bump again for gcc 4.9.1 in F-21
* Thu Jul 17 2014 Pavel Raiskup <[email protected]> - 2.4.2-27
- rebuild for gcc 4.9.1
* Mon Jun 09 2014 Pavel Raiskup <[email protected]> - 2.4.2-26
- gcc-java removed from Fedora completely (#1106080)
- spec cleanup and implement RPM/SRPM hack (#429880)
* Sat Jun 07 2014 Fedora Release Engineering <[email protected]> - 2.4.2-25
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Thu Apr 10 2014 Jakub Jelinek <[email protected]> - 2.4.2-24
- rebuilt for gcc 4.9.0
* Tue Jan 07 2014 Pavel Raiskup <[email protected]> - 2.4.2-23
- require findutils (minimal installations) (#1047084)
* Wed Oct 23 2013 Pavel Raiskup <[email protected]> - 2.4.2-22
- fix powerpcle patch to reflect what is really in upstream
* Thu Oct 17 2013 Jakub Jelinek <[email protected]> - 2.4.2-21
- rebuilt for gcc 4.8.2
* Tue Oct 15 2013 Pavel Raiskup <[email protected]> - 2.4.2-20
- backport support for powerpc*le-linux to libtool.m4
* Thu Oct 10 2013 Pavel Raiskup <[email protected]> - 2.4.2-19
- rebuild once again for new config.{sub,guess} in redhat-rpm-config
* Sat Aug 03 2013 Fedora Release Engineering <[email protected]> - 2.4.2-18
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Wed Jul 10 2013 Pavel Raiskup <[email protected]> - 2.4.2-17
- version bump
* Tue Jun 04 2013 Jakub Jelinek <[email protected]> - 2.4.2-16
- rebuilt for gcc 4.8.1
* Tue May 07 2013 Pavel Raiskup <[email protected]> - 2.4.2-15
- revert fix for #636045, thanks to Paolo Bonzini
* Fri Apr 26 2013 Pavel Raiskup <[email protected]> - 2.4.2-14
- allow root to copy files into NFS in libtoolize (#740079)
- pre-filter sed's input by dd (#636045)
* Thu Mar 14 2013 Pavel Raiskup <[email protected]> - 2.4.2-13
- do not BR gcc-java in RHEL (by dmach)
* Thu Jan 24 2013 Jakub Jelinek <[email protected]> - 2.4.2-12
- rebuilt for gcc 4.8.0
* Thu Dec 06 2012 Pavel Raiskup <[email protected]> - 2.4.2-11
- remove specific version requirements on automake/autoconf
* Thu Oct 25 2012 Pavel Raiskup <[email protected]> - 2.4.2-10
- temporarily disable the 'gcj' tests (#869578) -- this is just to (1) allow
build under f18+ and RHEL-7.0 and (2) don't through out upstream testsuite.
Added patch must be removed once the 'ecj' utility is fixed
- libtool-ltdl shouldn't own /usr/share/libtool/ directory
- move the .so file without version back to devel package (sorry for that)
* Mon Oct 22 2012 Pavel Raiskup <[email protected]> - 2.4.2-9
- fix fedora-review warnings: s/RPM_BUILD_ROOT/buildroot/, remove trailing
white-spaces, move libltdl.so to ltdl sub-package, remove unnecessary BR
- remove unnecessary newlines
- fix the BuildRequire ~> Require only (#79467 related)
- fix weird build circumstances (don't call ./bootstrap, don't call autoconf
manually, do not touch configure script)
- remove 'tee' invocation for copying testsuite output (the file
'test-suite.log' is good enough)
* Thu Oct 04 2012 Pavel Raiskup <[email protected]> - 2.4.2-8
- make the libtool dependant on tar (#794675)
* Fri Sep 21 2012 Dan Horák <dan[at]danny.cz> - 2.4.2-7
- rebuild for gcc 4.7.2
* Thu Jul 19 2012 Fedora Release Engineering <[email protected]> - 2.4.2-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Sun Jul 15 2012 Peter Robinson <[email protected]> - 2.4.2-5
- Rebuild
* Fri Jun 29 2012 Richard W.M. Jones <[email protected]> - 2.4.2-4
- Rebuild for gcc 4.7.1 which just entered Rawhide.
* Thu Jan 5 2012 Mamoru Tasaka <[email protected]> - 2.4.2-3
- really rebuild for gcc 4.7.0
* Tue Jan 3 2012 Jakub Jelinek <[email protected]> 2.4.2-2
- rebuilt for gcc 4.7.0
* Fri Dec 2 2011 Tom Callaway <[email protected]> 2.4.2-1
- update to 2.4.2
* Thu Oct 27 2011 Jakub Jelinek <[email protected]> 2.4-7
- rebuilt for gcc 4.6.2
* Tue Jun 28 2011 Peter Robinson <[email protected]> - 2.4-6
- actually update the hardwired gcc version
* Tue Jun 28 2011 Peter Robinson <[email protected]> - 2.4-5
- Rebuild for gcc 4.6.1
* Tue Feb 08 2011 Fedora Release Engineering <[email protected]> - 2.4-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Sat Jan 22 2011 Christopher Aillon <[email protected]> 2.4-3
- rebuilt for gcc 4.6.0
* Mon Dec 06 2010 Adam Jackson <[email protected]> 2.4-2
- rebuilt for gcc 4.5.1
* Mon Dec 06 2010 Karsten Hopp <[email protected]> 2.4-1
- update to libtool-2.4
* Wed Jul 7 2010 Jakub Jelinek <[email protected]> 2.2.10-2
- rebuilt for gcc 4.5.0
* Thu Jun 24 2010 Karsten Hopp <[email protected]> 2.2.10-1
- update to libtool-2.2.10
* Sat May 1 2010 Jakub Jelinek <[email protected]> 2.2.6-20
- rebuilt for gcc 4.4.4
* Mon Apr 12 2010 Karsten Hopp <[email protected]> 2.2.6-19
- enable selfcheck
- convert changelog files to utf8 (#226050)
* Thu Jan 21 2010 Jakub Jelinek <[email protected]> 2.2.6-18
- rebuilt for gcc 4.4.3
* Wed Dec 02 2009 Karsten Hopp <[email protected]> 2.2.6-17
- fix directory name used in libtool tarball
* Wed Dec 02 2009 Karsten Hopp <[email protected]> 2.2.6-16
- make sure that NVR is higher than previous version
* Wed Dec 02 2009 Karsten Hopp <[email protected]> 2.2.6b-2
- fix gcc version
* Tue Dec 01 2009 Karsten Hopp <[email protected]> 2.2.6b-1
- update to 2.2.6b, fixes CVE-2009-3736:
libltdl may load and execute code from a library in the current directory
* Wed Aug 12 2009 Ville Skyttä <[email protected]> - 2.2.6-14
- Use lzma compressed upstream tarball.
* Sat Jul 25 2009 Fedora Release Engineering <[email protected]> - 2.2.6-13
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Wed Jul 22 2009 Matthias Clasen <[email protected]> - 2.2.6-12
- Rebuild for gcc 4.4.1
* Wed Feb 25 2009 Fedora Release Engineering <[email protected]> - 2.2.6-11
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* Wed Feb 18 2009 Karsten Hopp <[email protected]> 2.2.6-10
- remove /lib64 and /usr/lib64 rpath
* Fri Feb 6 2009 Jakub Jelinek <[email protected]> 2.2.6-9
- rebuilt again for gcc-4.4.0
* Wed Feb 04 2009 Karsten Hopp <[email protected]> 2.2.6-8
- libtool-ltdl owns /usr/share/libtool, but not the config files
(#484088)
* Wed Feb 4 2009 Jakub Jelinek <[email protected]> 2.2.6-7
- rebuilt for gcc-4.4.0
* Wed Jan 28 2009 Karsten Hopp <[email protected]> 2.2.6-6
- libtool-ltdl now owns /usr/share/libtool (#474672)
* Sat Dec 6 2008 Ignacio Vazquez-Abrams <[email protected]> 2.2.6-5
- Own /usr/include/libltdl (#475004)
* Wed Dec 3 2008 Ignacio Vazquez-Abrams <[email protected]> 2.2.6-4
- Well. THAT was pointless...
* Wed Dec 3 2008 Ignacio Vazquez-Abrams <[email protected]> 2.2.6-3
- Hopefully fix all the build errors we've been seeing (#474330)
* Wed Dec 03 2008 Karsten Hopp <[email protected]> 2.2.6-2
- add Requires: sed (Ignacio Vazquez-Abrams)
* Thu Nov 13 2008 Karsten Hopp <[email protected]> 2.2.6-1
- update to 2.2.6a
* Fri Aug 29 2008 Dennis Gilmore <[email protected]> 1.5.26-4
- rebuild for gcc-4.3.2
* Thu Aug 7 2008 Tom "spot" Callaway <[email protected]> 1.5.26-3
- fix license tag
* Mon Jun 09 2008 Dennis Gilmore <[email protected]> 1.5.26-2
- build against gcc 4.3.1
* Tue May 20 2008 Stepan Kasal <[email protected]> 1.5.26-1
- new upstream version, requires autoconf >= 2.58
* Wed Jan 30 2008 Bill Nottingham <[email protected]> 1.5.24-6
- rebuild for new gcc
* Wed Jan 23 2008 Karsten Hopp <[email protected]> 1.5.24-5
- add missing define
* Wed Jan 23 2008 Karsten Hopp <[email protected]> 1.5.24-4
- require specific gcc version as that path is hardcoded in libtool
(#429880)
* Wed Aug 29 2007 Karsten Hopp <[email protected]> 1.5.24-3
- fix license tag
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 1.5.24-2
- Rebuild for selinux ppc32 issue.
* Tue Jul 24 2007 Karsten Hopp <[email protected]> 1.5.24-1
- update to libtool 1.5.24
* Thu Apr 05 2007 Karsten Hopp <[email protected]> 1.5.22-11
- use ./configure so that config.{sub,guess} will not be replaced with ancient
version of those files (#234778)
* Wed Mar 14 2007 Karsten Hopp <[email protected]> 1.5.22-10
- add disttag (#232204)
* Wed Feb 21 2007 Karsten Hopp <[email protected]> 1.5.22-10
- fix libtool-ltdl post/postun requirements
* Thu Feb 08 2007 Karsten Hopp <[email protected]> 1.5.22-9
- fix ltdl file open (#225116)
- fix lt_unset usage (#227454)
- spec file cleanups for merge review
* Mon Jan 22 2007 Karsten Hopp <[email protected]> 1.5.22-8
- don't abort (un)install scriptlets when _excludedocs is set (#223708)
* Thu Dec 07 2006 Karsten Hopp <[email protected]> 1.5.22-7
- update config.guess, config.sub with newer files from automake-1.10
- skip over lines in /etc/ld.so.conf.d/* which don't look like absolute paths
(p.e. files from kernel-xen). This avoids having unwanted relative paths in
lib_search_path
* Wed Jul 12 2006 Jesse Keating <[email protected]> - 1.5.22-6.1
- rebuild
* Thu Jun 29 2006 Karsten Hopp <[email protected]> 1.5.22-6
- detect gcc path at runtime instead of requiring one specific version
* Thu Jun 29 2006 Karsten Hopp <[email protected]> 1.5.22-5
- miscellaneous upstream fixes
* Tue Jun 06 2006 Karsten Hopp <[email protected]> 1.5.22-4
- don't warn when /etc/ld.so.conf.d/*.conf doesn't exist (p.e. in mock)
* Fri May 26 2006 Jakub Jelinek <[email protected]> 1.5.22-3
- rebuilt with GCC 4.1.0
* Fri Feb 10 2006 Jesse Keating <[email protected]> - 1.5.22-2.2
- bump again for double-long bug on ppc(64)
* Tue Feb 07 2006 Jesse Keating <[email protected]> - 1.5.22-2.1
- rebuilt for new gcc4.1 snapshot and glibc changes
* Mon Feb 06 2006 Karsten Hopp <[email protected]> 1.5.22-2
- libtool-ltdl-devel is LGPL (#168075)
* Tue Dec 20 2005 Karsten Hopp <[email protected]> 1.5.22-1
- update to 1.5.22, most prominent fixes are:
- Fix 1.5 regression that caused linking a program `-static' to also
link statically against installed libtool libraries, contrary to
documented (and actual 1.4.x) behavior.
- Fix silent failure of `libtoolize --ltdl' if libltdl files not present.
* Wed Nov 30 2005 Warren Togami <[email protected]> 1.5.20-5
- rebuilt with GCC 4.1.0
* Thu Sep 29 2005 Jakub Jelinek <[email protected]> 1.5.20-4
- rebuilt with GCC 4.0.2
* Wed Sep 14 2005 Karsten Hopp <[email protected]> 1.5.20-3
- rebuilt
* Mon Sep 12 2005 Karsten Hopp <[email protected]> 1.5.20-2
- add ltdl license, minor spec-file cleanups (#168075, Ville Skyttä)
* Fri Sep 09 2005 Karsten Hopp <[email protected]> 1.5.20-1
- update
* Thu Sep 08 2005 Florian La Roche <[email protected]>
- add version-release to the Provides: and fix our own
Requires: line to the current naming scheme
* Sat Jul 9 2005 Jakub Jelinek <[email protected]> 1.5.18-3
- rebuilt with GCC 4.0.1.
* Tue May 17 2005 Alexandre Oliva <[email protected]> 1.5.18-2
- Update patch file.
* Tue May 17 2005 Alexandre Oliva <[email protected]> 1.5.18-1
- 1.5.18. Removed .multilib2 suffix.
* Tue Apr 26 2005 Alexandre Oliva <[email protected]> 1.5.16.multilib2-1
- 1.5.16 fixes #132435.
* Wed Mar 16 2005 Elliot Lee <[email protected]>
- rebuilt
* Tue Mar 1 2005 Alexandre Oliva <[email protected]> 1.5.14.multilib2-5
- use gfortran instead of g77.
- rebuild with GCC 4.
* Tue Feb 15 2005 Joe Orton <[email protected]> 1.5.14.multilib2-4
- revert to the old multilib patch (#138742)
* Sun Feb 13 2005 Florian La Roche <[email protected]>
- 1.5.14 bugfix release
* Sun Feb 6 2005 Daniel Reed <[email protected]> 1.5.12.multilib2-3.4.3
- update to the 1.5.12 bugfix release
- Makes use of $datarootdir, which is necessary for Autoconf >= 2.60.
- Correctly skip hppa, x86_64, and s390* in tests/demo-nopic.test.
- Interpret `include' statements in toplevel ld.so.conf file.
- While "parsing" /etc/ld.so.conf, skip comments.
- add dependency on gcc version; /usr/bin/libtool hardcodes paths into gcc's internal directories
- replace "libtool-libs" with "libtool-ltdl" and "libtool-ltdl-devel"
* Tue Oct 26 2004 Daniel Reed <[email protected]> 1.5.10-1
- update to the 1.5.10 bugfix release
- obsoletes libtool-1.4-nonneg.patch
- obsoletes libtool-1.5-libtool.m4-x86_64.patch
- obsoletes libtool-1.4.2-multilib.patch
- obsoletes libtool-1.4.2-demo.patch
- obsoletes libtool-1.5-testfailure.patch
* Tue Jul 6 2004 Jens Petersen <[email protected]> - 1.5.6-4
- improve buildrequires and prereqs
- buildrequire texinfo (Dawid Gajownik, 126950)
* Tue Jun 15 2004 Elliot Lee <[email protected]>
- rebuilt
* Thu May 13 2004 Thomas Woerner <[email protected]> - 1.5.6-2
- compile libltdl.a PIC
* Mon Apr 12 2004 Jens Petersen <[email protected]> - 1.5.6-1
- update to 1.5.6 bugfix release
* Sun Apr 4 2004 Jens Petersen <[email protected]> - 1.5.4-1
- 1.5.4 bugfix release
- improve libtool-1.4.2-multilib.patch (Albert Chin) and only apply to
libtool.m4
- use bootstrap instead of autoreconf to update configuration
- update libtool-1.4.3-ltmain-SED.patch to libtool-1.5.4-ltmain-SED.patch
* Tue Mar 02 2004 Elliot Lee <[email protected]>
- rebuilt
* Fri Feb 13 2004 Elliot Lee <[email protected]>
- rebuilt
* Mon Jan 26 2004 Jens Petersen <[email protected]> - 1.5.2-1
- update to 1.5.2 bugfix release
- update libtool-1.5-libtool.m4-x86_64.patch
- nolonger need libtool-1.5-mktemp.patch, libtool-1.5-expsym-linux.patch,
libtool-1.5-readonlysym.patch, libtool-1.5-relink-libdir-order-91110.patch,
libtool-1.5-AC_PROG_LD_GNU-quote-v-97608.patch and libtool-1.5-nostdlib.patch
* Tue Oct 28 2003 Jens Petersen <[email protected]> - 1.5-8
- update libtool-1.4.2-multilib.patch to also deal with powerpc64 (#103316)
[Joe Orton]
* Sun Oct 26 2003 Florian La Roche <[email protected]>
- rebuild again, Jakub has done a new compiler version number
* Thu Oct 02 2003 Florian La Roche <[email protected]>
- rebuild
* Thu Jul 17 2003 Jens Petersen <[email protected]> - 1.5-5
- bring back libtool-1.4.2-demo.patch to disable nopic tests on amd64
and s390x again
* Tue Jul 15 2003 Owen Taylor <[email protected]>
- Fix misapplied chunk for expsym-linux patch
* Tue Jul 8 2003 Jens Petersen <[email protected]> - 1.5-4
- remove the quotes around LD in AC_PROG_LD_GNU (#97608)
[reported by twaugh]
- use -nostdlib also when linking with g++ and non-GNU ld in
_LT_AC_LANG_CXX_CONFIG [reported by fnasser, patch by aoliva]
- use %%configure with CC and CXX set
* Thu Jun 12 2003 Jens Petersen <[email protected]> - 1.5-3
- don't use %%configure since target options caused libtool to assume
i386-redhat-linux-gcc instead of gcc for CC (reported by Joe Orton)
- add libtool-1.5-relink-libdir-order-91110.patch to fix order of lib dirs
searched when relinking (#91110) [patch from Joe Orton]
* Wed Jun 04 2003 Elliot Lee <[email protected]>
- rebuilt
* Thu May 1 2003 Jens Petersen <[email protected]> - 1.5-1
- update to 1.5
- no longer override config.{guess,sub} for rpmbuild %%configure,
redhat-rpm-config owns those now
- update and rename libtool-1.4.2-s390_x86_64.patch to
libtool-1.5-libtool.m4-x86_64.patch since s390 now included
- buildrequire autoconf and automake, no longer automake14
- skip make check on s390 temporarily
- no longer skip demo-nopic.test on x86_64, s390 and s390x
- from Owen Taylor
- add libtool-1.4.2-expsym-linux.patch (#55607) [from James Henstridge]
- add quoting in mktemp patch
- add libtool-1.5-readonlysym.patch
- add libtool-1.5-testfailure.patch workaround
- no longer need libtool-1.4.2-relink-58664.patch
* Sat Feb 08 2003 Florian La Roche <[email protected]> - 1.4.3-5
- add config.guess and config.sub, otherwise old versions of
these files can creep into /usr/share/libtool/
* Wed Jan 22 2003 Tim Powers <[email protected]>
- rebuilt
* Mon Jan 13 2003 Jens Petersen <[email protected]> 1.4.3-3
- fix mktemp to work when running mktemp fails (#76602)
[reported by (Oron Peled)]
- remove info dir file, don't exclude it
- fix typo in -libs description (#79619)
- use buildroot instead of RPM_BUILD_ROOT
* Tue Jan 07 2003 Karsten Hopp <[email protected]> 1.4.3-2.2
- use lib64 on s390x, too.
* Thu Dec 5 2002 Jens Petersen <[email protected]>
- add comment to explain why we use an old Automake for building
- buildrequire automake14
* Sat Nov 23 2002 Jens Petersen <[email protected]>
- add --without check build option to allow disabling of "make check"
- exclude info dir file rather than removing
* Sat Nov 23 2002 Jens Petersen <[email protected]> 1.4.3-2
- define SED in ltmain.sh for historic ltconfig files
- define macro AUTOTOOLS to hold automake-1.4 and aclocal-1.4, and use it
- leave old missing file for now
- general spec file cleanup
- don't copy install files to demo nor mess with installed ltdl files
- don't need to run make in doc
- force removal of info dir file
- don't need to create install prefix dir
- don't bother gzipping info files ourselves
* Mon Nov 18 2002 Jens Petersen <[email protected]> 1.4.3-1
- update to 1.4.3
- remove obsolete patches (test-quote, dup-deps, libtoolize-configure.ac)
- apply the multilib patch to just the original config files
- update x86_64/s390 patch and just apply to original config files
- use automake-1.4 in "make check" for demo-make.test to pass!
- remove info dir file that is not installed
- make autoreconf update missing
* Mon Oct 07 2002 Phil Knirsch <[email protected]> 1.4.2-12.2
- Added s390x and x64_64 support.
* Fri Oct 4 2002 Nalin Dahyabhai <[email protected]> 1.4.2-12.1
- rebuild
* Fri Sep 13 2002 Nalin Dahyabhai <[email protected]>
- patch to find the proper libdir on multilib boxes
* Mon Aug 19 2002 Jens Petersen <[email protected]> 1.4.2-12
- don't include demo in doc, specially now that we "make check" (#71609)
* Tue Aug 13 2002 Jens Petersen <[email protected]> 1.4.2-11
- don't hardcode "configure.in" in libtoolize (#70864)
[reported by [email protected]]
- make check, but not on ia64
* Fri Jun 21 2002 Tim Powers <[email protected]> 1.4.2-10
- automated rebuild
* Thu May 23 2002 Tim Powers <[email protected]> 1.4.2-9
- automated rebuild
* Fri Apr 26 2002 Jens Petersen <[email protected]> 1.4.2-8
- add old patch from aoliva to fix relinking when installing into a buildroot
- backport dup-deps fix from cvs stable branch
* Wed Mar 27 2002 Jens Petersen <[email protected]> 1.4.2-7
- run ldconfig in postin and postun
* Thu Feb 28 2002 Jens Petersen <[email protected]> 1.4.2-6
- rebuild in new environment
* Tue Feb 12 2002 Jens Petersen <[email protected]> 1.4.2-5
- revert filemagic and archive-shared patches following cvs (#54887)
- don't change "&& test" to "-a" in ltmain.in
* Wed Jan 09 2002 Tim Powers <[email protected]> 1.4.2-4
- automated rebuild
* Mon Dec 3 2001 Jens Petersen <[email protected]> 1.4.2-3
- test quoting patch should be on ltmain.in not ltmain.sh (#53276)
- use file_magic for Linux ELF (#54887)
- allow link against an archive when building a shared library (#54887)
- include ltdl.m4 in manifest (#56671)
* Wed Oct 24 2001 Jens Petersen <[email protected]> 1.4.2-2
- added URL to spec
* Tue Sep 18 2001 Bernhard Rosenkraenzer <[email protected]> 1.4.2-1
- 1.4.2 - sync up with autoconf...
* Thu Jul 5 2001 Bernhard Rosenkraenzer <[email protected]> 1.4-8
- extend s390 patch to 2 more files
- s/Copyright/License/
* Wed Jul 04 2001 Karsten Hopp <[email protected]>
- add s390 patch for deplibs_check_method=pass_all
* Tue Jun 12 2001 Florian La Roche <[email protected]>
- add patches from Tim Waugh #42724
* Mon Jun 11 2001 Florian La Roche <[email protected]>
- add patches from cvs mainline
* Thu Jun 07 2001 Florian La Roche <[email protected]>
- fix a "test" bug in ltmain.sh
* Sun Jun 03 2001 Florian La Roche <[email protected]>
- disable the post commands to modify /usr/share/doc/
* Sat May 12 2001 Owen Taylor <[email protected]>
- Require automake 1.4p1
* Wed May 09 2001 Florian La Roche <[email protected]>
- update to libtool 1.4
- adjust or remove patches
* Thu Jul 13 2000 Elliot Lee <[email protected]>
- Fix recognition of ^0[0-9]+$ as a non-negative integer.
* Thu Jul 13 2000 Prospector <[email protected]>
- automatic rebuild
* Fri Jul 7 2000 Nalin Dahyabhai <[email protected]>
- patch to use mktemp to create the tempdir
- use %%configure after defining __libtoolize to /bin/true
* Mon Jul 3 2000 Matt Wilson <[email protected]>
- subpackage libltdl into libtool-libs
* Sun Jun 18 2000 Bill Nottingham <[email protected]>
- running libtoolize on the libtool source tree ain't right :)
* Mon Jun 5 2000 Jeff Johnson <[email protected]>
- FHS packaging.
* Thu Jun 1 2000 Nalin Dahyabhai <[email protected]>
- update to 1.3.5.
* Fri Mar 3 2000 Jeff Johnson <[email protected]>
- add prereqs for m4 and perl inorder to run autoconf/automake.
* Mon Feb 28 2000 Jeff Johnson <[email protected]>
- functional /usr/doc/libtool-*/demo by end-user %%post procedure (#9719).