summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: be740974d5d826500f809980372c978591bcad1e (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
2004-08-11  Alexandre Duret-Lutz  <adl@gnu.org>

	* configure.ac, NEWS: Bump version to 1.9.1.

	* lib/config.guess, lib/texinfo.tex: New upstream versions.

	For PR automake/433:
	* configure.ac (pkgvdatadir): Define using "$PACKAGE", not "automake".

	Fix PR automake/432:
	* lib/am/yacc.am [!%?MORE-THAN-ONE%]: Replace `#line's in y.tab.h too.
	* tests/yacc7.test: Check this.

2004-08-03  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (yacc_lex_finish_helper): Fix definition of YLWRAP
	when ylwrap is installed in a default aux dir found in a parent
	package.
	* tests/subpkg.test: Augment to check that YLWRAP is installed
	properly.
	* doc/automake.texi (Yacc and Lex): ylwrap is not sought is the
	current directory.
	Report from Norman Gray.

2004-08-02  Alexandre Duret-Lutz  <adl@gnu.org>

	* doc/automake.texi (Optional): Update documentation for
	AC_CANONICAL_BUILD, AC_CANONICAL_HOST, and AC_CANONICAL_TARGET.

	* automake.in (AC_CANONICAL_HOST, AC_CANONICAL_SYSTEM): Replace by ...
	(AC_CANONICAL_BUILD, AC_CANONICAL_HOST, AC_CANONICAL_TARGET): ... these.
	(scan_autoconf_traces): Scan for the latter three macros instead of
	the former two.
	(make_paragraphs): Adjust definitions of %BUILD%, %HOST%, and %TARGET%.
	* tests/hosts.test: New file.
	* tests/Makefile.am (TESTS): Add hosts.test.
	Report and test case from Norman Gray.

2004-08-01  Alexandre Duret-Lutz  <adl@gnu.org>

	* aclocal.in (scan_file): Update "#Extending%20aclocal" URL, makeinfo
	4.7 now outputs "#Extending-aclocal".

2004-07-28  Alexandre Duret-Lutz  <adl@gnu.org>

	* configure.ac, NEWS: Bump version to 1.9.0a.

	* configure.ac, NEWS: Bump version to 1.9.

	* automake.in (generate_makefile): Update misleading comment about
	libtool scripts.

	* lib/texinfo.tex: New upstream version.

2004-07-25  Alexandre Duret-Lutz  <adl@gnu.org>

	* m4/mkdirp.m4 (AM_PROG_MKDIR_P): Remove `.' from the mkdir_p
	definition, it causes `make install' to fails for user with no
	right to write in the source-tree.
	* automake.in (handle_configure): Do not use mkdir_p in the
	definition for $(mkdir_p).
	Report from Harlan Stenn.

	* lib/am/texi-vers.am (%STAMPVTI%): Typo in comment.

2004-07-22  Alexandre Duret-Lutz  <adl@gnu.org>

	* doc/automake.texi (Libtool Modules): Typo in example.
	Report from Ulrich Eckhardt.

2004-07-21  Andreas Schwab  <schwab@suse.de>  (tiny change)

	* automake.in (check_directory): Quote $dir in regexp.

2004-07-17  Alexandre Duret-Lutz  <adl@gnu.org>

	* configure.ac, NEWS: Bump version to 1.8e.

	* configure.ac, NEWS: Bump version to 1.8d.

	* lib/config-ml.in, lib/config.sub, lib/config.guess, lib/texinfo.tex:
	New upstream versions.

	* lib/am/texibuild.am (?GENERIC?%SOURCE_SUFFIX%.html,
	?!GENERIC?%DEST_PREFIX%.html): Use $(X), not ${X}.

	* tests/installdir.test: installdirs-local should appear three times,
	since the change from 2004-07-11 will make it PHONY.

	* lib/am/distdir.am (distdir): Always use $(DIST_SUBDIRS) now
	that it is always defined.  This is less confusing for users
	reading the generated Makefiles.
	* automake.in (handle_dist): Do not substitute DIST_SUBDIR_NAME.

	* lib/am/texibuild.am (?GENERIC?%SOURCE_SUFFIX%.html,
	?!GENERIC?%DEST_PREFIX%.html): Output .htp, and then rename to .html
	on success.  In case the target is a directory, this ensures its
	time stamp is updated and the no files are left over inside.
	* tests/txinfo21.test: Augment to test missing timestamp update
	reported by Akim Demaille.

	* doc/automake.texi (Top level): Rename as ...
	(Directories): ... this, and split into ...
	(Subdirectories, Conditional Subdirectories): ... these.
	(Subdirectories): Illustrate the use of `.'.
	(Conditional Subdirectories): Describe SUBDIRS and DIST_SUBDIRS
	before the example.  Append a discussion about non-configured
	conditional directories.
	(Alternative): Move as a child of Directories.
	(Subpackages): New section.
	(Dist): Adjust links to Subdirectories, a Subpackages.
	(Third-Party Makefiles): Link to Conditional Subdirectories.

2004-07-14  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (target_hook): Accept %transform as last argument.
	(handle_single_transform): Pass %transform to target_hook.
	(handle_source_transform): Define DIST_SOURCE to tell whether
	a the source of a file is distributed or not.
	(lang_yacc_target_hook): Check DIST_SOURCE, and do not distribute
	the generated header if the .y source is not distributed.
	* tests/pr204.test: Use AM_YFLAGS = -d and make sure generated
	headers are not distributed.

2004-07-12  Simon Josefsson  <jas@extundo.com>  (tiny change)

	* doc/automake.texi (Options): Improve ustar file name length
	discussion.  Reference tar manual.

2004-07-12  Ray Simard  <rhs.techlists@sylvan-glade.com>  (tiny change)

	* lib/Automake/Variable.pm (define): Fix precondition check.

2004-07-11  Alexandre Duret-Lutz  <adl@gnu.org>

	For PR automake/428:
	Support for conditionally defined -hook and -local rules.
	* automake.in (user_phony_rule): New function.
	(handle_dist, handle_install, handle_all, do_check_merge_target,
	handle_factored_dependencies): Use user_phony_rule before
	adding a user -hook or -local rule as a dependency to ensure
	it is always defined an phony.
	* tests/cond37.test, tests/condhook.test: New files.
	* tests/Makefile.am (TESTS): Add them.
	Report from Simon Josefsson and Nik A. Melchior.

2004-07-05  Paul Eggert  <eggert@cs.ucla.edu>

	* doc/automake.texi (Install): Warn that you should create
	/tmp/staging before installing into it, to avoid security problems.
	* lib/install-sh: Remove support for -b= and -t= options; this
	has been moribund for a decade.
	Add support for -t and -T options (new in coreutils install).
	-c option now does nothing (the default is to copy), for
	compatibility with BSD and coreutils 'install'.
	Fix usage message; it referred to nonexistent variables.
	Don't assume 'lasterr' is unset in environment.
	* tests/instsh2.test: Don't assume that install-sh without -c
	moves (it now copies).  Add tests for new -t and -T options.

2004-06-16  Alexandre Duret-Lutz  <adl@gnu.org>

	For Debian Bug#254372:
	* doc/automake.texi (Invoking aclocal): Rewrite the paragraph
	explaining m4_include is used for relative files.

2004-06-10  Alexandre Duret-Lutz  <adl@gnu.org>

	For Debian Bug #251820:
	* aclocal.in (scan_file): Keep track of the location where each
	file is included, and display it when reporting a missing file.
	Pass this location to scan_file as a second argument.
	(scan_m4_files): Adjust calls to scan_file.
	* tests/acloca14.test: Add a test for this diagnostic.

2004-06-07  Alexandre Duret-Lutz  <adl@gnu.org>

	* m4/tar.m4 (_AM_PROG_TAR): Split the definition of $_am_tools
	so it works with Solaris and Tru64 /bin/sh.
	Report from Nicolas Joly.

2004-06-06  Alexandre Duret-Lutz  <adl@gnu.org>

	* m4/tar.m4 (_AM_PROG_TAR): Introduce $_am_tools to work around a
	bug in NetBSD /bin/sh.
	Report from Nicolas Joly.

2004-06-03  Alexandre Duret-Lutz  <adl@gnu.org>

	* tests/defs.in (required=icc): Use `-V -help' instead of
	`-V -dryrun'.  icc 8.0 fails on the latter.
	* tests/depcomp5.test: Require depmode=icc for icc 7.x, and
	depmod=gcc otherwise.
	Report from Ralf Wildenhues.

	* lib/am/clean.am (distclean-generic): Do no
	`rm -f $(CONFIG_CLEAN_FILES)' if `$(CONFIG_CLEAN_FILES)' is empty.
	Report from Nicolas Joly.

2004-05-31  Alexandre Duret-Lutz  <adl@gnu.org>

	* NEWS: Make clearer that we do not output partial Makefile.ins on
	error.
	Suggested by Akim Demaille.

	* lib/depcomp (tru64) [libtool]: Use $dir$base.o.d instead
	of $dir.libs/$base.o.d.  Libtool 1.5 causes both to be output,
	and we will clean the second automatically during distclean.
	Using the latter and leaving the former as we did before cause
	"files left in build directory" failures during distcheck.
	Suggested by Nicolas Joly.

	* doc/automake.texi (Built sources example): Explain what
	nodist_foo_SOURCES is (not) useful to, and use it in all the
	examples.
	(Tags): Mention nodist_noinst_HEADERS and nodist_prog_SOURCES.
	Suggested by Akim Demaille.

2004-05-23  Alexandre Duret-Lutz  <adl@gnu.org>

	* configure.ac, NEWS: Bump version to 1.8c.

	* configure.ac, NEWS: Bump version to 1.8b.

	* m4/tar.m4 (_AM_PROG_TAR) <cpio>: Specify -o and -i option first,
	by POSIX; and use option -d in am_untar.

	* tests/defs.in (PATH): Export it.

	* lib/am/multilib.am: Add $(MAKE) comments to multido and
	multiclean lines, to enable parallel make.  Based on a patch
	by Alexandre Oliva applied to newlib on 2003-10-15.

2004-05-22  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (scan_autoconf_traces): Trace for LT_SUPPORTED_TAG
	instead of AC_LIBTOOL_TAGS, since that how CVS Libtool has been
	changed.
	* tests/libtool3.test: Do not grep for --tag=CC, since CVS
	Libtool (unlike Libtool 1.5) does not has any CC tag.

	* tests/tar2.test: Skip the test if no pax archiver were found.

	* NEWS: Sync with branch-1-8, and reorganize current entry.

	* automake.in (handle_libraries): Make the diagnostic about
	non standard libraries a warning in foreign packages.  This
	is already the case in handle_ltlibraries.
	(handle_libraries, handle_ltlibraries): Suggest a standard
	library name in the diagnostic, to help newcomers.
	* tests/stdlib.test, tests/stdlib2.test: Check for these
	suggestions.

	Check directory names for unportable names.  Shaking the code
	to check this also led to the removal of the no-"/"-in-SUBDIRS
	restriction, and a fix to _do_recursive_traversal.

	* automake.in (check_directory): New function extracted from
	handle_subdirs, and augmented to check for reserved W32/DOS name.
	(check_directories_in_var): New function.
	(handle_subdirs): Call check_directories_in_var.  Doing so also
	suppress the restriction that SUBDIRS should not contain slashes.
	(scan_autoconf_traces) <AC_CONFIG_AUX_DIR>: Call check_directory
	to ensure the argument exists and is safe.
	* doc/automake.texi (Top level): Do not say that src/subdir
	cannot be put in SUBDIRS.
	(Dist): Mention that distdir and top_distdir can be absolute.
	* lib/Automake/Variable.pm (_do_recursive_traversal) Support
	undefined $fun_collect, and fix two bugs introduced with
	skip_ac_subst on 2004-03-07.
	* lib/am/distdir.am (distdir): Use absolute distdir and
	top_distdir when recursing, because we can no longer prepend only
	`..' in case of SUBDIRS with `/'.
	* tests/auxdir4.test, tests/subdir9.test: New files.
	* tests/Makefile.am (TESTS): Add auxdir4.test.
	* tests/cond2.test, tests/subdir7.test: Augment to check location
	in diagnostics.

2004-05-21  Eric Blake  <ebb9@byu.net>  (tiny changes)

	* tests/txinfo22.test (AC_CONFIG_AUX_DIR): Use aux1, not aux, for
	cygwin compatibility.
	* tests/yacc6.test (AC_CONFIG_AUX_DIR): Likewise.

	* tests/conflnk3.test: Isolate checking for working `test -e' into
	a subshell, to skip this test on broken /bin/sh of solaris.

2004-05-17  Alexandre Duret-Lutz  <adl@gnu.org>

	* m4/cond.m4 (AM_CONDITIONAL): Double-quote diagnostic.
	* tests/condd.test: Define a macro with the same name as a
	conditional.
	* tests/pr220.test: Modernize, and make sure the diagnostics
	contains the macro name.
	Report from Volker Boerchers.

2004-05-16  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/texinfo.tex: New upstream version.

2004-05-15  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (handle_dist): Always define DIST_SUBDIRS, even when
	the no-dist or cygnus options are used.
	* tests/clean2.test: New file.
	* tests/Makefile.am (TESTS): Add clean2.test.
	Report from Daniel Jacobowitz.

	* aclocal.in (add_macro): Do not error out on undefined required
	macros.  We are not sure they are really used, and Autoconf
	already diagnoses them.
	(scan_configure_dep): Diagnose missing AM_ macros as warnings rather
	than errors.
	* tests/aclocal3.test, tests/ammissing.test: Adjust to expect a
	warning instead of an error.
	* tests/aclocal8.test: AC_REQUIRE an undefined macro in an unused
	macro, and ensure aclocal works anyway.
	* tests/acloca17.test: New file.
	* tests/error.test: Delete, superseded by tests/acloca17.test.
	* tests/Makefile.am (TESTS): Add acloca17.test and remove error.test.
	Report from Jim Meyering.

	* lib/am/texibuild.am (?!GENERIC_INFO?%DEST_INFO_PREFIX%%DEST_SUFFIX%):
	Fold a few lines to reduce the output by 5 lines.
	Suggested by Karl Berry.

	* automake.in (parse_arguments, MAIN): Give more precise
	diagnostics when no input file is found.
	* tests/output5.test: Adjust.
	Suggested by Jens Petersen.

2004-05-14  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/am/libs.am (AR, ARFLAGS): Move these definition ...
	* automake.in (handle_libraries): ... here, so that they are
	output even for EXTRA_LIBRARIES.
	* tests/ar2.test: New file.
	* tests/Makefile.am (TESTS): Add it.
	Report from Kevin Ryde.

2004-05-13  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (generate_makefile): Do not output Makefile.in on
	errors.
	* tests/werror2.test: New file.
	* tests/Makefile.am (TESTS): Add werror2.test.
	* tests/substtarg.test, tests/cond36.test, tests/backsl4.test:
	Adjust to run automake with -Wno-error when the output is expected
	in spite of the error.
	Report from Harlan Stenn.

	* doc/automake.texi (Program and Library Variables): Remove
	doubled word in footnote.

	* automake.in (handle_source_transform): Also check for a
	$(srcdir)/old_source rule when computing the default source name.
	Propagate this $(srcdir) prefix in Automake variables.
	* tests/ltlibsrc.test (noinst_LTLIBRARIES): Explicitly refer to
	$(srcdir)/zoo_d_old2_la.c.  This fixes another failure with BSD Make.

2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>

	* Makefile.am (fetch): Work even with FreeBSD "make", which
	uses sh -e and thus errors-out if a simple-command fails.
	* lib/am/check.am (check-TESTS): Likewise.
	* lib/am/ltlib.am (clean-%DIR%LTLIBRARIES): Likewise.
	* lib/am/tags.am (TAGS): Likewise.

2004-05-13  Alexandre Duret-Lutz  <adl@gnu.org>

	* tests/lex3.test, tests/yacc6.test: Require GNU Make.
	Fixing these for BSD Make requires invasive changes (lexers and
	parsers must be built into $srcdir, and--most annoyingly--all
	references to parse.h must be changed to $(srcdir)/parse.h).
	Report from Mark D. Baushke.

2004-05-10  Alexandre Duret-Lutz  <adl@gnu.org>

	* tests/defs.in (GNUmake): Grep for GNU to parry FreeBSD make.
	Report from Mark D. Baushke.

2004-04-25  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/texinfo.tex: New upstream version.

	* lib/depcomp (tru64): Clarify comments.  Thanks to Nicolas Joly.

	* doc/automake.texi (Headers): Revamp.

2004-04-24  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (check_typos): Clarify the diagnostic.
	* tests/warnopts.test: Adjust.

	* lib/Automake/VarDef.pm (append): Turn VAR_ASIS variables into
	VAR_PRETTY variables to work around make implementation with
	limited line length, such as OSF1/Tru64 make.
	* tests/longline.test: New file.
	* tests/Makefile.am (TESTS): Add it.
	* tests/pluseq3.test, tests/pluseq8.test: Adjust.
	Report from Simon Josefsson.

	* lib/am/tags.am (TAGS): Pass `.' to Exuberant Ctags if
	--etags-include is used but no other files are supplied, so it
	creates the TAGS file anyway.
	Report from Akim Demaille.

	* lib/depcomp (tru64) [libtool]: Nicolas Joly reported on
	2002-06-12 that dependencies were output in $dir.libs/$base.lo.d.
	Teun Burgers reported on 2004-03-30 they were in
	$dir.libs/$base.o.d.  Try both.

2004-04-23  Alexandre Duret-Lutz  <adl@gnu.org>

	For PR automake/414:
	Introduce option filename-length-max=99.
	* doc/automake.texi (Options): Document it.
	* configure.ac (AM_INIT_AUTOMAKE): Use it.
	* lib/Automake/Options.pm (_process_option_list): Recognize it.
	* automake.in (handle_dist): Set FILENAME_FILTER.
	* lib/am/distdir.am (distdir) [FILENAME_FILTER]: Diagnose long
	filenames.
	* tests/fn99.test: New file.
	* tests/Makefile.am (TESTS): Add fn99.test.

2004-04-20  Alexandre Duret-Lutz  <adl@gnu.org>

	For PR automake/414:
	Introduce options tar-v7, tar-ustar, and tar-pax to select
	tar format.
	* doc/automake.texi (Options): Document them.
	* lib/Automake/Options.pm (_process_option_list): Process
	these new options.
	* lib/am/distdir.am (dist-gzip, dist-bzip2, dist-tarZ, dist,
	distcheck): Adjust to use am__tar and am__untar.
	* m4/tar.m4: New file.
	* m4/Makefile.am (dist_m4data_DATA): Add tar.m4.
	* m4/init.m4 (AM_INIT_AUTOMAKE): Support the new options
	and call _AM_PROG_TAR.
	* tests/tar.test, tests/tar2.test, tests/tar3.test: New files.
	* tests/Makefile.am (TESTS): Add them.

2004-04-18  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/am/distdir.am (distcheck): Typo in shar decompression.

	* lib/config.guess, lib/config.sub, lib/texinfo.tex: New upstream
	versions.

2004-04-17  Alexandre Duret-Lutz  <adl@gnu.org>

	Fix PR automake/49:
	* automake.in (scan_autoconf_traces) <AC_CONFIG_AUX_DIR>: Diagnose
	calls to AC_CONFIG_AUX_DIR followings calls to AM_INIT_AUTOMAKE.
	* tests/auxdir.test, tests/auxdir2.test, tests/lex5.test,
	tests/mdate3.test, tests/multlib.test, tests/reqd2.test,
	tests/symlink.test, tests/txinfo8.test, tests/txinfo22.test,
	tests/yacc6.test, tests/yacc8.test: Fix to call AC_CONFIG_AUX_DIR
	before AM_INIT_AUTOMAKE.
	* tests/auxdir3.test: New file (exercise this diagnostic).
	* tests/Makefile.am (TESTS): Add auxdir3.test.

2004-04-15  Alexandre Duret-Lutz  <adl@gnu.org>

	* aclocal.in (%map_traced_defs): New variable.
	(scan_m4_files): Normalize filenames.
	(trace_used_macros): Trace for AC_DEFUN and AU_DEFUN, also
	ask for the filename and the first argument.  Populate
	%map_traced_defs.
	(write_aclocal): Use $map_traced_defs to filter out unused
	definitions.
	* tests/acloca15.test: New file.
	* tests/Makefile.am (TESTS): Add acloca15.test.

2004-04-12  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in ($automake_needs_to_reprocess_all_files): Remove.
	($automake_will_process_aux_dir): New variable.
	(scan_autoconf_traces): Reorder @input_files so that the Makefile
	that distributes aux files is processed last.  This way we do not
	have to process all files twice using
	$automake_will_process_aux_dir.
	(require_file_internal): Suggest a full run of automake when
	appropriate.
	(MAIN): Remove the loop on $automake_needs_to_reprocess_all_files.
	* tests/distcom7.test: New file.
	* tests/reqd2.test: Do not check for the "running more than two"
	message.
	* tests/Makefile.am (TESTS): Add distcom7.test.

	* automake.in (@config_aux_path, $config_aux_dir): Rename as ...
	($config_aux_dir, $am_config_aux_dir): ... these.
	($config_aux_dir_set_in_configure_in): Rename as ...
	($config_aux_dir_set_in_configure_ac): ... this.
	(%require_file_found): Rename as ...
	(%required_file_not_found): ... this.
	(handle_languages, handle_texinfo_helper, handle_dist,
	handle_configure, handle_emacs_lisp, handle_python,
	scan_autoconf_traces, yacc_lex_finish_helper): Adjust to new names.
	(scan_autoconf_traces): Call locate_aux_dir.
	(locate_aux_dir): New function.
	(@require_file_paths): Remove, not used anymore.
	(require_file_internal): Look files in only one directory (instead
	of @require_file_internal) passed in argument.
	(require_file, require_conf_file): Pass the destination directory
	to require_file_internal.

	Fix for PR automake/416:
	* m4/depend.m4 (_AM_DEPENDENCIES): Catch `not supported' ICC 8.0
	remarks.
	From Peter Seiderer.

2004-04-10  Andreas Buening  <andreas.buening@nexgo.de>

	* aclocal.in, automake.in, configure.ac, Makefile.am,
	tests/aclocal.in, tests/automake.in, tests/defs.in:
	Use PATH_SEPARATOR from autoconf instead of ':'.

2004-04-09  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (handle_lib_objects): Pass the condition of
	the variable definition to handle_LIBOBJS and handle_ALLOCA,
	not the aggregated conditions.
	* tests/Makefile.am (TESTS): Add libobj14.test.
	* tests/libobj14.test: New file.
	Report from Bill Davidson.

2004-04-02  Mike Nolta  <mike@nolta.net>

	Better support for Fortran 9x.
	* automake.in: Add "fc" and "ppfc" languages for Fortran 9x.
	* doc/automake.texi (Fortran 9x Support): New section.
	* lib/Automake/Variable.pm (%_ac_macro_for_var): Add AC_PROG_FC.
	* tests/compile_f90_c_cxx.test: New file.
	* tests/ext.test: Add AC_PROG_FC.
	* tests/f90only.test: New file.
	* tests/link_f90_only.test: New file.
	* tests/Makefile.am (TESTS): Add new tests.

2004-04-01  Paul Eggert  <eggert@twinsun.com>

	* lib/install-sh: If "mv -f" works, use it, and fall back to
	the old "test -f" + "rm -f" + "mv" method only if "mv -f" does
	not work.  This improves performance in the usual case where
	"mv -f" works.  It also lets us install the "mv" command
	without worrying about a small window where "mv" does not
	exist (this problem was reported by Raul Nunez de Arenas
	Coronado).

2004-03-26  Alexandre Duret-Lutz  <adl@gnu.org>

	* m4/python.m4 (AM_PATH_PYTHON): Make sure am_display_PYTHON is
	set when $PYTHON has been set by the user.
	From Esben Haabendal Soerensen.

2004-03-22  Alexandre Duret-Lutz  <adl@gnu.org>

	* doc/automake.texi (Default _SOURCES): Typo.
	(true): Correct _'s placement in example.
	Report from Stepan Kasal.

2004-03-19  Alexandre Duret-Lutz  <adl@gnu.org>

	Overriding JAVAROOT is legitimate, do not warn about it.
	* lib/Automake/Variable.pm (%_silent_variable_override): Add JAVAROOT.
	* tests/java2.test: Run automake without -Wno-override.
	Report from Simon Josefsson.

2004-03-14  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (handle_texinfo_helper): Typos in comment.

2004-03-07  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/config.guess: New upstream version.

	Fix for PR automake/285:
	* automake.in (handle_ltlibraries): Keep track of installation
	directories for each condition, then define a $(am_TARGET_rpath)
	variable to hold the -rpath flags of Libtool libraries conditionally
	installed in different directories.
	* lib/Automake/DisjConditions.pm (merge): New function.
	* tests/libtool6.test: Adjust.
	* tests/libtool8.test: New file.
	* tests/Makefile.am (TEST): Add libtool8.test.

	* lib/Automake/Variable.pm (traverse_recursively,
	_do_recursive_traversal): Honor the skip_ac_subst option.
	* automake.in (handle_dist): Use skip_ac_subst.

2004-02-29  Alexandre Duret-Lutz  <adl@gnu.org>

	* Makefile.am (cvs-release): Upload to ~ftp/pub/automake, not
	~ftp/automake.
	* lib/gnupload (Example): Update example.

	* lib/config-ml.in, lib/config.guess, lib/config.sub,
	lib/texinfo.tex: New upstream versions.

	* m4/depend.m4 (_AM_DEPENDENCIES): Use `touch' rather than `: >'
	to create numbered dependencies.  This fixes a portability issue
	when CONFIG_SHELL is forced to /bin/sh on Solaris 8.
	Reported by Mark Phillips.

	* automake.in (lang_yacc_target_hook): Use Automake::Rule::define
	so that rules for the same headers are not output twice.
	* lib/Automake/Variable.pm (value_as_list_recursive): Do not
	call `return' inside `map'.
	* tests/cond30.test: Make sure `a.c' and `b.c' both appear
	in the Makefile.in.
	* tests/cond35.test, tests/cond36.test: New files.
	* tests/Makefile.am (TESTS): Add cond35.test and cond36.test.
	Report from Roman Fietze.

	Fix for PR/413:
	* lib/am/distdir.am (distcheck): Create $dc_destdir with `umask
	077 && mkdir' instead of `$(mkdir_p)'.  This prevents possible
	symlink attacks reported by Stefan Nordhausen.

2004-02-16  Alexandre Duret-Lutz  <adl@gnu.org>

	* doc/automake.texi (Multiple Outputs): More text, based on
	comments from Eric Siegerman, Tim Van Holder, and Oren Ben-Kiki.

2004-02-15  Alexandre Duret-Lutz  <adl@gnu.org>

	* m4/mkdirp.m4: Use `mkdir -p' only with GNU mkdir, because
	Solaris 8's mkdir is not thread-safe.
	* lib/mkinstalldirs: Likewise.
	* lib/install-sh: Abort when mkdir fails to create a directory.
	Report from Nathanael Nerode.

2004-02-07  Alexandre Duret-Lutz  <adl@gnu.org>

	* aclocal.in (rel2abs): New function.
	(scan_configure_dep): Use rel2abs instead of File::Spec->rel2abs,
	the later does was introduced in Perl 5.6 so using it breaks with
	Perl 5.005.
	Report from Werner John.

2004-02-03  Alexandre Duret-Lutz  <adl@gnu.org>

	* doc/automake.texi (Future of aclocal): Make clearer that
	it's ok to install macros into /usr/share/aclocal/.

2004-02-01  Alexandre Duret-Lutz  <adl@gnu.org>

	* tests/lisp.test: Delete (pointless).
	* tests/Makefile.am (TESTS): Remove lisp.test.

	* lib/Automake/Variable.pm (transform_variable_recursively):
	Define rewritten variables in all conditions not *covered* by user
	definitions, not simply in conditions without a previous
	definition.
	* tests/cond34.test: New file.
	* tests/Makefile.am (TESTS): Add cond34.test.
	Report from Elena A. Vengerova

	* doc/automake.texi (Multiple Outputs): Typo.

	* doc/automake.texi (Emacs Lisp): Typos.

	Support for conditional _LISP.
	* automake.in (handle_emacs_lisp): Define $(ELCFILES) from LISP, not
	from $(am__ELCFILES).
	* lib/am/lisp.am (elc-stamp): Use $(LISP) instead of $(am__ELFILES).
	* tests/lisp6.test: New file.
	* tests/Makefile.am (TESTS): Add it.

	* automake.in (handle_emacs_lisp): Define $(ELCFILES) as
	$(am__ELCFILES), and always push it on @all.  Do not mention
	elc-stamp.
	* lib/am/lisp.am (.el.elc): Rewrite as ...
	($(am__ELCFILES)): ... this, and depend on elc-stamp.
	(elc-stamp): Make sure elc-stamp is older that all .elc files, as
	explained in the manual entry below.

	* doc/automake.texi (Multiple Outputs): New node.

2004-01-31  Alexandre Duret-Lutz  <adl@gnu.org>

	* m4/regex.m4: Do not AC_SUBST(LIBOBJS), and quote most arguments.
	* tests/regex.test: New file.
	* tests/Makefile.am (TESTS): Add regex.test.

2004-01-28  Alexandre Duret-Lutz  <adl@gnu.org>

	* Makefile.am (maintainer-check): Check for unquoted $(DESTDIR) uses.
	* lib/am/data.am, lib/am/distdir.am, lib/am/java.am, lib/am/libs.am,
	lib/am/lisp.am, lib/am/ltlib.am, lib/am/mans.am, lib/am/progs.am,
	lib/am/python.am, lib/am/scripts.am, lib/am/texinfos.am: Quote
	installation paths in install, uninstall, and installcheck rules,
	as well as in am__installdirs variables.  This is for the sake
	of paths containing spaces.
	* lib/am/install.am (installdirs-am, installdirs): Do not try
	to create "" directories.
	* test/instspc.test: New file.
	* test/Makefile.am (TESTS): Add instspc.test.
	Report from James Amundson.

	* doc/automake.texi (Not Enough, Third-Party Makefiles): New nodes.
	(Extending): Make it a subsection of Not Enough.

	* lib/gnupload (GPG): Use an absolute path.  Suggestion from Gary
	V. Vaughan.
	(passphrase): Unset it this variable before using it, in case it
	was exported.  Report from Scott James Remnant.

2004-01-25  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/gnupload (usage): Fix example.
	* Makefile.am (cvs-release): Fix call to gnupload.
	From Jim Meyering.

2004-01-24  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/gnupload: New script.
	* lib/Makefile.am (EXTRA_DIST): Distribute gnupload.
	* Makefile.am (cvs-release): New target.

2004-01-23  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/am/python.am (uninstall-%DIR%PYTHON): Remove extra `;'s.
	Fix python10.test.

	* m4/depout.m4 (_AM_OUTPUT_DEPENDENCY_COMMANDS): Use `s/xx//p'
	instead of `/xx/ s///p'; the latter fails when GNU sed is run with
	POSIXLY_CORRECT.  Also strip superfluous -e.
	Report from Miloslav Trmac.

2004-01-22  Alexandre Duret-Lutz  <adl@gnu.org>

	* tests/lex5.test: Sleep before calling AUTOMAKE the second time,
	this fixes a spurious failure reported by Andreas Schwab.  Also
	make sure ylwrap is not installed unless needed, and exercise
	--no-force.

2004-01-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)

	* doc/automake.texi (Dist): Document limitations of distcheck-hook
	and DISTCHECK_CONFIGURE_FLAGS with regard to subdirs and
	subpackages.

2004-01-20  Alexandre Duret-Lutz  <adl@gnu.org>

	* doc/automake.texi (Upgrading): New node.

2004-01-20  Gary V. Vaughan  <gary@gnu.org>

	* automake.in (scan_autoconf_traces): AC_LIBTOOL_TAGS can be
	correctly called without arguments as evidenced by the libtool
	demo directories.

2004-01-13  Alexandre Duret-Lutz  <adl@gnu.org>

	* tests/conflnk3.test: Skip if `test -e' does not work.
	Report from Lars Hecking.

2004-01-13  Jim Meyering  <jim@meyering.net>

	* lib/install-sh: Change `\n \t' to `\n\t ' in `defaultIFS'
	assignment.  Remove spurious SPACEs before TABs.

2004-01-12  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/py-compile: Check input files after option processing.
	Ensure --basedir has an argument.
	* lib/am/python.am (install-%DIR%PYTHON): Do not run py-compile
	if nothing was installed.
	* tests/python10.test: New file.
	* tests/Makefile.am (TESTS): Add python10.test.
	Suggested by Sander Niemeijer.

	* tests/txinfo29.test: Remove autom4te.cache.
	Report from Greg Schafer.

	* lib/install-sh: Do not use "$@" in a context where it may be empty,
	for the sake of OSF1/Tru64's shell.
	Report from He Li.

2004-01-11  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/config.sub, lib/config.guess, lib/texinfo.tex: New upstream
	versions.

	* m4/as.m4, m4/depend.m4, m4/maintainer.m4, m4/multi.m4: Update
	copyright years and serial.

	* m4/python.m4 (_AM_PYTHON_INTERPRETER_LIST): Add python2.4.

2004-01-10  Peter Eisentraut  <peter_e@gmx.net>  (tiny change)

	* m4/as.m4 (AM_PROG_AS): Format and align help string more
	consistently.
	* m4/depend.m4 (AM_DEP_TRACK): Likewise.
	* m4/lispdir.m4 (AM_PATH_LISPDIR): Likewise.
	* m4/maintainer.m4 (AM_MAINTAINER_MODE): Likewise.
	* m4/multi.m4 (AM_ENABLE_MULTILIB): Likewise.

2004-01-10  Paul Eggert  <eggert@twinsun.com>

	* m4/lispdir.m4 (AM_PATH_LISPDIR): Don't use \? in sed regular
	expressions; it doesn't conform to POSIX.

2004-01-10  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (shadow_unconditionally): New function...
	(handle_source_transform): ... extracted from here.
	(am_install_var): Use shadow_unconditionally to define %DISTVAR%.
	* lib/am/data.am, lib/am/java.am, lib/am/lisp.am, lib/am/python.am,
	lib/am/script.am: Add %DISTVAR% to DIST_COMMON.
	* tests/cond33.test: Make sure all conditional files are distributed.
	Report from Ralf Corsepius.

2004-01-08  Alexandre Duret-Lutz  <adl@gnu.org>

	* m4/mkdirp.m4 (AM_PROG_MKDIR_P): Append `.' to $(mkdir_p).
	* lib/install-sh: Accept `install-sh -d' with 0..n arguments,
	as well as `install-sh sources... dest' with multiple sources.
	* tests/cond33.test: New file.
	* tests/instsh2.test: Add more checks for install-sh.
	* tests/transform.test: Test for installdirs.
	* tests/Makefile.am (TESTS): Add cond33.test
	Report from Ralf Corsepius.

	* automake.in (handle_configure): Skip AC_CONFIG_LINKS items which
	do not look like DEST:SRC.
	* tests/conflnk3.test: Check for AC_CONFIG_LINKS($computed).

2004-01-07  Alexandre Duret-Lutz  <adl@gnu.org>

	Fix for PR automake/289:
	* automake.in (Automake::Struct::libtool_tag): New attribute.  Define
	it for the language that have a Libtool tag.
	(%libtool_tags): New variable.
	(handle_languages, define_compiler_variable)
	(define_linker_variable): Pass --tag=XXX to libtool if supported.
	(scan_autoconf_traces): Scan for _LT_AC_TAGCONFIG and AC_LIBTOOL_TAGS.
	* tests/libtool3.test, tests/subobj9.test: Check that --tag=XXX is
	output.

2003-01-07  Eric Sunshine  <sunshine@sunshineco.com>  (tiny change)

	* lib/am/configure.am (am__CONFIG_DISTCLEAN_FILES): Add
	config.status.lineno.

2004-01-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)

	* doc/automake.texi (Rebuilding): Typo.

2004-01-07  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/am/Makefile.am (dist_am_DATA): Really add inst-vars.am.

2004-01-06  Alexandre Duret-Lutz  <adl@gnu.org>

	* THANKS: Add Bruce Korb.

2004-01-05  Alexandre Duret-Lutz  <adl@gnu.org>

	Mimic Paul Eggert's changes to Autoconf.
	* Makefile.am (automake, aclocal): Use `chmod a-w', not `chmod -w'.
	* lib/Automake/Makefile.am (Config.pm): Likewise.
	* m4/Makefile.am ($(top_srcdir)/m4/amversion.m4): Likewise.

	* lib/am/inst-vars.am: New file, define am__vpath_adj_setup,
	am__vpath_adj, and am__strip_dir.
	* lib/am/Makefile.am (dist_am_DATA): Add inst-vars.am.
	* lib/am/data.am, lib/am/lisp.am, lib/am/python.am,
	lib/am/scripts.am: Include inst-vars.am, and use $(am__vpath_adj),
	$(am__vpath_adj_setup), and $(am__strip_dir) in install and
	uninstall rules.  This fixes installation of nobase_ files in
	VPATH setups with Sun and OSF1/Tru64 Make.
	* lib/am/libs.am, lib/am/ltlib.am: Include inst-vars.am, and use
	$(am__strip_dir) to simplify install and uninstall rules.
	* tests/nobase.test: Augment to check installation from VPATH builds.

	* automake.in (%transformed_files): New variable.
	(initialize_per_input): Reset it.
	(make_paragraphs): Fill %transformed_files, and define %FIRST%
	each time a file is transformed for the first time.
	(handle_configure): Do not define %FIRST_CONFIG_HIN%.
	(am_install_var): Do not define %FIRST%.
	* lib/am/remake-hdr.am: Use %?FIRST% instead of %?FIRST_CONFIG_HIN%.

2004-01-04  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/texinfo.tex: New upstream version.

	* m4/mkdirp.m4: Do not use `-m 0755'.  This overrides special bits
	and break setups where 775 directories are expected.  Just obey
	umask as we did in the past.
	Report from Harlan Stenn.

2004-01-03  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (scan_texinfo_file): Do not compare $outfile to ''
	as $outfile might not be defined at all.

	* lib/Automake/Variable.pm (define): Rework the way we check
	Automake variable definition.  Ensure consistent :=/+=/=
	definitions only for variables that have been and are defined by
	Automake, and make it an internal error.  Ignore Automake
	attempts to touch a user variable, even with += assignments.
	* tests/txinfo29.test: New file.
	* tests/Makefile.am (TESTS): Add txinfo29.test.
	Reported by Bruce Korb.

2004-01-02  Tom Tromey  <tromey@redhat.com>

	* automake.in (handle_source_transform): Don't generate dist
	variables when no-dist is set.
	(generate_makefile): Likewise.
	* tests/nodist3.test: Ensure that DIST_SOURCES is not created,
	and that dist target does not exist.
        Reported by Tom Fitzsimmons.

2004-01-02  Alexandre Duret-Lutz  <adl@gnu.org>

	* tests/libtool5.test, tests/ltcond.test, tests/ltcond2.test,
	* tests/ltconv.test: Run automake with --add-missing, because
	the CVS version of libtoolize no longer install config.sub and
	config.guess by default.

	Fix for PR automake/319:
	* aclocal.in (scan_m4_files): Scan configure.ac.
	(trace_used_macros, write_aclocal): Remove configure.ac from the
	list of files to include.
	* tests/Makefile.am (TESTS): Add acloca15.test.
	* tests/acloca15.test: New file.

	* aclocal.in (%file_includes): New variable.
	(scan_configure_dep): Compile $m4_include_rx and $ac_require_rx once.
	(scan_file): Scan for included files, and process these files
	recursively.  Fill %file_includes and %file_contents.  Return the
	list of included files, not the contents.
	(scan_m4_files): Adjust calls to scan_files.
	(strip_redundant_includes): New function.
	(trace_used_macros): Call it.
	(write_aclocal): Likewise.  Also check the mtime of included files.
	* tests/Makefile.am (TESTS): Add acloca14.test.
	* tests/acloca14.test: New file.
	Report from Phil Edwards.

2004-01-01  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (handle_languages): Do not define DEP_FILES.
	* m4/depout.m4 (_AM_OUTPUT_DEPENDENCY_COMMANDS): Extract included
	files with $(DEPDIR) in their name instead of DEP_FILES.
	* tests/depend.test, tests/depend4.test, tests/exsource.test:
	Adjust.
	Suggested by Tom Tromey.

	Do not output .lo rules for programs and static libraries objects,
	and do not output .o/.obj rules for libtool libraries.  This is
	about explicit rules only, not inference rules.
	* automake.in (handle_single_transform_list): Rename as ...
	(handle_single_transform): ... this.  Take a single file
	to transform (it was only called this way) and accept a new
	%transform argument.  Fill %lang_specific_files with list
	references instead of strings, and append %transform to each
	of these lists.
	(define_objects_from_sources, handle_source_transform):
	Take a %transform argument, and forward it to &handle_single_transform.
	(handle_languages): Adjust to the new format of
	%lang_specific_files, and honor its %transform part.
	(handle_programs, handle_libraries, handle_ltlibraries): Override
	%NONLIBTOOL% and %LIBTOOL% while calling handle_source_transform.
	(make_paragraphs): Define %NONLIBTOOL% by default.  Make sure
	%transform settings override global settings.
	* lib/am/depend2.am (%OBJ%, %OBJOBJ%): Define only if %NONLIBTOOL%.
	* tests/libtool3.test: Augment to check Makefile.ins for unneeded
	rules.
	Suggested by Thomas Fitzsimmons.

	* automake.in, aclocal.in: Bump copyright years.

2003-12-31  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (generate_makefile): Update misleading comment.

	* automake.in (handle_languages): Define %DEPBASE% conditionally
	on subdir-objects.  Define SUBDIROBJ.  Do not clean *_.c files
	here ...
	(lang_c_finish): ... do it here.
	(handle_single_transform_list): Do not output specific rules for
	subdir-objects files which are not renamed.  This should reduce
	the size of Makefiles with lots of subdirectory sources.
	* lib/depcomp: Simplify computation of dependency output, and use
	DEPDIR.
	* lib/am/depend2.am (%EXT%.o, %EXT%.obj, %EXT%.lo): Adjust call
	to depcomp.  Compute depbase on-the-fly in generic fastdep rules
	for subdir-objects.
	* tests/ansi9.test: Do not grep for an explicit rule that
	we no longer expect.  Really run $MAKE to make sure the chain
	of rules works.
	* tests/yacc5.test: Do not grep for an explicit rule that
	we no longer expect.  Adjust to use set -e.

2003-12-27  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (@common_files): Move configure, configure.ac, and
	configure.in ...
	(@common_sometimes): ... here so that these files do not appear
	twice in DIST_COMMON.

	* automake.in (maybe_push_required_file): Add $(srcdir) in front
	a required files outside the current directory or its subdirectories.
	* lib/am/distdir.am (distdir): Update comment.
	Report from Nicolas Joly.

2003-12-26  Alexandre Duret-Lutz  <adl@gnu.org>

	* doc/automake.texi (@copying): Do not repeat the version.
	(Top): Use @insertcopying.  Add a @detailmenu, this works around
	Emacs 21's inability to lookup indices in sub-nodes (reported
	by Kevin Ryde).
	(C++ Support, Assembly Support, Fortran 77 Support, Java Support,
	Support for Other Languages, Preprocessing Fortran 77, Compiling
	Fortran 77 Files, Mixing Fortran 77 With C and C++, How the Linker
	is Chosen): Add missing descriptions in menus.
	(Fortran 77 and Autoconf): Remove, this node was just saying "use
	Autoconf 2.53 or greater".

2003-12-26  Santiago Vila  <sanvila@unex.es>  (tiny change)

	* NEWS: s/Gettext 1.12.1/Gettext 0.12.1/

2003-12-25  Nicolas Joly  <njoly@pasteur.fr>  (tiny change)

	* doc/automake.texi (Conditional Sources): Typo.

2003-12-25  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Automake/Config.in: Require Exporter.
	Report from Kevin Ryde (failure with Perl 5.005_03).

2003-12-15  Alexandre Duret-Lutz  <adl@gnu.org>

	* tests/aclocal6.test: Check for autom4te.cache only if it has
	been created.
	* tests/maintclean.test: Update comment.
	Report from Bruno Haible.

	* tests/txinfo24.test, tests/txinfo25.test, tests/txinfo28.test:
	Require texi2dvi-o.
	Report from Václav Haisman.

2003-12-10  Alexandre Duret-Lutz  <adl@gnu.org>

	* configure.ac, NEWS: Bump version to 1.8a.

	* configure.ac, NEWS: Bump version to 1.8.

	* lib/texinfo.tex: New upstream version.

	* Makefile.am (INSTALL): Copy the source from $(srcdir).

2003-12-09  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Automake/Rule.pm (define): Remove debugging traces.
	Report from Akim Demaille.

2003-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
	    Alexandre Duret-Lutz  <adl@gnu.org>

	* Makefile.am (do_subst): Fix the substitution of @configure_input@.
	(automake, aclocal): Create the output atomically and make it
	read-only, as done in the Autoconf package.
	* lib/Automake/Makefile.am (do_subst): Fix the substitution of
	@configure_input@.
	(Config.pm): Create the output atomically and make it read-only.
	* m4/Makefile.am ($(top_srcdir)/m4/amversion.m4): Substitute
	@configure_input@ and make the output read-only.
	* lib/Automake/Config.in, m4/amversion.in, tests/aclocal.in,
	tests/automake.in, tests/defs.in: Add a @configure_input@ line.

2003-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)

	* doc/automake.texi (Local Macros, CVS): Typos.

2003-12-08  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Automake/Variable.pm (hook): Use $$ as prototype, not $\&.
	Perl 5.6.0 will not accept a reference sub reference for the
	latter.
	* automake.in (var_SUFFIXES_trigger): Adjust registration via
	Automake::Variable::hook.
	(handle_texinfo_helper): Make sure `inner_expand => 1' appears
	on one line, so that Perl 5.6.0 does not complain about
	inner_expand being a bare identifier.

2003-12-05  Alexandre Duret-Lutz  <adl@gnu.org>

	* aclocal.in (check_acinclude, scan_file): Output `warning:' in
	front of warnings.
	Report from Pavel Roskin.

2003-12-04  Alexandre Duret-Lutz  <adl@gnu.org>

	* TODO: Remove some old entries.

	* doc/automake.texi (Rebuilding): Document CONFIGURE_DEPENDENCIES
	and CONFIG_STATUS_DEPENDENCIES.  Move this sections later
	in the manual since it's pretty advanced material.

	* automake.in ($config_header_location): Remove.  Use
	%ac_config_files_location instead.
	(rewrite_inputs_into_dependencies): Do not prepend $(top_builddir)/
	at the top-level.
	(handle_configure): Use rewrite_inputs_into_dependencies to
	distribute and compute AC_CONFIG_HEADERS dependencies.
	(scan_autoconf_traces) <AC_CONFIG_HEADERS>: Fill
	%ac_config_files_location.
	* lib/am/remake-hdr.am ($(srcdir)/%CONFIG_HIN%): Rename as ...
	(%CONFIG_HIN%): ... this.  $(srcdir) is already added in
	scan_autoconf_traces.
	* tests/Makefile.am (TESTS): Add confh5.test.
	* tests/confh5.test: New file.

	* tests/ltlibsrc.test: Fix the zoo_d_old2_la.c rule in Makefile.am,
	$< is not portable and the source is in $(srcdir).

2003-12-03  Paolo Bonzini  <bonzini@gnu.org>
	    Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (handle_configure): Do not require link sources if
	they contain a dollar, or if they were built.  Likewise, do not
	clean link destination if they contain a dollar.
	(scan_autoconf_traces) <AC_CONFIG_LINKS>: Populate
	%ac_config_files_location with link destinations.  Do not
	store locations in @config_links, now that %ac_config_files_location
	have them.
	* tests/conflnk3.test: New file.
	* tests/Makefile.am (TESTS): Add conflnk3.test.

2003-12-02  Alexandre Duret-Lutz  <adl@gnu.org>

	* configure.ac, NEWS: Bump version to 1.7i.

	* configure.ac, NEWS: Bump version to 1.7h.

	* doc/automake.texi (Default _SOURCES): Fix reference to true.

	* lib/texinfo.tex: New upstream version.

2003-11-30  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (handle_source_transform): If it's present, use
	libfoo_la.c instead of libfoo.c as the default source of
	libfoo.la, and issue an -Wobsolete diagnostic.  Do not be
	greedy in the suffix replacement regex.
	* doc/automake.texi (Default _SOURCES): New node.
	(Program Sources, Libtool Modules): Refer to it.
	* tests/ltlibsrc.test: Update to check for old default source files.

2003-11-30  Gary V. Vaughan  <gary@gnu.org>

	* automake.in (&handle_source_transform): Calculate a default file
	for use in the absence of an appropriate _SOURCES declaration by
	first stripping any suffix from the unxformed target name, and
	appending `.c'.
	* doc/automake.texi (Program Sources, Libtool Modules): Document this.
	* tests/ltlibsrc.test: New file.
	* tests/Makefile.am (TESTS): Add ltlibsrc.test.

2003-11-29  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Automake/Variable.pm (loc_and_value_as_list_recursive,
	_value_as_list_recursive_worker): Merge into ...
	(value_as_list_recursive): ... this function.  Pass options
	as a hash argument, and use the `location' option to trigger
	the behavior of loc_and_value_as_list_recursive.
	(traverse_recursively, transform_variable_recursively): Take
	options as a %options argument.
	(_do_recursive_traversal): Perform expansion of inner variables
	(as in `$(FILE).ext') on request.
	* automake.in (handle_options, check_libobjs_sources)
	(handle_source_transform, handle_LIBOBJS, handle_ltlibraries)
	(handle_ltlibraries, handle_man_pages, handle_dist)
	(handle_gettext, am_install_var): Adjust usage of
	value_as_list_recursive.
	(handle_texinfo_helper): Pass inner_expand to
	value_as_list_recursive.
	* tests/txinfo28.test: New file.
	* tests/Makefile.am (TESTS): Add txinfo28.test.
	Report from Ralf Corsepius.

	* lib/Automake/Variable.pm (_do_recursive_traversal): Do not
	update @_substfroms and @_substfroms for undefined variables.
	* tests/substre2.test: New file.
	* tests/Makefile.am (TESTS): Add substre2.test.

	* lib/Automake/VarDef.pm (value): Rename as ...
	(raw_value): ... this.
	(value): New method, strip # and \\\n.
	(dump): Use raw_value.
	* lib/Automake/Variable.pm (output): Use raw_value.
	(value_as_list): Simplify, now that backslash and comments
	are already removed.
	* tests/txinfo22.test: Make sure Automake isn't confused
	by comments in variables.

2003-11-27  Alexandre Duret-Lutz  <adl@gnu.org>

	* doc/automake.texi: More target vs. rule editing.  Back out some
	of the previous changes.  It's OK to talk about targets as "entry
	points", or as thing to build, but targets cannot be run: rules
	are run.

	* doc/automake.texi: s/target/rule/ where appropriate.  A target
	is the destination of a target rule, not the rule itself.
	Suggested by Bruno Haible.

2003-11-25  Alexandre Duret-Lutz  <adl@gnu.org>

	* configure.ac, NEWS: Bump version to 1.7g.

	* configure.ac, NEWS: Bump version to 1.7f.

	* automake.in (prepend_srcdir): Parenthesize @inputs to remove
	a maintainer-check warning.
	* tests/subst2.test: Rewrite the $MAKE invocation to please
	maintainer-check.

	* lib/config.sub, lib/config.guess, lib/texinfo.tex: New upstream
	versions.

	* doc/automake.texi (Program variables): Mention per-target
	_CPPFLAGS in the documentation of INCLUDES.
	* automake.in (generate_makefile): Likewise in the INCLUDES diagnostic.
	Report from Bob Friesenhahn.

	* doc/automake.texi (Extending): Elaborate on overriding.
	* NEWS: Likewise.
	Suggested by Bruno Haible.

2003-11-24  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Automake/Variable.pm (output): Add $(am__empty) to variable
	definitions that end with a line full of @substitutions@ that
	would confuse HP-UX Make if it were blank.
	(transform_variable_recursively): Make sure not to erase empty
	variables.
	* tests/Makefile.am (TESTS): Add subst2.test.
	* tests/subst2.test: New file.
	Report from Harlan Stenn.

	* lib/am/texibuild.am (%SOURCE_SUFFIX%.html): Work around a
	Texinfo 4.1 bug.
	Report from Dalibor Topic.

2003-11-22  Alexandre Duret-Lutz  <adl@gnu.org>

	Fix for PR automake/411:
	* automake.in (rewrite_inputs_into_dependencies): Simplify, and rename
	into ...
	(prepend_srcdir): ... this.
	(rewrite_inputs_into_dependencies): New function, extracted from ...
	(handle_configure): ... here.  Adjust to use prepend_srcdir
	or rewrite_inputs_into_dependencies where needed.  Especially,
	using (the new) rewrite_inputs_into_dependencies to compute
	Makefile dependencies will fix PR/411.
	* lib/am/configure.am (DIST_COMMON): Remove %MAKEFILE-IN%, it's
	already distributed by rewrite_inputs_into_dependencies.
	* tests/Makefile.am (TESTS): Add output10.test, remove distcom.test.
	* tests/colon3.test: Use set -e.  Don't allow any AUTOMAKE
	invocation refer to zardoz.  Make sure two.in and three.in
	appear as $(srcdir)/two.in and $(srcdir)/three.in dependencies.
	* tests/distcom.test: Delete.  This is covered by tests/output9.test.
	* tests/output10.test: New file, for PR/411.

2003-11-21  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (append_exeext): Do not append $(EXEEXT) to
	@substitutions@.
	* tests/exeext4.test: New file.
	* tests/Makefile.am (TESTS): Add exeext4.test.

2003-11-19  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/am/configure.am (%MAKEFILE%): Remove %MAINTAINER-MODE%,
	mistakenly added on 2001-03-05.
	* tests/remake5.test: New file.
	* tests/Makefile.am (TESTS): Add remake5.test.
	Report from Ralf Corsepius.

2003-11-18  Alexandre Duret-Lutz  <adl@gnu.org>

	* configure.ac, NEWS: Bump version to 1.7e.

	* configure.ac, NEWS: Bump version to 1.7d.

	* lib/config.sub, lib/config.guess, lib/texinfo.tex: New
	upstream versions.

2003-11-18  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>  (tiny change)
	    Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/am/texinfos.am (install-info): Depend on
	install-info-recursive or install-info-am even if no-installinfo.
	* tests/txinfo27.test: New file.
	* tests/Makefile.am (TESTS): Add txinfo26.test.

2003-11-18  Paolo Bonzini  <bonzini@gnu.org>
	    Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/ylwrap: Do not overwrite headers if they haven't changed.
	Fix the include guard substitution.
	* tests/yacc6.test: Augment to run ylwrap, and make sure it
	does not needlessly update headers.
	* tests/yacc8.test: Make sure headers are not needlessly updated
	with ylwrap is not used.  Move `test -f foo.o' into the
	Makefile as `test -f foo.$(OBJEXT)' for portability.

2003-11-17  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (generate_makefile): Define SUBDIRS if it is
	not defined and DIST_SUBDIRS is.
	* tests/subpkg2.test: New file.
	* tests/Makefile.am (TESTS): Add subpkg2.test.
	Report from Gary V. Vaughan.

	* tests/suffix11.test: Check for suffixes containing `-'.
	* lib/Automake/Rule.pm ($_SUFFIX_RULE_PATTERN): Accept `-' in
	suffixes.

	* lib/Automake/Rule.pm (define): Suggest using target-local instead
	of target-am, not target-am-local.
	* tests/overrid.test: Check the diagnostic for clean-am.
	Report from Bruno Haible.

2003-11-17  Jim Meyering  <jim@meyering.net>

	* bootstrap: Require not only that `perl' have the executable
	bit set, but also that it is not a directory.

	* lib/am/configure.am: Mark %MAKEFILE% as `.PRECIOUS'.

2003-11-17  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (ac_config_files_location): Declare as a hash.
	(handle_configure): Rewrite the computation of AC_CONFIG_FILES
	dependencies; make sure we don't use $(srcdir) or $(top_srcdir)
	for inputs which are also outputs, and do not check inputs
	relatively to the current directory.
	(scan_autoconf_config_files): Take $where as argument, and
	fill $ac_config_files_location.
	* tests/output8.test, tests/output9.test: New files.
	* tests/Makefile.am (TESTS): Add output8.test and output9.test.
	Report from Bruno Haible.

2003-11-14  Alexandre Duret-Lutz  <adl@gnu.org>

	* tests/aclibobj.test, tests/aclocal.test, tests/aclocal3.test,
	tests/acoutbs.test, tests/acoutbs2.test, tests/acoutnoq.test,
	tests/acoutpt.test, tests/acoutpt2.test, tests/acoutqnl.test,
	tests/acsilent.test, tests/acsubst.test, tests/acsubst2.test,
	tests/all.test, tests/alpha.test, tests/amassign.test,
	tests/ammissing.test, tests/ansi.test, tests/ansi10.test,
	tests/ansi2.test, tests/ansi3.test, tests/ansi3b.test,
	tests/ansi4.test, tests/ansi5.test, tests/ansi6.test,
	tests/ansi7.test, tests/ansi9.test, tests/ar.test,
	tests/autohdr.test, tests/autohdr2.test, tests/auxdir.test,
	tests/auxdir2.test, tests/backsl.test, tests/backsl2.test,
	tests/badprog.test, tests/block.test, tests/canon2.test,
	tests/canon3.test, tests/canon4.test, tests/canon5.test,
	tests/ccnoco.test, tests/check.test, tests/check2.test,
	tests/check3.test, tests/checkall.test, tests/clean.test,
	tests/colneq2.test, tests/colon.test, tests/colon2.test,
	tests/colon3.test, tests/colon4.test, tests/colon5.test,
	tests/colon6.test, tests/colon7.test, tests/comment.test,
	tests/comment2.test, tests/comment4.test, tests/comment6.test,
	tests/comment7.test, tests/compile_f_c_cxx.test, tests/cond.test,
	tests/cond10.test, tests/cond11.test, tests/cond13.test,
	tests/cond14.test, tests/cond15.test, tests/cond16.test,
	tests/cond17.test, tests/cond18.test, tests/cond19.test,
	tests/cond21.test, tests/cond22.test, tests/cond25.test,
	tests/cond26.test, tests/cond28.test, tests/cond3.test,
	tests/cond4.test, tests/cond5.test, tests/cond6.test,
	tests/cond7.test, tests/cond8.test, tests/cond9.test,
	tests/condd.test, tests/condinc.test, tests/condlib.test,
	tests/condman.test, tests/condman2.test, tests/conf2.test,
	tests/confdeps.test, tests/confh.test, tests/confh4.test,
	tests/config.test, tests/confincl.test, tests/conflnk.test,
	tests/conflnk2.test, tests/confsub.test, tests/confvar.test,
	tests/confvar2.test, tests/copy.test, tests/ctarget1.test,
	tests/cxx.test, tests/cxxansi.test, tests/cxxcpp.test,
	tests/cxxlibobj.test, tests/cxxlink.test, tests/cxxnoc.test,
	tests/cxxo.test, tests/cygwin32.test, tests/dash.test,
	tests/defun.test, tests/defun2.test, tests/dejagnu.test,
	tests/dejagnu3.test, tests/dejagnu4.test, tests/dejagnu5.test,
	tests/dejagnu6.test, tests/dejagnu7.test, tests/depacl2.test,
	tests/depcomp.test, tests/depcomp2.test, tests/depcomp4.test,
	tests/depdist.test, tests/depend.test, tests/depend2.test,
	tests/depend3.test, tests/depend4.test, tests/destdir.test,
	tests/dirlist.test, tests/discover.test, tests/distcom.test,
	tests/distcom2.test, tests/distdir.test, tests/distname.test,
	tests/dollar.test, tests/double.test, tests/dup2.test,
	tests/empty.test, tests/empty2.test, tests/empty3.test,
	tests/empty4.test, tests/error.test, tests/exdir.test,
	tests/exeext.test, tests/exeext3.test, tests/exsource.test,
	tests/ext.test, tests/ext2.test, tests/extra.test,
	tests/extra2.test, tests/extra3.test, tests/extra4.test,
	tests/extra5.test, tests/extra6.test, tests/extra7.test,
	tests/flibs.test, tests/fnoc.test, tests/fo.test,
	tests/fonly.test, tests/fortdep.test, tests/fpinst2.test,
	tests/fpinstall.test, tests/gcj.test, tests/gcj3.test,
	tests/gcj4.test, tests/gnits2.test, tests/gnits3.test,
	tests/header.test, tests/implicit.test, tests/include.test,
	tests/include2.test, tests/info.test, tests/insh2.test,
	tests/install2.test, tests/installdir.test, tests/instdat.test,
	tests/instdat2.test, tests/instexec.test, tests/insthook.test,
	tests/instman.test, tests/instman2.test, tests/instsh.test,
	tests/instsh2.test, tests/interp.test, tests/interp2.test,
	tests/java.test, tests/java2.test, tests/javaprim.test,
	tests/javasubst.test, tests/ldadd.test, tests/ldflags.test,
	tests/lex.test, tests/lex3.test, tests/lex4.test, tests/lex5.test,
	tests/libobj11.test, tests/libobj2.test, tests/libobj4.test,
	tests/libobj5.test, tests/libobj7.test, tests/libobj8.test,
	tests/library.test, tests/libtool.test, tests/libtool2.test,
	tests/libtool3.test, tests/libtool5.test, tests/link_c_cxx.test,
	tests/link_dist.test, tests/link_f_only.test, tests/link_fc.test,
	tests/link_fccxx.test, tests/link_fcxx.test, tests/lisp.test,
	tests/listval.test, tests/ltdeps.test, tests/ltlibobjs.test,
	tests/maintclean.test, tests/make.test, tests/makej.test,
	tests/makevars.test, tests/man.test, tests/man2.test,
	tests/mclean.test, tests/mdate.test, tests/mdate2.test,
	tests/mdate3.test, tests/mdate4.test, tests/mkinst2.test,
	tests/mkinstall.test, tests/nobase.test, tests/nodef.test,
	tests/nodef2.test, tests/nodep.test, tests/nodepcomp.test,
	tests/nodist.test, tests/nodist2.test, tests/nodist3.test,
	tests/noinst.test, tests/noinstdir.test, tests/nolink.test,
	tests/nostdinc.test, tests/number.test, tests/obsolete.test,
	tests/order.test, tests/outdir.test, tests/output.test,
	tests/output2.test, tests/output3.test, tests/output4.test,
	tests/parse.test, tests/phony.test, tests/pluseq.test,
	tests/pluseq10.test, tests/pluseq2.test, tests/pluseq3.test,
	tests/pluseq4.test, tests/pluseq6.test, tests/pluseq8.test,
	tests/postproc.test, tests/ppf77.test, tests/pr2.test,
	tests/pr204.test, tests/pr220.test, tests/pr224.test,
	tests/pr229.test, tests/pr243.test, tests/pr266.test,
	tests/pr279-2.test, tests/pr279.test, tests/pr287.test,
	tests/pr300-lib.test, tests/pr300-ltlib.test,
	tests/pr300-prog.test, tests/pr307.test, tests/pr72.test,
	tests/pr87.test, tests/pr9.test, tests/prefix.test,
	tests/proginst.test, tests/python.test, tests/python3.test,
	tests/python4.test, tests/python5.test, tests/python6.test,
	tests/python7.test, tests/python8.test, tests/python9.test,
	tests/recurs2.test, tests/remake.test, tests/remake2.test,
	tests/remake3.test, tests/req.test, tests/reqd.test,
	tests/rulepat.test, tests/scripts.test, tests/sinclude.test,
	tests/space.test, tests/specflg3.test, tests/specflg6.test,
	tests/specflg7.test, tests/specflg8.test, tests/specflg9.test,
	tests/spell3.test, tests/spelling.test, tests/spy.test,
	tests/stamph2.test, tests/stdlib2.test, tests/strip.test,
	tests/subcond.test, tests/subcond2.test, tests/subcond3.test,
	tests/subdir.test, tests/subdir2.test, tests/subdir3.test,
	tests/subdir4.test, tests/subdir5.test, tests/subdir6.test,
	tests/subdirbuiltsources.test, tests/subobj.test,
	tests/subobj2.test, tests/subobj3.test, tests/subobj4.test,
	tests/subobj5.test, tests/subobj6.test, tests/subobj7.test,
	tests/subobj8.test, tests/subobj9.test, tests/subobjname.test,
	tests/subpkg.test, tests/subst.test, tests/substref.test,
	tests/suffix.test, tests/suffix10.test, tests/suffix2.test,
	tests/suffix3.test, tests/suffix4.test, tests/suffix5.test,
	tests/suffix6.test, tests/suffix7.test, tests/suffix8.test,
	tests/suffix9.test, tests/symlink2.test, tests/symlink3.test,
	tests/tags.test, tests/tagsub.test, tests/target-cflags.test,
	tests/transform.test, tests/txinfo.test, tests/txinfo10.test,
	tests/txinfo13.test, tests/txinfo16.test, tests/txinfo17.test,
	tests/txinfo18.test, tests/txinfo2.test, tests/txinfo23.test,
	tests/txinfo24.test, tests/txinfo25.test, tests/txinfo26.test,
	tests/txinfo3.test, tests/txinfo5.test, tests/txinfo6.test,
	tests/txinfo7.test, tests/txinfo8.test, tests/txinfo9.test,
	tests/unused.test, tests/vars.test, tests/vars3.test,
	tests/vartar.test, tests/version.test, tests/version2.test,
	tests/version4.test, tests/version6.test, tests/version7.test,
	tests/vpath.test, tests/vtexi.test, tests/vtexi2.test,
	tests/werror.test, tests/whoami.test, tests/yacc.test,
	tests/yacc3.test, tests/yacc4.test, tests/yacc5.test,
	tests/yacc6.test, tests/yacc7.test, tests/yacc8.test,
	tests/yaccpp.test, tests/yaccvpath.test: Fix license to refer
	to Automake, not autoconf.

	Fix for PR automake/408:
	* lib/am/texinfos.am (install-info-am): Strip any $(srcdir)/ prefix
	from $file, as already done for dist-info.
	* tests/Makefile.am (TESTS): Add txinfo26.test.
	* tests/txinfo26.test: New file.
	Report from Nicholas Wourms.

2003-11-13  Alexandre Duret-Lutz  <adl@gnu.org>

	* m4/lispdir.m4 (AM_PATH_LISPDIR): If EMACS=t, empty it before
	running AC_CHECK_PROGS(EMACS).
	* lib/am/lisp.am (elc-stamp): Quote $(EMACS).
	Report from Jens Petersen.

	* tests/mkinst2.test: Rewrite.

	* m4/mkdirp.m4: Do not require AM_AUX_DIR_EXPAND.

2003-11-12  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (scan_autoconf_traces): Honor sinclude.
	* tests/sinclude.test: Check for sinclude.
	Report from Roberto Bagnara.

2003-11-11  Alexandre Duret-Lutz  <adl@gnu.org>

	* Makefile.am: Do not rerun `make dist' after tagging, `make distcheck'
	already build the tarballs.  Commit files right before tagging.
	Check NEWS before running distcheck.

	* m4/amversion.in (AM_AUTOMAKE_VERSION): Missing cosmetic space.

	* configure.ac, NEWS: Bump version to 1.7c.

	* configure.ac, NEWS: Bump version to 1.7b.
	* Makefile.am (maintainer-check): Ignore comments while
	scanning for rm without -f.

	* Makefile.am (fetch): Get all files from savannah.  Do not
	postprocess Struct.pm and XFiles.pm, since we now are the master
	of these.
	* lib/config.sub, lib/config.guess, lib/config-ml.in,
	lib/texinfo.tex: New upstream versions.

	* configure.ac: Check that autoconf is installed, that it works,
	and that it is recent enough in three steps, not one.

	* NEWS: Minor edits.

	* lib/Makefile.am (dist_script_DATA): Move config-ml.in ...
	(dist_pkgvdata_DATA): ... here.

	* tests/spy.test: Document overlapping ::-rules incompatibilities,
	and check only non-overlapping ::-rules.

	* doc/automake.texi (Texinfo): Define MAKEINFO, MAKEINFOHTML,
	MAKEINFOFLAGS, AM_MAKEINFOFLAGS, AM_MAKEINFOHTMLFLAGS, TEXI2DVI,
	TEXI2PDF, DVIPS, and TEXINFO_TEX in a table.
	(Uniform): Do not speak of missing HTML support, this is
	confusing.
	* lib/Automake/Variable.pm (_silent_variable_override): Add
	AM_MAKEINFOHTMLFLAGS.
	* lib/am/texibuild.am (%SOURCE_SUFFIX%.html): Use MAKEINFOHTML and
	AM_MAKEINFOHTMLFLAGS instead of MAKEINFO and AM_MAKEINFOFLAGS.
	* lib/am/texinfos.am (MAKEINFOHTML, AM_MAKEINFOHTMLFLAGS): Define.
	* tests/txinfo21.test: Add a test with AM_MAKEINFOHTMLFLAGS.

2003-11-10  Alexandre Duret-Lutz  <adl@gnu.org>

	* tests/spy.test: New file.
	* tests/Makefile.am (TESTS): Add spy.test.

	* automake.in (handle_configure): Distribute and define mkinstalldirs
	only if it is already present in the package.
	(scan_autoconf_files): Do not require mkinstalldirs.
	(require_build_directory): Use $(mkdir_p), not $(mkinstalldirs).
	* lib/am/data.am, lib/am/distdir.am, lib/am/install.am,
	lib/am/java.am, lib/am/libs.am, lib/am/lisp.am, lib/am/mans.am,
	lib/am/progs.am, lib/am/python.am, lib/am/scripts.am,
	lib/am/texinfos.am: Use $(mkdir_p) instead of $(mkinstalldirs).
	* m4/mkdirp.m4: New file.
	* m4/Makefile.am (dist_m4data_DATA): Add mkdirp.m4.
	* m4/init.m4 (AM_INIT_AUTOMAKE): Call AM_PROG_MKDIR_P.
	* tests/Makefile.am (TESTS): Remove insh.test.
	* tests/insh.test: Delete.
	* tests/defs.in, tests/instsh.test: Do not install mkinstalldirs.
	* tests/auxdir.test: Install mkinstalldirs.
	* tests/distdir.test, tests/instman.test, tests/pr2.test: Use
	$(mkdir_p), not $(mkinstalldirs).
	* tests/empty.test: Run configure, do not substitute things by hand.
	* doc/automake.texi (Optional) <AC_CONFIG_FILES>: Take install-sh
	as an example, not mkinstalldirs.
	(Auxiliary Programs) <mkinstalldirs>: Update.

	* tests/defs.in: Handle required=bzip2.

	* tests/defs.in: Export SHELL.
	* tests/cond11.test: Missing quotes.
	* tests/nogzip2.test: Require bzip2.

2003-11-09  Alexandre Duret-Lutz  <adl@gnu.org>

	* NEWS: Add news entries from 1.6.x and 1.7.x.

	* automake.texi (Optional) <AC_SUBST>: Grammar fixes.

	* automake.in (check_gnu_standards): Install COPYING only if
	none of COPYING, COPYING.LIB, or COPYING.LESSER exist.  Do not
	overwrite the license otherwise.
	* tests/Makefile.am (TESTS): Add license.test.
	* tests/license.test: New file.

	* lib/mkinstalldirs: Mention automake-patches@gnu.org and
	bug-automake@gnu.org.
	* lib/compile, lib/depcomp, lib/elisp-comp, lib/mdate-sh:
	Likewise.  Also add support for --help and --version.
	* lib/py-compile, lib/ylwrap: Likewise, and reindent.

2003-11-08  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/am/tags.am (ETAGSFLAGS, CTAGSFLAGS): Remove.
	* lib/am/dejagnu.am (RUNTESTFLAGS): Remove.
	* lib/am/java.am (JAVACFLAGS): Remove.
	* tests/dejagnu3.test: Check that the environment value
	of RUNTESTFLAGS get passed down to runtest.
	Suggested by Mark Mitchell.

	* lib/am/depend2.am (?GENERIC?%EXT%.o, ?GENERIC?%EXT%.obj)
	(?GENERIC?%EXT%.lo): Do not echo compile command manually, this
	breaks `make -s'.  Instead, fold the compile command on two lines,
	so that it take less space on the display.
	Suggested by Karl Berry and William Fulton.

	* lib/am/texibuild.am (%DEST_PREFIX%%DEST_SUFFIX%): Rename as ...
	(%DEST_INFO_PREFIX%%DEST_SUFFIX%): ... this, and honor ?INSRC?
	to select $(srcdir) or `.' builds.
	(INFO_DEPS): Define here.
	* lib/am/texinfos.am (dist-info): Strip filename starting with
	"$(srcdir)/".
	* automake.in (output_texinfo_build_rules): Take a new argument
	$insrc, and adjust substitutions in 'texibuild'.
	(handle_texinfo_helper): Compute a regex of all user-cleaned
	files, and use this to select whether to build .info files in `.'
	or $(srcdir).  Give an account of the $(srcdir) vs `.' debacle.
	Alway build the version.texi and stamp files in $(srcdir).  Do not
	define INFO_DEPS.
	* tests/Makefile.am (TESTS): Add txinfo23.test, txinfo24.test,
	and txinfo25.test.
	* tests/txinfo23.test, tests/txinfo24.test, tests/txinfo25.test:
	New files.
	* tests/txinfo13.test, tests/txinfo16.test, tests/txinfo3.test,
	tests/vtexi.test: Adjust to new rules.

2003-11-05  Alexandre Duret-Lutz  <adl@gnu.org>

	* m4/init.m4 (AM_INIT_AUTOMAKE): Require Autoconf 2.58.
	* configure.ac: Require Autoconf 2.58a, and check for 2.58.

2003-10-27  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/am/remake-hdr.am ($(srcdir)/%CONFIG_HIN%): Erase %STAMP%.
	* tests/Makefile.am (TESTS): Add autohdr3.test
	* tests/autohdr3.test: New file.

	* automake.in (handle_configure): Rename am__configure_deps
	as am__aclocal_m4_deps and include $(ACLOCAL_M4_SOURCES) and
	$configure_ac.  Define am__configure_deps as am__aclocal_m4_deps
	+ $(CONFIGURE_DEPENDENCIES) + $(ACLOCAL_M4).  Do not define
	ACLOCAL_M4_DEPS while processing configure.am.
	(make_paragraphs): Do not define %CONFIGURE_AC%, now unused.
	(scan_aclocal_m4): Do not distribute aclocal.m4, this
	is done from lib/am/configure.am.
	* lib/am/configure.am (%MAKEFILE-IN%, DIST_COMMON,
	$(top_srcdir)/configure, $(ACLOCAL_M4)): Simplify using
	$(am__configure_deps) or $(am__aclocal_m4_deps).
	* lib/am/remake-hdr.am ($(srcdir)/%CONFIG_HIN%): Likewise.

2003-10-26  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/am/remake-hdr.am ($(srcdir)/%CONFIG_HIN%): Depend on
	$(am__configure_deps).

	* automake.in (handle_configure): Distribute all AC_CONFIG_HEADERS
	sources, and without using require_file.  Define %CONFIG_H_DEPS%
	and %FIRST_CONFIG_HIN% while processing remake-hdr.am.
	* lib/am/remake-hdr.am (%STAMP%): Use %CONFIG_H_DEPS% instead
	of (srcdir)/%CONFIG_HIN%.  Output the $(srcdir)/%CONFIG_HIN%
	rule only for the first header (i.e., if %FIRST_CONFIG_HIN%).
	* tests/autohdr4.test: New file.
	* tests/Makefile.am (TESTS): Add autohdr4.test.
	* tests/config.test: Do not grep, run things to see if they work.

2003-10-25  Alexandre Duret-Lutz  <adl@gnu.org>

	* tests/output7.test: Populate sub/ with a dummy file, so that it
	is not empty.  This fixes a failure reported by Patrick Welche.
	* lib/am/distdir.am: Add note about tar's `-o' option and empty
	directories.

2003-10-24  Didier Cassirame  <faded@free.fr>  (tiny change)

	* lib/ylwrap: Typo in regex.

2003-10-23  Paul Eggert  <eggert@twinsun.com>

	* lib/Automake/XFile.pm: Don't assume -j is solo.
	Issue a more-informative diagnostic.
	Problems reported by Eric Sunshine.

2003-10-21  Alexandre Duret-Lutz  <adl@gnu.org>

	* m4/lispdir.m4 (AM_PATH_LISPDIR): Always check for Emacs.
	Always define lispdir.
	* lib/am/lisp.am (install-%DIR%LISP, uninstall-%DIR%LISP): Check
	$(EMACS) to decide whether _LISP files must be installed,
	not $(lispdir).
	* doc/automake.texi (Emacs Lisp): Mention the two ways to install
	non byte-compiled Emacs lisp files.
	* tests/lisp4.test, tests/lisp5.test: Check "make install"
	when EMACS=no.
	Suggested by Simon Josefsson.

	* NEWS: Clarify the entry about multiple conditional definitions
	of _PROGRAMS, _LDADD, and _LIBADD.
	Report from Simon Josefsson.

	* lib/am/install.am (install-strip): Override install_sh_PROGRAM
	too.
	Report from Elmar Hoffmann.

2003-10-07  Alexandre Duret-Lutz  <adl@gnu.org>

	* aclocal.in ("MAIN", usage, parse_arguments): Move near
	the end, so "MAIN" can use prototypes.
	(scan_configure): Move later too, for the sake of prototypes.
	(scan_configure_dep): Fix setting of $scanned_configure_dep.
	(trace_used_macros): Do not take any argument.

2003-10-06  Alexandre Duret-Lutz  <adl@gnu.org>

	* tests/stdlib2.test: Check AM_LDFLAGS alone.

	* lib/config.guess, lib/config.sub, lib/texinfo.tex: New upstream
	versions.

	* automake.in (handle_ltlibraries): Also grep AM_LDFLAGS for `-module'.
	* tests/stdlib2.test: New file.
	* tests/Makefile.am (TESTS): Add stdlib2.test.
	Report from Kevin P. Fleming.

2003-10-03  Richard Dawe  <rich@phekda.freeserve.co.uk>  (tiny change)

	* tests/defs.in: For required=runtest, check that we are using
	a DejaGnu that supports specifying the program on the command-line.

2003-10-03  Alexandre Duret-Lutz  <adl@gnu.org>

	For Debian Bug #213524:
	* lib/am/texinfos.am (install-info-am, uninstall-info-am): Merge
	stderr and stdout, and grep only the first line while testing
	install-info --version's output.  This revert part of the change
	from 2001-05-18.

2003-10-01  Akim Demaille  <akim@epita.fr>

	* m4/amversion.in: Add (C) to the Copyright notice.

2003-10-01  Paul Eggert  <eggert@twinsun.com>

	* lib/Automake/XFile.pm: Use Errno.
	(lock): Ignore ENOLCK errors.  Problem reported Andreas Schwab in
	<http://mail.gnu.org/archive/html/bug-autoconf/2003-09/msg00141.html>.

2003-09-30  Tom Tromey  <tromey@redhat.com>

	* lib/Automake/Options.pm (_process_option_list): Recognize
	no-dist.
	* NEWS: Update.
	* doc/automake.texi (Options): Document no-dist.
	* automake.in (check_cygnus): Set no-dist option.
	(handle_dist): Recognize no-dist.
	* tests/nodist3.test: New file.
	* tests/Makefile.am (TESTS): Added nodist3.test.

2003-09-29  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (handle_clean): Take $makefile as argument, and
	define %MAKEFILE% while processing clean.am.
	(generate_makefile): Pass $makefile to handle_clean.
	* lib/am/clean.am (distclean, maintainer-clean): Erase %MAKEFILE%,
	not Makefile.
	* tests/gnumake.test: New file.
	* tests/Makefile.am (TESTS): Add gnumake.test.
	Report from Braden N. McDaniel.

2003-09-26  Alexandre Duret-Lutz  <adl@gnu.org>

	* doc/automake.texi (Scripts): Update the example about automake.
	Mention `dist_' for distributed scripts.

	* lib/mkinstalldirs: Clean up after NextStep and OpenStep mkdir.
	Suggested by Eric Sunshine.

2003-09-25  Alexandre Duret-Lutz  <adl@gnu.org>

	* README: More mailing lists.

	* NEWS: Mention the switch to GNU FDL for the manual.

2003-09-24  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/install-sh (src, dst): Protect names starting with `-',
	as in mkinstalldirs.

	* configure.in: Rename as ...
	* configure.ac: ... this.
	* README: s/configure.in/configure.ac/.

	* doc/fdl.texi: New file.
	* doc/Makefile.am (automake_TEXINFOS): New variable.
	* doc/automake.texi (Copying This Manual): New appendix, include
	fdl.texi.
	(Macro and Variable Index, General Index): Move as subsections of ...
	(Indices): This new appendix.

	* doc/automake.texi: Refer to configure.ac instead of configure.in.

	* automake.texi: Move ...
	* doc/automake.texi: ... here.
	* doc/Makefile.am: New file.
	* configure.in: Output doc/Makefile.
	* Makefile.am (SUBDIRS): Add doc.
	(ETAGS_ARGS, TAGS_DEPENDENCIES): Move to doc/Makefile.am.

2003-09-23  Alexandre Duret-Lutz  <adl@gnu.org>

	* aclocal.in (write_aclocal): Consider files with relative
	paths as local to the project, i.e., subject to m4_include.
	* tests/subpkg.test (ACLOCAL_AMFLAGS): Make sure m4_include
	is also used for .m4 files in the outer project.

	Support for multiple inputs in AC_CONFIG_FILES.
	Requested long ago by Harlan Stenn.
	* automake.in (handle_dist): Remove unused argument $makefile.
	(handle_subdirs): Expect SUBDIRS elements in $relative_dir,
	not $am_relative_dir.
	(rewrite_inputs_into_dependencies): Allow $add_srcdir to
	be a filename that must always be prefixed by $(srcdir) or
	$(top_srcdir).
	(handle_configure, generate_makefile): Revamp to make the
	Makefile.am, Makefile.in, Makefile more independent.
	(locate_am): New function.
	(scan_configure_dep, parse_arguments): Use locate_am.
	(MAIN): Adjust call to generate_makefile.
	* lib/am/configure.am: Remove %MAKEFILE-IN% from the dependencies
	of %MAKEFILE%.  %MAKEFILE-IN% is already in %MAKEFILE-DEPS%.
	* tests/output6.test, tests/output7.test: New files.
	* tests/Makefile.am (TESTS): Add them.
	* automake.texi (Requirements) <AC_CONFIG_FILES>: Document how
	multiple inputs are scanned.

2003-09-13  Alexandre Duret-Lutz  <adl@gnu.org>

	* Makefile.am (FETCHFILES, fetch): Do not fetch lib/Automake/XFile.pm
	and lib/Automake/Struct.pm from Autoconf.
	* lib/Automake/XFile.pm: Update comment, Automake is now
	the master for this file.  Cosmetic changes.

2003-09-09  Akim Demaille  <akim@epita.fr>

	* lib/Automake/FileUtils.pm (&update_file): s/cannot not/cannot/g.
	Reported by Gary Vaughan.
	(&find_file): Walk the @include in forward order.

2003-09-09  Akim Demaille  <akim@epita.fr>

	* lib/Automake/FileUtils.pm (&update_file): Be sure not to leave
	trailing files.

2003-09-07  Alexandre Duret-Lutz  <adl@gnu.org>

	Changes to m4_included files should also cause aclocal.m4 to change.
	* aclocal.in (m4_include_rx): New variable.
	(scan_configure_dep): New function.
	(scan_configure, add_file): Simplify using scan_configure_dep.
	* tests/Makefile.am (TESTS): Add acloca13.test.
	* tests/aclocal13.test: New file.

	* tests/instsh.test: Do not reset $ACLOCAL and $AUTOMAKE now
	that we have fake version in the $PATH.

	* aclocal.in (add_file): Remove useless filling of $output, probably
	left a after CVS conflict.  This code is now in write_aclocal.

	* aclocal.in (configure_ac): Do not call require_configure_ac
	before parsing the options.
	* automake.in (configure_ac): Likewise.
	* lib/Automake/Variable.pm (configure_ac): Do not require configure.ac,
	find it.
	* lib/Automake/Configure_ac.pm (require_configure_ac):
	find_configure_ac never return an undefined value, so test
	the file's existence instead.
	* tests/Makefile.am (TESTS): Add help.test.
	* tests/help.test: New file.

2003-09-06  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Automake/XFile.pm: Update to use ChannelDefs.
	(close): Call Automake::FileUtils::handle_exec_errors on errors.
	* automake.in (scan_autoconf_files): Exit with $?=63 on version
	mismatch.
	(scan_autoconf_traces): Likewise.  Close the autoconf pipe to
	capture abnormal exits.
	* aclocal.in ($exit_status): Remove, and use Channels.pm's $exit_code
	instead.
	(trace_used_macros): Close the autom4te pipe to capture abnormal exits.
	* lib/missing: When a tool has run and exited with $?=63, emulate
	it.  Adjust the diagnostic and pretend the tool is tool old in this
	case.  Use an emacs-updated "scriptversion" variable.
	* configure.in: Output tests/aclocal-${APIVERSION} and
	tests/automake-${APIVERSION}.
	* tests/aclocal.in, tests/automake.in,
	tests/missing.test, tests/missing2.test: New files.
	* tests/defs.in (AUTOMAKE, ACLOCAL, PATH): Define
	to use tests/aclocal-$APIVERSION and tests/automake-$APIVERSION.
	* tests/dup3.test: Remove. alocal9.test, acloca10.test, and others are
	already testing for this.
	* tests/depacl2.test, tests/dup2.test, tests/order.test: Fix
	configure.in so that aclocal works.
	* tests/defun.test: Quote the AC_DEFUN body.
	* tests/Makefile.am (TESTS): Add missing.test and missing2.test,
	and remove dup3.test.
	(check_SCRIPTS): Add aclocal and automake.

	* tests/unused.test: Quote AC_DEFUN arguments.

2003-09-05  Paul Eggert  <eggert@twinsun.com>

	* NEWS, aclocal.in, automake.in, automake.texi, lib/ansi2knr.c,
	lib/depcomp, lib/missing, lib/py-compile,
	lib/Automake/Channels.pm, lib/Automake/Rule.pm,
	lib/Automake/Variable.pm, lib/Automake/tests/Condition.pl,
	lib/am/dejagnu.am, lib/am/depend.am, lib/am/lisp.am,
	lib/am/remake-hdr.am, lib/am/texi-vers.am, m4/obsolete.m4,
	m4/python.m4, tests/backsl4.test, tests/defs.in,
	tests/dejagnu7.test, tests/depacl2.test, tests/dirlist.test,
	tests/error.test, tests/getopt.test, tests/gnuwarn.test,
	tests/include2.test, tests/libobj10.test, tests/libtool5.test,
	tests/libtool6.test, tests/lisp3.test, tests/phony.test,
	tests/pr220.test, tests/subcond2.test, tests/subcond3.test,
	tests/vtexi.test:
	Spelling and minor grammar fixes.

2003-09-01  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/config.sub, lib/config.guess, lib/texinfo.tex,
	lib/config-ml.in, lib/symlink-tree: New upstream versions.

2003-08-31  Thien-Thi Nguyen  <ttn@gnu.org>  (tiny change)

	* tests/yacc7.test: Require bison.

2003-08-31  Alexandre Duret-Lutz  <adl@gnu.org>

	* aclocal.in (scan_file): Warn about underquoted AC_DEFUN.
	($underquoted_manual_once): New variable.
	* automake.texi (Extending aclocal): Document this.

2003-08-29  Alexandre Duret-Lutz  <adl@gnu.org>

	* aclocal.in (@file_order): New variable, to make sure
	files are output in the opposite order of the -I arguments.
	(scan_file): Fill it.
	(trace_used_macros, write_aclocal): Use it.
	(scan_m4_files): Reverse the directory contents, so that
	macros from the lexicographically greatest files are preferred.
	* tests/aclocal9.test, tests/acloca10.test, tests/acloca11.test:
	New files.
	* tests/Makefile.am (TESTS): Add them.

2003-08-24  Alexandre Duret-Lutz  <adl@gnu.org>

	For Debian Bug #206299:
	* automake.in ($configure_deps_greatest_timestamp,
	$output_deps_greatest_timestamp): New variables.
	(initialize_per_input): Reset $output_deps_greatest_timestamp.
	(scan_autoconf_traces, scan_autoconf_files, read_am_file):
	Update $configure_deps_greatest_timestamp and
	$output_deps_greatest_timestamp
	(generate_makefile): Rewrite the logic to decide whether
	to rewrite the output.  Move the leading dup_channel_setup
	and trailing drop_channel_setup to MAIN, so that
	drop_channel_setup is executed for all exit paths.
	* tests/aclocal7.test: Update to check for $AUTOMAKE --no-force
	* tests/distcom6.test: New file.  Report from Scott James Remnant.
	* tests/Makefile.am (TESTS): Add distcom6.test.

	* configure.in: Require Autoconf 2.57b to be sure
	aclocal can use autom4te --language Autoconf-without-aclocal-m4.
	* m4/init.m4: Likewise.  Move the AC_PREREQ and m4_pattern_allow
	calls inside the AM_INIT_AUTOMAKE macro.
	* m4/auxdir.m4, m4/cond.m4, m4/lex.m4, m4/regex.m4: Move
	AC_PREREQ calls inside the macros.
	* m4/header.m4: Remove AC_PREREQ.

	* automake.in (file_contents_internal): Do not add newlines before
	empty actions.

	* aclocal.in (write_aclocal): Take an output file and list of
	used macros in arguments and make up the file contents here.
	(trace_used_macros): New function.
	(add_file): Do not update $output.
	($output): Delete.
	(MAIN): Call trace_used_macros.  Then rewrite aclocal.m4 only
	for these traced macros.  This should shorten aclocal.m4 by
	stripping out unused macros.
	* automake.texi (Invoking aclocal): Document ${AUTOM4TE}.
	* tests/aclibobj.test: Make sure configure.in exists by the time
	aclocal runs.
	* tests/aclocal8.test: New file.
	* tests/Makefile.am (TESTS): Add aclocal8.test.
	Suggested by Bruno Haible and Akim Demaille.

2003-08-21  Akim Demaille  <akim@epita.fr>

	* lib/Automake/Configure_ac.pm (&find_configure_ac)
	(&require_configure_ac): Accept an optional directory argument.
	($configure_ac): Remove.
	* aclocal.in, automake.in ($configure_ac): New.
	* lib/Automake/Variable.pm: Don't use $configure_ac, just
	configure.ac.

2003-08-20  Akim Demaille  <akim@epita.fr>

	* lib/Automake/FileUtils.pm: More perldoc.
	(&up_to_date_p): New.

2003-08-17  Alexandre Duret-Lutz  <adl@gnu.org>

	Fix for PR automake/398:
	* m4/python.m4: Do not call AC_PATH_PROGS if $PYTHON is already
	set.  Display `none' instead of `:' and $PYTHON is set to `:'
	when no suitable interpreter is found.  Honor ACTION-IF-FOUND and
	ACTION-IF-NOT-FOUND.
	* automake.texi (Python): Document ACTION-IF-FOUND and
	ACTION-IF-NOT-FOUND.
	* tests/python4.test, tests/python5.test, tests/python6.test,
	tests/python7.test, tests/python8.test, tests/python9.test: New
	files.
	* tests/Makefile.am (TESTS): Add them.
	Report from Per Cederqvist.

2003-08-13  Alexandre Duret-Lutz  <adl@gnu.org>

	Fix for PR automake/399:
	* m4/python.m4: Use AC_PATH_PROGS, not AC_PATH_PROG.
	Report from Per Cederqvist.

2003-08-12  Raja R Harinath  <harinath@acm.org>

	* lib/Automake/Condition.pm (strip): Replace loop with 'grep'.
	(not): Replace loop with 'map'.
	* lib/Automake/DisjConditions.pm (sub_conditions): Likewise.
	* lib/Automake/Item.pm (not_alwasy_defined_in_cond):
	Don't 'simplify' result of 'invert', since it's already in
	canonical form.
	* lib/Automake/Rule.pm (define): Replace loop with
	'not_always_defined_in_cond'.

	* lib/Automake/DisjConditions.pm (ambiguous_p): Typo in comment.
	* lib/Automake/Rule.pm (accept_extensions, msg_cond_rule): Likewise.
	(define): Reword comment slightly.
	* Variable.pm (_var_order, msg_cond_var): Typo in comment.
	* tests/cond20.test (var2): Use foo.c instead of foo.cc to avoid
	spurious automake error exit.

2003-08-12  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Automake/Item.pm, lib/Automake/ItemDef.pm: New files.
	* lib/Automake/Rule.pm, lib/Automake/RuleDef.pm: New files.
	* lib/Automake/Makefile.am (dist_perllib_DATA): Add them.
	* lib/Automake/VarDef.pm: Make this a subclass of Automake::ItemDef.
	(new): Adjust to call Automake::ItemDef::new.
	(comment, location, owner): Delete.  Now inherited from ItemDef.
	* lib/Automake/Variable.pm: Make this a subclass of Automake::Item.
	(_new): Adjust to call Automake::Item::new.
	(name, def, rdef, _set, conditions, not_always_defined_in_cond):
	Delete.  How inherited from Item, where `_set' is called `set'.
	* automake.in (SUFFIX_RULE_PATTERN): Delete. Now in Automake::Rule.
	(suffix_rules_default): Delete.  Now
	Automake::Rule::_suffix_rules_default
	(suffixes): Delete.  Now Automake::Rule::suffixes.
	(TARGET_AUTOMAKE, TARGET_USER): Delete.  Now
	Automake::RuleDef::RULE_AUTOMAKE and Automake::RuleDef::RULE_USER.
	(%targets, %target_source, %target_name, %target_owner): Delete,
	replaced by the Rule and RuleDef classes.
	(dependencies, depend, actions): Delete.  Now in Automake::Rule.
	(suffix_rules, register_suffix_rule): Likewise.
	(KNOWN_EXTENSIONS_PATTERN, accept_extensions): Likewise.
	(known_extensions_list): Delete.  Now
	Automake::Rule::_known_extensions_list.
	(target_conditions): Delete.  Now inherited by Automake::Rule
	from Automake::Item::conditions.
	(rule_define): Delete.  Now Automake::Rule::define.  Adjust all
	callers.
	(target_defined): Delete.  Now Automake::Rule::rule.  Adjust all
	callers.
	(initialize_per_input): Adjust to call Automake::Rule::reset.
	(err_target, err_cond_target, msg_cond_target, msg_target,
	reject_target): Delete.  Now defined in Automake::Rule as
	err_rule, err_cond_rule, msg_cond_rule, msg_rule and reject_target.
	Adjust all callers.
	(handle_languages): Call suffix_rules_count.
	* tests/location.test: Adjust expected diagnostics.  We now display
	$(EXEEXT) accurately.

2003-08-10  Alexandre Duret-Lutz  <adl@gnu.org>

	Revert the fix for PR automake/291:
	* lib/Automake/Variable.pm (define): Do not warn about variables
	starting with `_' which are an issue on NEWS-OS 4.2R.  According
	to Paul Eggert, NEWS-OS 4.2R is ten years old, the latest version
	was released on 1996 and is not in wide use.  On the other hand,
	variables starting with `_' are mandatory in several situations,
	so diagnosing them is more annoying than useful.
	* tests/canon5.test: Do not use -Wno-portability.
	* tests/vars2.test: Delete.
	* tests/Makefile.am (TESTS): Remove vars2.test.
	Suggested by Jim Meyering.

2003-08-09  Raja R Harinath  <harinath@acm.org>

	* lib/Automake/DisjConditions.pm (ambiguous_p): Simplify slightly.
	* lib/Automake/tests/DisjConditions.pl (test_ambig): Test
	Automake::Disjunctions::ambiguous_p.

2003-08-07  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Automake/Variable.pm (condition_ambiguous_p): Move ...
	* lib/Automake/DisjConditions.pm (ambiguous_p): ... here.
	* automake.in (rule_define): Adjust usage.
	* lib/Automake/Variable.pm (_check_ambiguous_condition): Likewise.

	* lib/Automake/Options.pm: New file.
	* lib/Automake/Makefile.am (dist_perllib_DATA): Add Options.pm.
	* automake.in (FOREIGN, GNU, GNITS, $default_strictness)
	($default_strictness_name, $strictness, $strictness_name)
	(%options, %global_options, process_option_list)
	(set_strictness): Remove, now in Options.pm.
	(initialize_per_input): Call Automake::Options::reset.
	(handle_options, get_object_extension, get_object_extension)
	(handle_languages, handle_single_transform_list, handle_compile)
	(handle_texinfo_helper, handle_man_pages, handle_dist)
	(handle_configure, do_check_merge_target)
	(handle_factored_dependencies, handle_tests)
	(handle_minor_options, scan_autoconf_traces, check_cygnus)
	(lang_sub_obj, lang_c_rewrite, lang_c_finish, rule_define)
	(make_paragraphs, am_install_var, parse_arguments): Adjust
	to set and read options via the new interface.

2003-08-07  Raja R Harinath  <harinath@acm.org>

	* Makefile.am (maintainer-check): Update perllibdir.
	* lib/Automake/Makefile.am (Config.pm): Depend on Makefile too.
	(EXTRA_DIST): Add Config.in.
	* Makefile.in, lib/Automake/Makefile.in: Regenerate.
	* tests/defs.in (AUTOMAKE, ACLOCAL): Use absolute paths in
	$perllibdir.

2003-08-06  Raja R Harinath  <harinath@acm.org>

	* configure.in (AUTOMAKE, ACLOCAL): Search the 'lib' directory
	from the builddir too, to pick up Automake::Config.
	* tests/defs.in (AUTOMAKE, ACLOCAL): Likewise.
	* configure: Regenerate.
	* automake.in (BEGIN): Handle multiple directories in $perllibdir.
	* aclocal.in (BEGIN): Likewise.

2003-08-07  Alexandre Duret-Lutz  <adl@gnu.org>

	* tests/ltcond.test: Thinko.

2003-08-06  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Automake/Config.in: New file.
	* lib/Automake/Makefile.am (nodist_perllib_DATA, do_subst,
	CLEANFILES): New variables.
	(Config.pm): New rule.
	* Makefile.am (maintainer-check): Adjust expected differences
	between automake.in and automake.
	* aclocal.in, automake.in: Use Automake::Config.

2003-08-05  Alexandre Duret-Lutz  <adl@gnu.org>

	* tests/ltconv.test: s/rm/rm -f/ to placate maintainer-check.

	* automake.in (handle_texinfo_helper): Use the user definition
	of TEXINFO_TEX before checking for cygnus or AC_CONFIG_AUX_DIR.
	* tests/txinfo22.test: New file.
	* tests/Makefile.am (TESTS): Add txinfo22.test.
	Report from Tom Tromey.

2003-08-03  Raja R Harinath  <harinath@acm.org>

	* lib/Automake/Variable.pm (@EXPORT): Remove
	traverse_variable_recursively and
	require_variables_for_variable.
	(require_variables_for_variable, traverse_variable_recursively)
	(_traverse_variable_recursively_worker): Convert to
	Automake::Variable methods, remove support for being
	invoked with variable names, and rename to ...
	(requires_variables, traverse_recursively)
	(_do_recursive_traversal): ... these.
	(_value_as_list_recursive_worker, transform_variable_recursively):
	Update to reflect changes.
	* automake.in (handle_LIBOBJS, handle_ALLOCA)
	(handle_libraries, handle_ltlibraries, am_primary_prefixes):
	Likewise.
	(define_objects_from_sources): Fix typo in comment.

2003-08-02  Raja R Harinath  <harinath@acm.org>

	* automake.in (handle_source_transform): Replace 'grep' with 'map'.
	(register_language): Replace 'grep' with 'foreach' modifier.

2003-08-01  Raja R Harinath  <harinath@acm.org>

	* lib/Automake/Variables.pm (variables): Return a list of
	Automake::Variable instances, not a list of strings.
	(dump): Remove support for being invoked with a string.
	(variables_dump): Adapt to these changes.
	* automake.in (check_typos): Likewise.
	(am_primary_prefixes): Likewise.

2003-07-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)

	* lib/depcomp (aix): Support AIX Compiler version 6.

2003-07-31  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.texi (A Shared Library): Rewrite and split into
	subsections.  Valuable comments from Norman Gray, Harlan Stenn,
	Tim Van Holder, and Guido Draheim.
	* tests/ltcond.test, tests/ltcond2.test, tests/ltconv.test: New files.
	* tests/Makefile.am (TESTS): Add them.

2003-07-30  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (handle_single_transform_list): Complain about
	foo.$(OBJEXT) being created both with libtool and without, not
	about foo.lo.
	Report from Tim Van Holder.

2003-07-29  Alexandre Duret-Lutz  <adl@gnu.org>

	* Makefile.am (FETCHFILES, fetch): Add config-ml.in and
	symlink-tree.
	* lib/config.sub, lib/config-ml.in, lib/texinfo.tex: New
	upstream versions.

2003-07-28  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (handle_configure): Cosmetic change to avoid
	a maintainer-check complaint.

2003-07-27  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Automake/Variable.pm (@EXPORT): Remove variable_dump.
	(variable_dump): Replace by ...
	(dump): ... this method.
	(rdef, _check_ambiguous_condition): Adjust to use ->dump.
	(define, variables_dump): Adjust to use Automake::Variable::dump

	* lib/am/compile.am (mostlyclean-compile): Do not erase core dumps.
	* automake.texi (Built sources example): Adjust example.

2003-07-26  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (get_object_extension, handle_languages)
	(handle_single_transform_list, handle_compile, handle_compile)
	(handle_texinfo_helper, handle_texinfo_helper, handle_man_pages)
	(handle_tests, handle_minor_options, check_gnu_standards)
	(lang_sub_obj, lang_c_rewrite, lang_c_finish, rule_define):
	Simplify "if (defined $options{'X'})" into "if ($options{'X'})".

	Complete changes from 2003-07-08.
	* automake.in ($cmdline_use_dependencies, $use_dependencies): Remove,
	replaced by $options{'no-dependencies'}.
	($global_options): Remove.
	(%global_options): New variable.
	(initialize_per_input): Empty %options.
	(process_option_list): Take a location and %options ref argument,
	process no-dependencies as other options.
	(handle_options): Do not reparse the global options, just initialize
	%options from %global_options and fill it with local options.
	(handle_languages, handle_single_transform_list)
	(handle_configure, check_cygnus): Adjust usage of
	$options{'no-dependencies'}.
	(make_paragraphs): Adjust usage of $options{'cygnus'}.
	(parse_arguments): Set cygnus and no-dependencies in %global_options.
	(scan_autoconf_traces) <AM_INIT_AUTOMAKE>: Call process_option_list
	to fill %global_options.

2003-07-25  Alexandre Duret-Lutz  <adl@gnu.org>

	* tests/remake4.test: Use `$MAKE distdir' instead of `$MAKE dist' to
	avoid the use of tar.

2003-07-24  Alexandre Duret-Lutz  <adl@gnu.org>

	* tests/gnuwarn2.test: Typo.

	* tests/insthook.test: Use $MAKE, not make.

	Fix missing rebuilds during `make dist' with BSD make.
	* automake.in (generate_makefile): Do not push Makefile.in, and
	Makefile.am into DIST_COMMON here.
	* lib/am/configure.am (DIST_COMMON): Do it here, and use
	%MAKEFILE-AM% and %MAKEFILE-IN% so that items in DIST_COMMON
	actually match the targets.   Prefix `configure' with `$(srcdir)/'
	to match the target.
	* tests/remake4.test: New file.
	* tests/Makefile.am (TESTS): Add remake4.test.
	Report from Akim Demaille.

2003-07-23  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (handle_multilib): Register all-multi.
	(file_contents_internal): Insert \n when concatenating actions
	from "factored" rules.
	* lib/config-ml.in: New file, from GCC, including a patch
	from Ralf Corsepius (see GCC's PR 11526).
	* lib/symlink-tree.in: New file, from GCC.
	* lib/Makefile.am (dist_script_DATA): Add config-ml.in and
	symlink-tree.
	* lib/am/clean.am (distclean-generic): Do not delete Makefile here...
	(distclean, maintainer-clean): ... do it here.
	* lib/am/depend.am (distclean-depend): Likewise, replace by
	(distclean, maintainer-clean): ... these.
	* lib/am/multilib.am (all-recursive, install-recursive,
	mostlyclean-recursive, clean-recursive, distclean-recursive,
	maintainer-clean-recursive): Remove these rules.
	(mostlyclean-am, clean-am, distclean-am, maintainer-clean-am): Replace
	by ...
	(mostlyclean, clean, distclean, maintainer-clean): ... these.
	(all-am): Remove, done in handle_multilib.
	(install-am): Replace by ...
	(install-exec-am): ... this.
	* tests/Makefile.am (TESTS): Add multlib.test.
	* tests/multlib.test: New file, based on a test case by
	Ralf Corsepius

2003-07-23  Tom Tromey  <tromey@redhat.com>

	* lib/missing (autom4te): Typo.

2003-07-16  Derek Price  <derek@ximbiot.com>

	* automake.in (scan_autoconf_traces): Handle AC_CONFIG_LINKS.
	(handle_configure): Handle adding AC_CONFIG_LINKS arguments to
	distclean targets (CONFIG_CLEAN_FILES makefile var).
	* NEWS: Note new handling of AC_CONFIG_LINKS.
	* automake.texi (Other things Automake recognizes): Ditto.
	* tests/Makefile.am (TESTS): Add new tests.
	* tests/conflnk.test: New test that links are cleaned on distclean.
	* tests/conflnk2.test: New test that source files for links are
	distributed.

2003-07-15  Ralf Corsepius <corsepiu@faw.uni-ulm.de>  (tiny change)

	* automake.in (scan_autoconf_traces): Trace AM_ENABLE_MULTILIB to
	render $seen_multilib functional again.

2003-07-10  Raja R Harinath  <harinath@cs.umn.edu>

	Avoid using refs as hash keys.
	* lib/Automake/Variable.pm ($_traversal): New.
	(reset): Reset $_traversal.
	(_new): New attribute 'scanned'.
	(%_vars_scanned): Remove.
	(traverse_variable_recursively)
	(traverse_variable_recursively_worker):
	Use $_traversal instead of %_vars_scanned to detect recursively
	defined variables.

	* lib/am/configure.am (am--refresh): Silence.

2003-07-10  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Automake/Variable.pm (define): Make clear the diagnostic
	about variable names starting with `_' is about *Make* variables.

	For Debian Bug #193907:
	* automake.texi (Clean): make maintainer-clean should still
	allow ./configure && make to run.

	* automake.texi (CVS): Typo.

2003-07-09  Alexandre Duret-Lutz  <adl@gnu.org>

	* aclocal.in: Use Automake::FileUtils.
	(parse_arguments, scan_configure, scan_m4_files): Never call
	"die" to print an error message.  Use print and exit.
	* automake.in: Use Automake::FileUtils.
	* lib/Automake/General.pm ($debug, $help, $tmp, $verbose,
	$version, &debug, &getopt, &mktmpdir, &verbose): Remove.
	(END): Do not massage Perl's exit code.  Do not clean any temporary
	directory.
	(find_file, mtime, update_file, xsystem, contents): Move to ...
	* lib/Automake/FileUtils.pm: ... this new file.  Adjust to
	report errors using Channels.
	(handle_exec_errors, xqx): New functions, from Autoconf.
	* lib/Automake/Makefile.am (dist_perllib_DATA): Add FileUtils.pm.

	* lib/Automake/Variable.pm (_traverse_variable_recursively_worker):
	Return the empty list on recursively defined variable.  This
	supersedes my change of 2003-07-02.

2003-07-08  Akim Demaille  <akim@epita.fr>

	* automake.in ($cygnus_mode): Replace with $options{'cygnus'}.
	Adjust all dependencies.
	(&depend): Move next to %dependencies and prototype.
	(&initialize_per_input): Initialize the 'cygnus' field of
	'%options' to spare the code from 'exists' or 'defined' when
	testing it.
	(&handle_configure, &do_check_merge_target, &check_cygnus): Prototype.
	(&parse_arguments): Rename '%options' and '%options_1st_pass' as
	'%cli_options' and '%cli_options_1st_pass' to avoid clashes and
	inconsistencies.

2003-07-07  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (generate_makefile): Move near the end of the
	file, after the definition of all called functions, so that
	prototypes can be enforced.

2003-07-06  Akim Demaille  <akim@epita.fr>

	* lib/am/subdirs.am (RECURSIVE_TARGETS): Move install-recursive,
	install-exec-recursive, install-data-recursive and
	uninstall-recursive addition to...
	* lib/am/texinfos.am: here.
	* lib/am/texinfos.am, lib/am/subdirs.am: Remove the .PHONY
	declaration of RECURSIVE_TARGETS.

2003-07-06  Akim Demaille  <akim@epita.fr>

	* lib/Automake/Variable.pm, lib/Automake/VarDef.pm (VAR_SORTED):
	New variable type.
	Handle it.
	* automake.in (&handle_subdirs): Prototype.
	Adjust callers.
	Make RECURSIVE_TARGETS a VAR_SORTED.

2003-07-06  Akim Demaille  <akim@epita.fr>

	* automake.in (&define_files_variable): New.
	(&handle_texinfo_helper): Move the handling of user variables from
	here, to...
	(&handle_texinfo): here.
	This is to balance the size of these functions, and to match the
	convention of other _helper functions.
	(&handle_texinfo_helper): Use &define_files_variable.
	Move some code to use less variables.
	Rename $info_cursor as $texi.
	(&handle_texinfo): Do not call handle_texinfo_helper if there are
	no TEXINFOS.
	* lib/am/texinfos.am: Sort the occurrences of dvi, info, pdf, ps
	and html.
	Remove *-recursive targets from .PHONY, they are part of
	$(RECURSIVE_TARGETS) anyway.
	(install-info, mostlyclean-aminfo): Are .PHONY.

2003-07-05  Akim Demaille  <akim@epita.fr>

	* lib/am/distdir.am: Use ';' as a terminator, not a separator, for
	sed complex commands, as required by NetBSD sed.
	Reported by Patrick Welche.

2003-07-05  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/config.guess, lib/config.sub: New upstream version.

2003-07-04  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.texi (Optional, Dist): AC_CONFIG_AUX_DIR files
	are automatically distributed.

	* lib/depcomp (icc): Update to grok ICC 7.1's output.
	* m4/depend.m4 (_AM_DEPENDENCIES): Check dependency generation
	in a subdirectory, and with many dependencies.  This
	catches more failures of depcomp.
	Reports from Ralf Wildenhues and Akim Demaille.

2003-07-04  Akim Demaille  <akim@epita.fr>

	* automake.in (&scan_texinfo_file, &output_texinfo_build_rules,
	(&handle_texinfo_helper, &handle_texinfo): Formatting changes.
	Prototype properly.
	Don't use & when calling functions.

2003-07-03  Alexandre Duret-Lutz  <adl@gnu.org>

	* NEWS: Categorize entries.
	Suggested by Jim Meyering.

	* Makefile.am (maintainer-clean): Disallow '$AUTOMAKE && exit 1'.
	Ignore @...@ substitutions in comments.
	* tests/defs.in: Try to make the shell more POSIX compliant.
	(AUTOMAKE_run, AUTOMAKE_fails): New functions.
	* tests/README: Mention AUTOMAKE_fails.
	* tests/alloca.test, tests/alloca2.test, tests/ansi8.test,
	* tests/asm.test, tests/backsl3.test, tests/backsl4.test,
	* tests/badline.test, tests/badopt.test, tests/canon.test,
	* tests/canon5.test, tests/colneq.test, tests/comment3.test,
	* tests/comment5.test, tests/cond2.test, tests/cond20.test,
	* tests/cond23.test, tests/cond24.test, tests/cond27.test,
	* tests/condinc2.test, tests/conff2.test, tests/cxx2.test,
	* tests/dejagnu2.test, tests/dirforbid.test,
	* tests/distcom3.test, tests/else.test, tests/exdir2.test,
	* tests/exeext2.test, tests/gcj2.test, tests/gcj5.test,
	* tests/getopt.test, tests/gettext.test, tests/gettext2.test,
	* tests/gnits.test, tests/gnuwarn.test, tests/gnuwarn2.test,
	* tests/insh.test, tests/lex2.test, tests/libobj10.test,
	* tests/libobj12.test, tests/libobj13.test,
	* tests/libobj3.test, tests/library2.test,
	* tests/library3.test, tests/libtool4.test,
	* tests/libtool6.test, tests/lisp2.test, tests/location.test,
	* tests/nogzip2.test, tests/output5.test, tests/overrid.test,
	* tests/percent.test, tests/percent2.test,
	* tests/pluseq5.test, tests/pluseq7.test, tests/pluseq9.test,
	* tests/pr211.test, tests/primary.test, tests/primary2.test,
	* tests/python2.test, tests/recurs.test, tests/reqd2.test,
	* tests/seenc.test, tests/specflg.test, tests/specflg2.test,
	* tests/spell.test, tests/spell2.test, tests/srcsub.test,
	* tests/srcsub2.test, tests/stdlib.test, tests/subdir7.test,
	* tests/substtarg.test, tests/suffix11.test,
	* tests/symlink.test, tests/syntax.test,
	* tests/targetclash.test, tests/txinfo4.test,
	* tests/version3.test, tests/warnopts.test,
	* tests/xsource.test, tests/yacc2.test: Use set -e,
	AUTOMAKE_fails, and always grep error message.

	* automake.in (handle_ltlibraries): Fix call to msg.

	* tests/stamph.test: Delete.
	* tests/Makefile.am (TESTS): Remove stamph.test.

	* automake.in (handle_single_transform_list): Use $var->name
	to print variable in the configure-substitution diagnostic.
	Do not mention the parent when it is the variable itself.

	* tests/package.test: Delete.
	* tests/Makefile.am (TESTS): Remove package.test.

	* automake.in (cond_stack_else): Return FALSE if `if' was not
	used.
	(cond_stack_endif): Return TRUE if `if' was not used.  Do not
	display $negate and $cond, they are irrelevant and maybe undefined.

2003-07-02  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Automake/Variable.pm (_traverse_variable_recursively_worker):
	Do not return undef when a variable is recursively defined, this
	causes warnings all over the place.  Return the empty string instead.

	* lib/am/distdir.am (distcheck): Protect loop of DIST_ARCHIVES
	from empty DIST_ARCHIVES.

2003-07-01  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (scan_autoconf_traces): Check the expected
	number of arguments of each traced macro.
	* tests/overrid.test: Fix call to AM_CONDITIONAL.
	* tests/conff2.test: New files.
	* tests/Makefile.am (TESTS): Add conff2.test.
	Report from Paolo Bonzini.

2003-06-30  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in ($SUBST_REF_PATTERN): Do not define.
	(%gen_varname): Move to Variable.pm, as %_gen_varname.
	(initialize_per_input): Do not clean %gen_varname.
	(handle_options, check_libobjs_sources, handle_source_transform,
	handle_LIBOBJS, handle_ltlibraries, handle_texinfo_helper,
	handle_man_pages, handle_dist, handle_subdirs, handle_gettext,
	am_install_var): Adjust to use value_as_list_recursive,
	loc_and_value_as_list_recursive, and has_conditional_contents.
	(require_file_with_macro): Accept an Automake::Variable as argument.
	(traverse_variable_recursively,
	traverse_variable_recursively_worker, gen_varname,
	transform_variable_recursively): Move ...
	* lib/Automake/Variable.pm (traverse_variable_recursively,
	_traverse_variable_recursively_worker,
	_gen_varname, transform_variable_recursively): ... here.
	* automake.in (variable_conditionally_defined,
	variable_value_as_list_recursive_worker,
	variable_value_as_list_recursive
	variable_loc_and_value_as_list_recursive): Move ...
	* lib/Automake/Variable.pm (has_conditional_contents,
	_value_as_list_recursive_worker,
	value_as_list_recursive, loc_and_value_as_list_recursive): ... here.
	(reset): Reset %_gen_varname.
	(require_variables_for_variable): Accept an Automake::Variable
	as argument.

2003-06-27  Alexandre Duret-Lutz  <adl@gnu.org>

	* tests/aclocal6.test: Test maintainer-clean in VPATH
	builds. (For Ralf's fix.)

2003-06-27  Ralf Corsepius  <corsepiu@faw.uni-ulm.de>  (tiny change)

	* lib/am/configure.am (maintainer-clean): Remove
	$(top_srcdir)/autom4te.cache, not autom4te.cache.

2003-06-27  Akim Demaille  <akim@epita.fr>

	* automake.texi: Use @node with a single argument.

2003-06-27  Alexandre Duret-Lutz  <adl@gnu.org>

	* m4/Makefile.am (dist_m4data_DATA): Add $(top_srcdir)/m4/amversion.m4.

	* lib/am/distdir.am (distcheck): Run $(am__remove_distdir)
	at the end of distcheck.  This was mistakenly removed on
	2003-06-15.
	* tests/subpkg.test: Make sure distcheck cleans up after itself.

	* m4/Makefile.am ($(srcdir)/amversion.m4): Rename as ...
	($(top_srcdir)/m4/amversion.m4): ... this.
	(DISTCLEANFILES): Remove.
	(nodist_m4data_DATA): Remove. amversion.m4 is automatically
	distributed.
	(EXTRA_DIST): Add amversion.in.

2003-06-25  Akim Demaille  <akim@epita.fr>

	* automake.texi (Top): Use @copying and @insertcopying.
	Make Alexandre an author.
	* automake.in ($gen_copyright): Add the "(C)" to Copyright.
	* lib/depcomp: Likewise.

2003-06-23  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Automake/Variable.pm (vardef, rvardef, set_seen): New functions.
	(variable_defined, examine_variable): Remove.
	(%_ac_macro_for_var): Add an entry for ALLOCA.
	(require_variables): Use vardef instead of variable_defined.
	Do not use _cvar.
	* automake.in (generate_makefile): Do not push $(SOURCE) into
	@sources.  Use define_pretty_variable to define SOURCES.
	(handle_LIBOBJS, handle_ALLOCA): Use require_variables_for_variable
	to require LIBOBJS, LTLIBOBJS and ALLOCA.
	(handle_programs, handle_ltlibraries): Do not define an empty
	_DEPENDENCIES or _LDFLAGS variable when none is defined.
	(define_configure_variable): Do not check whether the variable
	already exists (it's Automake::Variable::define's job).
	(require_build_directory): Likewise, do not check
	the existence of am__dirstamp.
	(generate_makefile, handle_options, handle_languages)
	(check_libobjs_sources, handle_single_transform_list)
	(traverse_variable_recursively_worker, handle_source_transform)
	(handle_lib_objects, handle_LIBOBJS, handle_compile)
	(handle_libtool, handle_programs, handle_libraries)
	(handle_ltlibraries, check_typos, handle_texinfo_helper)
	(handle_man_pages, handle_tags, handle_dist, handle_subdirs)
	(scan_aclocal_m4, handle_gettext, handle_footer, handle_install)
	(handle_all, do_check_merge_target, handle_clean, lang_c_finish)
	(handle_tests, lang_yacc_target_hook, define_pretty_variable)
	(define_compiler_variable, define_linker_variable)
	(make_paragraphs, am_primary_prefixes, am_install_var): Adjust to
	call var, vardef, or set_seen, instead of variable_defined.  Use
	set_seen only for variables which are actually checked by
	check_typos.
	* tests/target.test: Delete.
	* tests/alloca.test, tests/alloca2.test: New files.
	* tests/libobj3.test: Check error message.
	* tests/distcom4.test: Make sure configure is in DIST_COMMON.
	This replace confdist.test.
	* tests/Makefile.am (TESTS, XFAIL_TESTS): Remove target.test.
	(TESTS): Add alloca.test and alloca2.test.  Remove confdist.test.

2003-06-20  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (handle_dist): Delete DIST_COMMON before redefining
	it.  Bug report from Akim Demaille.
	(rewrite_inputs_into_dependencies): Make sure we always return
	something, even when $add_srcdir is 0.
	* tests/distcom4.test, tests/distcom5.test: New files.
	* tests/Makefile.am (TESTS): Add distcom4.test and distcom5.test.

	* tests/cond29.test: Also check for _SOURCES.
	Report from Paolo Bonzini.

2003-06-20  Akim Demaille  <akim@epita.fr>

	* lib/am/configure.am: Replace leading spaces with a real tab.

2003-06-15  Alexandre Duret-Lutz  <adl@gnu.org>

	* tests/nogzip.test, tests/nogzip2.test: New files.
	* tests/Makefile.am (TESTS): Add nogzip.test and nogzip2.test

2003-06-15  Akim Demaille  <akim@epita.fr>

	* automake.in (&make_paragraphs): Define %GZIP%.
	(&process_option_list): Accept no-dist-gzip2.
	(&handle_dist): Complain when no archive format is enabled.
	* lib/am/distdir.am (DIST_ARCHIVES): New variable.
	(dist-gzip, dist-bzip2, dist-tarZ, dist-zip): No longer
	conditioned.
	(dist): Build $(distdir).tar.gz conditionally.
	(distcheck): Use DIST_ARCHIVES to find an archive to unpack, and
	to list built archives.  Run $(MAKE) dist instead of dist-gzip.
	* automake.texi (Options, The types of distributions): Adjust.

2003-06-15  Jens Elkner  <elkner@imsgroup.de>  (tiny change)

	* m4/lispdir.m4 (AM_PATH_LISPDIR): Fix sed commands to work with
	POSIXLY_CORRECT=1.

2003-06-14  Karl Berry  <karl@gnu.org>
	    Alexandre Duret-Lutz  <adl@gnu.org>

	* mkinstalldirs (scriptversion): New variable.  Setup emacs hooks
	to update it each time the file is written, as in install-sh.
	(usage): Improve message.
	(--version): New option.
	(--help): Output to stdout, not stderr.

2003-06-13  Paul Eggert  <eggert@twinsun.com>

	* lib/install-sh (dsttmp, rmtmp): Do not use '#' in file names;
	it's not guaranteed by POSIX and it doesn't work on OpenVMS.
	Bug reported by Bernard Giroud in:
	http://mail.gnu.org/archive/html/autoconf-patches/2003-06/msg00013.html

2003-06-05  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (check_gnu_standards): Use no-installman and
	no-installinfo's locations.
	(process_option_list): Fill %options with locations.
	(check_cygnus) Fill $options{'no-installinfo'} and
	$options{'no-dependencies'} with $cygnus_mode, so that it
	remains a Location.
	* tests/gnuwarn2.test: New file.
	* tests/Makefile.am (TESTS): Add gnuwarn2.test.

2003-06-04  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (process_option_list): Record the location
	of ansi2knr's definition.
	(handle_compile): Use it.
	* tests/ansi3.test: Make sure the location appears correctly.
	Update to use set -e.
	* tests/ansi3b.test: New file.
	* tests/Makefile.am (TESTS): Add ansi3b.test.

	* tests/alpha.test: Really run $MAKE.  Augment to test
	subdirectories, and check-news report.
	* tests/alpha2.test: New file.  Bug report from Akim Demaille.
	* tests/gnits2.test: Make sure README-alpha is not distributed.
	* tests/Makefile.am (TESTS): Add alpha2.test.
	* automake.in (handle_minor_options): Distribute README-alpha
	using push_dist_common, not require_file_with_macro.

2003-06-03  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Automake/Configure_ac.pm
	(search_configure_ac, find_configure_ac): Rename as ...
	(find_configure_ac, require_configure_ac): ... these.
	* aclocal.in (scan_configure): Adjust call to require_configure_ac.
	* automake.in (scan_autoconf_files): Likewise.
	Suggested by Tim Van Holder.

	* alocal.in: Use Automake::Configure_ac.
	($configure_ac): Delete.
	(scan_configure): Adjust use of find_configure_ac;
	* automake.in: Use Automake::Configure_ac.
	($configure_ac): Delete.
	(scan_autoconf_files): Adjust use of find_configure_ac;
	* lib/Automake/Configure_ac.pm: New file.
	* lib/Automake/General.pm (find_configure_ac): Delete.  Now
	replaced by Automake::Configure_ac::search_configure_ac.
	* lib/Automake/Makefile.am (dist_perllib_DATA): Add Configure_ac.pm.
	* lib/Automake/Variable.pm: Use Automake::Configure_ac.
	(require_variables): Adjust use of $configure_ac.

2003-06-02  Akim Demaille  <akim@epita.fr>

	* lib/am/texi-vers.am, lib/am/subdirs.am, lib/am/scripts.am,
	* lib/am/remake-hdr.am, lib/am/python.am, lib/am/progs.am,
	* lib/am/program.am, lib/am/multilib.am, lib/am/mans.am,
	* lib/am/mans-vars.am, lib/am/ltlibrary.am, lib/am/ltlib.am,
	* lib/am/lisp.am, lib/am/libtool.am, lib/am/library.am,
	* lib/am/lang-compile.am, lib/am/java.am, lib/am/header.am,
	* lib/am/header-vars.am, lib/am/footer.am, lib/am/depend.am,
	* lib/am/dejagnu.am, lib/am/data.am, lib/am/compile.am,
	* lib/am/clean.am, lib/am/clean-hdr.am, lib/am/check.am,
	* lib/am/ansi2knr.am, lib/am/Makefile.am, lib/Makefile.am,
	* m4/strip.m4, m4/sanity.m4, m4/runlog.m4, m4/regex.m4,
	* m4/python.m4, m4/protos.m4, m4/options.m4, m4/obsolete.m4,
	* m4/obsol-lt.m4, m4/obsol-gt.m4, m4/multi.m4, m4/missing.m4,
	* m4/minuso.m4, m4/maintainer.m4, m4/lispdir.m4, m4/lex.m4,
	* m4/install-sh.m4, m4/header.m4, m4/gcj.m4, m4/dmalloc.m4,
	* m4/depout.m4, m4/cond.m4, m4/ccstdc.m4, m4/auxdir.m4, m4/as.m4,
	* m4/Makefile.am: White space changes and Copyright updates.

2003-05-29  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Automake/Variable.pm (check_defined_unconditionally): Add
	the $parent_cond argument.
	(output): Use $self->name in diagnostic not $self.
	(variable_value_as_list): Rename as ...
	(value_as_list): ... this.  Declare as a method.  Take a $parent_cond
	argument and pass it to check_defined_unconditionally.  Do not call
	variable_assert, now that this is a method.
	(variable_assert): Delete (unused).
	* automake.in (traverse_variable_recursively_worker): Adjust to
	use check_defined_unconditionally and value_as_list as a methods.

	* lib/Automake/Variable.pm (output): Declare as a method, since it
	is only used this way.
	(define): Fix documentation of $cond.
	Suggested by Raja R. Harinath.

2003-05-25  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Automake/Variable.pm, lib/Automake/VarDef.pm: New files.
	* lib/Automake/Makefile.am (dist_perllib_DATA): Add Variable.pm
	and VarDef.pm.
	* automake.in: Use Automake::Variable and Automake::VarDef.
	(MACRO_PATTERN): Delete. Now Automake::Variable::_MACRO_PATTERN.
	(am_macro_for_var): Delete. Now Automake::Variable::_am_macro_for_var.
	(ac_macro_for_var): Delete. Now Automake::Variable::_ac_macro_for_var.
	(silent_variable_override): Delete.  Now
	Automake::Variable::_silent_variable_override.
	(var_value, var_location, var_comment, var_type, var_owner,
	var_pretty, content_seen): Delete.  This functionality is now
	offered by Automake::Variable and Automake::VarDef.
	(VAR_AUTOMAKE, VAR_CONFIGURE, VAR_MAKEFILE, VAR_ASIS, VAR_PRETTY):
	Delete.  Now defined in Automake::VarDef.
	(var_order): Delete.  Now Automake::Variable::_var_order.
	(appendvar): Delete.  Now Automake::Variable::_appendvar.
	(var_SUFFIX_trigger): Register using Automake::Variable::hook.
	(initialize_per_input): Call Automake::Variable::reset.
	(err_var, msg_cond_var, msg_var, reject_var): Delete.  Now
	defined in Automake::Variable.
	(generate_makefile, process_option_list, handle_languages)
	(traverse_variable_recursively_worker)
	(transform_variable_recursively, handle_compile)
	(handle_libraries, handle_ltlibraries)
	(check_typos, handle_dist, handle_subdirs, scan_autoconf_files):
	Adjust to use Automake::Variable functions.
	(check_ambiguous_condition): Delete.  Now
	Automake::Variable::_check_ambiguous_condition.
	(condition_ambiguous_p): Delete.  Now
	Automake::Variable::condition_ambiguous_p.
	(variable_not_always_defined_in_cond): Delete.  Now
	Automake::Variable::not_always_defined_in_cond.
	(macro_define): Delete.  Now Automake::Variable::define.
	(macro_delete): Delete.  Now Automake::Variable::variable_delete.
	(macro_dump): Delete.  Now Automake::Variable::variable_dump.
	(macros_dump): Delete.  Now Automake::Variable::variables_dump.
	(variable_defined): Delete.  Now
	Automake::Variable::variable_defined, with the target check
	temporarily disabled.
	(variable_assert): Delete.  Now Automake::Variable::variable_assert.
	(examine_variable): Delete.  Now
	Automake::Variable::examine_variable.
	(variable_conditions): Delete.  Now Automake::Variable::conditions.
	(scan_variable_expansions): Delete.  Now
	Automake::Variable::scan_variable_expansions.
	(check_variable_expansions): Delete.  Now
	Automake::Variable::check_variable_expansions.
	(check_variable_defined_unconditionally): Delete.  Now
	Automake::Variable::check_defined_unconditionally.
	(variable_value): Delete.  Now Automake::Variable::variable_value.
	(variable_value_as_list): Delete.  Now
	Automake::Variable::variable_value_as_list.
	(variable_value_as_list_recursive_worker): Adjust to use
	Automake::Variable functions.
	(variable_output): Delete.  Now Automake::Variable::output.
	(define_pretty_variable, define_configure_variable, read_am_file)
	(define_standard_variables, read_main_am_file): Adjust to use
	Automake::Variable functions.
	(handle_variables): Delete.  Now Automake::Variable::output_variables.
	(file_contents_internal, am_primary_prefixes, am_install_var)
	(require_file_with_macro, require_conf_file_with_macro)
	(push_dist_common): : Adjust to use
	Automake::Variable functions.
	(require_variables): Delete.  Now
	Automake::Variable::require_variables.
	(require_variables_for_macro): Delete.  Now
	Automake::Variable::require_variables_for_variable.
	* tests/Makefile.am (XFAIL_TESTS): Add target.test.

2003-05-25  Christian Cornelssen  <ccorn@cs.tu-berlin.de>  (tiny change)

	* tests/dejagnu7.test: Check if runtest supports --status.

2003-05-23  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Automake/Location.pm (dump): Output 'INTERNAL' when position
	is undefined.

	* lib/Automake/DisjConditions.pm (human): Fix infinite loop when
	$self contains only one Condition.

	* automake.in: Use plain strict, including refs.
	(macro_define, handle_single_transform_list): Use \&{'name'} to
	build references to named subroutines.

2003-05-22  Karl Berry  <karl@gnu.org>

	* automake.texi: Update @dircategory to match the Free Software
	Directory.  End directory entries with dots.

2003-05-22  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.texi (maintainer-mode): s/François/Fran@,{c}ois/.

	* lib/elisp-comp: s/François/Franc,ois/.
	Suggested by Paul Eggert.

	* automake.in: Move the "main" code at the end.
	(parse_arguments): Move near the end.
	($KNOWN_EXTENSIONS_PATTERN, @known_extensions_list,
	accept_extensions, var_SUFFIXES_trigger): Move these definitions
	before any call to register_language.
	(am_file): Move the definition with all other global variables,
	do not use local to define it.
	* Makefile.am (maintainer-check): Expect no `local' in Automake.

2003-05-21  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Automake/Wrap.pm, lib/Automake/tests/Wrap.pl: New files.
	* lib/Automake/Makefile.am (dist_perllib_DATA): Add Wrap.pm.
	* lib/Automake/tests/Makefile.am (TESTS): Add Wrap.pl.
	* automake.in (handle_texinfo_helper, pretty_print_rule)
	(variable_output): Adjust to use makefile_wrap instead of
	pretty_print_internal.
	(pretty_print_internal): Remove.  Renamed as Automake::Wrap::wrap
	and augmented to accept the $eol and $max_len arguments.

2003-05-18  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Autom4te/XFile.pm, lib/config.guess, lib/config.sub,
	lib/texinfo.tex: New upstream versions.

2003-05-17  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/am/install.am (install, install-exec, install-data, uninstall):
	Declare conditionally using a if/else/endif block instead of
	using ?SUBDIRS?-style conditions.  The latter fail when
	%maybe_BUILT_SOURCES% is replaced by several lines.
	This fixes a bug introduced on 2003-04-06.
	* tests/bsource.test: New file.
	* tests/Makefile.am (TESTS): Add bsource.test.
	Reported by Bruno Haible.

2003-05-11  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.texi (renamed objects): New node.
	(Program and Library Variables): Move maude_DEPENDENCIES closer
	to maude_LDADD.  Define and use `per-target compilation flags' in the
	explanation for maude_CFLAGS et al.  Link to the `renamed objects'
	node.  Illustrate maude_SHORTNAME.

2003-05-09  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/install-sh: Update copyright notice and license to that of
	X11R6.  This removes an advertising clause reported as Debian bug
	#191717.

2003-05-07  Alexandre Duret-Lutz  <adl@gnu.org>

	* configure.in (ACLOCAL): Do not use -I, --acdir is enough.

	* m4/make.m4: Rename the doit target as am__doit,
	and make it phony.
	Reported by Philip S Tellis.

2003-05-07  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/am/configure.am (%MAKEFILE-IN%): Propagate automake's exit
	status.
	* tests/makej.test: New file (test Autom4te's cache locking,
	new in CVS Autoconf).
	* tests/Makefile.am (TESTS): Add makej.test.

2003-05-06  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Automake/General.pm (contents): New function.
	* aclocal.in (greatest_mtime, force_output): New globals.
	(scan_configure, add_file): Update $greatest_mtime.
	(parse_arguments): Parse --force.
	(write_aclocal): Do not overwrite $output_file unless needed.
	* automake.texi (aclocal options): Document --force.
	* tests/aclocal7.test: New file.
	* tests/Makefile.am (TESTS): Add aclocal7.test.

2003-05-05  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.texi (Optional): Document m4_include.
	(Invoking aclocal): Shake a bit to introduce the various uses
	of aclocal and explain that aclocal will use m4_include for
	local files.
	(Extending aclocal): Show how to install installable macros
	in $(datadir)/aclocal, and make it clearer that writing installable
	macros is not the only way to extend aclocal.
	(Local Macros, Future of aclocal): New sections.

2003-04-27  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (@common_files): Remove acinclude.m4 since
	it will be m4_included by aclocal.m4 and files are always
	distributed.
	(scan_aclocal_m4): Do not bother about acinclude.m4 anymore.
	We will get this dependency when tracing m4_includes.
	* tests/aclocal6.test: Make sure acinclude.m4 is distributed
	when used.
	* tests/acinclude.test: Delete.
	* tests/Makefile.am (TESTS): Remove acinclude.test.

2003-04-25  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (handle_configure): Don't add @configure_deps to
	DIST_COMMON, we do this from lib/am/configure.am now.
	Define the am__configure_deps variable instead of substituing
	%CONFIGURE_DEPS%.
	* lib/am/configure.am (%MAKEFILE-IN%, $(top_srcdir)/configure,
	$(ACLOCAL_M4)): Use $(am__configure_deps) instead of %CONFIGURE_DEPS%.
	(DIST_COMMON): Add $(am__configure_deps).

	* tests/aclocal6.test: New file.
	* lib/am/configure.am (am--refresh): New rule.
	(%MAKEFILE-IN%, %MAKEFILE%, $(top_builddir)/config.status,
	$(top_srcdir)/configure): Call the top-level am--refresh from
	subdirectories.
	($(ACLOCAL_M4)): Depend upon %CONFIGURE_DEPS%.  Call the
	top-level am--refresh when not in the top-level directory.
	Fix jump directories for VPATH builds.
	Suggested by Raja R. Harinath.

2003-04-24  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (scan_aclocal_m4): Do not parse ACLOCAL_AMFLAGS
	and glob for m4_files (We've got all local m4 files while
	tracing m4_include's).  Diagnose ACLOCAL_M4_SOURCES as obsolete.
	Distribute aclocal.m4 only at the top-level.
	(my_glob): Remove.  This fixes PR automake/11.
	(handle_dist): Strip leading `./' from directories.
	* aclocal.in (add_file): Output 'm4_include([file.m4])' instead
	of copying local files.
	(write_aclocal, parse_arguments): Bump copyright date.
	* configure.in: De not build m4/amversion.m4 from here ...
	* m4/Makefile.am ($(srcdir)/amversion.m4): ... do this here.
	(nodist_m4data_DATA): Use $(srcdir)/amversion.m4 instead
	of amversion.m4.
	* tests/Makefile.am (XFAIL_TESTS): Remove aclocal5.test.
	(TESTS): Remove aclocal2.test.  Do not test aclocal.test twice.
	* tests/aclocal2.test: Delete (pointless).
	* tests/aclocal5.test: Make sure configure's dependencies are
	distributed.
	* tests/acinclude.test: Adjust to search for m4_include.
	* tests/dirlist.test, tests/dup3.test: Run $AUTOCONF and grep
	configure instead of aclocal.m4.

	For PR automake/46:
	* automake.in (scan_aclocal_m4): Work in all directories, not only
	the top-level.  Prepend $(top_srcdir) in front of each aclocal.m4
	dependency.
	* lib/am/configure.am (config.status, configure, $(ACLOCAL_M4)):
	Define rebuild rules in each directory.
	* tests/subdir8.test: Augment to exercise aclocal.m4's dependencies
	from the top-level directory.
	* tests/aclocal5.test: New file.  Exercise aclocal.m4's dependencies
	from a subdirectory.
	* tests/Makefile.am (TESTS): Add aclocal5.test.
	(XFAIL_TESTS): Replace subdir8.test by aclocal5.test.

2003-04-24  Akim Demaille  <akim@epita.fr>
	    Alexandre Duret-Lutz  <adl@gnu.org>

	For PR automake/46:
	* lib/am/configure.am (%MAKEFILE-IN%): If Makefile.in is rebuilt
	because of one of configure's dependencies, run automake without
	argument to update the whole tree at once.  Depend upon
	%CONFIGURE_DEPS%.
	(%MAKEFILE%): If Makefile is rebuilt because config.status has
	been updated, run config.status without arguments.
	* automake.in (scan_autoconf_traces): Prepend $(top_srcdir)
	before all files in @configure_deps.
	* tests/subdir5.test: Modernize configure.in, make sure
	maude/Makefile was actually created, and exercise %CONFIGURE_DEPS%.
	* tests/subdir8.test: New file.
	* tests/Makefile.am (TESTS): Add subdir8.test.
	(XFAIL_TESTS): Replace subdir5.test by subdir8.test.

2003-04-23  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.texi (Requirements): Typo in index
	s/AC_CONFIG_FILE/AC_CONFIG_FILES/.

	* lib/texinfo.tex: New upstream version.

2003-04-21  Jim Meyering  <jim@meyering.net>

	* lib/mkinstalldirs: Remove each sequence of spaces before a
	TAB character.
	* lib/depcomp: Search for TAB-SPC, not SPC-TAB.

2003-04-19  Alexandre Duret-Lutz  <adl@gnu.org>

	Fix for PR automake/389:
	* automake.in (handle_configure): Don't put $colon_infile in
	CONFIG-MAKEFILE.
	* tests/conff.test: New file.
	* tests/Makefile.am (TESTS): Add conff.test.
	Reported by Alexander Turbov.

2003-04-18  Alexandre Duret-Lutz  <adl@gnu.org>

	* tests/defs.in: Handle required=etags to work around
	Exuberant Ctags.

	* lib/config.guess, lib/config.sub, lib/texinfo.tex: New upstream
	versions.

	* tests/dejagnu3.test, tests/dejagnu4.test, tests/dejagnu5.test:
	Distribute dejagnu test cases, so that distcheck actually runs them.

2003-04-18  Richard Dawe  <rich@phekda.freeserve.co.uk>

	* lib/am/dejagnu.am (site.exp): Don't define tool in site.exp,
	because we set that by invoking runtest with --tool.
	* tests/Makefile.am (TESTS): Add dejagnu4.test, dejagnu5.test,
	dejagnu6.test, dejagnu7.test.
	* tests/dejagnu4.test: New test.
	* tests/dejagnu5.test: New test.
	* tests/dejagnu6.test: New test.
	* tests/dejagnu7.test: New test.

	* tests/dejagnu3.test: Make sure the DejaGnu test is actually run.

2003-04-18  Jim Meyering  <jim@meyering.net>

	* automake.in (variable_output): Fix typo in comment s/is/if/.

	* lib/am/yacc.am (?!GENERIC?%OBJ% aka .y.c): Don't redirect
	directly to $@.  Instead, redirect to $@t and rename upon success.
	Also, move the commands that update $@ so they are last.  Otherwise,
	this rule could leave the user with an up to date target (.c file)
	but with a missing or corrupted corresponding .h file.

2003-04-17  Richard Dawe  <rich@phekda.freeserve.co.uk>

	* tests/defs.in: Handle required=runtest, to detect runtest
	from DejaGnu.
	* tests/Makefile.am (TESTS): Add dejagnu3.test.
	* tests/dejagnu3.test: New test.

2003-04-16  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (rule_define): If the user tries to override
	an Automake which has a -local variant, suggest using the
	-local variant in the -Woverride diagnostic.
	(handle_factored_dependencies): Register factored
	rules with rule_define, and define them only in undefined
	conditions.
	* tests/Makefile.am (TESTS): Add override.test.
	* tests/overrid.test: New file.
	* tests/phony.test: Count the number of .PHONY targets.

2003-04-15  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/am/distdir.am (distuninstallcheck, distcleancheck): Silence
	these rules, so that we don't confuse users by echoing
	"echo ERROR:" commands which are not run.

2003-03-14  Richard Dawe  <rich@phekda.freeserve.co.uk>
	    Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (output_texinfo_build_rules, handle_texinfo_helper,
	initialize_per_input):  Add infrastructure for generating HTML
	documentation from texinfo source.
	* lib/am/texinfos.am: Add rules for building HTML documentation
	from texinfo source.
	* lib/am/texibuild.am: Likewise.
	* automake.texi (Texinfo): Document rules for building
	HTML documentation from texinfo source.
	* tests/txinfo21.test: New file.
	* tests/Makefile.am (TESTS): Add txinfo21.test.
	* tests/defs.in: Handle required=makeinfo-html.

2003-04-14  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (%silent_variable_override): New variable.
	(macro_define): Warn about variable definitions overriding
	Automake variables.
	(rule_define): Warn about target definitions overriding
	Automake variables.  Fix $condmsg definition.
	* automake.texi (Invoking Automake): Document the `override'
	category.
	* lib/Automake/ChannelDefs.pm (usage): Likewise.
	* lib/am/texinfos.am [!%?CYGNUS] (MAKEINFO): Do not define,
	this is already done in m4/init.m4.
	* tests/dejagnu2.test: Run $MAKE, don't only grep.  Use
	-Wno-override, and make sure we get a warning without.
	* tests/exeext2.test, tests/substtarg.test: Use -Wno-override,
	and make sure we get a warning without.
	* tests/exeext3.test, tests/java2.test, tests/nolink.test,
	tests/subpkg.test, tests/vartest.test: Use -Wno-override.
	* tests/txinfo13.test: Use installcheck-local instead of overriding
	installcheck.
	* tests/txinfo2.test: Run $MAKE on the real Makefile (this test
	used to succeed thanks to a failure...)
	* tests/location.test: Adjust expected messages.
	* tests/Makefile.am (XFAIL_TESTS): Add txinfo5.test.

2003-04-12  Raja R Harinath  <harinath@acm.org>

	* lib/Automake/DisjConditions.pm (true): Don't cache answer.
	(invert): Update comment.
	(_simplify): Remove.
	(simplify): Implement using invert().
	* lib/Automake/tests/DisjConditions.pl (test_simplify):
	Update to reflect changes.

2003-04-12  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (scan_autoconf_files): Augment the error message
	about AM_INIT_AUTOMAKE not found.
	Suggested by Bruno Haible.

	* lib/Automake/Version.pm: New file.
	* lib/Automake/Makefile.am (dist_perllib_DATA): Add Version.pm.
	* lib/Automake/tests/Version.pl: New file.
	* lib/Automake/tests/Makefile.am (TESTS): Add Version.pl.
	* tests/Makefile.am (TESTS): Remove version5.test.
	* tests/version5.test: Delete.  Move the tests to Version.pl.
	* automake.in (version_split, version_compare, version_check): Move ...
	* lib/Automake/Version.pm (split, compare, check): ... here.

2003-04-11  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Automake/tests/Condition.pl (test_reduce_and)
	(test_reduce_or): Cosmetics.
	* lib/Automake/tests/DisjConditions.pl (test_sub_conditions):
	Fix a comment.
	* lib/Automake/DisjConditions.pm (sub_conditions): Add missing C<...>
	in comment.
	* tests/yacc8.test, configure.in: Update copyright year.

2003-04-10  Richard Dawe  <rich@phekda.freeserve.co.uk>

	* configure.in: Get the build platform name.  Define
	MODIFICATION_DELAY as the time to wait after modifying a file,
	to cope with timestamp granularity issues, depending
	on the platform.
	* tests/defs.in: Define `sleep' using MODIFICATION_DELAY.

2003-04-10  Eric Siegerman  <eric_97@pobox.com>  (tiny change)

	* automake.texi (Public macros): Clarify that the new
	AM_INIT_AUTOMAKE variant is preferred, and the old one
	deprecated.  Copy-edit the rest of the AM_INIT_AUTOMAKE item.
	(Hello): Caution that the example uses the deprecated
	AC_INIT/AM_INIT_AUTOMAKE syntax, and xref to the discussion.

2003-04-10  Alexandre Duret-Lutz  <adl@gnu.org>

	Retain all variable definitions until the whole Makefile.am has
	been processed, then output all variables in one step, at the top
	of Makefile.in.  (Older revisions used to output user variables
	before generating Automake targets, and to mix Automake variables
	with Automake targets, preventing redefinitions of previously
	output variables.)

	* automake.in (%var_pretty): New variable.
	(VAR_ASIS, VAR_PRETTY): New constants.
	(@var_list): Rename as ...
	(@var_order): ... this.
	(initialize_per_input): Clear %var_pretty.
	(handle_variables): New function, extracted from ...
	(read_main_am_file): ... here.
	(generate_makefile): Call handle_variable after everything else.
	(handle_dist): Use define_pretty_variable, not pretty_print.
	(pretty_print): Delete.
	(macro_define): Augment with $COMMENT and $PRETTY parameters.
	Update %var_comment, %var_pretty, and @var_order.  Adjust callers.
	(variable_pretty_output): Merge with ...
	(variable_output): ... this, and choose the prettiness on a
	per-condition basis.
	(append_comments): Delete.  This work is now done by macro_define.
	(read_am_file, file_contents_internal): Don't call append_comments
	nor update @var_list, adjust calls to macro_define.
	(handle_subdirs): Don't explicitly output RECURSIVE_TARGETS,
	just mark it as VAR_PRETTY.
	* tests/exeext.test: Make sure bin_PROGRAMS is output only once.
	Report from Jim Meyering.

2003-04-06  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (handle_installdirs): Rename as ...
	(handle_install): ... this.  Define maybe_BUILT_SOURCES.
	(generate_makefile): Adjust call to handle_install.
	* lib/am/install.am (install): Use %maybe_BUILT_SOURCES%.
	* automake.texi (Sources, Built sources example): BUILT_SOURCES
	is honored by `make install' too.
	* tests/check3.test: Make sure that `make install' also depends
	upon BUILT_SOURCES.
	Report from Alexander Turbov.

	* lib/am/libs.am (ARFLAGS): Define.
	* automake.in (handle_libraries): Use `$(ARFLAGS)' instead of
	hard-coding `cru'.
	* automake.texi (A Library): Explain how AR, ARFLAGS and RANLIB
	are used, and how they can be overridden.
	(Program and Library Variables): Adjust to show `$(ARFLAGS)'
	instead of `cru'
	* tests/ar.test: Rewrite to test for AR, ARFLAGS, and RANLIB.
	* tests/ranlib.test: Delete, obsoleted by ar.test.
	* tests/Makefile.am (TESTS): Remove ranlib.test.
	Report from Paul Thomas.

2003-04-03  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (check_trailing_slash): New function (variation on
	a patch by Peter Muir).  Diagnose whitespaces following trailing
	backslash.
	(read_am_file): Use it.
	* tests/backsl4.test: New file.
	* tests/Makefile.am (TESTS): Add backsl4.test.
	Reported by Peter Muir.

2003-03-29  Raja R Harinath  <harinath@acm.org>

	Speedup Automake::DisjConditions::invert().
	* lib/Automake/Condition.pm (multiply): New.
	* lib/Automake/DisjConditions.pm (_multiply): Use it.
	(sub_conditions): Likewise.

	* lib/Automake/Condition.pm (reduce): Rename to ...
	(reduce_and): ... this.
	(reduce_or): New.
	* lib/Automake/DisjConditions.pm (_multiply): Use reduce_or().
	* lib/Automake/tests/Condition.pl (test_reduce): Rename to ...
	(test_reduce_and): ... this.
	(test_reduce_or): New.
	* lib/Automake/tests/DisjConditions.pl
	(test_invert): Update to reflect effect of reduce_or().
	(test_simplify): Don't skip invert() on larger inputs.

2003-03-29  Raja R Harinath  <harinath@cs.umn.edu>

	* tests/yacc8.test: Add a $sleep before modifying Makefile.am so
	that timestamp will change.

2003-03-23  Akim Demaille  <akim@epita.fr>
	    Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/am/tags.am (TAGS): Use --etags-include instead of --include,
	when supported by etags (Exuberant Ctags).
	* tests/tagsub.test: Rewrite to _run_ the `tags' rule.

2003-03-20  Alexandre Duret-Lutz  <adl@gnu.org>

	For Debian Bug #185388:
	* automake.texi (Extending): Augment the install-exec-hook
	discussion with an example how to symlink a versioned binary.
	* tests/insthook.test: Rewrite to test the above example.
	Report from James R. Van Zandt.

2003-03-19  Alexandre Duret-Lutz  <adl@gnu.org>

	* Makefile.am (maintainer-check): Allow `automake:' tokens,
	occuring in location.test.  Automake now has 5 legitimate
	unsubstituted @strings@.

	* tests/aclocal4.test: Require GNU make.

2003-03-14  Alexandre Duret-Lutz  <adl@gnu.org>

	* tests/aclocal4.test: New file.  Test for the ACLOCAL_M4 bug below.
	* tests/Makefile.am (TESTS): Add aclocal4.test.

2003-03-14  Jim Meyering  <jim@meyering.net>

	* automake.in (scan_aclocal_m4): Define ACLOCAL_M4 even in
	subdirectories.  Makefile.in depends on that variable.

2003-03-13  Alexandre Duret-Lutz  <adl@gnu.org>

	* m4/init.m4: Remove a leftover comment from the pre-1.7 era.

	Fix for PR automake/386:
	* m4/init.m4: Require Autoconf 2.55.
	Reported by Owen Taylor.

	* lib/am/depend2.am (?GENERIC?%EXT%.o, ?GENERIC?%EXT%.obj)
	(?GENERIC?%EXT%.lo): Use `mv -f' instead of `mv' in FASTDEP mode.
	Suggested by Matthias Andree.

	* tests/README: Typo.

2003-03-08  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/am/depend2.am (?GENERIC?%EXT%.o, ?GENERIC?%EXT%.obj)
	(?GENERIC?%EXT%.lo): Hide the if/then/else machinery for FASTDEP.
	Just echo the gcc command.
	Suggested by Karl Berry.

2003-03-06  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/am/depend2.am (?GENERIC?%EXT%.lo): Do not use
	`test -f foo || echo $(srcdir)/` to emulate a VPATH search when
	outputing suffix rules.  This follows 2003-02-25's change.
	* lib/am/lex.am (?GENERIC?%EXT%%DERIVED-EXT%): Likewise.
	* lib/am/yacc.am (?GENERIC?%EXT%%DERIVED-EXT%): Likewise.

2003-03-05  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.texi (Requirements) <AC_CONFIG_FILES>: Files listed
	with AC_CONFIG_FILES are cleaned by `make distclean'.  Don't
	pretend otherwise.
	Reported by Rafael Laboissiere.

2003-03-04  Andreas Buening  <andreas.buening@nexgo.de>

	* lib/mdate-sh: Find out which column of the ls -l output contains
	the month. Do not assume it is at least the fifth column.

2003-02-26  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.texi (Emacs Lisp): Mention that `dist_' can be used.

	* automake.texi (Emacs Lisp): Instruct people to use lisp_DATA
	instead of lisp_LISP when they don't want byte-compilation.
	Don't mention ELCFILES anymore.
	* automake.in (handle_data): Allow lisp_DATA.
	* tests/lisp5.test: New file.
	* tests/Makefile.am (TESTS): Add lisp5.test.

	* automake.in (handle_emacs_lisp): Don't build *.elc files
	if ELCFILES was set empty.
	* tests/lisp4.test: New file.
	* tests/Makefile.am (TESTS): Add lisp4.test.
	Reported by Simon Josefsson.

	* tests/lex3.test, tests/lex5.test: Require flex.
	Reported by Leo Davis.

2003-02-25  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/am/depend2.am (?GENERIC?%EXT%.o, ?GENERIC?%EXT%.obj): Do not
	use the `test -f foo || echo $(srcdir)/` to emulate a VPATH search
	when outputing suffix rules.
	* lib/am/texibuild.am (?GENERIC?%SOURCE_SUFFIX%.dvi)
	(?GENERIC?%SOURCE_SUFFIX%.pdf): Likewise.
	Suggested by Bruno Haible.

	* automake.in (read_am_file): Catch trailing backslashes on last line.
	* tests/backsl3.test: New file.
	* tests/Makefile.am (TESTS): Add backsl3.test.
	Reported by Akim Demaille.

2003-02-24  Alexandre Duret-Lutz  <adl@gnu.org>

	* ChangeLog: Move 2002's entries to ...
	* ChangeLog.02: ... this new file.
	* Makefile.am (EXTRA_DIST): Add ChangeLog.02.

2003-02-24  Richard Dawe  <rich@phekda.freeserve.co.uk>

	* tests/version7.test: Use $sleep to sleep before updating
	the version, to work around timestamp inconsistencies in Windows.

2003-02-24  Bruno Haible  <bruno@clisp.org>
	    Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/am/texibuild.am: Don't remove the target info files. Instead,
	back up and restore them if makeinfo fails.
	* tests/txinfo20.test: New file.
	* tests/Makefile.am (TESTS): Add txinfo20.test.

2003-02-23  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.texi (FAQ, CVS, maintainer-mode, wildcards)
	(distcleancheck): Fix typos and other errors reported by Karl
	Berry.

2003-02-20  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/am/texibuild.am (%SOURCE_SUFFIX%%DEST_SUFFIX%): Use $(...)
	instead of ${...}.

	* tests/defs.in: Handle required=ro-dir.
	* tests/destdir.test: Use this.

2003-02-19  Richard Dawe  <rich@phekda.freeserve.co.uk>

	* lib/am/distdir.am (distcheck): Strip any leading DOS drive
	from dc_install_base.

2003-02-19  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/am/texinfos.am (install-info-am, uninstall-info-am): Install
	DJGPP-style *.iNN info files.
	(maintainer-clean-aminfo): Rewrite using the same pattern
	as in uninstall-info-am.
	* lib/am/texibuild.am (%SOURCE_SUFFIX%%DEST_SUFFIX%): Erase
	DJGPP-style *.iNN info files before running $(MAKEINFO).
	* tests/txinfo19.test: New file.
	* tests/Makefile.am (TESTS): Add txinfo19.test.

2003-02-18  Richard Dawe  <rich@phekda.freeserve.co.uk>

	* lib/depcomp (dashmstdout): Cope with DOS filenames in
	dependencies.

2003-02-17  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/depcomp (makedepend): Don't pass $object to makedepend.
	Reported by Stepan Kasal.

2003-02-12  Alexandre Duret-Lutz  <adl@gnu.org>

	* tests/defs.in: Handle required=makedepend.

	* Makefile.am (maintainer-check): Update the diff check
	to account for the recent @SHELL@ substitution.

2003-02-11  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/depcomp: Do not put comments on the `icc)' line.

	* lib/config.guess, lib/config.sub, lib/texinfo.tex: New upstream
	versions.

	Fix for PR automake/381:
	* automake.in (handle_gettext): Do not print diagnostics
	about po/ and intl/ missing from SUBDIRS if po/ does not
	exist.  Warn if `SUBDIRS = intl' is used although libintl
	is 'external'.
	* tests/gettext.test: Make sure diagnostics are not output
	when po/ does not exist.
	* tests/gettext2.test: Test for unwanted intl/.
	PR from Alexander Turbov, fix suggested by Bruno Haible.

	* m4/depend.m4: Grep depcomp's stderr for icc warnings about
	ignored options.
	* lib/depcomp (icc): New mode.
	* tests/depcomp5.test: New file.
	* tests/defs.in: Handle required=icc.
	* tests/Makefile.am (TESTS): Add it.

	Temporary hack for PR automake/381:
	* automake.in (handle_gettext): Turn missing po/ and intl/ errors
	into -Wsyntax warnings.

2003-02-10  Richard Dawe  <rich@phekda.freeserve.co.uk>

	* Makefile.am: Substitute @SHELL@ in automake.in and aclocal.in.
	This makes the setting of SHELL work for DJGPP.

2003-02-10  Alexandre Duret-Lutz  <adl@gnu.org>

	For PR automake/385:
	* lib/depcomp (makedepend): Strip any libtool call, before
	running makedepends.
	* tests/depcomp4.test: New file.
	* tests/Makefile.am (TESTS): Add it.
	Reported by Jeff Squyres.

	Related to PR automake/385:
	* lib/depcomp (dashmstdout): Do not use `-o /dev/null', or gcc will
	write dependencies to /dev/null.  `-o /dev/null' was added
	on 2002-06-13 just because I tried to replace `-o foo.o' by something
	else and didn't thought about removing it entirely.
	* tests/depcomp3.test: New file.
	* tests/Makefile.am (TESTS): Add it.

	* automake.in (BEGIN): Override $ENV{'SHELL'} with ./configure's
	SHELL for DJGPP.
	Suggested by Richard Dawe.

2003-02-09  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.texi (FAQ, CVS, maintainer-mode, wildcards)
	(distcleancheck): New nodes.

2003-02-06  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (scan_autoconf_files): Don't complain that
	AM_INIT_AUTOMAKE comes from an old version if it was not found.

2003-02-05  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (am_install_var): Simplify filtering of
	variable_loc_and_value_as_list_recursive's output.

2003-02-04  Alexandre Duret-Lutz  <adl@gnu.org>

	* m4/init.m4 (_AC_AM_CONFIG_HEADER_HOOK): Recompute
	indexes of header files so we create stamp files with
	the right numbers when config.status is run on some headers.
	* tests/stamph2.test: Check for this.
	Reported by Sander Niemeijer.

2003-02-02  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (vars_scanned): Move near traverse_variable_recursively.
	(traverse_variable_recursively,
	traverse_variable_recursively_worker): Accept a $COND_FILTER argument
	to filter out conditions during recursion.  Don't recurse into
	undefined variables.  Don't pass empty results to &FUN_COLLECT.
	(value_to_list): Remove, was used by
	variable_value_as_list_recursive_worker only.
	(variable_value_as_list_recursive_worker): Rewrite using
	traverse_variable_recursively.  Remove the $parent argument.
	(variable_value_as_list_recursive,
	variable_loc_and_value_as_list_recursive): Adjust calls
	to variable_value_as_list_recursive_worker.  Don't reset
	%vars_scanned.
	* tests/cond3.test: Don't expect empty helper variables,
	we don't output them anymore.
	* tests/cond30.test: Use an undefined variable.

	* automake.in (handle_programs): Strip $(EXEEXT) before
	calling &check_canonical_spelling.
	* tests/exeext.test: Make sure we don't use a
	maude3__EXEEXT__OBJECTS variable.

2003-02-02  Jeremy Nimmer  <jwnimmer@alum.mit.edu>  (tiny change)

	For Debian Bug #39542:
	* automake.texi (Invoking Automake, Optional): Document how
	AC_CONFIG_AUX_DIR interacts with missing files.

2003-02-02  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/Automake/DisjConditions.pm (_permutations_worker)
	(permutations): Remove, so that people aren't tempted to use it.
	* lib/Automake/tests/DisjConditions.pl (tests_permutations): Remove.

	* automake.in (variable_conditions_recursive): Remove.
	(variable_conditionally_defined): Rewrite using
	traverse_variable_recursively.

	* automake.in (traverse_variable_recursively,
	traverse_variable_recursively_worker): Pass one merged Condition
	instead of a stack of conditions to &FUN_STORE and &FUN_COLLECT.
	(transform_variable_recursively, define_objects_from_sources)
	(handle_lib_objects, variable_conditions_recursive): Adjust usage.

2003-02-01  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (handle_lib_objects): Compute _DEPENDENCIES variables
	using transform_variable_recursively instead of
	variable_conditions_recursive and variable_value_as_list_recursive
	to avoid combinatorial explosion.
	(handle_lib_objects_cond): Merge into handle_lib_objects.
	* tests/cond11.test: Don't grep internal details in Makefile.in,
	run $MAKE to make sure the resulting Makefile runs as expected.
	* tests/cond29.test: Also exercise conditional _LDADD.
	* tests/cond31.test, tests/cond32.test: New files.
	* tests/Makefile.am (TESTS): Add tests/cond31.test and
	tests/cond32.test.

2003-01-31  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (handle_lib_objects_cond): Ignore -dlopen and
	-dlpreopen in _LIBADD variables too.
	(handle_LIBOBJS, handle_ALLOCA): New functions, extracted from
	handle_lib_objects_cond.
	* tests/libtool7.test: New file.
	* tests/Makefile.am (TESTS): Add libtool7.test.

	* automake.texi (Program and Library Variables): Clarify that
	_LIBADD is for libraries and _LDADD for programs.

	* automake.in (handle_source_transform): Correct typo from 2003-01-23.

2003-01-28  Alexandre Duret-Lutz  <adl@gnu.org>

	Fix for PR automake/352:
	* automake.in (transform_variable_recursively): If the destination
	and the source variables are the same, delete the source variable
	before defining the destination variable.
	(handle_programs): Strip any $(EXEEXT) suffix from $one_file,
	or this will confuse handle_source_transform.
	(append_exeext): Rewrite using transform_variable_recursively.
	* tests/cond29.test, tests/cond30.test: New files.
	* tests/exeext.test: Run ./configure and make, this uncovered
	the above handle_programs issue.
	* tests/Makefile.am (TESTS): Add cond29.test and cond20.test.

	* automake.in (%subobjvar): Replace by ...
	(%gen_varname): ... this.
	(subobjname): Replace by ...
	(gen_varname): ... this.
	(initialize_per_input): Clean gen_varname instead of subobjname.
	(transform_variable_recursively): New function, extracted
	from define_objects_from_sources.
	(define_objects_from_sources): Use transform_variable_recursively.
	Remove the unused $parent argument.
	(handle_source_transform): Adjust call to define_objects_from_sources.

2003-01-23  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (@substfroms, @substtos): Move near
	traverse_variable_recursively.
	(traverse_variable_recursively, traverse_variable_recursively_worker):
	New functions, extracted from define_objects_from_sources.
	(define_objects_from_sources): Rewrite using
	traverse_variable_recursively.
	(handle_source_transform): Use variables_conditionally_defined
	instead of calling variable_conditions_recursive directly.
	Adjust the call to define_objects_from_sources; there is no need
	to reset @substtos, @substfroms, and %vars_scanned now.
	(variable_conditions_recursive): Rewrite using
	traverse_variable_recursively.
	(variable_conditions_recursive_sub): Remove.
	(variable_conditionally_defined): Fix condition comparison (the
	consequence was that DIST_SUBDIRS was always output).
	* lib/Automake/Condition.pm (merge): Allow merging several
	conditions at once.

2003-01-22  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.texi (Python): Explain that directory variables start
	with either ${prefix} or ${exec_prefix}, and point to the
	`Installation Directory Variables' section of the Autoconf manual.

2003-01-21  Alexandre Duret-Lutz  <adl@gnu.org>

	* lib/am/distdir.am (top_distdir, distdir): Define these
	variables only in top level Makefile.  Redefine $(top_distdir)
	as $(distdir).
	(distdir): Fix passing of $(top_distdir) to sub-makes.
	* automake.in (handle_dist): Do not define the DISTDIR and
	TOP_DISTDIR transformations.  We don't need them anymore.
	* automake.texi (Dist): Reorder the dist-hook section, and move
	the DIST_SUBDIRS paragraph earlier.  Document distdir and
	top_distdir.
	* tests/subpkg.test: Update to check for $(distdir) and
	$(top_distdir).

2003-01-19  Alexandre Duret-Lutz  <adl@gnu.org>

	Rename more files to accomodate 8+3 file systems, and adjust the
	vocabulary at the same time: AM_CONDITIONAL defines "conditionals",
	and we call "condition" a conjunction of "conditionals".
	* lib/am/Conditional.pm: Rename to lib/am/Condition.pm.
	* lib/am/tests/Conditional.pl: Rename to lib/am/tests/Condition.pl.
	* lib/am/ConditionalSet.pm: Rename to lib/am/DisjConditions.pm.
	* lib/am/tests/ConditionalSet.pl: Rename to
	lib/am/tests/DisjConditions.pl
	* lib/am/Conditional.pm (condition_negate): Rename to ...
	* lib/am/Condition.pm (conditional_negate): ... this.
	* automake.in: Adjust references to Condition and DisjConditions.
	(check_ambiguous_conditional, conditional_ambiguous_p): Rename to ...
	(check_ambiguous_condition, condition_ambiguous_p): ... these.

	* tests/README: New file.

	* automake.texi (Conditional Programs): Show a sample Makefile.am.
	Remind $(EXEEXT) must be appended to configure substitutions.
	Show how Automake conditionals can be used instead.
	* tests/exeext.test (check_PROGRAMS): Make sure EXEEXT is also
	appended to conditionally defined programs.

2003-01-16  Jim Meyering  <jim@meyering.net>

	Accept --help and --version, and lots of syntactic clean-up.
	* lib/install-sh: Use consistent indentation, two spaces per level.
	(scriptversion): New variable.
	Change initializations like `variable=""' to `variable='.
	(usage): New variable.
	Use `test', not `['.
	Use `test -z "$var"', not `[ x"$var" = x ]'.
	Use `test -n "$var"', not `[ x"$var" != x ]'.
	Alphabetize case entries.
	Accept --help and --version options.
	Remove unnecessary `else :' clauses.
	Add a `Local variables' eval block to help emacs users update
	the time-stamp variable added above.
	Mostly from Karl Berry.

2003-01-16  Alexandre Duret-Lutz  <adl@gnu.org>

	* m4/python.m4 (AM_PATH_PYTHON) <_AM_PYTHON_INTERPRETER_LIST>: Add
	python2.3.

	* m4/python.m4 (AM_PATH_PYTHON): Query distutils for `pythondir'
	or `pyexecdir', for the sake of 64-bit distributions that usually
	use lib64/ instead of lib/.  Fall back to the default directory
	if it doesn't work.
	Suggested by Gwenole Beauchesne.

2003-01-14  Alexandre Duret-Lutz  <adl@gnu.org>

	For PR automake/382:
	* automake.texi (Yacc and Lex): Document `AM_YFLAGS = -d'.
	Explain BUILT_SOURCES is usually needed in this case.
	Reported by William S Fulton.

2003-01-13  Alexandre Duret-Lutz  <adl@gnu.org>

	Rename some files for the sake of 8+3 file systems.
	* tests/aclocali.test:     Rename to tests/aclocal.test.
	* tests/aclocali1.test:    Rename to tests/aclocal2.test.
	* tests/aclocalii.test:    Rename to tests/aclocal3.test.
	* tests/acoutput.test:     Rename to tests/acoutpt.test.
	* tests/acoutput2.test:    Rename to tests/acoutpt2.test.
	* tests/acouttbs.test:     Rename to tests/acoutbs.test.
	* tests/acouttbs2.test:    Rename to tests/acoutbs2.test.
	* tests/autoheader.test:   Rename to tests/autohdr.test.
	* tests/autoheader2.test:  Rename to tests/autohdr2.test.
	* tests/condincl.test:     Rename to tests/condinc.test.
	* tests/condincl2.test:    Rename to tests/condinc2.test.
	* tests/distcommon.test:   Rename to tests/distcom.test.
	* tests/distcommon2.test:  Rename to tests/distcom2.test.
	* tests/distcommon3.test:  Rename to tests/distcom3.test.
	* tests/installsh.test:    Rename to tests/instsh.test.
	* tests/installsh2.test:   Rename to tests/instsh2.test.
	* tests/instdata.test:     Rename to tests/instdat.test.
	* tests/instdata2.test:    Rename to tests/instdat2.test.
	* tests/libobj12b.test:    Rename to tests/libobj13.test.
	* tests/link_f_c.test:     Rename to tests/link_fc.test.
	* tests/link_f_c_cxx.test: Rename to tests/link_fccxx.test.
	* tests/link_f_cxx.test:   Rename to tests/link_fcxx.test.
	* tests/nodefine.test:     Rename to tests/nodef.test.
	* tests/nodefine2.test:    Rename to tests/nodef2.test.
	* tests/required.test:     Rename to tests/reqd.test.
	* tests/required2.test:    Rename to tests/reqd2.test.
	* tests/sourcesub.test:    Rename to tests/srcsub.test.
	* tests/sourcesub2.test:   Rename to tests/srcsub2.test.
	* tests/specflags.test:    Rename to tests/specflg.test.
	* tests/specflags2.test:   Rename to tests/specflg2.test.
	* tests/specflags3.test:   Rename to tests/specflg3.test.
	* tests/specflags6.test:   Rename to tests/specflg6.test.
	* tests/specflags7.test:   Rename to tests/specflg7.test.
	* tests/specflags8.test:   Rename to tests/specflg8.test.
	* tests/specflags9.test:   Rename to tests/specflg9.test.
	* tests/subdircond.test:   Rename to tests/subcond.test.
	* tests/subdircond2.test:  Rename to tests/subcond2.test.
	* tests/subdircond3.test:  Rename to tests/subcond3.test.
	* tests/texinfo.test:      Rename to tests/txinfo.test.
	* tests/texinfo2.test:     Rename to tests/txinfo2.test.
	* tests/texinfo3.test:     Rename to tests/txinfo3.test.
	* tests/texinfo4.test:     Rename to tests/txinfo4.test.
	* tests/texinfo5.test:     Rename to tests/txinfo5.test.
	* tests/texinfo6.test:     Rename to tests/txinfo6.test.
	* tests/texinfo7.test:     Rename to tests/txinfo7.test.
	* tests/texinfo8.test:     Rename to tests/txinfo8.test.
	* tests/texinfo9.test:     Rename to tests/txinfo9.test.
	* tests/texinfo10.test:    Rename to tests/txinfo10.test.
	* tests/texinfo13.test:    Rename to tests/txinfo13.test.
	* tests/texinfo16.test:    Rename to tests/txinfo16.test.
	* tests/texinfo17.test:    Rename to tests/txinfo17.test.
	* tests/texinfo18.test:    Rename to tests/txinfo18.test.
	* tests/Makefile.am (TESTS): Adjust.
	* ChangeLog.1996: Rename to ChangeLog.96.
	* ChangeLog.1998: Rename to ChangeLog.98.
	* ChangeLog.2000: Rename to ChangeLog.00.
	* ChangeLog.2001: Rename to ChangeLog.01.
	* Makefile.am (EXTRA_DIST): Adjust.
	Reported by Richard Dawe.

2003-01-13  Richard Dawe  <rich@phekda.freeserve.co.uk>  (tiny change)

	* lib/am/distdir.am (distcheck): '=' is not valid in DOS filenames.
	Use '_build' and '_inst' instead of '=build' and '=inst'.
	* tests/man2.test: Reflect change automake: check for files in
	'_build' and '_inst' directories instead of '=build' and '=inst'.

2003-01-13  Alexandre Duret-Lutz  <adl@gnu.org>

	Use `_dirstamp' when the file-system doesn't support `.dirstamp'.
	* m4/lead-dot.m4: New file.
	* m4/Makefile.am (dist_m4data_DATA): Add lead-dot.m4
	* m4/init.m4 (AM_INIT_AUTOMAKE): Require AM_SET_LEADING_DOT.:
	* m4/depend.m4 (AM_SET_DEPDIR): Require AM_SET_LEADING_DOT. Define
	DEPDIR using am__leading_dot.
	* automake.in (require_build_directory): Define am__dirstamp, a new
	variable for the dirstamp basename, based on am__leading_dot.
	* tests/subobj6.test: Move all `test -f' into Makefiles, so we can
	use $(am__dirstamp).
	Reported by Richard Dawe.

	* tests/gnits2.test, tests/pr300-prog.test, tests/transform.test:
	Move all `test -f' into Makefiles, so we can honor $(EXEEXT) when
	testing for programs.
	Reported by Richard Dawe.

2003-01-10  Alexandre Duret-Lutz  <adl@gnu.org>

	* Makefile.am (maintainer-check): Suggest using $sleep instead of
	sleep 2.
	* tests/defs.in (sleep): New variable.
	* tests/asm.test, tests/confsub.test, tests/lisp3.test,
	tests/texinfo16.test, tests/warnopts.test, tests/yaccvpath.test:
	Use $sleep instead of sleep 2, to work around timestamp
	inconsistencies in Windows.
	Reported by Richard Dawe.

	* Makefile.am (maintainer-check): Do not require SHELL=/bin/sh
	after $MAKE -e.
	* tests/ansi3.test, tests/ansi5.test, tests/cond22.test,
	tests/man2.test, tests/subobj3.test, tests/suffix8.test,
	tests/suffix11.test: Do not set SHELL=/bin/sh after $MAKE -e.
	$SHELL is overridden by tests/defs, so it won't hurt even
	if $MAKE -e uses the $SHELL envvar.
	* tests/ansi.test, tests/insh2.test, tests/texinfo.test,
	tests/texinfo8.test: Use SHELL=$SHELL, not SHELL=/bin/sh.
	Reported by Richard Dawe.

	Build elisp files all at once instead of one by one.
	* automake.in (handle_emacs_lisp): Define am__ELFILES.  Add
	elc-stamp to all's dependencies.
	* lib/am/lisp.am (elc-stamp): New rule, build all *.elc files.
	(.el.elc): Rewrite to call elc-stamp if $@ doesn't exist.
	(clean-lisp): Clean elc-stamp.
	* lib/elisp-comp: Reindent.  Erase the temporatry directory
	from a trap.  Propagate Emacs's exit status.
	* tests/lisp3.test: New file.
	* tests/Makefile.am (TESTS): Add lisp3.test.
	Reported by Ryan T. Sammartino.

2003-01-09  Akim Demaille  <akim@epita.fr>

	* automake.texi: Prefer $(FOO) to @FOO@ in the documentation.

2003-01-08  Alexandre Duret-Lutz  <adl@gnu.org>

	* m4/lispdir.m4: Register EMACS and EMACSLOADPATH as precious
	variables.  Suggested by Ryan T. Sammartino.

2003-01-05  Alexandre Duret-Lutz  <adl@gnu.org>

	* automake.in (macro_define): Add missing `{$cond}' (typo from
	2002-09-18).
	($gen_copyright): Append year 2003.
	(version): Increase year.

	* tests/defs.in: Substitute aclocaldir instead of running
	the installed aclocal.  Otherwise Libtool and Gettext
	tests get skipped when aclocal doesn't preexist.
	Reported by Imacat.
	* tests/listval.test, tests/suffix2.test: Remove pointless -I
	argument to aclocal.

-----

Copyright (C) 2003, 2004  Free Software Foundation, Inc.

This file is part of GNU Automake.

GNU Automake is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Automake is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with autoconf; see the file COPYING.  If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.