~ubuntu-branches/ubuntu/raring/findutils/raring

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
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
2007-05-30  James Youngman  <jay@gnu.org>

	* locate/locate.c (visit_old_format, extend, toolong): Extend the
	buffer used to build the current pathname when reading an
	old-format database.  The new function extend is called to do
	this.  The new function toolong is called to report a fatal error
	when the buffer size would otherwise exceed SIZE_MAX.  This fixes
	Savannah bug #20014, which is a security-related problem with the
	CVE identifier CVE-2007-2452.

	* NEWS (4.2.31): Mention bug #20014 (CVE-2007-2452, locate heap
	buffer overflow).  Also fix the formatting of the list of bug
	fixes in release 4.2.28.

	* doc/find.texi (Old Database Format): Describe bug# #20014 and
	enumerate all the affected versions of findutils.
	(Invoking updatedb): Mention the bug in the documentation for
	--old-format, too.
	(Security Considerations for locate): divide into two
	subsections.  Describe CVE-2007-2452 (bug# 20014) in detail.
	Explain how to identify long file names on the system without
	using locate.

	* locate/locate.1 (BUGS): Describe bug #20014 and enumerate all
	the affected versions of findutils. 
	* locate/updatedb.1 (DESCRIPTION, BUGS, --old-format): ditto.
	
	* m4/mkinstalldirs.m4: Added this file (from the 4.3.x branch).
	It's an excerpt from an old version of gnulib's m4/nls.po file.
	The current version of gnulib does not expand MKINSTALLDIRS, but
	gettext-0.14.6's version of po/Makefile.in.in expects it to be
	expanded.  This m4 file fills the gap.

	* configure.in: Call AM_MKINSTALLDIRS.

2007-04-22  James Youngman  <jay@gnu.org>

	* locate/bigram.c (main): Initialise the oldpath variable to the
	empty string, to avoid problems if the first item we index begins
	with a space.  This fixes Savannah bug #19484.
	* locate/code.c (main): ditto
	* locate/testsuite/locate.gnu/sv-bug-19484.exp: New test case for
	Savannah bug #19484.
	* locate/testsuite/config/unix.exp: Also set BIGRAM and CODE to
	the locations of the bigram and code executables.
	* locate/testsuite/Makefile.am (EXTRA_DIST_EXP): Distribute
	sv-bug-19484.exp.

	* doc/Makefile.am: When cross-compiling, 'make clean' should not
	delete doc/regexprops.texi, becaue we can't regenerate it.  Fixes
	Savannah bug #19658.

	* NEWS: Also mentioned fixes to bugs #19484, #19155.

2007-04-15  James Youngman  <jay@gnu.org>

 	* find/find.1: "-printf %b": blocks are 512 bytes.   Fixes
	Savannah bug #19596.

2007-03-03  James Youngman  <jay@gnu.org>

	* all: Several updates resulting from updating gnulib from
	2005-07-26 to 2007-02-24.

	* import-gnulib.config (modules): use fopen-safer rather than
	stdio-safer, and omit the reference to the nonexistent module
	'stat'.

	* configure.in: use gl_REGEX not gl_INCLUDED_REGEX due to gnulib
	version update

	* find/defs.h (struct perm_val): Changes to accomodate the updated
	API for mode_adjust.

	* find/parser.c (parse_perm): New interface to mode_adjust.
	

	* find/pred.c (pred_fprintf): The gnulib function mode_string is
	now called filemodestring.
	(pred_perm): New interface to mode_adjust.

	* lib/listfile.c (list_file): mode_string is renamed to strmode.

2007-03-01  James Youngman  <jay@gnu.org>

	* doc/find.texi (Multiple Files): Document the construct
	-exec sh -c 'cmd "$@" final-args' {} + - fixing Savannah bug
	#18554.
	
2007-02-28  James Youngman  <jay@gnu.org>

	* import-gnulib.config: New file.  Specifies which version of
	Gnulib we need to check out and build from.
	
	* import-gnulib.sh: Use import-gnulib.config.
	
	* README-CVS: Describe the new method of building from CVS.
	
	* lib/gnulib-version.h, lib/gnulib-version.sh: New files; code for
	reporting which version of Gnulib we built findutils from.
	
	* lib/Makefile.am: Build gnulib-version.c out of
	./gnulib-version.config by using lib/gnulib-version.sh.
	
	* Makefile.am: Ship import-gnulib.config and import-gnulib.sh.
	
	* .cvsignore: Ignore gnulib-cvs
	
	* lib/.cvsignore: Ignore gnulib-version.c
	
	* find/parser.c, locate/code.c, locate/locate.c, xargs/xargs.c:
	Report which version of Gnulib we were built from.

2007-02-27  James Youngman  <jay@gnu.org>

	* import-gnulib.sh, find/defs.h, find/fstype.c, find/tree.c,
	find/util.c, find/testsuite/config/unix.exp, lib/buildcmd.c, lib/buildcmd.h
	lib/extendbuf.c, lib/forcefindlib.c, lib/listfile.c, lib/modetype.h
	lib/nextelem.c, lib/nextelem.h, lib/regexprops.c, lib/waitpid.c, locate/bigram.c
	locate/code.c, locate/frcode.c, locate/locatedb.h, xargs/xargs.c:
	Updated copyright years in the file header comment.

	* xargs/xargs.c (usage): Fixed savannah bug #18384: spurious extra
	'[' in the --help output.

2007-02-24  James Youngman  <jay@gnu.org>

	* lib/savedirinfo.c (free_dirinfo): Fixed memory leak (trivial
	patch from Supriya Kannery)

	* doc/find.texi (Multiple Files): fixed typo

2007-01-13  James Youngman  <jay@gnu.org>

	* lib/regexprops.c (describe_regex_syntax): fixed typo
	
        * po/ga.po, po/pl.po, po/nl.po, po/tr.po, po/hu.po: Updated from
	the Translation Project

2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>

       * doc/find.texi: Fix some typos. (trivial change)
	
2007-01-07  James Youngman <jay@gnu.org>

	* NEWS: Mention that Savannah bug #17437 was fixed in findutils-4.3.2.

	* ChangeLog, NEWS, find/parser.c, find/testsuite/Makefile.am, find/testsuite/find.gnu/perm000.exp, find/testsuite/find.gnu/perm000.xo:
	Changed the interpretatioon of -perm /000 as described in bug #14748

	* ChangeLog, NEWS, xargs/testsuite/Makefile.am, xargs/testsuite/inputs/empty.xi, xargs/testsuite/xargs.sysv/sv-bug-18713.exp, xargs/testsuite/xargs.sysv/sv-bug-18713.xo, xargs/xargs.c:
	xargs: correctly handle quoted empty arguments occurring first or last on a line (by adding an empty argument to the output).  Fixes Savannah bug #18713.

	* po/be.po, po/bg.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	Did make dist

	* ChangeLog: Updated with recent changes.

2006-12-29  James Youngman <jay@gnu.org>

	* find/testsuite/config/unix.exp:
	Verify that find_start is invoked with wither a p (pass) or an f
	(fail) argument.

	* lib/listfile.c, lib/listfile.h:
	define find_blocksize() and provide a declaration for get_link_name()

	* find/testsuite/config/unix.exp: Updated copyright years.

	* find/testsuite/find.gnu/execdir-one.exp, find/testsuite/find.gnu/execdir-root-only.exp, find/testsuite/find.gnu/sv-bug-12230.exp, find/testsuite/find.gnu/sv-bug-17782.exp, find/testsuite/config/unix.exp:
	Avoid tests using -execdir if /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/usr/games contains a relative directory

	* find/parser.c:
	Also flag $PATH values containing relative directories as being dangerous.

	* find/parser.c, find/defs.h, find/util.c:
	Instead of selecting the old or new exec handling code with the NEW_EXEC macro, just use the new code all the time

	* locate/testsuite/config/unix.exp:
	Fixed Savannah bug #13252, test suite failure caused by the fact that 'file normalize' is not available in Tcl 8.3

	* NEWS, find/pred.c:
	Fixed Savannah bug #18433, compilation failure with configure --enable-debug

2006-12-28  James Youngman <jay@gnu.org>

	* NEWS: Document addition of %S.

	* find/defs.h, find/find.1, find/parser.c, find/pred.c:
	Implemented %S (sparseness) printf format, and general refactoring and cleanup of printf predicate

2006-12-01  James Youngman <jay@gnu.org>

	* NEWS, configure.in: Begin work on findutils 4.2.30

	* find/find.c:
	Fix compilation error for oldfind if --enable-debug was passed to configure

	* NEWS, configure.in: Prepare for work on findutils-4.3.3

2006-11-25  James Youngman <jay@gnu.org>

	* NEWS, configure.in: Prepare to release version 4.2.29

	* find/testsuite/Makefile.am: Added test case for Savannah bug #17782

	* NEWS, configure.in: Prepare for release of findutils-4.3.2

	* ChangeLog, NEWS, configure.in:
	Oops, we actually already had the Kinyarwanda translation in ALL_LINGUAS

	* NEWS, ChangeLog, configure.in: Added Kinyarwanda (rw) to ALL_LINGUAS.

	* ChangeLog, configure.in, m4/mkinstalldirs.m4:
	Define the m4 macro MKINSTALLDIRS ourselves, because po/Makefile.in.in needs it but gnulib no longer provides it

	* doc/.cvsignore, doc/texinfo.tex:
	Use the version of texinfo.tex from automake

	* po/findutils.pot, po/be.po, po/bg.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	did make dist

2006-11-24  James Youngman <jay@gnu.org>

	* doc/find.texi: Warn about using -exec sh .... {}

2006-11-20  James Youngman <jay@gnu.org>

	* find/testsuite/Makefile.am: Distribute the new DejaGnu test cases

	* NEWS: Updated with information about changes so far.

	* ChangeLog, po/bg.po, po/et.po, po/nl.po, po/pl.po, po/tr.po:
	Updated translations for Bulgarian, Estonian, Dutch, Polish and Turkish

	* po/be.po, po/bg.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	Updated the POT file

	* find/testsuite/find.gnu/sv-bug-17782.exp, find/testsuite/find.gnu/sv-bug-17782.xo:
	Added test case for Savannah bug #17822

	* ChangeLog, find/testsuite/find.gnu/sv-bug-17782.exp, find/testsuite/find.gnu/sv-bug-17782.xo:
	Added test case for Savannah Bug 17782

	* find/testsuite/find.gnu/sv-bug-17782.exp, find/testsuite/find.gnu/sv-bug-17782.xo:
	New file.

	* ChangeLog, find/ftsfind.c, lib/buildcmd.c:
	Work around Savannah bug #17877, which manifests on systems which use
	the same inode number for more than one file (smbfs, FAT, sometimes
	some FUSE-based ones).  This happens for unreferenced files.  Fix
	suggested by Jim Meyering.

2006-11-08  James Youngman <jay@gnu.org>

	* find/testsuite/Makefile.am:
	Oops, indicate the right directory for the new test files

	* ChangeLog, depcomp, doc/texinfo.tex, find/ftsfind.c, find/testsuite/Makefile.am, find/testsuite/find.gnu/sv-bug-18222.exp, find/testsuite/find.gnu/sv-bug-18222.xo, install-sh:
	Savannah bug#18222 - test case

	* find/ftsfind.c:
	Fixed Savannah bug #18222 (state.starting_path_length was not being updated for the second and following start point)

	* ChangeLog, find/pred.c:
	Fixed Savannah bug #15531; -prune should take effect ony if we are currently considering a directory

	* ChangeLog, lib/buildcmd.c:
	Fixed Svannah bug #17782 ('./' prefix added at start of arg while it should be added at the start of the expansion of {})

2006-10-15  James Youngman <jay@gnu.org>

	* lib/buildcmd.c, 
	  find/testsuite/find.gnu/sv-bug-17782.exp, 
	  find/testsuite/find.gnu/sv-bug-17782.xo:
	Fixed Savannah bug #17782, in which "find -execdir echo "foo {}"
	runs 'echo ./foo filename' instead of the correct command 
	'echo foo ./filename'.
	
	* po/hu.po, po/sl.po: Updated Hungarian and Slovenian po files

2006-08-21  James Youngman <jay@gnu.org>

	* po/be.po, po/bg.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	Ran make dist

	* find/parser.c, find/testsuite/Makefile.am, find/testsuite/find.gnu/sv-bug-17490.exp:
	Fixed Savannah bug #17490, which was a coredump when -regex ZZZ was the final test on the command line

2006-08-20  James Youngman <jay@gnu.org>

	* find/parser.c: Merged the fix for the trailing % in "find -printf".

	* doc/find.texi, find/find.1, find/testsuite/Makefile.am, find/testsuite/find.gnu/printfHdfl.exp, find/testsuite/find.gnu/printfHdfl.xo, find/testsuite/find.gnu/sv-bug-17477.exp, find/testsuite/find.posix/perm-X.exp, find/testsuite/find.posix/perm-X.xo, locate/frcode.c, locate/locate.c, locate/testsuite/Makefile.am, locate/testsuite/config/unix.exp, locate/testsuite/locate.gnu/bigprefix1.exp, locate/testsuite/locate.gnu/exceedshort.exp, locate/testsuite/locate.gnu/space1st.exp, locate/updatedb.sh, xargs/xargs.1, xargs/xargs.c:
	Merged some changes from the 4.2 branch into 4.3:
	Describe what happens if you do "find -printf %" (with a single % at
	the end of the format).  Added test case for "find -printf %H".  Fixes
	for "find -perm" with X.  Better range checking in frcode.c.  Tests
	for long initially-identical prefixes in frcode.c and that it
	correctly encodes paths with mroe than 2^16 characters in comon in the
	prefix.  Also initial spaces.  Added --show-limits to the xargs help
	message and manpage.

	* po/be.po, po/bg.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	Ran make dist

	* .cvsignore, ChangeLog, README-CVS, depcomp, doc/.cvsignore, doc/find.texi, doc/perm.texi, doc/texinfo.tex, find/.cvsignore, find/defs.h, find/ftsfind.c, find/parser.c, find/pred.c, find/testsuite/Makefile.am, import-gnulib.sh, install-sh, intl/.cvsignore, intl/ChangeLog, intl/Makefile.in, intl/VERSION, intl/bindtextdom.c, intl/config.charset, intl/dcgettext.c, intl/dcigettext.c, intl/dcngettext.c, intl/dgettext.c, intl/dngettext.c, intl/explodename.c, intl/finddomain.c, intl/gettext.c, intl/gettext.h, intl/gettextP.h, intl/hash-string.h, intl/intl-compat.c, intl/l10nflist.c, intl/libgettext.h, intl/libgnuintl.h, intl/loadinfo.h, intl/loadmsgcat.c, intl/localcharset.c, intl/locale.alias, intl/localealias.c, intl/ngettext.c, intl/plural.c, intl/plural.y, intl/ref-add.sin, intl/ref-del.sin, intl/textdomain.c, lib/.cvsignore, m4/.cvsignore, missing, po/.cvsignore, po/be.po, po/bg.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	Applied patches from Paul Eggert

2006-08-19  James Youngman <jay@gnu.org>

	* ChangeLog: Updated with recent changes.

	* locate/testsuite/config/unix.exp, locate/testsuite/locate.gnu/bigprefix1.exp:
	Explicit checks for parefixes which are within range of a short, but outside the one-byte range

	* locate/testsuite/locate.gnu/bigprefix1.exp, locate/testsuite/locate.gnu/exceedshort.exp, locate/testsuite/locate.gnu/space1st.exp:
	New file.

	* locate/testsuite/Makefile.am, locate/testsuite/locate.gnu/exceedshort.exp, locate/testsuite/locate.gnu/space1st.exp:
	Patch from Tavis Ormandy; check frcode handles initial space end encodes paths with more than 2^16 characters in the common prefix (trivial change)

	* locate/frcode.c: Changes to avoid overflows

2006-08-11  James Youngman <jay@gnu.org>

	* locate/frcode.c:
	Avoid producing an invalid database if the first item begins with a space

2006-08-10  James Youngman <jay@gnu.org>

	* find/pred.c, import-gnulib.sh, lib/listfile.c:
	Updated callers of the gnnulib filemode module so that they work with the 2006-07-09 version of gnulib

	* config.rpath: Updated config.rpath from autotools

2006-08-08  James Youngman <jay@gnu.org>

	* locate/locatedb.h:
	Automatically verify (at compile time) that the frcode datastream
	cannot get desynchronised.

	* find/ftsfind.c:
	Fixed Savannah bug #10494 (-maxdepth does not yield the same stat savinf in ftsfind as oldfind)

	* find/ftsfind.c: display fts_level for find -D search

	* find/util.c: Support find -D search

	* locate/locate.c:
	If the user specified -E but the database is an slocate database, do
	not produce a list of files they cannot stat.  Issue an error message
	explaining the problem.

	* locate/locate.c:
	Issue states messages in a way which indicates more clearly what's
	happening when the numbers are reduced because not every filename
	matched the pattern.

	* locate/locate.c: Better error checking in drop_privs().

2006-08-07  James Youngman <jay@gnu.org>

	* NEWS, locate/locate.c, locate/locatedb.h:
	Added support for slocate database format

	* xargs/xargs.c:
	Removed unused code (tivial patch from Miloslav Trmac).

	* xargs/xargs.c: Removed unused code.

	* doc/find.texi:
	Clarify that the output format for locate -S differs from BSD's.

	* NEWS, find/find.1:
	Savannah bug #15360: explain global vs. positional options more clearly in the manual page

	* NEWS: Typo in subsection header (* should be **).

	* NEWS, find/find.1:
	Savannah bug #15360: explain global vs. positional options more clearly in the manual page

	* doc/find.texi: Fixed some clumsy phrasing

	* NEWS, configure.in:
	Now diverging again from the released tarball, so change once more to -CVS version number suffixes

2006-08-06  James Youngman <jay@gnu.org>

	* locate/locate.c: Fixed a typo in a comment.

	* NEWS, configure.in: Moving on towards 4.3.2...

	* find/testsuite/config/unix.exp:
	Check that we can see the find.o file in the right position relative
	to $base_dir to ensure that we are indeed testing the program we just built.

	* find/testsuite/config/unix.exp:
	Be more paranoid about whether we're really checking the right version
	of find.

	* NEWS, configure.in: Prepare for release of 4.3.1

	* doc/find.texi: Document the -O and -D options

	* find/defs.h, find/find.1, find/util.c:
	'find -D help' now explains the available debugging options

	* po/be.po, po/bg.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	Make dist changed all the po files again

2006-08-05  James Youngman <jay@gnu.org>

	* NEWS: Described more changes in 4.3.1.

	* locate/testsuite/config/unix.exp:
	Set the  environment variable so that updatedb knows where to find it; it's not in BINDIR yet during 'make check'

	* po/be.po, po/bg.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	Make dist changed all the po files again :)

	* po/et.po, po/vi.po: UPdated the Estonian and Vietnamese translations

	* NEWS, configure.in: Prepare for release of findutils-4.2.28

	* po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/be.po, po/bg.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po:
	Make dist changed all the po files again :)

	* configure.in: Added Bulgarian translation.

	* po/bg.po: Include Bulgarian translation

	* configure.in: Added Bulgarian translation.

	* po/et.po, po/vi.po: Updated Estonian and Vietnamese translations

	* NEWS: Removed spurious comma.

	* NEWS: Listed the updated translations.

	* find/parser.c, lib/buildcmd.c, lib/buildcmd.h, xargs/xargs.c:
	Fixed Savannah bug#16738, find does not subtract environment size in find .. -exec {} +

	* NEWS: Updated the list of bugfixes etc.

2006-06-15  James Youngman <jay@gnu.org>

	* NEWS: Described recent changes

	* configure.in: fix to how we invoke the gnulib regex module

	* find/find.1:
	Savannah bug #16269: avoid confusion over what type of quotes to use
	in an example.

	* find/parser.c: Option -nowarn should not itself produce a warning

	* find/defs.h: Remoevd useless declaration of last_pred

2006-06-14  James Youngman <jay@gnu.org>

	* po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	Updated translation files ga pl sv tr nl ca vi bg fr

	* locate/updatedb.sh:
	Fixed Savannah bug #16579 (su false should be su -c false)

2006-04-01  James Youngman <jay@gnu.org>

	* find/find.c:
	Fixed Savannah bug #15800: "Hard link count is wrong" reports wrong
	directory name.

2006-03-31  James Youngman <jay@gnu.org>

	* po/hu.po: Updated Hungarian translation

2006-01-04  James Youngman <jay@gnu.org>

	* find/testsuite/find.posix/sizetype.exp, find/testsuite/find.posix/sizetype.xo, find/testsuite/find.posix/typesize.exp, find/testsuite/find.posix/typesize.xo:
	Additional tests for -type -size and -size -type

	* NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/ftsfind.c, find/parser.c, find/pred.c, find/testsuite/Makefile.am, find/testsuite/config/unix.exp, find/testsuite/find.gnu/depth-d.exp, find/tree.c, find/util.c, po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	Initial implementation of a cost-based optimiser

2005-12-23  James Youngman <jay@gnu.org>

	* find/parser.c: Refactor of parse_[acm]time

	* find/defs.h, find/find.c, find/finddata.c, find/ftsfind.c, find/tree.c, find/util.c:
	last_pred can be a static in tree.c rather than a global variable

	* find/tree.c, find/finddata.c:
	Moved some global data out of finddata.o and into static variables in tree.c

	* NEWS, find/find.c, find/fstype.c, find/ftsfind.c, find/parser.c, find/pred.c, lib/buildcmd.c, lib/buildcmd.h, lib/regexprops.c, lib/regextype.c, lib/regextype.h, lib/savedirinfo.c, locate/locate.c, xargs/xargs.c:
	Fixed many compilation warnings

	* find/find.c, find/ftsfind.c, find/util.c:
	Evaluating the predicates can change the contents of the data structure (for example to add another exec item)

	* find/defs.h, find/find.c, find/ftsfind.c, find/tree.c, find/util.c:
	Re-factored a lot of common expression-handling code out of find.c and ftsfind.c, mainly into tree.c

	* find/find.c, find/ftsfind.c, find/tree.c:
	Savannah bug #15271: more helpful error messages for cases where there is a missing expression

2005-12-20  James Youngman <jay@gnu.org>

	* NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/ftsfind.c, find/testsuite/Makefile.am, find/testsuite/find.posix/sv-bug-15235.exp, find/testsuite/find.posix/sv-bug-15235.xo, find/tree.c, find/util.c:
	Savannah bug #15195: more helpful error messages for 'find . ( )' or 'find . \!'

	* ChangeLog: Added entries for recent changes.

	* find/defs.h, find/find.c, find/ftsfind.c, find/testsuite/find.posix/bracket-depth.exp, find/util.c:
	Further fix to bug# 15235: a leading comma is a filename not an expression

	* find/defs.h, find/parser.c, find/testsuite/Makefile.am, find/testsuite/find.posix/empty-parens.exp, find/tree.c:
	Accept 'find ( -depth )' but reject 'find ( )'

	* po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	did make dist

	* find/testsuite/find.gnu/delete.exp:
	Use the new find program, and the new way of locating it (/ instead of )

	* find/testsuite/Makefile.am: Added bracket-depth.exp.

	* NEWS, configure.in: We have moved on from 4.3.0

	* find/defs.h, find/find.c, find/ftsfind.c, find/testsuite/Makefile.am, find/testsuite/find.gnu/delete.exp, find/testsuite/find.posix/files-not-expressions1.exp, find/testsuite/find.posix/files-not-expressions1.xo, find/testsuite/find.posix/files-not-expressions2.exp, find/testsuite/find.posix/files-not-expressions2.xo, find/testsuite/find.posix/files-not-expressions3.exp, find/testsuite/find.posix/files-not-expressions3.xo, find/util.c:
	Avoid getting confused by filename arguments of which the first
	character looks like a predicate, for example ',x' or '!x' or
	'(x' (Savannah bug #15235).

2005-12-19  James Youngman <jay@gnu.org>

	* find/testsuite/config/unix.exp:
	Run every test twice, once with the old (non-fts) binary and once with
	the new (fts-enabled) binary.

2005-12-16  James Youngman <jay@gnu.org>

	* xargs/xargs.1, xargs/xargs.c:
	Fixed bug# 15211, that xargs --show-limits is not documented in the manpage or in the usage message

2005-12-12  James Youngman <jay@gnu.org>

	* find/testsuite/find.gnu/access.exp:
	Don't leave junk files lying around the place

	* NEWS, configure.in, po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	Did update-po

	* README-CVS:
	Update the the instructions for getting gnulib; the CVS arrangements
	at Savannah have changed.

	* ChangeLog, NEWS, doc/find.texi, doc/perm.texi, find/defs.h, find/parser.c:
	Merged changes from 4.2.x branch again

	* NEWS, doc/find.texi, find/defs.h, find/find.c, find/ftsfind.c, find/parser.c, find/pred.c, find/util.c, lib/listfile.c, lib/listfile.h:
	Initial code to allow control over how -ls quote (or does not quote) control characters; not enabled yet

2005-12-11  James Youngman <jay@gnu.org>

	* ChangeLog, THANKS, xargs/xargs.c:
	Fixed spelling errors in Bob Proulx's name.  Sorry, Bob.

2005-12-10  James Youngman <jay@gnu.org>

	* doc/perm.texi:
	Aaron Hawley: Updated perm.texi from the coreutils distribution

	* find/parser.c:
	Avoid using entries which have the same name as POSIX library
	functions (fprintf, printf, exec) as the implementation is allowed to
	#define these.  That generates hard-to-grok compilation errors.

	* ChangeLog, NEWS, configure.in, find/defs.h, find/parser.c:
	Applied patch from Andreas Metzler fixing Savannah bug #15181: implicit declaration of parse_openparen

2005-12-10  Andreas Metzler <gnu@downhill.at.eu.org>

	* find/defs.h, find/parser.c: fixed compilation warning caused by
	lack of function declaration for parse_openparen and
	parse_closeparen.

2005-12-08  James Youngman  <jay@gnu.org>

	* doc/find.texi: Typo and spelling corrections from Aaron Hawley

2005-12-05  James Youngman  <jay@gnu.org>

	* Released findutils-4.2.27

2005-12-05  James Youngman  <jay@gnu.org>

	* doc/find.texi, find/find.1, locate/locate.1, xargs/xargs.1:
	Savannah patch #3775 from Aaron Hawley: reconciling man pages
	differences; did not apply the patch, but resolved all the
	remaining issues manually by updating the documentation (mostly
	the Texinfo documentation, which was missing a number of specific
	technical statements about the behaviour of various options)

2005-12-04  James Youngman  <jay@gnu.org>

	* doc/find.texi: Document --show-limits

	* xargs/xargs.c:
	Correctly display the size of the argument buffer we really allocated.

	* doc/find.texi, find/find.1, find/parser.c, find/pred.c, NEWS:
	Savannah bug #14748 (which this change does NOT fix): issue
	warning of future changes in the behaviour of -perm /000

2005-11-30  James Youngman  <jay@gnu.org>

	* xargs/xargs.c:
	Typo correction from Benno Schulenberg <benno@nietvergeten.nl>
	(trivial change)

2005-11-29  James Youngman  <jay@gnu.org>

	* xargs/xargs.c:
	Typo "Ilegal"; change to "Invalid" since this is not really illegal!
	Bug report by Primoz Peterlin.

	* lib/regexprops.c, xargs/xargs.c:
	Prefer the word 'Invalid' or the phrase 'not allowed' over
	'Illegal', as per the GNU coding standards, and as per the
	suggestion from Benno Schulenberg

2005-11-24  James Youngman  <jay@gnu.org>

	* NEWS, lib/buildcmd.c, lib/buildcmd.h: Merge to trunk from 4.2.x fixes

	* lib/buildcmd.h:
	Deleted inaccurate comment about the default value of ctl->args_per_exec.

	* NEWS, lib/buildcmd.c, lib/buildcmd.h:
	Be more conservative about the total number of arguments we will
	allow (to avoid exec limits on Linux/PPC)

2005-11-23  James Youngman  <jay@gnu.org>

	* NEWS: Bug #14921 has been fixed.

	* find/fstype.c:
	Savannah bug #14921: when a Linux bind filesystem is in use, find
	would expand '-printf %F' to 'none' if a bind mount targetted the same
	filesystem as the one containing the file to be described.

	* NEWS: Updated to describe recent changes

	* doc/find.texi, find/find.1: Documented find -printf %M

	* lib/buildcmd.c, xargs/testsuite/Makefile.am,
	xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.exp,
	xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.xo,
	xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.exp,
	xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.xo:
	Ensure that the test suite still passes even if the current
	system's value of ARG_MAX is different from the development/test
	system

	* lib/buildcmd.c: reindent and untabify

	* configure.in: The CVS code is moving on from the previous release.

2005-11-22  James Youngman  <jay@gnu.org>

	* ChangeLog: Updated with recent changes.

2005-11-21  James Youngman  <jay@gnu.org>

	* locate/testsuite/config/unix.exp:
	Even if we expect locate to return a nonzero status, the test should
	still fail if updatedb fails!

	* locate/testsuite/locate.gnu/ignore_case2.exp:
	Set the current directory for updatedb.  This test case is supposed to
	fail because the filename is not matched, not because updatedb fails!

	* locate/updatedb.sh:
	Check the binaries actually exist in the place we expect.

2005-11-20  James Youngman  <jay@gnu.org>

	* locate/locate.1, xargs/xargs.1: Escape '-' as '\-' where appropriate.

	* find/find.1:
	Escape '-' as '\-' where appropriate.   Fixes last part of bug #14556.

2005-11-19  James Youngman  <jay@gnu.org>

	* doc/find.texi, find/find.1:
	Applied edited form of Andreas Metzler's -perm /mode documentation
	patch resolving Savannah bug #14619.

	* lib/extendbuf.c:
	In the success case, extendbuf() should preserve the previous value of
	errno.  Fixes Savannah bug #14842.

	* xargs/testsuite/Makefile.am: Added new test files

	* find/find.1:
	Correctly indicate the default regular expression syntax (fixes
	Savannah bug #14836).

	* NEWS, configure.in: Released findutils-4.2.26

	* ChangeLog, NEWS, lib/buildcmd.c,
	xargs/testsuite/inputs/16383-ys.xi,
	xargs/testsuite/inputs/32767-ys.xi,
	xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.exp,
	xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.xo,
	xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.exp,
	xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.xo: Applied
	bugfix from Jim Meyering (tiny change), where many short arguments
	would cause xargs (and probably find -exec .. {} +) to fail
	because execve() returns E2BIG, which we should avoid

	* xargs/testsuite/inputs/16383-ys.xi,
	xargs/testsuite/inputs/32767-ys.xi,
	xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.exp,
	xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.xo,
	xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.exp,
	xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.xo: New file.

2005-11-18  Jim Meyering  <jim@meyering.net> (tiny change)

        * lib/buildcmd.c (bc_push_arg): When exec'ing, don't exceed
        Linux's limit on the maximum number of command line arguments.

2005-11-11  James Youngman  <jay@gnu.org>

	* NEWS, find/find.c, find/fstype.c: Savannah bug #14922: if we need the
	list of mounted filesystems but it is not available, exit fatally
	with a message.  If it is not available but we don't need it,
	there is no need for an error.

2005-10-31  James Youngman  <jay@gnu.org>

	* doc/find.texi:
	Removed redundant additional description of "--regextype".

2005-10-08  James Youngman  <jay@gnu.org>

	* find/find.c, lib/regextype.c: Fixed Savannah bug #14616, which
	was that c99 code had crept in and it didn't compile on c89
	compilers

	* doc/find.texi: Savannah patch #4371 from Andreas Metzler; the
	argument of -I is mandatory

2005-09-21  James Youngman  <jay@gnu.org>

	* xargs/xargs.1, xargs/xargs.c: Clarified the -E option

2005-09-20  James Youngman  <jay@gnu.org>

	* NEWS, configure.in, doc/find.texi, xargs/xargs.1, xargs/xargs.c:
	Documentation clarification: -L and -I take a mandatory argument;
	-l and -i do not

2005-09-17  James Youngman  <jay@gnu.org>

	* xargs/xargs.c:
	Fixed Savannah bug #14550 - if environment is too large to allow
	exec() to work, we cannot even use "xargs --help".

	* find/find.1:
	Avoid the use of -perm +mode, using -perm /mode instead.  From comment
	by Andreas Metzler (though I didn't read the patch).

	* ChangeLog, doc/find.texi, find/find.1, xargs/xargs.1:
	Typo fix from A Costa (tiny change)

	* NEWS: Corrections for find manual page - symbolic permissions.

	* find/find.1:
	Corrected an inaccuracy in the EXAMPLES section - in symbolic modes,
	'o' stands for 'others' and 'u' stands for 'user' (i.e. the owner).

2005-09-17  A Costa <agcosta@gis.net>  (tiny change)

	docs/find.texi: Fixed typo
	find/find.1: Fixed typo
	xargs/xargs.1: Fixed typo
	
2005-09-17  James Youngman  <jay@gnu.org>

	* NEWS: Corrections for find manual page - symbolic permissions.

	* find/find.1:
	Corrected an inaccuracy in the EXAMPLES section - in symbolic modes,
	'o' stands for 'others' and 'u' stands for 'user' (i.e. the owner).

2005-09-06  James Youngman  <jay@gnu.org>

	* xargs/xargs.c: Typo in "IEEE" in a comment.

2005-09-04  James Youngman  <jay@gnu.org>

	* find/defs.h, find/find.c, find/parser.c, find/pred.c, 
	Work around compilation failure with GCC 4 and AIX 5.1, in which
	open is #defined to open64

2005-09-03  James Youngman  <jay@gnu.org>

	* find/testsuite/find.gnu/quit.exp: Fixed Savannah bug#14390, by
	avoiding an accidental assumption in quit.exp that directory
	entries are returned by readir() in any particular order

	* NEWS, configure.in, doc/find.texi, xargs/testsuite/Makefile.am,
	xargs/testsuite/inputs/helloworld.xi,
	xargs/testsuite/xargs.gnu/delim-o.exp,
	xargs/testsuite/xargs.gnu/delim-o.xo, xargs/xargs.1,
	xargs/xargs.c: Added the --delimiter option to xargs, resolving
	Savannah support request sr #102914

	* ChangeLog, NEWS, configure.in: Released findutils-4.2.25


2005-09-02  James Youngman  <jay@gnu.org>

	* doc/find.texi, find/find.1:
	Improved documentation in response to Savannah bug #14376

2005-09-01  James Youngman  <jay@gnu.org>

	* po/ChangeLog, ChangeLog: Updated with recent changes.

	* locate/locate.c: Removed unused struct stringbuf.soffs.

	* doc/find.texi: Typo fix from Jim Meyering (trivial change)

2005-09-01  Jim Meyering  <jim@meyering.net>

        * locate/locate.c (struct stringbuf) [soffs]: Remove unused member.
        (locate): Remove initialization, too.

2005-09-01  James Youngman  <jay@gnu.org>

	* doc/find.texi: Typo fix from Jim Meyering (trivial change)

2005-08-30  James Youngman  <jay@gnu.org>

	* find/defs.h, find/find.c, find/fstype.c, find/pred.c:
	Attempted fix for compilation when AFS is #defined

2005-08-13  James Youngman  <jay@gnu.org>

	* find/find.1: Remind the user to quote the pattern argument to -iname.

2005-08-12  James Youngman  <jay@gnu.org>

	* NEWS: Corrected typo.

2005-08-09  James Youngman  <jay@gnu.org>

	* NEWS: Indicate that regexprops.texi is built on Cygin now that
	Savannah bug #14025 has been fixed.

	* lib/Makefile.am, lib/regexprops.c: Fixed compilation failure on
	Cygwin - Savannah Bug #14025 (tiny change, three lines), reported
	and fixed by Eric Blake

	* find/testsuite/Makefile.am,
	find/testsuite/find.posix/sv-bug-14070.exp,
	find/testsuite/find.posix/sv-bug-14070.xo: Added new test case for
	SourceForge bug #14070

	* find/testsuite/find.posix/sv-bug-14070.exp,
	find/testsuite/find.posix/sv-bug-14070.xo: New file.

	* find/defs.h, find/ftsfind.c, find/pred.c, find/util.c:
	Ensure we can still build with --enable-debug

	* find/testsuite/config/unix.exp,
	find/testsuite/find.gnu/execdir-one.exp,
	find/testsuite/find.gnu/execdir-root-only.exp,
	find/testsuite/find.gnu/sv-bug-12230.exp: If . is on $PATH,
	indicate that the -execdir tests cannot be carried out, as opposed
	to indicating that those tests fail

2005-08-07  James Youngman  <jay@gnu.org>

	* NEWS: Indicated that some test suite files have been renamed.

	* xargs/testsuite/Makefile.am, xargs/testsuite/inputs/eof.xi,
	xargs/testsuite/inputs/eof1.xi,
	xargs/testsuite/xargs.sysv/eof.exp,
	xargs/testsuite/xargs.sysv/eof.xo,
	xargs/testsuite/xargs.sysv/eof1.exp,
	xargs/testsuite/xargs.sysv/eof1.xo,
	xargs/testsuite/xargs.posix/lc_l2.exp,
	xargs/testsuite/xargs.posix/lc_l2.xo,
	xargs/testsuite/xargs.sysv/l2.exp,
	xargs/testsuite/xargs.sysv/l2.xo,
	xargs/testsuite/xargs.sysv/lc_l2.exp,
	xargs/testsuite/xargs.sysv/lc_l2.xo,
	xargs/testsuite/xargs.posix/L2.exp,
	xargs/testsuite/xargs.posix/l2.exp,
	xargs/testsuite/xargs.posix/L2.xo,
	xargs/testsuite/xargs.posix/l2.xo,
	xargs/testsuite/xargs.posix/uc_L2.exp,
	xargs/testsuite/xargs.posix/uc_L2.xo: Work around problems with
	CVS clients on case-insentitive operating systems

	* debian/Changelog: Removed Changelog file since changelog is the
	one we should be using and having both files upsets Cygwin
	systems which cannot tell the dirrerence between changelog and
	Changelog

	* find/ftsfind.c:
	If DEBUG is defined, show the symbolic names fro fts_info values.

	* find/ftsfind.c: Added additional diagnostics.

2005-08-01  James Youngman  <jay@gnu.org>

	* ABOUT-NLS, INSTALL, Makefile.am, configure.in, depcomp,
	doc/texinfo.tex, install-sh, missing, mkinstalldirs: By adding the
	missing AM_GNU_GETTEXT_VERSION call, allowed autopoint to update
	those files of which it has updated copies.

	* po/Makevars.template, po/Makefile.in.in, po/findutils.pot:
	Using AM_GNU_GETTEXT_VERSION, allowed gettext to update the infrastructure

	* po/Rules-quot, po/boldquot.sed, po/en@boldquot.header, po/en@quot.header, po/insert-header.sin, po/quot.sed:
	Files added by autopoint now that we are using AM_GNU_GETTEXT_VERSION

	* find/testsuite/Makefile.am: Added find.gnu./perm-slash.{exp,xo}.

2005-07-31  James Youngman  <jay@gnu.org>

	* find/testsuite/excuses.txt: We now have tests for -perm.

	* NEWS, configure.in, find/parser.c,
	find/testsuite/find.gnu/perm-slash.exp,
	find/testsuite/find.gnu/perm-slash.xo: Fixed bug which caused find
	-perm /440 to be treated the same as find -perm 440

	* find/testsuite/Makefile.am:
	Generic tests for -perm -NNN and -perm NNN

	* find/testsuite/excuses.txt: New file - list of test cases that
	still need to be written, along with excuses why they haven't been
	done yet

	* find/testsuite/find.posix/perm-vanilla.exp,
	find/testsuite/find.posix/perm-vanilla.xo: Generic tests for -perm
	-NNN and -perm NNN

	* find/testsuite/find.gnu/inum.exp:
	Ensure that the test would fail if -inum just always returned true

	* find/testsuite/Makefile.am, find/testsuite/find.gnu/ilname.exp,
	find/testsuite/find.gnu/ilname.xo,
	find/testsuite/find.gnu/inum.exp, find/testsuite/find.gnu/inum.xo,
	find/testsuite/find.gnu/lname.exp,
	find/testsuite/find.gnu/lname.xo,
	find/testsuite/find.gnu/xtype.exp,
	find/testsuite/find.gnu/xtype.xo,
	find/testsuite/find.posix/links.exp,
	find/testsuite/find.posix/links.xo: New test cases for -ilname,
	-inum, -lname, -xtype

	* find/testsuite/Makefile.am, find/testsuite/find.gnu/delete.exp,
	find/testsuite/find.gnu/delete.xo,
	find/testsuite/find.gnu/iregex1.exp,
	find/testsuite/find.gnu/iregex1.xo,
	find/testsuite/find.gnu/regex1.exp,
	find/testsuite/find.gnu/regex1.xo,
	find/testsuite/find.gnu/regex2.exp,
	find/testsuite/find.gnu/regex2.xo,
	find/testsuite/find.gnu/samefile-copy.exp,
	find/testsuite/find.gnu/samefile-copy.xo,
	find/testsuite/find.gnu/samefile-link.exp,
	find/testsuite/find.gnu/samefile-link.xo,
	find/testsuite/find.gnu/samefile-same.exp,
	find/testsuite/find.gnu/samefile-same.xo,
	find/testsuite/find.gnu/samefile-symlink.exp,
	find/testsuite/find.gnu/samefile-symlink.xo: Further test cases

	* find/find.1: Indicate that -delete implies -depth (find.texi
	already mentioned this).

	* find/testsuite/Makefile.am:
	Brought the list of .exp and .xo files in Makefile.am into sync with
	the actual contents of the CVS repository.

	* find/testsuite/Makefile.am, find/testsuite/find.gnu/depth-d.exp,
	find/testsuite/find.gnu/depth-d.xo,
	find/testsuite/find.gnu/empty.exp,
	find/testsuite/find.gnu/empty.xo,
	find/testsuite/find.gnu/execdir-one.exp,
	find/testsuite/find.gnu/execdir-one.xo,
	find/testsuite/find.gnu/false.exp,
	find/testsuite/find.gnu/false.xo,
	find/testsuite/find.gnu/follow-basic.exp,
	find/testsuite/find.gnu/follow-basic.xo,
	find/testsuite/find.gnu/gnu-or.exp,
	find/testsuite/find.gnu/gnu-or.xo,
	find/testsuite/find.gnu/gnuand.exp,
	find/testsuite/find.gnu/gnuand.xo,
	find/testsuite/find.gnu/gnunot.exp,
	find/testsuite/find.gnu/gnunot.xo,
	find/testsuite/find.gnu/iname.exp,
	find/testsuite/find.gnu/iname.xo,
	find/testsuite/find.gnu/ipath.exp,
	find/testsuite/find.gnu/ipath.xo,
	find/testsuite/find.gnu/iwholename.exp,
	find/testsuite/find.gnu/iwholename.xo,
	find/testsuite/find.gnu/path.exp, find/testsuite/find.gnu/path.xo,
	find/testsuite/find.gnu/print0.exp,
	find/testsuite/find.gnu/print0.xo,
	find/testsuite/find.gnu/quit.exp, find/testsuite/find.gnu/quit.xo,
	find/testsuite/find.gnu/true.exp, find/testsuite/find.gnu/true.xo,
	find/testsuite/find.gnu/wholename.exp,
	find/testsuite/find.gnu/wholename.xo,
	find/testsuite/find.posix/and.exp,
	find/testsuite/find.posix/and.xo,
	find/testsuite/find.posix/exec-one.exp,
	find/testsuite/find.posix/exec-one.xo,
	find/testsuite/find.posix/grouping.exp,
	find/testsuite/find.posix/grouping.xo,
	find/testsuite/find.posix/name.exp,
	find/testsuite/find.posix/name.xo,
	find/testsuite/find.posix/posixnot.exp,
	find/testsuite/find.posix/posixnot.xo,
	find/testsuite/find.posix/prune.exp,
	find/testsuite/find.posix/prune.xo: Added new test cases for many
	of the actions and tests of find

	* find/find.c (default_prints):
	not a static function, so do not declare it as one.

	* m4/withfts.m4: Fixed underquoted definition of FIND_WITH_FTS.
	[this change is currently on a branch only]

2005-07-30  James Youngman  <jay@gnu.org>

	* find/finddata.c, find/ftsfind.c, find/parser.c, find/pred.c,
	find/util.c, m4/Makefile.am, m4/withfts.m4: Initial attempt to
	convert find to use gnulib's fts()
	[this change is currently on a branch only]
	
	* find/finddata.c, find/ftsfind.c, m4/withfts.m4: New file.
	[this change is currently on a branch only]
	
	* NEWS, configure.in, find/Makefile.am, find/defs.h, find/find.c,
	import-gnulib.sh: Initial attempt to convert find to use gnulib's
	fts() [this change is currently on a branch only]

2005-07-29  James Youngman  <jay@gnu.org>

	* NEWS, configure.in
	Prepared for the release of findutils-4.2.24

	* ChangeLog: Updated with recent changes.

	* NEWS, find/find.1, doc/find.texi:
	Indicate that -ok and -okdir redirect stdin from /dev/null.

	* NEWS: Explain the directory link count change more throroughly.

	* NEWS: Fixed bug #13973.

	* find/pred.c (pred_fprintf): Fix Savannah bug #13973: Modify the
	handling of -printf %Y so that it no longer modifies stat_buf

	* find/testsuite/find.gnu/printf-symlink.exp,
	find/testsuite/find.gnu/printf-symlink.xo: Detect Savannah bug
	#13973: pollution of stat_buf by the %Y directive (trivial change
	from Andreas Metzler)

	* INSTALL, depcomp, doc/texinfo.tex, install-sh, missing, mkinstalldirs:
	Updated auxilliary files from the automake-1.9 distribution

	* configure.in:
	Introduce new Automake conditional, CROSS_COMPILING, true when we are corss compiling

	* find/find.c:
	If we decline to follow a symbolic link due to the safety check, issue a more self-explanatory warning message

	* lib/Makefile.am: Don't build regexprops if we are cross compiling

	* doc/Makefile.am:
	Depend on the regex.h file rather than the 'regexprops' binary,
	because the header file will always exist even if we are doing "make
	dist".  Otherwise "make distcheck" fails because it tries to rebuild
	find.info while the source-directory is read-only.

2005-07-28  James Youngman  <jay@gnu.org>

	* find/find.1:
	Say "other users" rather than "rest of the world" when talking about
	Unix permissions.  Fixes Savannah bug #4246.

2005-07-27  James Youngman  <jay@gnu.org>

	* xargs/testsuite/Makefile.am: Added new test case 'childfail.exp'.

	* doc/find.texi:
	Updated the description of the safe-dir-change operation to reflect
	what find now does on systems that lack O_NOFOLLOW.

	* NEWS, find/parser.c: Indicate in the output of find --version if
	the leaf optimisation is enabled or not

	* find/find.c: Fixed typo.

	* find/find.c: If the link count of a directory starts off less
	than two, disable the leaf optimisation for this directory.

2005-07-26  James Youngman  <jay@gnu.org>

	* lib/regexprops.c: Further small corrections from Karl.

	* doc/find.texi:
	Reordered the sections in the manual to put the "Common Tasks" and
	"Worked Examples" chapters together.

	* configure.in, find/find.c: Allow the leaf optimisation to be
	disabled by default with the configure option
	--disable-leaf-optimisation

	* find/find.c: Removed old code for antuqie version of savedir().

	* lib/regextype.c: Put the syntaxes in alphabetical order.

	* lib/regexprops.c: Karl made some more readability suggestions.

2005-07-24  James Youngman  <jay@gnu.org>

	* doc/Makefile.am: If the regexprops program has changed we should
	re-run it, since it will probably now produce different output

	* lib/regextype.h:
	Allow the caller to detect if one regex type is identical to another.

	* configure.in:
	Define the preprocessor macro FINDUTILS for that code int he lib/
	directory can be slightly more reusable.

	* lib/regextype.c:
	Allow the caller to detect if one regex type is identical to another.

	* lib/regexprops.c:
	Made Texinfo style corrections suggested by Karl Berry.

2005-07-22  James Youngman  <jay@gnu.org>

	* xargs/testsuite/xargs.posix/childfail.exp, xargs/xargs.c: Fix
	Savannah bug #13878, in which xargs deals incorrectly with child
	failure, returning 0 when it should return 123

2005-07-17  James Youngman  <jay@gnu.org>

	* find/find.1: (tiny change) Corrections by Greg Wooledge

2005-07-16  James Youngman  <jay@gnu.org>

	* doc/find.texi: Updates following comments by Dave Gilbert.

	* NEWS: Corrected a typo.

	* doc/find.texi:
	Added in the example about updating an aggregate timestamp file.

2005-07-15  James Youngman  <jay@gnu.org>

	* po/da.po: Updated Danish translation from translation project

2005-07-14  James Youngman  <jay@gnu.org>

	* NEWS, doc/Makefile.am, doc/find.texi, lib/Makefile.am,
	lib/regexprops.c, lib/regextype.c, lib/regextype.h: Added
	--regextype and -regextype options to locate and find
	respectively, and documented these

	* doc/find.texi: We use GNU Emacs regexps by default now.

	* doc/find.texi:
	We require GNU sort in order for locate to handle newlines correctly,
	not just GNU find.

2005-07-10  James Youngman  <jay@gnu.org>

	* doc/find.texi:
	Applied several documentation improvement patches from Aaron Hawley

	* ChangeLog, NEWS: Updated with recent changes.

	* NEWS: Recent gnulib changed have fixed -iregex

	* doc/find.texi, xargs/xargs.1:
	Tiny patch from Andreas Metzler: xargs -I is like xargs -i, but the latter is deprecated

2005-07-06  James Youngman  <jay@gnu.org>

	* find/defs.h, find/find.c, find/parser.c, find/pred.c:
	Fixed Savannah bug #13650; programs run by -exec cannot read stdin

2005-07-04  James Youngman  <jay@gnu.org>

	* NEWS: *** empty log message ***

	* doc/find.texi:
	Added a "Worked Examples" section.   It currently only contains a
	(long) example about deleting files.

	* .cvsignore: Some extra stuff to ignore.

2005-07-03  James Youngman  <jay@gnu.org>

	* find/Makefile.am: Don't need regexprops.c really...

	* lib/regextype.c, lib/regextype.h:
	New files for selecting regex type based on a keyword

	* locate/locate.1: Documented the fact that we now use Emacs-style
	regexps, not POSIX EREs, for compatibility with find -regex.

	* lib/Makefile.am, locate/locate.c, doc/find.texi,
	find/Makefile.am, find/defs.h, find/find.1, find/find.c,
	find/parser.c: Fixed Savannah bug #13495: find now uses
	Emacs-style regexps by default

2005-07-02  James Youngman  <jay@gnu.org>

	* configure.in, find/defs.h, find/fstype.c, find/parser.c,
	intl/dcigettext.c, lib/buildcmd.c, lib/listfile.c,
	lib/savedirinfo.c, locate/locate.c, xargs/xargs.c: Assume unistd.h
	is present - avoid using HAVE_UNISTD_H

2005-07-01  Jim Meyering  <jim@meyering.net>

        With `-fprint F' or `-fprintf F', don't write diagnostics
        to F when stderr is closed.

        * find/parser.c: Include "stdio-safer.h".
        (open_output_file): Use fopen_safer, not fopen.
        * import-gnulib.sh (findutils_modules): Add stdio-safer.

2005-07-01  James Youngman  <jay@gnu.org>

	* doc/find.texi:
	Aaron pointed out a potentially-confusing sentence.  I fixed it.

	* find/defs.h, find/find.1, find/find.c, find/parser.c,
	find/pred.c, find/util.c: Allow consistency-checking of the
	predicates, checking for example that actions all have side
	effects

2005-06-29  James Youngman  <jay@gnu.org>

	* doc/find.texi: Applied patch from Aaron Hawley (Savannah patch
	#3751: Typos and small suggestions to find.texi)

2005-06-27  James Youngman  <jay@gnu.org>

	* ChangeLog, locate/locate.c: Applied patch from Bas Van Gompel to
	move match counting into a (new) visitor function

	* NEWS, configure.in: No longer 4.2.23, as we're moving on now

2005-06-24  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>

	* locate/locate.c (visit_count, visit_limit): New functions.
	(locate): Use visit_limit or visit_count. Simplify main loop.
	(main) Bail out early when limit is reached.

2005-06-20  James Youngman  <jay@gnu.org>

	* xargs/xargs.c:
	Removed some code which had already been disabled via the preprocessor.

2005-06-19  Dmitry V. Levin <ldv@altlinux.org>

	* lib/savedirinfo.c: Fix two compilation warnings (which would 
	prevent compilation if "-Wall -Werror" is in effect).
	
2005-06-19  James Youngman  <jay@gnu.org>

	* ChangeLog: Indicate that we made (are making) a release.

	* ChangeLog, NEWS, configure.in: Preparing to release 4.2.23

	* doc/find.texi: Fixed Texinfo syntax error in previous change

	* doc/find.texi, xargs/xargs.1:
	Document the fact that the -i and -L options are currently
	incompatible (Savannah bug 13041).

	* locate/updatedb.1, locate/updatedb.sh: Fix Savannah bug 13411 -
	reject trailing slashes in updatedb's --prunepaths, bacsue these
	will never be matched

	* NEWS: Released findutils-4.2.23.

	* doc/find.texi, xargs/xargs.1:
	Document the fact that the -i and -L options are currently
	incompatible (Savannah bug 13041).

	* locate/updatedb.1, locate/updatedb.sh: Fix Savannah bug 13411 -
	reject trailing slashes in updatedb's --prunepaths, because these
	will never be matched.

2005-06-18  Martin Buchholz (trivial patch applied by James Youngman)

	* find/defs.h, find/find.c, find/parser.c, doc/find.texi: Fix
	typos/spelling errors (mostly in source code comments).

2005-06-18  Dmitry V. Levin  <ldv@altlinux.org>

	Additional documentation tweaks for -execdir/-okdir actions.
	* find/parser.c (parse_help): Mention -execdir and -ordir options.
	* doc/find.texi, find/find.1: Additionally document new options.
	
2005-06-12  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>

        * locate/locate.c: Implement --all (-A).
	
        * NEWS, doc/find.texi, locate/locate.1: Document locate --all (-A)
	
2005-06-12  James Youngman  <jay@gnu.org>

	* find/find.c, NEWS:
	Savannah bug #13381 (Debian bug 313081): if we have O_NOFOLLOW,
	safely_chdir() does not need to call stat().  However, process_dir()
	used to rely on using that stat information.  To work around this
	problem, there is now an output parameter in safely_chdir() which
	indicates if the stat buffer is valid.
	This bug has possible security implications.

	* find/find.1, doc/find.texi:
	Applied patch from Andreas Metzler, improving the wording for the
	documentation of the %k and %b format directives.  This patch does
	not require a copyright assignment as it consists of several
	copies of the same small wording change.

2005-06-11  James Youngman  <jay@gnu.org>

	* find/find.1: Corrected spelling error 'writeable' to 'writable'.

	* find/find.1, locate/locate.1:
	Fixed Savannah bug #13363, typos in manpages (trivial change)

2005-06-10  James Youngman  <jay@gnu.org>

	* find/find.c, lib/savedirinfo.c, lib/savedirinfo.h: Switch to a
	new scheme for saving directory entry data which is extensible to
	allow additional data to be saved.

2005-06-09  James Youngman  <jay@gnu.org>

	* locate/testsuite/config/unix.exp:
	Use the new normalize_dir procedure throughout.

	* locate/testsuite/config/unix.exp: Move the normalisation into a
	procedure.  Don't rely on the "file normalize" command being
	available (it's new in Tcl 8.4).

2005-06-08  James Youngman  <jay@gnu.org>

	* ChangeLog, NEWS, configure.in: Updated for recent changes

	* doc/find.texi:
	Explain that you should put the argument of -name in quotes.

	* find/find.1:
	Added a new "NON-BUGS" section pointing out things that look like bugs
	but are caused by mistakes or misunderstandings.

	* doc/find.texi, locate/locate.1: Applied Bas van Gompel's patch
	which allows the database to be read from stdin.

	* locate/locate.c:
	Read the database in by using the "visitor" pattern.  Modified file
	header comment to indicate that we no longer use the efficient
	algorith described in ;login:.  Emit an error message if the
	LOCATE_PATH variable implies that we should read stdin twice.
	Most of this code is from Bas van Gompel.

	* AUTHORS: Credit Bas van Gompel for his work on locate.

	* lib/printquoted.h: Appled patch from Bas - fixing compiler warning.

2005-06-07  James Youngman  <jay@gnu.org>

	* ChangeLog, NEWS, configure.in: Updates prior to release

	* config.rpath: Added file required for 'make dist'

	* po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po,
	po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po,
	po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po,
	po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po,
	po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po,
	po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po:
	updated the po files for release

	* xargs/testsuite/Makefile.am:
	Added in all the test files from Dmitry V. Levin.

2005-06-08  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>

	* NEWS, locate/locate.1, doc/find.texi: Document usage of `-'
	to refer to stdin in database-path for locate.
	* locate/locate.c: Change prototype for visitors and processors
	throughout. Move reading the database and generating base_name
	into visitors. Allow `-' to refer to stdin in database-path.

        * lib/printquoted.h: Include stdio.h.

2005-06-07  James Youngman  <jay@gnu.org>

	* COPYING, debian/copyright, depcomp, doc/texinfo.tex,
	find/defs.h, find/find.c, find/fstype.c, find/parser.c,
	find/pred.c, find/testsuite/config/unix.exp, find/tree.c,
	find/util.c, import-gnulib.sh, intl/Makefile.in,
	intl/bindtextdom.c, intl/config.charset, intl/dcgettext.c,
	intl/dcigettext.c, intl/dcngettext.c, intl/dgettext.c,
	intl/dngettext.c, intl/explodename.c, intl/finddomain.c,
	intl/gettext.c, intl/gettext.h, intl/gettextP.h,
	intl/hash-string.h, intl/intl-compat.c, intl/l10nflist.c,
	intl/libgettext.h, intl/libgnuintl.h, intl/loadinfo.h,
	intl/loadmsgcat.c, intl/localcharset.c, intl/locale.alias,
	intl/localealias.c, intl/ngettext.c, intl/plural.c, intl/plural.y,
	intl/ref-add.sin, intl/ref-del.sin, intl/textdomain.c,
	lib/buildcmd.c, lib/buildcmd.h, lib/extendbuf.c, lib/extendbuf.h,
	lib/forcefindlib.c, lib/listfile.c, lib/listfile.h,
	lib/modetype.h, lib/nextelem.c, lib/nextelem.h, lib/printquoted.c,
	lib/printquoted.h, lib/qmark.c, lib/savedirinfo.c,
	lib/savedirinfo.h, lib/strspn.c, lib/wait.h, lib/waitpid.c,
	locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c,
	locate/locatedb.h, locate/testsuite/config/unix.exp,
	locate/updatedb.sh, missing, po/fetch-po-files,
	xargs/testsuite/config/unix.exp, xargs/xargs.c: 
	Updated the FSF's postal address

	* ChangeLog: Corrected Bas's email address.

	* locate/locate.c: Updated copyright years.

2005-06-07  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>

         * locate/locate.c: Fold case once, only when needed.
  
2005-06-07  James Youngman  <jay@gnu.org>

	* NEWS: Updated with recent changes.

	* mdate-sh: Use the mdate-sh from automake

	* find/parser.c, find/pred.c, find/tree.c, find/util.c,
	lib/Makefile.am, lib/forcefindlib.c, lib/listfile.c,
	lib/listfile.h, locate/code.c, locate/locate.c, find/defs.h,
	find/find.c: Fix Savannah bug #13324: Fix compiler warnings for
	GCC-3.4

	* locate/locate.c:
	Fixed Savannah bug #13325: Quoting of output filenames in locate
	should match find.

	* find/parser.c:
	Fixed Savannah bug #13319: C9X-ism in parser.c (declaration after
	statements).

	* find/pred.c, lib/Makefile.am, lib/listfile.c, lib/nextelem.c,
	lib/printquoted.c, lib/printquoted.h, lib/qmark.c, NEWS,
	doc/find.texi, find/defs.h, find/find.1, find/parser.c: Fixed
	Savannah bug #13303, find should filter out non-printable
	characters if outputting to tty

2005-05-30  James Youngman  <jay@gnu.org>

	* locate/locate.c: rename new_locate() to locate() since
	  old_locate() has gone the way of the dodo.

2005-05-29  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>

        Add a ``--print'' (``-p'') option. (to cancel side-effects of -c/-S)
        Allow ``--statistics'' in combination with non-options.
        * doc/find.texi: Add documentation for locate --print (-p), and the
        use of non-options with --statistics.
        * locate/locate.1: ditto.
        * locate/locate.c: Read each database only once.

2005-05-23  Paul Eggert  <eggert@cs.ucla.edu>

	Adjust to recent gnulib changes.
	* import-gnulib.sh: Get config.rpath from gnulib/build-aux,
	not gnulib/config.
	* find/parser.c (parse_perm): Ignore umask when parsing
	symbolic permissions.  Adjust to new modechange API.

2005-05-16  James Youngman  <jay@gnu.org>

	* find/find.c, find/parser.c, find/pred.c, find/tree.c:
	Trivial change: don't use i18n support for debug-only messages

	* ChangeLog: Added ChangeLog entry crediting Dmitry

2005-05-09  James Youngman  <jay@gnu.org>

	* find/parser.c:
	The previous change fixed Savannah bug #12999.  This change doesn't do
	anything, it's only intended to be a place to record the Savannah bug
	ID we've just fixed.

	* find/parser.c:
	Oops.  Initialise the variable which indicates which regex syntax to
	use.  We use POSIX basic regular expressions.

	* find/parser.c:
	Suggestion by Ed Avis: point out that "-name foo/bar" will almost
	always evaluate to false.   Suggest to the user what alternatives they
	might find useful.

2005-05-02  James Youngman  <jay@gnu.org>

	* AUTHORS:
	Added Dimitry (his new test suite contribution required a copyright
	assignment).

2005-05-03  Dmitry V. Levin

	* Added xargs test suite tests by Dmitry V. Levin, together with
	  bugfixes which ensure that the tests pass.

2005-04-18  James Youngman  <jay@gnu.org>

	* Added test suite tests for Bas van Gompel's changes.

2005-04-18  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>

        * doc/find.texi: Document locate --non-existing (-E).
        * locate/locate.1: Ditto.
        * locate/locate.c: Implement --non-existing (-E).
   
2005-04-04  James Youngman  <jay@gnu.org>

	* configure.in, import-gnulib.sh:
	We no longer need gnulib/m4/Makefile.am

	* po/vi.po: Updated Vietnamese translation

	* locate/updatedb.sh:
	Savannah bug #12491: Only use the "-s" option to "su" if it is
	supported.

2005-04-01  James Youngman  <jay@gnu.org>

	* locate/locate.1, locate/updatedb.1, xargs/xargs.1: Trivial
	change from A Costa <agcosta@gis.net>, fixing typos in manual
	pages for xargs, locate and updatedb; fixes Savannah bug #12500,
	Debian bug #301934

2005-03-22  James Youngman  <jay@gnu.org>

	* import-gnulib.sh: Include the new gnulib module stat-macros

	* configure.in:
	CVS code is (will shortly be) no longer identical to the 4.2.20 release

2005-03-17  James Youngman  <jay@gnu.org>

	* configure.in: Preprare for release of 4.2.20.

	* NEWS: Updated prior to release of 4.2.20.

	* ChangeLog: Updated with recent changes.

	* THANKS: Thank Bas van Gompel, but only once.

	* THANKS: Thank Bas van Gompel and Aaron S. Hawley.

	* po/vi.po: Updated Vietnamese PO file

2005-03-10  James Youngman  <jay@gnu.org>

	* po/nl.po: Updated Dutch PO file

2005-03-08  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>

	* import-gnulib.sh: Re-enable creation of gnulib/m4/Makefile.am.

2005-03-07  James Youngman  <jay@gnu.org>

	* Released findutils-4.2.19.

	* find/testsuite/find.posix/sizes.exp:
	Use 2>/dev/null instead of 2>&1, because Tcl understands the former
	but not the latter.

	* find/testsuite/Makefile.am: Also distribute sv-bug-12181.xo.

	* find/testsuite/Makefile.am: Distribute sv-bug-12181.

	* find/testsuite/Makefile.am: Distribute sv-bug-12230.

	* NEWS: Updated with new news.

	* ChangeLog: Brought up to date.

	* lib/buildcmd.c, find/testsuite/find.gnu/sv-bug-12230.exp: Fixed
	Savannah bug #12230, in which '-exec echo == {} +' is always run,
	even if there were no matched files.

2005-03-06  James Youngman  <jay@gnu.org>

	* ChangeLog: Added latest changes.

	* po/pt.po, configure.in: Added Portuguese translation

2005-03-04  James Youngman  <jay@gnu.org>

	* configure.in: Modernized the way we call AC_INIT and
	AM_INIT_AUTOMAKE

	* locate/locate.c, find/pred.c, find/find.c:
	Eliminated some compiler warnings

	* find/pred.c: Clarified the meaning of a comment.

	* find/testsuite/Makefile.am: Added sizes.exp, sizes.xo.

	* find/testsuite/find.posix/sizes.xo,
	find/testsuite/find.posix/sizes.exp: Added tests for -size
	predicate

2005-03-03  James Youngman  <jay@gnu.org>

	* find/find.c:
	safely_chdir_lstat(): if we didn't end up in the right place, and then
	fchdir() fails, we can't return to the directory we started in.
	Therefore, issue a fatal error message and exit.

2005-03-01  James Youngman  <jay@gnu.org>

	* find/find.c, find/testsuite/find.posix/sv-bug-12181.exp,
	find/testsuite/find.posix/sv-bug-12181.xo: Fixed SourceForge bug
	12181 (find -H symlink-to-dir reports 'Too many Symbolic links')
	and bug 12044 (find still hangs on dead NFS filesystems on
	Solaris)

2005-02-28  James Youngman  <jay@gnu.org>

	* doc/find.texi: Typo: O_NOFOLLOW, not O_FOLLOW

	* import-gnulib.sh:
	Suggestion from Martin Buchholz; unset CDPATH to prevent "cd" echoing
	the new directory.

2005-02-27  James Youngman  <jay@gnu.org>

	* README: Indicate how the reader can verify the release.

2005-02-26  James Youngman  <jay@gnu.org>

	* po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po,
	po/zh_CN.po, po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po,
	po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot,
	po/fr.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po,
	po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po,
	po/pt_BR.po, po/ro.po, po/ru.po: Added new Vietnamese translation

	* configure.in: Added new Vietnamese translation.

2005-02-25  James Youngman  <jay@gnu.org>

	* po/ga.po: Updated Irish po file

2005-02-23  James Youngman  <jay@gnu.org>

	* Makefile.am: Fix Savannah bug #12064 - 'make distclean' deletes
	regex.c but should not.

	* find/testsuite/Makefile.am,
	find/testsuite/find.gnu/printf-h.exp,
	find/testsuite/find.gnu/printf-h.xo: Added test case for Savannah
	bug #12085 (-printf %h).

	* NEWS, doc/find.texi, find/find.1, find/pred.c:
	%h now expands to '.' instead of nothing.

2005-02-22  James Youngman  <jay@gnu.org>

	* find/find.c:
	Fixed Savannah bug #12099 (misinterpretation of system versions
	leading to possible incorrect disabling of O_NOFOLLOW).  Reported by
	Dmitry V. Levin.

	* find/pred.c:
	For the %h format, don't bail out early as the format might contain
	something else too.

2005-02-21  James Youngman  <jay@gnu.org>

	* find/find.c: Fixed accidental C99 dependency.

2005-02-20  James Youngman  <jay@gnu.org>

	* po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po,
	po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po,
	po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po,
	po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po,
	po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po,
	po/sv.po, po/tr.po, po/zh_CN.po: Updated italian translation

	* doc/find.texi: Corrected a typo.

	* find/find.c:
	Read the mounted device list afer parsing the command line, so that
	for example "find --version" still works (in response to Savannah bug
	#12044).

	* configure.in: We've moved on from findutils-4.2.18.

2005-02-19  James Youngman  <jay@gnu.org>

	* NEWS: Corrected the summary of the "find -depth" bug.

2005-02-16  James Youngman  <jay@gnu.org>

	* NEWS, configure.in: Prepared for release of 4.2.18.

	* ChangeLog: Updated prior to release of 4.2.18.

	* find/testsuite/Makefile.am:
	Distribute the test cases for the recent "find -depth" bug.

	* find/testsuite/find.posix/depth1.exp, find/testsuite/find.posix/depth1.xo:
	Added test case for find -depth bug reported by Joseph S. Myers

	* find/find.c:
	If -depth is in effect, processing of the subdirectories invalidates
	the information in 'state'.  Therefore once we get around to
	processing the predicates, restore the information that we keep in
	'state' and in 'stat_buf'.

2005-02-15  James Youngman  <jay@gnu.org>

	* ChangeLog: Updated with recent changes

	* find/find.1:
	Emphasise that -L causes find to recurse into subdirectories pointed
	to by symbolic links.

	* find/find.1:
	Patch to find.1 from Aaron Hawley <Aaron.Hawley@uvm.edu>:

	* Notes about -H actually apply to -L.
	* Said paragraph is duplicated two paragraphs later.
	* Typos: nno, ibmue, surrpounding

2005-02-15  Aaron Hawley  <Aaron.Hawley@uvm.edu>

	* find/find.1: Notes about -H actually apply to -L.  Said
	paragraph is duplicated two paragraphs later.  Also typos: nno,
	ibmue, surrpounding

2005-02-13  James Youngman  <jay@gnu.org>

	* find/find.1: Miscellaneous small clarifications and improvements.

	* doc/find.texi: Added Info nodes and menus under "Changing the
	Current Working Directory" so that it doesn't generate such a huge
	Info page.

	* find/find.c: Parenthesise #if defined(...).

2005-02-13  Dmitry V. Levin  <ldv@altlinux.org>
	
	* find/find.c: remove test code snippet (time(NULL) was used to
	place a marker for spotting with strace(), but was not actually
	needed).

	* find/find.c (safely_chdir_nofollow): must not fall back on
	safely_chdir_lstat() because that will expose it to race condition
	exploits, making it pointless.

	* find/find.c (safely_chdir_lstat): Move
        complete_pending_execdirs() up into safely_chdir(), because we
	need to do that in either case.

2005-02-12  James Youngman  <jay@gnu.org>

	* configure.in, doc/find.texi, find/defs.h, find/find.c,
	find/parser.c: Fix for Savannah bug #11879, that
	init_mounted_dev_list() causes find to hang on systems which are
	clients to dead NFS servers

2005-02-10  James Youngman  <jay@gnu.org>

	* doc/find.texi: Talk about the problem where find will not work
	if you have a filesystem mounted from an unresponsive NFS server.

2005-02-09  James Youngman  <jay@gnu.org>

	* find/find.1: Indicate that $TZ affects from printf-format
	results, and add extra cross-references in the SEE ALSO section.

2005-02-08  James Youngman  <jay@gnu.org>

	* xargs/testsuite/Makefile.am: Distribute the .xe files also.

	* Makefile.am: Check that we have the right number of .xe files in
	the distribution also.

	* ChangeLog, NEWS, configure.in
	Preparing to release findutils-4.2.17

2005-02-07  James Youngman  <jay@gnu.org>

	* find/testsuite/config/unix.exp: Re-sort the .xo file using the
	calling user's locale, because our 'pre-sorted' .so output file
	may not be sorted with the same collating order as 'sort' used to
	order the output of "find.  Bug spotted by Vin Shelton and Dimitry
	V. Levin.

	* find/testsuite/Makefile.am:
	New test, find/testsuite/find.gnu/follow-arg-parent-symlink.exp.

	* find/testsuite/find.gnu/follow-arg-parent-symlink.exp,
	find/testsuite/find.gnu/follow-arg-parent-symlink.xo, find/find.c:
	Fix for starting point /foo/bar/baz where bar is a symlink but baz
	is not - we should chdir into bar there even if it is a symbolic
	link

2005-02-07  James Youngman  <jay@gnu.org>

	* find/testsuite/Makefile.am:
	New test, find/testsuite/find.gnu/follow-arg-parent-symlink.exp.

	* find/testsuite/find.gnu/follow-arg-parent-symlink.exp,
	find/testsuite/find.gnu/follow-arg-parent-symlink.xo, find/find.c:
	Fix for starting point /foo/bar/baz where bar is a symlink but baz
	is not - we should chdir into bar there even if it is a symbolic
	link

2005-02-06  James Youngman  <jay@gnu.org>

	* doc/find.texi:
	-size: Clarification - -size gives a result consistent with 'wc -c'
	 for example.

	* Makefile.am, find/testsuite/Makefile.am,
	find/testsuite/find.gnu/execdir-root-only.exp,
	find/testsuite/find.gnu/execdir-root-only.xo,
	locate/testsuite/Makefile.am, xargs/testsuite/Makefile.am:
	dist-hook: Ensure that we distribute all the .po files and all the
	testsuite files

	* po/pl.po: Updated Polish translation from TP website

2005-02-05  Dmitry V. Levin  <ldv@altlinux.org>

	* find/parser.c, find/pred.c: Additional tweaks for
	-execdir/-okdir actions.
	
	* find/parser.c (new_insert_exec_ok): Disable ignore_readdir_race
	for -execdir/-okdir.
	
	* find/pred.c (pred_execdir, pred_okdir): Use state.rel_pathname
	instead of basename(pathname).  Do not add "./" prefix for
	absolute pathnames.
	
	* find/find.c (process_top_path): Treat "/" similarly to ".".

	* xargs/testsuite/xargs.posix/savannah-11865.exp,
	xargs/testsuite/xargs.posix/savannah-11865.xo, xargs/xargs.c:
	Fixed Savannah bug #11866 (not resetting number of used chars in
	the command buffer) - reported by Dimitry V. Levin

2005-02-05  James Youngman  <jay@gnu.org>

	* THANKS:
	Added thanks for Dimitry - has produced many patches, bugfixes and
	suggestions.

	* find/pred.c:
	Fixed Savannah bug #11866: typo in pred_okdir() renders it useless

	* find/pred.c:
	Savannah bug #11861: undefined symbol 'basename' on IRIX 5.3

	* NEWS, configure.in, po/be.po, po/ca.po, po/el.po, po/eo.po,
	po/fi.po, po/ga.po, po/hr.po, po/hu.po, po/ja.po, po/lg.po,
	po/ms.po, po/ro.po, po/sl.po, po/sr.po, po/zh_CN.po: Added new
	translations

	* ChangeLog: Updated from CVS prior to release of 4.2.16.

	* po/ChangeLog: Updated from CVS.

	* NEWS, configure.in: Preparing to release 4.2.16

	* po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot,
	po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po,
	po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sl.po, po/sv.po,
	po/tr.po: make update-po prior to 'make distcheck'

	* po/fetch-po-files: This is the first version we actually used.

	* find/find.c: process_top_path() fixed compilation warning.

	* find/find.c: process_top_path(): avoid processing this item if
	we can't chdir to the basename of the named file.

	* lib/Makefile.am: Always build forcefindlib.c

	* locate/locate.c: Say 'base name' rather than 'basename' in comments

	* find/pred.c, find/find.c: process_top_path(): Proper bugfix for
	correct handling of items at depth 0 (i.e. specified on the
	command line) - do an extra chdir to ensure that we're in the
	directory containing the item before calling process_path().
	Hnece also undo the previous 'quick fix' for the same problem

	* doc/find.texi:
	-execdir no longer has to treat anything as special, even at depth 0.

2005-02-03  James Youngman  <jay@gnu.org>

	* doc/find.texi, find/pred.c: When state.curdepth is 0, our
	working directory is not the directory containing the file we are
	processing.

2005-02-02  James Youngman  <jay@gnu.org>

	* find/pred.c:
	To allow compilation on cygwin, use base_name(), not basename().


2005-02-01  James Youngman  <jay@gnu.org>

	* ChangeLog: Updated from CVS log.

2005-01-31  James Youngman  <jay@gnu.org>

	* find/find.c, lib/nextelem.c, lib/nextelem.h, locate/code.c,
	locate/frcode.c, locate/testsuite/config/unix.exp,
	xargs/testsuite/config/unix.exp, xargs/xargs.c: Updated/corrected
	the email address for David MacKenzie, one of the original authors
	of findutils

	* doc/Makefile.am: The HTML version of the manual generated for
	the GNU project website has each node in a separate file, not each
	chapter in a separate file; adjust filenames accordingly

	* find/parser.c, find/pred.c, lib/savedirinfo.c:
	Removed some unused variables (patch from Dmitry V. Levin)

	* find/find.c:
	Patch from Dmitry V. Levin <ldv@altlinux.org>: Add subfs to the list
	of filesystems which are likely to be automounted.

	* m4/findlib.m4: Corrected typo (pointed out by Dmitry V. Levin).

	* find/testsuite/config/unix.exp,
	find/testsuite/find.gnu/name-period.xo,
	find/testsuite/find.gnu/posix-dflt.xo,
	find/testsuite/find.gnu/posix-h.xo,
	find/testsuite/find.gnu/posix-l.xo,
	find/testsuite/find.gnu/printf.exp,
	find/testsuite/find.gnu/printf.xo: Systems differ in the order in
	which filenames are returned by readdir.  Hence sort the output of
	'find' before comparing against the expected-output file.  We
	therefore also have the lines in the .xo files ready-sorted.

2005-01-30  James Youngman  <jay@gnu.org>

	* doc/Makefile.am:
	Added rules for extra targets that we buld to update the web site.

2005-01-29  James Youngman  <jay@gnu.org>

	* configure.in: No longer version 4.2.15 - we've changed the manual.

	* doc/find.texi:
	Clarified the txt about adding extra tests with post-processing via
	xargs, and recommend -execdir instead for security reasons.

	* doc/find.texi: Patch from Karl Berry:
	- more entries for the dir file
	- use @copying so the copyright ends up in the HTML etc. output.
	  (This is the only really important change.)
	- put @contents after the title page, for conventional toc location.
	- use @ifnottex to wrap the Top node instead of @ifinfo, for the sake of
	  HTML output, etc.

	* NEWS, configure.in, po/da.po, po/de.po, po/es.po, po/et.po,
	po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po,
	po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po,
	po/sv.po, po/tr.po: Prepared to release findutils-4.2.15

	* ChangeLog: Updated from CVS log.

2005-01-28  James Youngman  <jay@gnu.org>

	* configure.in:
	Make --enable-d_type-optimization and --enable-d_type-optimisation
	both work.

	* configure.in: Assume --enable-d_type-optimisation by default

	* find/parser.c: Indicate which features are enabled/disabled

	* locate/testsuite/config/unix.exp:
	Clean up the files left behind by the locate_textonly test

2005-01-27  James Youngman  <jay@gnu.org>

	* doc/find.texi: Documented --regex.

	* NEWS, locate/locate.1, locate/locate.c, locate/testsuite/Makefile.am, locate/testsuite/config/unix.exp, locate/testsuite/locate.gnu/regex1.exp:
	Implemented locate --regex - but needs documenting in Texinfo manual.

2005-01-25  James Youngman  <jay@gnu.org>

	* configure.in: Bumped version no.

	* doc/find.texi:
	Document --mmap and --stdio as being synonyms of -m and -s.

	* locate/locate.1:
	Document --mmap and --stdio as synonyms of -m and -s.

	* locate/locate.c:
	Document -m and -s (both no-ops) in the usage message.

	* doc/find.texi, locate/locate.1: Document -m and -s as no-ops.

	* ChangeLog: Updated for release of findutils-4.2.14.

	* NEWS, configure.in, po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
	Preparing to release findutils-4.2.14

2005-01-25  James Youngman  <jay@gnu.org>

	* NEWS, configure.in, po/da.po, po/de.po, po/es.po, po/et.po,
	po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po,
	po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po,
	po/sv.po, po/tr.po: Preparing to release findutils-4.2.14

2005-01-24  James Youngman  <jay@gnu.org>

	* Makefile.am: Work around the fact that automake-1.7 actually
	works, and correctly distributes regex.c; hence dist-hook should
	only copy gnulib/lib/regex.c if this has not already been done.

	* find/defs.h, find/find.c, find/pred.c,
	find/testsuite/Makefile.am,
	find/testsuite/find.gnu/printf-symlink.exp,
	find/testsuite/find.gnu/printf-symlink.xo,
	find/testsuite/find.gnu/xtype-symlink.exp,
	find/testsuite/find.gnu/xtype-symlink.xo: Fixes for -xtype and
	-printf %Y, which had been the wrong way around.

	* NEWS: Avoid including the find.gnu subdirectory in the
	distributed file more than once

	* locate/locate.c:
	Move the printing of the statistics into a new function, print_stats()

	* find/testsuite/Makefile.am: Avoid including the find.gnu
	subdirectory in the distributed file more than once

	* import-gnulib.sh:
	We need the regex module anyway, to allow compilation on Solaris

2005-01-23  James Youngman  <jay@gnu.org>

	* configure.in:
	Invoke gl_INCLUDED_REGEX directly to ensure successful compilation on
	systems like Solaris, which lacks those functions in libc (fixes GNU
	Savannah bug #11710).

	* locate/locate.1: -S is a synonym for --statistics

	* doc/find.texi: Documented the new -H, -L and -P options.

	* locate/locate.1, locate/locate.c: Implement options -L
	(default), -H and -P, which mean the same things as for find,
	except for the fact that the default is -L rather than -P

	* find/find.1: Corrected definition of the exit status for -quit.

	* find/find.c, find/pred.c: If DEBUG_STAT is set, issue a debug
	message when we call chdir() so that we can figure out what is
	actually being stat()ed

	* locate/updatedb.sh:
	Removed spurious newline from help message (bug report from Karl
	Berry).

	* po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot,
	po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po,
	po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po,
	Makefile.am, NEWS, configure.in, find/defs.h, find/find.c,
	find/parser.c, find/pred.c, find/tree.c, find/util.c,
	import-gnulib.sh, lib/savedirinfo.c: Merged the d_type
	optimisation code; this is disabled by default, and can be enabled
	with 'configure --enable-d_type-optimisation'

	* NEWS:
	Updated optimisation NEWS item to indicate the effect on runtime.

2005-01-22  James Youngman  <jay@gnu.org>

	* NEWS, configure.in: Prepare for release of findutils-4.2.12

	* ChangeLog: Brought up to date with recent changes.

	* Makefile.am, import-gnulib.sh, po/Makefile.in.in, po/Makevars,
	po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot,
	po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po,
	po/pl.po, po/pt_BR.po, po/remove-potcdate.sin, po/ru.po, po/sk.po,
	po/sv.po, po/tr.po: Switch to using the gnulib gettext module, to
	ensure that 'make distcheck' works with current xgettext,
	autoconf, etc.

	* find/testsuite/config/unix.exp:
	Oops, we do need to clean up after all.

2005-01-21  James Youngman  <jay@gnu.org>

	* xargs/testsuite/Makefile.am: Added name of missing input file.

	* find/testsuite/Makefile.am:
	Distribute a few files that we had forgotten about

	* xargs/testsuite/Makefile.am: Added some missing files.

	* lib/Makefile.am: Also need buildcmd.h.

	* xargs/testsuite/Makefile.am: Fixed a typo.

	* NEWS: Indicate the d_type performance improvement

2005-01-18  James Youngman  <jay@gnu.org>

	* lib/savedirinfo.h: Added on d_type_optimisation also

	* lib/savedirinfo.c: Added on branch d_type_optimisation also.

	* find/pred.c: Added assert that we actually know the file type by
	the time pred_type() is called

	* find/find.c: Always initialise state.have_stat = false when
	starting to work with a new file

2005-01-17  James Youngman  <jay@gnu.org>

	* ChangeLog: Brought up to date with recent changes.

	* NEWS: Documented the changes so far.

	* find/testsuite/find.gnu/exec-many-rtn-success.xo:
	Expected output for exec-many-rtn-success.exp

	* find/find.1:
	Indicate that -quit still ensures that pending commands are invoked

	* doc/find.texi:
	Indicate that -quit still causes partial command lines to be invoked,
	but there are some types of fatal error which leave such commands
	uninvoked.

	* find/defs.h, find/find.c, find/pred.c, find/testsuite/Makefile.am, find/testsuite/config/unix.exp:
	Fixed savannah bug  #11625 Wrong return status for -exec ... \; when command fails; also execute any pending commands when doing -quit

	* find/testsuite/find.gnu/exec-many-rtn-failure.exp, find/testsuite/find.gnu/exec-many-rtn-failure.xo, find/testsuite/find.gnu/exec-many-rtn-success.exp, find/testsuite/find.gnu/exec-one-rtn-fail.exp, find/testsuite/find.gnu/exec-one-rtn-fail.xo, find/testsuite/find.gnu/exec-one-rtn-success.exp, find/testsuite/find.gnu/exec-one-rtn-success.xo:
	Various test cases for succeeding and failing forms of -exec \; and -exec {} +

	* find/pred.c: "-exec ... {} +" always returns "true".

	* configure.in, find/defs.h, find/find.c, find/parser.c, find/pred.c, find/tree.c, find/util.c:
	Implemented d_type optimisation but not working correctly, so currently disabled

	* lib/savedirinfo.h, lib/savedirinfo.c:
	Initial implementation (temporarily disabled).

	* lib/Makefile.am: Resolved merge conflict.

	* lib/Makefile.am:
	Make sure nextelem.h is included in the list of sources.

	* find/parser.c, lib/nextelem.c, lib/nextelem.h, locate/locate.c:
	Use prototypes for next_element() to make sure it is called correctly.

2005-01-16  James Youngman  <jay@gnu.org>

	* find/find.c, find/pred.c:
	When completing incomplete multiple execs, use 'eval_tree' not 'predicates'

	* lib/buildcmd.c:
	Oops, initialise state->cmd_initial_argv_chars to zero.

	* find/find.1:
	Document the way that -execdir and -okdir will refuse to wqork if ">"
	is on $PATH.  Also document -okdir in the manpage.

	* find/parser.c:
	-execdir and -okdir are insecure if $PATH includes the current
	 directory, and so they refuse to work if the user has done that.

	* find/pred.c:
	Oops; for -exec ... {} +, pass arguments to bc_push_arg() in the right
	order.   Problem spotted by Geoff Clare.

	* TODO: Removed items which have now been done.

	* lib/buildcmd.c: Tidied up formatting of arg list for bc_do_insert

2005-01-15  James Youngman  <jay@gnu.org>

	* find/testsuite/find.gnu/printf.exp, find/testsuite/find.gnu/printf.xo:
	Added extra tests for more printf formats; patch by Andreas Metzler

	* locate/locate.c:
	Ensure that the new long options have a relevang short option too.
	Also bring usage message into line with the options actually
	supported.  Thanks to Bas van Gompel for noticing this defect.

	* locate/locate.1:
	Escape "-" in SYNOPSIS.  Thanks to Bas van Gompel for noticing this
	defect.

	* ChangeLog: Fixed typos.

	* doc/find.texi:
	Documented -execdir, and the "+" variants of -exec and -execdir.

	* find/find.1: Documented -execdir.

	* xargs/xargs.c:
	Updated to bring into line with bc_*() interface changes

	* ChangeLog: Updated with recent changes.

	* find/defs.h, find/parser.c, find/pred.c, lib/buildcmd.c, lib/buildcmd.h:
	Implemented -execdir and -okdir

	* find/defs.h, find/find.c, find/fstype.c, find/parser.c, find/pred.c, lib/buildcmd.c, lib/buildcmd.h, xargs/xargs.c:
	First working version of -exec ...+

2005-01-09  James Youngman  <jay@gnu.org>

	* find/defs.h, find/find.c, find/parser.c, find/pred.c, lib/buildcmd.c, lib/buildcmd.h, xargs/xargs.c:
	Initial implementation of -exec ..{} +, but currently disabled since not yet working

2005-01-08  James Youngman  <jay@gnu.org>

	* find/find.c: Fixed typo in comment.

	* find/defs.h, find/find.c, find/parser.c, find/pred.c:
	We now understand but do not implement -execdir (a *BSD invention, and a very useful security enhancement) and -okdir (the obvious companion to it)

	* locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, xargs/xargs.c:
	The GNU coding standard requires a space between the function name and
	its parenthesised argument list.

	* find/defs.h:
	Understand the -exec ... {} \+ construction (for multiple
	replacement).  No support yet.

	* locate/locate.1:
	Indicate that empty elements in the dbpath are treated as synonyms for
	the default database.

	* locate/locate.c:
	Support empty elements in the dbpath as synonyms for the default
	database.  These colons can be leading, trailing or in the middle of
	the string.  We no longer com,plain if the user does this.

	* lib/nextelem.c:
	If curdir_ok is 0 and an element is empty, return "" instead of NULL
	so that the caller knows to keep calling us.

	* find/find.c, find/pred.c, import-gnulib.sh, locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, xargs/xargs.c:
	Savannah bug 11517: find, xargs, locate, etc. should not hide write failures; patch from Jim Meyering

	* po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
	changed .pot creation date

	* THANKS, AUTHORS: Take into account the FSF copyright-assignments list

	* doc/find.texi:
	If -quit is used, the exit value can be nonzero if errors have occurred.

	* find/find.1:
	Removed incorrect comment about -H, -P and -follow in HISTORY.

2005-01-07  James Youngman  <jay@gnu.org>

	* lib/Makefile.am, lib/buildcmd.c, lib/buildcmd.h, xargs/xargs.c:
	Refactored xargs to use an external library function from the new file buildcmd.c

	* configure.in: no longer the same as the released 4.2.11 version

2005-01-06  James Youngman  <jay@gnu.org>

	* xargs/testsuite/inputs/lines.xi, xargs/testsuite/xargs.posix/l2.exp, xargs/testsuite/Makefile.am:
	Tests for the -L option

	* xargs/testsuite/config/unix.exp: When a test fails, show the diffs

	* xargs/testsuite/xargs.posix/l2.exp, xargs/testsuite/xargs.posix/l2.xo:
	tests for the -l option

	* xargs/testsuite/Makefile.am: Added extra test files

	* xargs/testsuite/xargs.sysv/trace.exp, xargs/testsuite/xargs.sysv/trace.xe, xargs/testsuite/xargs.sysv/trace.xo:
	Added tests for the -t option

	* xargs/testsuite/config/unix.exp, xargs/testsuite/inputs/foobar.xi, xargs/testsuite/xargs.gnu/r.exp, xargs/testsuite/xargs.gnu/r.xo, xargs/xargs.1:
	Use a blanks-only input file for cases where there is supposed to be no output

	* xargs/testsuite/inputs/blank.xi: Initial version.

	* xargs/xargs.1:
	Corrected a typo; also indicate that it's impossible to use xargs
	securely due to the race condition.

2005-01-05  James Youngman  <jay@gnu.org>

	* find/parser.c:
	Fixed Savannah bug 11495: fallthrough from -printf format processing
	from 'n' case to 'd' case.

2005-01-03  James Youngman  <jay@gnu.org>

	* doc/find.texi:
	Oops.  Had duplicated an entire section.  Fortunately this was after
	@bye, so there was no adverse effect.

	* NEWS: locate -b.

	* doc/find.texi, locate/locate.1: document locate -S

	* configure.in, doc/find.texi, locate/locate.1, locate/locate.c:
	Support locate -b as a synonym for locate --basename

	* po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
	distcheck

	* find/testsuite/config/unix.exp:
	Clean up (delete) find.out at at the end of the test.

	* NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/parser.c, find/pred.c:
	Implemented the -samefile test for find

2005-01-02  James Youngman  <jay@gnu.org>

	* ChangeLog: Updated with recent changes.

	* NEWS:
	Bas van Gompel: two-line patch to locate.c to make locate's -i and -w
	options work if -e is in use.

	* THANKS: Added Bas van Gompel.

	* locate/locate.c:
	Bas van Gompel: (visit_exists) when testing for the existence of the
	file, check the real filename [printname], not the case-converted
	filename [testname].  Really these argument names are badly chosen.

	* find/find.1, doc/find.texi:
	Improved the documentation for -perm, with plenty of examples,
	following a comment by Dan Jacobson that the comment "Symbolic modes
	use mode 0 as a point of departure" is baffling and unhelpful.

	* locate/locate.c:
	Suggestion and patch from Bas van Gompel: (new_locate): Fix display of
	negative compression ratios.

2004-12-31  James Youngman  <jay@gnu.org>

	* NEWS: Brought up to date with recent changes

	* doc/find.texi:
	Don't need to nest the "race conditions with..." sections so deeply.

	* doc/find.texi: Corrected some spelling errors.

	* doc/find.texi: Added new "Security Considerations" chapter.

2004-12-23  James Youngman  <jay@gnu.org>

	* locate/locate.c:
	Applied bugfixes from Bas van Gompel <patch-findutils.buzz@bavag.tmfweb.nl>.
	(lc_strcpy): Zero-terminate result.
	(add_visitor): Update lastinspector.
	(visit_substring_match_casefold): fix off-by-one error.
	(new_locate): Move visit_exists down to improve performance.
	(new_locate): Don't fold case when getting stats.

2004-12-19  James Youngman  <jay@gnu.org>

	* doc/find.texi:
	Indicate that "cd /; find tmp -wholename /tmp" will never match anything.

	* doc/find.texi: Documented locate --statistics.

	* locate/locate.1: Documented the --statistics option.

	* locate/locate.c: Added support for the -S option.

2004-12-12  James Youngman  <jay@gnu.org>

	* NEWS: Added a summary of the changes so far.

	* find/tree.c: Made some of the error messages more self-explanatory

	* find/pred.c: Print pointers with %p, not %x.

	* find/find.c: Moved option data into struct options.

	* find/find.1: clarifications

	* find/testsuite/find.gnu/comma.exp:
	Limit the amount of searching with maxdepth.

	* doc/find.texi: clearer description of how -prune works

	* ChangeLog: Removed duplicate entry.

	* configure.in, find/defs.h, find/find.c, find/fstype.c, find/parser.c, find/pred.c, find/tree.c, find/util.c:
	Separated ariables representing current state from variable representing option information

2004-12-11  James Youngman  <jay@gnu.org>

	* find/parser.c: Readability improvement to the usage message.

	* find/find.c: Oops.  Fixed unmatched #endif.

	* find/testsuite/find.gnu/printf.exp, find/testsuite/find.gnu/printf.xo, THANKS, configure.in, find/testsuite/Makefile.am, find/testsuite/config/unix.exp:
	Fixed Savannah bug #11280

	* find/find.c:
	Remember to set path_length and curdepth in process_top_path().

2004-12-07  James Youngman  <jay@gnu.org>

	* find/fstype.c: Use xstat() not stat() to examine things.

	* find/find.c: Explain why #ifdef EOVERFLOW.

	* find/find.c: EOVERFLOW is not defined on UNICOS.

	* NEWS: Corrected typo.

2004-12-06  James Youngman  <jay@gnu.org>

	* ChangeLog: Brought up to date.

	* NEWS, configure.in: releasing 4.2.10

	* po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
	distcheck

	* ChangeLog: Updated prior to release of finsutils-4.2.10.

	* import-gnulib.sh, find/fstype.c:
	Use gnulib's mountlist module instead of grokking it ourselves.

	* configure.in:
	Removed all the out-of-date cruft for grokking getmntent().

	* xargs/xargs.c:
	Added the -I and -L options; also -E takes an argument which is not optional.

2004-12-05  James Youngman  <jay@gnu.org>

	* README, configure.in, find/defs.h, find/find.c, find/parser.c, find/pred.c, find/tree.c:
	Allow debug output to be turned on or off by saying --enable-debug on the configure command line

	* README:
	Removed disparaging (it is now, it probably wasn't then) comment about
	the production-readiness of Automake.

	* README: Qualify remarks about POSIX compliance.

	* NEWS, configure.in: Preparation for release 4.2.9

	* po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
	distcheck

	* ChangeLog: Brought up to date.

	* find/find.c:
	Avoid duplicate error message when we cannot chdir() into a subdirectory.

	* THANKS: Added recent thankees.

	* NEWS:
	Brought up to date with respect to the current set of fixed bugs.

	* NEWS, xargs/xargs.1, xargs/xargs.c:
	Implemented POSIX options -L, -I and -E

2004-12-03  James Youngman  <jay@gnu.org>

	* find/parser.c:
	-xdev is an option, not a test.   Fixes Savannah bug 11192.

	* find/find.1, xargs/xargs.1:
	Escape dashes with a backslash (for fix Savannah bug 11189).

2004-11-27  James Youngman  <jay@gnu.org>

	* find/find.c:
	More use of safely_chdir(). Also bugfix: -L should imply -noleaf.  Be more careful about when xstat should fall back on lstat() when stat() fails.

	* find/find.1: "necessary" only has one "C".

	* find/find.1:
	If stat() fails with ELOOP, we issue a diagnostic message.

2004-11-26  James Youngman  <jay@gnu.org>

	* find/find.c: Removed some unused code.

	* Makefile.am: Don't do anything in the 'intl' subdirectory

	* find/find.c:
	Enhanced safely_chdir() to the point where the test suite passes, and report infinite loops in the directory hierarchy

	* find/defs.h:
	belt and braces; ensure that SYMLINK_NEVER_DEREF has value zero

	* find/find.1:
	Describe our strategy for detecting and reporting infinite loops

2004-11-24  James Youngman  <jay@gnu.org>

	* doc/find.texi:
	Updated the discussion of th error messages for findutils-4.2.8.

	* configure.in: Next version will be 4.2.9...

	* find/find.c:
	Don't issue a warning if we notice the mounting of a filesystem that's
	likely just to be an automounter.

	* doc/find.texi, find/find.1:
	Explain how rounding is performed for -atime and friends.

	* xargs/xargs.c:
	Once we collect enough arguments (for the value specified by the -n
	option) to do an exec(), do it immediaely instead of waiting for the
	next one to arrive.  This fixes Savannah bug #7340.

	* ChangeLog, configure.in, NEWS: Prepare to release 4.2.8.

	* NEWS: Updates for 4.2.8.

	* configure.in: check for  sys/types.h

	* find/find.c:
	If wd_sanity_check() discovers that the mount table has changed, remember the updated device number and inode so that we also consider these to be valid on the way back up.

	* find/defs.h:
	Declarations of xmalloc() and friends belong in xalloc.h, not in defs.h

	* find/parser.c: avoid signed/unsigned warning, and #include xalloc.h

	* find/fstype.c:
	Changed to alloc get_mounted_devices() to compile on Solaris

	* README-CVS:
	Automake requires GNU m4, so point out that the reader needs that.

	* find/defs.h, find/find.c, find/fstype.c:
	When wd_sanity_check() fails, enumerate the mounted devices, rather than the mounted filesystem names

	* NEWS: prepare for 4.2.8

	* configure.in:
	Look for some Solaris headers which are used by get_mounted_devices()

	* lib/Makefile.am: don't build savedirtypes yet

	* po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
	updated po files

	* m4/nullsort.m4:
	Avoid suprious output of the test data when the tests fail.

2004-11-21  James Youngman  <jay@gnu.org>

	* po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
	Messages changed again

	* ChangeLog, configure.in: Preparing to release 4.2.7.

	* NEWS: Updated for release of 4.2.7.

	* import-gnulib.sh: Also need canonicalize module.

	* find/find.c:
	When checking to see if a filesystem has changed state, use an
	absolute pathname.

	* configure.in:
	No need to pause to allow James to view his handiwork, it (allegedly)
	works now.

	* configure.in:
	Oops.  Check for setlocale() to re-enable the i18n support which was
	accidentally disabled in 4.2.5.

	* find/find.c:
	Check to see if the new directory is a transitioned mount point by
	using its ABSOLUTE name, if we can figure it out.

	* doc/find.texi:
	Added guidance on some of the error messages.  Not the most common
	ones, but the ones where the user might most benefit from some handy
	hints or an explanation of what is going on.

	* find/pred.c:
	Actually emit an error message if we fail to stat a symlink (for
	reasons other than nonexistence of the link and infinite loop).

	* doc/texinfo.tex: Updated texinfo.tex

	* NEWS, configure.in, find/find.c, find/fstype.c:
	Enable the 'Warning: filesystem XXX has recently been mounted' check on Solaris, which prevents it exiting fatally when traversing an automount mount point

	* po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
	messages changed again

	* NEWS: Implemented xargs --arg-file.

	* doc/find.texi, xargs/xargs.1, xargs/xargs.c, NEWS:
	Implemented xargs --arg-file

	* find/find.c:
	Where a filesystem was recently (un)mounted, try togive its full name

	* configure.in:
	Try to avoid requesting -lsun if we don't seem to need it (e.g. on
	UNICOS where it is not present and trying to link against it produces
	a warning).

	* find/defs.h, lib/modetype.h: Guard against multiple inclusion

	* find/fstype.c:
	We now need <mntent.h> even if we are not using getmntent() to figure
	out the type of a filesystem, because wd_sanity_check() needs to
	enumerate the system mount points.

	* configure.in: Next release will be 4.2.7.

	* find/fstype.c:
	get_mounted_filesystems() should use getmntent() if that function is
	present, rather than just if configure didn't find anything better for
	filesystem_type_uncached() to use than that.

	* find/parser.c:
	If -delete is the only action on a file, don't assume the default
	-print action too.

	* ChangeLog, configure.in, po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
	Preparation to release findutils-4.2.6.

	* find/Makefile.am, xargs/Makefile.am:
	Enable checking of support for --version and --help

	* locate/Makefile.am:
	Con't check command-line options for frcode, code or bigram

	* locate/code.c: Support --version and --help.

	* ChangeLog: *** empty log message ***

	* find/defs.h, find/find.c, find/fstype.c, lib/Makefile.am, lib/extendbuf.c, lib/extendbuf.h, NEWS:
	Avoid fatal error if automount mounts a filesystem on a directory because we chdir()ed into it

	* configure.in: Next release will be 4.2.6.

	* find/find.1:
	Indicate that the '-' flag does work for most fields.   Also provide
	an example of using the comma operator to traverse the filesystem just
	once but search for more than one thing.

	* doc/find.texi: Indicate that the '-' flag does work for most fields.

2004-11-19  James Youngman <jay@gnu.org>

	* configure.in: releaseing findutils-4.2.5

	* find/testsuite/Makefile.am, locate/testsuite/Makefile.am, xargs/testsuite/Makefile.am:
	If a directory has no Makefile.am, omit it from the parent's DIST_SUBDIRS - automake-1.9 requires this

	* po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
	updated by make distcheck

	* ChangeLog, NEWS: Updated for release 4.2.5.

	* find/find.1, doc/find.texi:
	Tell the reader that format flags may not work as they expect.

	* configure.in:
	Use the correct name for the macro gl_AC_TYPE_LONG_LONG (not
	jm_AC_TYPE_LONG_LONG).

2004-11-15  James Youngman <jay@gnu.org>

	* import-gnulib.sh:
	Avoid test -e because not all systems are POSIX-compliant (bug
	#11005).  Also don't need regex module any more if we're not building
	in intl.

	* Makefile.am, configure.in:
	These days gnulib likes to include 'libintl.h' which our very old intl/ directory lacks.   For the moment, disable use of the internal intl/ directory

	* doc/find.texi:
	Use @ref not @xref for a reference at the beginning of a sentence.

	* intl/Makefile.in:
	Make sure gnulib.lib is on the #include path (Savannah bug #11002)

	* locate/locate.c:
	Use base_name instead of basename - fixes Savannah bug 11003.

	* configure.in, find/defs.h, find/find.c, find/parser.c, find/pred.c, locate/bigram.c, locate/locate.c:
	Don't need banner to emphasise the location of the call to jy_SORTZ

2004-11-12  James Youngman <jay@gnu.org>

	* NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/parser.c, find/pred.c, find/testsuite/find.gnu/posix-dflt.exp, find/testsuite/find.gnu/posix-dflt.xo, find/testsuite/find.gnu/posix-h.exp, find/testsuite/find.gnu/posix-h.xo, find/testsuite/find.gnu/posix-l.exp, find/testsuite/find.gnu/posix-l.xo, find/util.c:
	Implemented BSD option -P and also the correct defautl behaviour of find with respect to symlinks if neither -L nor -H is specified [i.e. same as -P]

2004-11-11  James Youngman <jay@gnu.org>

	* NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/parser.c:
	Implemented -H and -L options.

	* find/util.c: Added in the -H and -L options on the usage message.

2004-11-10  James Youngman <jay@gnu.org>

	* doc/find.texi, find/find.1, find/parser.c, find/pred.c:
	Implemented %M and %A+ format specifiers

	* doc/find.texi, find/find.1, find/parser.c, find/pred.c:
	Documented the fact that only %d and %m format specifiers honour the various formatting flags

	* xargs/xargs.c:
	Get the right number of bytes in a Kilobyte (hint: it's not 1048; that
	was a typo, honest :)

	* po/pl.po: Applied Polish translations

2004-11-08  James Youngman <jay@gnu.org>

	* po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
	distcheck changed the po files again

	* locate/Makefile.am:
	Make install-data-hook honour the setting of DESTDIR so that "make
	DESTDIR=/tmp/foo install" works and puts localstater in the right
	place.

	* configure.in: We're now working on findutils-4.2.5.

	* doc/find.texi, xargs/xargs.1:
	Point out that xargs -i only splits input items at newlines

	* ChangeLog: Indicate that we released 4.2.4.

	* ChangeLog: Updated for release 4.2.4

	* NEWS, configure.in: Prepare for release of 4.2.4.

	* NEWS: Brought up to date with latest changes.

	* NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/parser.c, po/da.po, po/de.po, po/es.po, po/findutils.pot, po/gl.po, po/id.po, po/ko.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sv.po:
	Turn warning messages off by default if stdin is not a tty; allow these to be controlled explicitly by options -warn and -nowarn

	* po/et.po, po/it.po: Updated translation files

	* po/sk.po: New translation file

	* po/fr.po, po/nl.po, po/tr.po: Updated translation files

	* configure.in: Added Slovak (sk) language.

	* xargs/xargs.c:
	Enforcing a lower limit on the value specified by -s makes the test
	suite fail.  Removed that lower limit.

	* locate/Makefile.am: Oops, multilocate doesn't exist yet.

	* NEWS: *** empty log message ***

	* doc/find.texi, locate/updatedb.1, locate/updatedb.sh:
	Added option --findoptions to updatedb

	* locate/Makefile.am, locate/locatedb.5, locate/updatedb.1, xargs/xargs.1:
	Fixed section numbers in manpage titles and cross-references

	* NEWS, doc/find.texi, xargs/xargs.1, xargs/xargs.c:
	Increased the default argument length and improved POSIX compliance of the handling of out-of-range values for the -s option

2004-11-07  James Youngman <jay@gnu.org>

	* m4/Makefile.am:
	Added in the extra files we need to distribute, nullsort.m4
	order-bad.bin order-good.bin

	* doc/find.texi: Documented locate's --limit option

	* locate/locate.1, locate/locate.c:
	Implmented --limit and corrected the implementation of the -i option.

2004-11-06  James Youngman <jay@gnu.org>

	* NEWS, doc/find.texi, locate/locate.1:
	Documented --wholename and --basename and updated the NEWS file

	* README-CVS:
	Give the autogen commands in a form that you can usefully cut and paste into a shell

	* NEWS: Options --null and --count) for locate

	* lib/nextelem.c:
	Don't return '.' for an empty path element, because the path we are splitting may not be intended to contain directories

	* configure.in: we're working on findutils-4.2.4 now

	* locate/Makefile.am: Substitute @SORT_SUPPORTS_Z@

	* doc/find.texi:
	Documented new locate option --null and newline handling

	* locate/locate.1, locate/locate.c:
	New locate options --null, --wholename, --basename, --count

	* locate/frcode.c, locate/updatedb.1, locate/updatedb.sh:
	correctly handle newlines in the file names

	* configure.in: Determine if sort -z works

	* m4/nullsort.m4, m4/order-bad.bin, m4/order-good.bin:
	jy_SORTZ: a macro to determine if the system has a sort command with a working -z option

2004-11-01  James Youngman <jay@gnu.org>

	* NEWS: Fixed "find -printf '%H\n'".

	* find/find.c:
	Avoid segfault if -printf %H is used where the matched file was the default, unspecified starting point, the current directory

2004-10-31  James Youngman <jay@gnu.org>

	* find/find.1, find/parser.c: NetBSD also supports -d.

	* find/find.1, doc/find.texi:
	Documented the behaviour of -daystart and -follow in more detail

	* find/parser.c: Corrected the usage message.

	* find/parser.c:
	When deciding whether to issue a warning about options following
	non-options, ignore any options whose position affects the tests
	(i.e. -daystart and -follow).

	* find/parser.c: -daystart is a positional option like -follow.

	* find/parser.c:
	Issue a warning message if an option is specified after a test or an
	action (because the user might have believed that the behaviour of the
	option is in some way conditional on the preceding tests).

	* locate/updatedb.sh:
	Oops; removed some test code that I shouldn't have checked in.

	* locate/updatedb.sh:
	Indicate that the old locate database format will shortly be unsupported.

	* doc/find.texi:
	Use @direntry instead of hard-coding START-INFO-DIR-ENTRY inside @ifinfo.

	* locate/updatedb.1: Updated default location of locatedb file.

	* README-alpha:
	Updated to give correct FTP location and to not talk about "test"
	versions of automake, which are no longer required.

	* locate/updatedb.sh:
	Incorporated the default list of filesystems to avoid from the Debian
	package.  Also added /afs and /sfs to the default pruned paths.

	* configure.in: Released findutils 4.2.3

	* po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sv.po, po/tr.po:
	did make distcheck, which updates these files

	* find/defs.h, find/fstype.c:
	Use const qualifier in arguments to filesystem_type() to allow callers with const variables to use them

	* ChangeLog: Updated.

	* NEWS: Added new news.

	* find/find.c:
	Extra diagnositcs for the case where we have the error "%s changed
	during execution of %s" - that is when we chdir back to the parent
	directory only to find that it has changed.

2004-10-30  James Youngman <jay@gnu.org>

	* .cvsignore, NEWS, doc/find.texi, find/defs.h, find/find.1, find/parser.c, find/pred.c:
	Implemented the -quit action

	* NEWS, doc/find.texi, find/find.1, find/parser.c, find/pred.c:
	Refactored time handling routines in preparation for support of absolute timestamp comparison predicates

	* locate/locate.c:
	Applied Savannah patch #2952 ("getline off-by-one bugfix").

	* NEWS, doc/find.texi, find/defs.h, find/find.1, find/parser.c, find/pred.c:
	Added -delete action (Savannah patch #3454 with additions)

	* locate/locate.c:
	Applied Savannah patch #2692 (allowing get_short to process negative integers).

	* find/find.c:
	If we are iossuing an error message because $FIND_BLOCK_SIZE is set,
	ignore the setting of errno.

	* find/parser.c: More fixes for pedantic compiler warnings

	* NEWS, find/parser.c, find/tree.c: Eliminated some compiler warnings

	* find/find.c, find/parser.c, find/pred.c:
	Various fixes for compiler warninga sbout unreachable code or unused function arguments

	* intl/plural.y: Silence compiler warning about unused argument.

	* locate/testsuite/Makefile.am:
	Subdirectory "inputs" does not exist, so remove it from DIST_SUBDIRS.

	* locate/locate.c:
	Corrected the explanation of why we have to use no parentheses around
	the String argument to the N_ macro in its expansion.

	* configure.in: Nextr release is 4.2.3.

	* configure.in: IOndicate this is no longer the pristine release.

	* NEWS:
	Oops, comments for release 4.2.0 should have said 20480 bytes, not 2480.

	* lib/listfile.c:
	The -ls predicate should not truncate usernames.  Fixes Savannah bug #10800.

	* find/fstype.c, locate/locate.c:
	Fixes for Savannah bug #3727 (Intel icc compilation errors).

2004-10-25  James Youngman <jay@gnu.org>

	* doc/find.texi, find/find.1, find/parser.c, find/pred.c:
	Support -printf %D, which prints the device number of the containing filesystem

	* locate/updatedb.sh:
	Avoid confusion between James Woods and James Youngman, by using the
	disambiguating surname.

	* find/parser.c: Use RE_ICASE instead of re->translate.

	* configure.in, find/parser.c, find/pred.c, xargs/xargs.c:
	No need to #define _GNU_SOURCE if we use gl_INIT.

2004-10-24  James Youngman <jay@gnu.org>

	* ChangeLog: Prepared to release findutils-4.2.2.

	* ChangeLog, NEWS, po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sv.po, po/tr.po:
	Updates prior to release of 4.2.2

	* NEWS: Updated with news for findutils-4.2.2.

	* find/testsuite/config/unix.exp, lib/forcefindlib.c, lib/listfile.c, lib/modetype.h, lib/nextelem.c, locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, locate/locatedb.h, locate/testsuite/config/unix.exp, locate/updatedb.sh, xargs/testsuite/config/unix.exp, xargs/xargs.c, NEWS, find/defs.h, find/find.c, find/fstype.c, find/parser.c, find/pred.c, find/tree.c, find/util.c, import-gnulib.sh:
	Corrected typo in the address of the FSF office

	* lib/strspn.c: Updated FSF address.

	* m4/.cvsignore: 'cvs status' should ignore Makefile.in

	* m4/Makefile.am, Makefile.am, NEWS, README-CVS, configure.in, doc/texinfo.tex, find/defs.h, find/fstype.c, find/parser.c, find/pred.c, import-gnulib.sh, intl/bindtextdom.c, intl/dcgettext.c, intl/dcigettext.c, intl/dcngettext.c, intl/dgettext.c, intl/dngettext.c, intl/explodename.c, intl/finddomain.c, intl/gettext.c, intl/intl-compat.c, intl/l10nflist.c, intl/loadmsgcat.c, intl/localcharset.c, intl/localealias.c, intl/ngettext.c, intl/plural.y, intl/textdomain.c, lib/Makefile.am, lib/forcefindlib.c, lib/listfile.c, lib/nextelem.c, lib/strspn.c, lib/waitpid.c, locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, m4/findlib.m4, po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sv.po, po/tr.po, xargs/xargs.c:
	Use gnulib-tool --import to import the gnulib code, rather than the odd way we were doing it before

	* find/find.c, find/fstype.c, find/parser.c, find/pred.c, find/tree.c, find/util.c, locate/code.c, locate/locate.c, xargs/xargs.c:
	Work round an apparent compiler bug in HP-UX 11.23 for
	ia64

	* locate/locate.c:
	Work around what appears to be a C compiler bug in HP-UX 11.23 for
	ia64.

	* INSTALL, depcomp, install-sh, missing, mkinstalldirs:
	Updated from automake

	* locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, xargs/xargs.c, find/find.c:
	Avoid use of exit() within main, to silence warnings about unreachable code

2004-10-22  James Youngman  <jay@gnu.org>

	* doc/find.texi: Syntax corrections.

	* doc/find.texi: Indicate that "-exec {}+" is not yet supported.

	* find/find.1: Indicate that "{}+" is not yet supported.

	* find/testsuite/find.gnu/name-period.xo, find/testsuite/find.gnu/name-period.exp, find/find.1, doc/find.texi:
	The -name predicate must allow '*' to match '.foo' as demanded by IEEE
	Std 1003.2-1992 Interpretation #126.

	* find/pred.c:
	Remove use of FNM_PERIOD for -name as demanded by IEEE Std 1003.2-1992
	Interpretation #126

	* find/parser.c: Fix for compilation (on AIX 4.3) with GCC 2.x.

	* xargs/xargs.c:
	Changed the erorr message issued when there is an unmatched quote to
	point out that the user might have wanted to use the -0 option instead.

2004-10-17  James Youngman  <jay@gnu.org>

	* configure.in:
	Define intmax_t if it is not already defined - allows parser.c to compile on AIX 4.3

	* configure.in:
	Adjust version number to indicate that this s/w has moved on since the
	4.2.1 release.

	* configure.in: preparing to release 4.2.1

	* ChangeLog: updated with current changes

	* README-CVS: Updated to go with newer version of gnulib.

	* po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sv.po, po/tr.po:
	preparation for release

	* NEWS: Mention the changes to "trap".

	* NEWS: Brought up to date.

	* import-gnulib.sh:
	Use xalloc-die module from gnulib, since that has now been split out

	* find/parser.c:
	Check fnmatch() when other predicates that rely on fnmatch() are used.

	* find/parser.c: bug #10701: find needs fnmatch sanitycheck on startup

2004-10-16  James Youngman <jay@gnu.org>

	* import-gnulib.sh:
	Switch to requirement for GNU fnmatch because it supports FNM_CASEFOLD.

	* locate/updatedb.sh:
	Bug #9465: use of signal numbers for 'trap' is deprecated.  Should use
	names instead.  See
	http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html,
	which indicates that support for signal numbers is optional, while
	support for signal names is mandatory.

	* configure.in:
	Indicate that this is the CVS version (once again) now that findutils
	4.2.0 has been released.

	* ChangeLog, configure.in, po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sv.po, po/tr.po:
	findutils 4.1.20 check-in for tagging

2004-10-02  James Youngman <jay@gnu.org>

	* po/Makefile.in.in:
	Search in $(top_srcdir) for mkinstalldirs, since that's where we keep it.

	* NEWS: Brought up to date, organised more clearly, and tidied up.

	* NEWS: brought up to date with recent changes

	* locate/testsuite/config/unix.exp, locate/testsuite/locate.gnu/ignore_case1.exp, locate/testsuite/locate.gnu/ignore_case3.exp, locate/updatedb.sh:
	Added new option --changecwd to updatedb so that the 'cd /' which it does can be compatible with the requirements of the test suite.  Specifically, the test suite relies on being able to use relative pathnames

	* find/pred.c:
	Fixed usage of human_readable() in '%k' format specifier to fix a bug
	reported by Dmitry V. Levin (arguments to human_readable() were
	specified in the wrong order, which resulted in a floating-point
	error).

2004-08-08  James Youngman <jay@gnu.org>

	* locate/updatedb.sh:
	cd to / to avoid inability to examine the current directory if we're
	invoked via cron (and hence in root's home directory for example).

	* doc/find.texi, find/find.1:
	Deprecate -path and -ipath in favour of -wholename and -iwholename

	* find/parser.c:
	As per RMS's suggestion, deprecate -path and -ipath in favour of
	-wholename and -iwholename.

	* locate/locate.c:
	Fixed Savannah bug #9923, in which get_short() returns large positive
	ints when it should be returning negative shorts.

	* xargs/xargs.1:
	Applied documentation improvements suggested by Dan Jacobson
	<jidanni@jidanni.org>.

	* xargs/xargs.c:
	Don't check size_of_environment against arg_max since that causes the
	test suite to fail.

	* xargs/xargs.1, xargs/xargs.c: Better documentation for the -i option

2004-05-03  James Youngman <jay@gnu.org>

	* find/find.1:
	document the various suffixes for -size and also the new 
	option -ignore_readdir_race

	* locate/locate.c:
	Fixes Savannah bug #8623 (failure to check consistency of data 
	read from locate database)

	* locate/updatedb.sh:
	Resolves Savannah bug 4380, that updatedb generates an empty
	database if one of the commands fails

	* NEWS: Talk about -ignore_readdir_race

	* doc/find.texi:
	Documented -ignore_readdir_race and -noignore_readdir_race

	* find/find.c:
	-ignore_readdir_race should have no effect if the reason for the
	 failure of stat(2) was anything other than ENOENT.

	* find/defs.h, find/find.c, find/parser.c:
	Fixed Savannah bug 4391 (readdir race condition leading to 
	spurious error messages)

2004-04-24  James Youngman <jay@gnu.org>

	* README-CVS: Corrected the instructions for getting gnulib via CVS.

2004-04-13  James Youngman <jay@gnu.org>

	* doc/find.texi:
	Actioned Savannah bug #8558 (find complains when it tries to recurse
	into directories that it had removed).

2004-03-13  James Youngman <jay@gnu.org>

	* ChangeLog: Updated from checkin comments.

	* find/find.c:
	Oops, there is no access to the predicate name table if DEBUG is 
	not #defined.

	* find/parser.c:
	Detect arithmetic overflow (poorly) in insert_time(), which diagnoses
	the failure to handle large arguments to -mtime.  The existing code
	does careful computation and then bungs the value into a time_t, which
	ruins all our careful effort.  The new code is not a great
	improvement.  We just check the result to detect overflow, rather than
	actually avoiding the overflow.

	* find/find.c:
	Fixed Debian bug #185202 by checking for any trailing predicates after
	the top-level invocation of get_expr() has done its work.

	* locate/locate.1, xargs/xargs.1:
	Fixed Debian bug 175372, inappropriate 'L' suffixes on manual 
	page section indicators

	* find/find.1:
	Removed "L" suffixes from manual page section indicators, to fix
	Debian bug 175372.

	* debian/updatedb.conf:
	Updated with list of filesystems from current Debian release.  This
	includes devfs, for example.

	* xargs/xargs.1:
	Modified documentation of "-s" option to take into account the fix for
	Debian bug #176201.

	* xargs/xargs.c:
	Fixed Debian bug #176201, "xargs enviroment size limited to 20k", by
	reading a patch offered by Bob Proulx and implementing something
	substantially similar myself.

2004-01-03  James Youngman  <jay@gnu.org>

	* xargs/xargs.c:
	Indicate that prep_child_for_exec() fixes Savannah bug #3992.

	* xargs/xargs.c:
	Attach the stdin of xargs' child process to /dev/null so that if it
	tries to read from its stdin it doesn't consume any of the list of
	files that xargs is trying to use.

	* find/find.1:
	Documented that the -regex option follows Gnulib's re_match() 
	implementation.

	* NEWS, locate/locate.c: Applied Savannah patch 2108

	* xargs/xargs.c: Applied Savannah patch 1500

	* find/find.1, doc/find.texi:
	Improved the documentation for the %k and %b format specifiers to
	-printf (Savannah bug #5034).  Also pointed out that this handling is
	different to that used by the "b" and "k" suffixes with "-size".

	* find/find.1: Improved the documentation for %k (Savannah bug #5034).

	* find/find.1:
	Improved the documentation for -print0 in the manpage, fixing Debian
	bug 111143.

	* README-CVS, find/pred.c, lib/listfile.c:
	Brought up-to-date with change in gnulib's human.c - we no longer 
	use human_readable_inexact(), because it is no longer provided.

2003-08-08  James Youngman  <jay@gnu.org>

	* find/find.1:
	Documented the fact that -printf also supports the '\0' escape code.
	Added "STANDARDS CONFORMANCE" section.

2003-08-02  James Youngman  <jay@gnu.org>

	* find/find.1:
	Explain that braces are not special when performing filename matching
	with -name.

	* find/find.1:
	added example of the use of -exec to the EXAMPLES section

	* find/fstype.c, locate/locate.c:
	Savannah bug #4295 - implicit declarations of ctype.h functions

	* locate/locate.c:
	Savannah bug #4279 - missing newline on locate help message

	* find/find.1, xargs/xargs.1:
	Improved discussion of the -print0 option of find and the -0 option of xargs

2003-06-26  James Youngman  <jay@gnu.org>

	* import-gnulib.sh:
	Remove reference to nonexistent module "basename" ("dirname" exists
	and we already use that).

2003-06-21  James Youngman  <jay@gnu.org>

	* doc/find.texi:
	Indicate that xargs stops immediately if a command exits with status 255

	* xargs/xargs.1:
	Document the fact that xargs exits immediately with an error message
	if the command it executes exits with a status of 255.

2003-06-18  James Youngman  <jay@gnu.org>

	* find/find.1:
	Indicate that -fls and friends always create their output file

2003-06-16  James Youngman  <jay@gnu.org>

	* ChangeLog, find/find.1, locate/locate.1, locate/locatedb.5, locate/updatedb.1, xargs/xargs.1:
	Added BUGS section to manual pages.   This section includes information about known bugs and how to report new bugs.

	* AUTHORS: Identify the current maintainer.

	* TODO: Removed the TODO items which have now been done.

	* THANKS: Added Bruno Haible and Bob Proulx.

	* xargs/xargs.c: xargs/xargs.c (DO_MULTIBYTE): New macro.
	(mbstrstr): New function.
	(do_insert): Use it instead of strstr.

	* config.guess, config.sub:
	Use config.guess and config.sub from automake

	* find/fstype.c:
	Bruno Haible: (fstype_to_string) Don't define this function if
	HAVE_F_FSTYPENAME_IN_STATFS is defined.

	* configure.in:
	Bruno Haible: Prefer the 4.4BSD API (if present) to the 4.3BSD API,
	because some 4.4BSD systems have <mntent.h> but no /etc/mtab file.

	* doc/find.texi, find/find.1:
	Applied patch 1498 (documenting the backslash escape sequence)

	* locate/updatedb.sh: Applied (my own version of) Savannah patch 1601.

	* doc/find.texi:
	Applied Savannah patch #1547 (document the fact that printf
	field-width specifiers are supported).

	* xargs/xargs.c:
	Applied Savannah patch #1499 (adds final newline to usage message).

2003-06-14  James Youngman  <jay@gnu.org>

	* NEWS, configure.in:
	Updated version number to 4.2.0-CVS [not ready for release yet]

	* configure.in, doc/.cvsignore, doc/Makefile.in, find/.cvsignore, find/Makefile.am, find/Makefile.in, find/defs.h, find/find.c, find/fstype.c, find/parser.c, find/pred.c, find/testsuite/.cvsignore, find/testsuite/Makefile.in, find/testsuite/config/unix.exp, find/tree.c, find/util.c, import-gnulib.sh, intl/bindtextdom.c, intl/dcgettext.c, intl/dcigettext.c, intl/dcngettext.c, intl/dgettext.c, intl/dngettext.c, intl/explodename.c, intl/finddomain.c, intl/gettext.c, intl/intl-compat.c, intl/l10nflist.c, intl/loadmsgcat.c, intl/localcharset.c, intl/localealias.c, intl/ngettext.c, intl/plural.y, intl/textdomain.c, lib/.cvsignore
	also need stpcpy (e.g. for Solaris)

	* intl/dcigettext.c:
	plural_lookup: don't use a variable called "index", because we may
	have done "#define strchr index", in which case using a variable
	called index will prevent us calling strchr(p, ch) in the same scope.

	* find/defs.h, find/find.c, find/fstype.c, find/parser.c, find/pred.c, find/testsuite/config/unix.exp, find/tree.c, find/util.c, import-gnulib.sh, lib/Makefile.am, lib/listfile.c, lib/modetype.h, lib/nextelem.c, locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, locate/locatedb.h, locate/testsuite/config/unix.exp, locate/updatedb.sh, xargs/testsuite/config/unix.exp, xargs/xargs.c:
	Updated copyright years and the address of the FSF

	* aclocal.m4, config.h.in, configure:
	Removed files that are generated from other files (e.g. configure)

	* NEWS: Updated NEWS file for 4.1.20.

	* configure.in, lib/Makefile.am, po/POTFILES.in, po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sv.po, po/tr.po:
	Updates to the i18n files to ensure that 'make dist' succeeds

	* lib/posix/.cvsignore, lib/posix/Makefile.am,
	lib/posix/Makefile.in, lib/posix/regex.h, lib/strftime.c,
	lib/strncasecmp.c, lib/strspn.c, lib/strstr.c, lib/strtol.c,
	lib/strtoul.c, lib/strtoull.c, lib/strtoumax.c, lib/wait.h,
	lib/waitpid.c, lib/xalloc.h, lib/xgetcwd.c, lib/xmalloc.c,
	lib/xstat.in, lib/xstrdup.c, lib/xstrtol.c, lib/xstrtol.h,
	lib/xstrtoul.c, lib/xstrtoul.h, lib/xstrtoumax.c, lib/yesno.c,
	locate/Makefile.am, locate/Makefile.in, locate/locate.c,
	locate/testsuite/Makefile.in, m4/.cvsignore, m4/ChangeLog,
	m4/Makefile.am, m4/Makefile.am.in, m4/Makefile.in, m4/README,
	m4/afs.m4, m4/assert.m4, m4/c-bs-a.m4, m4/check-decl.m4,
	m4/codeset.m4, m4/d-ino.m4, m4/d-type.m4, m4/error.m4,
	m4/fnmatch.m4, m4/fnmatchcase.m4, m4/fstypename.m4, m4/getline.m4,
	m4/gettext.m4, m4/glibc.m4, m4/glibc21.m4, m4/iconv.m4,
	m4/inttypes_h.m4, m4/isc-posix.m4, m4/jm-glibc-io.m4,
	m4/jm-macros.m4, m4/jm-mktime.m4, m4/lcmessage.m4, m4/libintl.m4,
	m4/link-follow.m4, m4/ls-mntd-fs.m4, m4/lstat-slash.m4,
	m4/lstat.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/memcmp.m4,
	m4/prereq.m4, m4/progtest.m4, m4/readdir.m4, m4/realloc.m4,
	m4/regex.m4, m4/st_dm_mode.m4, m4/st_mtim.m4, m4/stat.m4,
	m4/strerror_r.m4, m4/strftime.m4, m4/timespec.m4, m4/uintmax_t.m4,
	m4/ulonglong.m4, m4/xstrtoumax.m4, xargs/Makefile.am,
	xargs/Makefile.in, xargs/testsuite/Makefile.in,
	find/testsuite/Makefile.in, lib/.cvsignore, lib/Makefile.am,
	lib/Makefile.in, lib/alloca.c, lib/ansi2knr.1, lib/ansi2knr.c,
	lib/argmatch.c, lib/argmatch.h, lib/basename.c, lib/basename.h,
	lib/dirname.c, lib/dirname.h, lib/error.c, lib/error.h,
	lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/fnmatch.c,
	lib/fnmatch.h, lib/getline.c, lib/getline.h, lib/getopt.c,
	lib/getopt.h, lib/getopt1.c, lib/human.c, lib/human.h,
	lib/idcache.c, lib/malloc.c, lib/memcmp.c, lib/memcpy.c,
	lib/memset.c, lib/mktime.c, lib/modechange.c, lib/modechange.h,
	lib/pathmax.h, lib/quotearg.c, lib/quotearg.h, lib/realloc.c,
	lib/regex.c, lib/regex.h, lib/rpmatch.c, lib/savedir.c,
	lib/savedir.h, lib/stpcpy.c, lib/strcasecmp.c, lib/strdup.c,
	find/Makefile.am, find/Makefile.in, find/find.c, find/pred.c:
	Updated to work with current version of gnulib

	* import-gnulib.sh: New file.

	* config.h.in, configure, configure.in, doc/Makefile.in, import-gnulib.sh:
	Updated to work with current version of gnulib

	* README-CVS: New file.

	* Makefile.am, Makefile.in, README-CVS, aclocal.m4:
	Updated to work with current version of gnulib

2001-06-09  Kevin Dalley  <kevin@seti.org>

	* intl/plural.c:
	Changes the location of bison.simple after running bison on local
	machine

	* ChangeLog: *** empty log message ***

	* Makefile.in, aclocal.m4, config.h.in, configure,
	doc/Makefile.in, find/Makefile.in, find/testsuite/Makefile.in,
	lib/Makefile.in, lib/posix/Makefile.in, locate/Makefile.in,
	locate/testsuite/Makefile.in, m4/Makefile.in, xargs/Makefile.in,
	xargs/testsuite/Makefile.in: Updates mostly from gettext-0.10.38

	* ABOUT-NLS: * ABOUT-NLS: updated from gettext-0.10.38.

	* configure.in: * configure.in: add tr to ALL_LINGUAS.

	* intl/config.charset, intl/dcigettext.c, intl/dcngettext.c,
	intl/dngettext.c, intl/libgnuintl.h, intl/localcharset.c,
	intl/locale.alias, intl/ngettext.c, intl/plural.y,
	intl/ref-add.sin, intl/ref-del.sin: updated from gettext-0.10.38

	* intl/cat-compat.c, intl/linux-msg.sed, intl/po2tbl.sed.in,
	intl/xopen-msg.sed, m4/ChangeLog: *** empty log message ***

	* m4/jm-macros.m4:
	* jm-macros.m4 (jm_MACROS): remove jm_ICONV, which is replaced by
	AM_ICONV, which is imported from gettext-0.10.38.  removed
	jm_GLIBC21, which is required in AM_GNU_GETTEXT, which is
	imported from gettext-0.10.38.

	* po/stamp-cat-id: 	* stamp-cat-id: Remove file.

	* po/Makefile.in.in: 	* Makefile.in.in: Upgrade to gettext-0.10.38.

	* po/ChangeLog: 	* cat-id-tbl.c: Remove file.

	* po/de.po, po/es.po, po/et.po, po/fr.po:
	* fr.po, et.po, es.po, de.po: updated translations to
	findutils-4.1.7.

	* po/tr.po: * tr.po:  New Turkish translation.

	* m4/ChangeLog: *** empty log message ***

	* intl/dgettext.c, intl/explodename.c, intl/finddomain.c,
	intl/gettext.c, intl/gettext.h, intl/gettextP.h,
	intl/hash-string.h, intl/intl-compat.c, intl/l10nflist.c,
	intl/libgettext.h, intl/loadinfo.h, intl/loadmsgcat.c,
	intl/localealias.c, intl/plural.c, intl/textdomain.c,
	intl/ChangeLog, intl/Makefile.in, intl/VERSION,
	intl/bindtextdom.c, intl/dcgettext.c: Updated from gettext-0.10.38

	* m4/Makefile.am:
	reflects addition of codeset.m4 from gettext-0.10.38, automatically
	generated.

	* m4/codeset.m4, m4/gettext.m4, m4/glibc21.m4, m4/iconv.m4,
		m4/isc-posix.m4, m4/lcmessage.m4, m4/progtest.m4: *
		progtest.m4, lcmessage.m4, isc-posix.m4, iconv.m4,
		glibc21.m4, gettext.m4, codeset.m4: updated from
		gettext-0.10.38.

	* ChangeLog: *** empty log message ***

	* THANKS: added "Gerrit P. Haase" <gerrit.haase@t-online.de>

	* m4/ChangeLog, locate/testsuite/.cvsignore,
	xargs/testsuite/.cvsignore, config.h.in, configure, aclocal.m4,
	doc/.cvsignore: *** empty log message ***

	* m4/jm-macros.m4: 	* jm-macros.m4 (jm_MACROS): add jm_FSTYPENAME

	* doc/Makefile.in: *** empty log message ***

	* doc/Makefile.am:
	* doc/Makefile.am (MOSTLYCLEANFILES): add find.cps, which is
	created by dvips.  This should be taken care of by automake, but
	the code is commented out.

2001-06-09  Kevin Dalley  <kevin@seti.org>

	* ABOUT-NLS: updated from gettext-0.10.38.

	* configure.in: add tr to ALL_LINGUAS.

	* doc/Makefile.am (MOSTLYCLEANFILES): add find.cps, which is
	created by dvips.  This should be taken care of by automake, but
	the code is commented out.

2001-06-05  Kevin Dalley  <kevin@seti.org>

	* locate/updatedb.sh: replace "whoami" with "id -u" when testing
	for root.

2001-06-04  Kevin Dalley  <kevin@seti.org>

	* locate/testsuite/Makefile.am (DIST_SUBDIRS): remove second
	instance of DIST_SUBDIRS.

	* locate/Makefile.am (install-data-hook): changed install target
	to install-data-hook, which still installs other files.

	* doc/Makefile.am (MOSTLYCLEANFILES): added find.cps, which should
	probably be handled by automake.

	* doc/mdate-sh: removed file in doc directory.  It now exists only
	in top_srcdir, but this changed required a patch to automake.

2001-05-20  Kevin Dalley  <kevin@seti.org>

	* Version 4.1.7
	
	* lib/Makefile.am (EXTRA_DIST): add strcasecmp.c

	* find/testsuite/Makefile.am (EXTRA_DIST): new tests:
	find.gnu/name-opt.exp find.gnu/perm.exp find.gnu/perm.xo
	find.gnu/prune-default-print.exp find.gnu/prune-default-print.xo

	* configure.in: update to 4.1.7

	* config.sub, config.guess: upgraded to recent versions of
	config.sub and config.guess.

	* locate/updatedb.sh: Add space to "#! /bin/sh"

	* configure.in: Add id to ALL_LINGUAS

	* lib/Makefile.am (EXTRA_DIST):  getline.[ch] added
	(libfind_a_SOURCES): getline.[ch] removed since getline.c is not
	always needed.

2001-05-20  Lionel CONS <lionel.cons@cern.ch>

	* find/find.c: Fixed security holes.  1.  There is a race
	condition between the lstat() to detect a symbolic link and the
	actual chdir().  2.  An attacker can move directories while find
	is _inside_ so that chdir(..) goes out of the intended file tree.

	* lib/modetype.h: support for Solaris door files is added.

	* lib/filemode.c: S_ISDOOR is undef'ed if STAT_MACROS_BROKEN

	* find/pred.c (pred_type): -D option (for Solaris door files) is
	added.

	* find/parser.c (insert_type):  -D option (for Solaris door files)
	is added. 

	* find/find.1: -D option (for Solaris door files) is documented

	* doc/find.texi (Type): -D option (for Solaris door files) is
	documented

2001-05-02  Kevin Dalley  <kevin@seti.org>

	* configure.in: Change AC_CHECK_MEMBERS to conform to new
	autoconf.  Add Danish.

2001-01-20  Kevin Dalley  <kevin@seti.org>

	* doc/find.texi (Adding Tests): Place space in "#! /bin/sh".

	* find/testsuite/find.gnu/prune-default-print.xo,
	find/testsuite/find.gnu/prune-default-print.exp: test for "find
	. -prune" which passes after changes.  Also see name-opt.exp.

	* find/util.c (get_new_pred):
	* find/tree.c (set_new_parent):
	* find/parser.c (various parse functions):
	* find/find.c (main): 
	(default_prints): new function 
	* find/defs.h (struct predicate): added no_default_print
	side_effects are no separated from no_default_print.  predicates
	which cause side effects should not be reordered (optimized).
	predicates which cause printing should have printing turned off.
	Printing statements also cause side effects.

2000-10-29  Bruno Haible <haible@ilog.fr>

	* locate/code.c (main), doc/find.texi: improve handling of
	non-ASCII characters used old format.

2000-10-21  Paul Eggert  <eggert@twinsun.com>

	If open + fchdir fails, fall back on xgetcwd + chdir.
	The old code tested for this at compile-time,
	but SunOS 4.1.4 fchdir can fail at run-time.

	* find/defs.h (fchdir): Define to -1 if not available.
	* find/defs.h (starting_dir, starting_desc):
	Always declare.  starting_dir now points to const.
	* find/find.c (starting_dir, starting_desc): Likewise.
	* find/find.c (starting_dir):
	Now "." if starting_desc is nonnegative, for benefit of diagnostics.
	(main, process_top_path, process_dir):
	If open + fchdir fails, fall back on xgetcwd + chdir.
	* find/pred.c (launch): Likewise.

2000-10-20  Kevin Dalley  <kevin@seti.org>

	* xargs/xargs.c, locate/updatedb.sh, locate/locate.c (usage),
	find/parser.c (parse_help): add bug reporting address to help

2000-10-13  Kevin Dalley  <kevin@seti.org>

	* depcomp, lib/depcomp: depcomp moved from lib to .

2000-10-11  Kevin Dalley  <kevind@rahul.net>

	* Version 4.1.6
	
	* locate/testsuite/config/unix.exp: set PRUNEFS to "" for the
	testsuite. 

2000-10-10  Bruno Haible <haible@ilog.fr>

	* lib/Makefile.am (libfind_a_SOURCES): added yesno.c

	* lib/yesno.c, lib/rpmatch.c: new files.

	* find/pred.c: use function yesno().

2000-10-10  Kevin Dalley  <kevind@rahul.net>
	
	* locate/testsuite/Makefile.am: Added missing \ at end of
	EXTRA_DIST lines.

	* locate/testsuite/locate.gnu/ignore_case3.xo,
	locate/testsuite/locate.gnu/ignore_case3.exp,
	locate/testsuite/locate.gnu/ignore_case2.exp,
	locate/testsuite/locate.gnu/ignore_case1.xo,
	locate/testsuite/locate.gnu/ignore_case1.exp: place locatedb
	inside tmp directory, add subdir directory under tmp.

	* locate/testsuite/config/unix.exp: clean up tmp after test is
	finished. 

2000-10-10  Kevin Dalley  <kevind@rahul.net>

	* locate/testsuite/config/unix.exp (Repository): 

2000-10-09  Kevin Dalley  <kevind@rahul.net>

	* lib/fnmatch.c, lib/fnmatch.h: reverted to older version of
	fnmatch which works with Solaris.

	* locate/testsuite/config/unix.exp: dejagnu unix.exp

	* xargs/testsuite/config/unix.exp: remove temporary file

	* xargs/xargs.c: spelling correction

	* m4/prereq.m4: updated and changed some macros

	* m4/jm-macros.m4: replaced jm_FUNC_FNMATCH with
	kd_FUNC_FNMATCH_CASE_REPL 

	* m4/timespec.m4, m4/strerror_r.m4, m4/mbstate_t.m4,
	m4/largefile.m4, m4/gettext.m4, m4/fnmatchcase.m4, m4/d-type.m4,
	m4/d-ino.m4, m4/c-bs-a.m4: new m4 macros.

	* m4/Makefile.am: add fnmatchcase.m4 and mbstate_t.m4

	* locate/testsuite/locate.gnu/ignore_case3.xo,
	locate/testsuite/locate.gnu/ignore_case3.exp,
	locate/testsuite/locate.gnu/ignore_case2.xo,
	locate/testsuite/locate.gnu/ignore_case2.exp,
	locate/testsuite/locate.gnu/ignore_case1.xo,
	locate/testsuite/locate.gnu/ignore_case1.exp,
	locate/testsuite/config/unix.exp: tests related to "--ignore-case"
	option.

	* locate/testsuite/locate.gnu: testsuite directory

	* locate/testsuite/Makefile.am (Repository): 

	* locate/testsuite: add directory for locate testsuite

	* po/findutils.pot: updated file

	* po/sv.po, po/ru.po, po/pt_BR.po, po/pl.po, po/nl.po, po/ko.po,
	po/it.po, po/gl.po, po/fr.po, po/et.po, po/es.po, po/de.po:
	updated various po files.

	* locate/updatedb.sh: export TMPDIR, which is used by child
	processes.

	* locate/locate.1, locate/locate.c:  add "--ignore-case" option.

	* locate/Makefile.am: add testsuite subdirectory

	* find/testsuite/find.gnu/perm.xo,
	find/testsuite/find.gnu/perm.exp,
	find/testsuite/find.gnu/name-opt.xo,
	find/testsuite/find.gnu/name-opt.exp: added test suites

	* configure.in: add locate/testsuite/Makefile

	* doc/find.info*: removed from repository

	* doc/find.texi: add documentation for "-i" option.

	* aclocal.m4: removed from repository, as it is generated.

	* find/pred.c: fixes problem with "find -perm -0100".

	* lib/lstat.c, lib/stat.c: removed from repository.  These files
	are generated from lib/xstat.in.

2000-08-24  Kevin Dalley  <kevind@rahul.net>

	* doc/find.texi (Invoking xargs): changed @var{-s} to @samp{-s}.

2000-05-13  Kevin Dalley  <kevind@rahul.net>

	* find/tree.c (opt_expr): move iname and ipath to the front of the
	list of arguments.

	* doc/find.texi (Directories): changed wording for "-prune".

	* find/parser.c (parse_prune): set side_effects to true, to
	prevent prune from being moved in opt_expr.

2000-04-12  Kevin Dalley  <kevind@rahul.net>

	* doc/find.texi, doc/permi.texi: fix spellings, add LocalWords.

	* lib/Makefile.am: put getline.c back into libfind_a_SOURCES,
	since getstr is needed.

	* Version 4.1.5
	
	* po/POTFILES.in: updated list of files, updated po files.


2000-04-02  Paul Eggert  <eggert@twinsun.com>

	Add support for large files, and port to Solaris 8 and earlier
	versions.

	* lib/human.c (getenv): Depend on NEED_GETENV_DECL, not
	HAVE_DECL_GETENV.

	* lib/strftime.c (my_strftime): Make sure we call the system
	strftime, not ourselves, when invoking the underlying strftime.
	
	* m4/check-decl.m4 (jm_CHECK_DECLS): Remove memchr, nanosleep.

	* m4/jm-macros.m4 (jm_MACROS): Don't check for utime.h.  Do not
	require jm_BISON, jm_CHECK_TYPE_STRUCT_UTIMBUF, jm_FUNC_LCHOWN,
	jm_FUNC_CHOWN, jm_FUNC_NANOSLEEP, jm_FUNC_GROUP_MEMBER,
	jm_FUNC_PUTENV, jm_FUNC_GETGROUPS, AM_FUNC_GETLOADAVG,
	jm_SYS_PROC_UPTIME, jm_FUNC_FTRUNCATE, jm_FUNC_UTIME.  Do not
	replace strcasecmp, dup2, gethostname, getusershell, stime,
	strcspn, strpbrk, euidaccess, mkdir, rmdir, rpmatch, strndup,
	strverscmp, memchr, memmove.  Do not check for declaration of
	lchown.  Remove invocations of AM_FUNC_OBSTACK, AM_FUNC_STRTOD,
	POW_LIBM, jm_LANGINFO_CODESET, jm_ICONV.  Remove df tests.
	(jm_CHECK_ALL_TYPES): Include <sys/stat.h> when checking for
	struct stat.st_blksize.

	* m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set environment variable
	in shell rather than using putenv, which isn't portable.
	
	* COPYING, lib/alloca.c, lib/dirname.c, lib/error.c,
	lib/savedir.c, lib/strstr.c, m4/check-decl.m4, m4/d-ino.m4,
	m4/d-type.m4, m4/getline.m4, m4/jm-glibc-io.m4, m4/jm-macros.m4,
	m4/jm-mktime.m4, m4/ls-mntd-fs.m4, m4/memcmp.m4, m4/prereq.m4,
	m4/readdir.m4, m4/regex.m4, m4/strftime.m4, m4/uintmax_t.m4: Sync
	to latest version from sh-utils-2.0g.

	* config.guess, config.sub, lib/argmatch.c, lib/argmatch.h,
	lib/human.c, lib/human.h, lib/memcpy.c, lib/quotearg.c,
	lib/quotearg.h, lib/strtoull.c, lib/strtoumax.c,
	lib/xstrtoumax.c, m4/c-bs-a.m4, m4/gettext.m4,
	m4/largefile.m4, m4/lcmessage.m4, m4/link-follow.m4,
	m4/progtest.m4, m4/strerror_r.m4, m4/timespec.m4,
	m4/xstrtoumax.m4: New files, taken from sh-utils-2.0g.

	* lib/ansi2knr.1, lib/ansi2knr.c, lib/basename.c, lib/getopt.h,
	lib/fnmatch.c, lib/fnmatch.h, lib/modechange.c: Sync to latest
	unreleased version of GNU tar (between 1.13.17 and 1.13.18).

	* lib/basename.h, lib/waitpid.c: New files, taken from same
	version of GNU tar.
	
	* lib/regex.c, lib/regex.h: Sync to GNU grep 2.4.2.

	* lib/posix/Makefile.am, lib/posix/regex.h: New files, taken from
	GNU grep 2.4.2.

	* lib/strftime.c: Sync to textutils 2.0e.
	
	* acconfig.h, depcomp, lib/strcasecmp.c, m4/check-type.m4,
	m4/const.m4, m4/decl.m4, m4/lfs.m4, m4/mktime.m4, m4/perl.m4,
	m4/putenv.m4, m4/uptime.m4, m4/utimbuf.m4, m4/utime.m4,
	m4/utimes.m4: Remove these files; no longer needed.

	* configure.in (AC_CANONICAL_HOST, AC_SYS_LARGEFILE,
	jm_AC_TYPE_UINTMAX_T): Add.
	(CACHE_IDS, FSTYPE_STATVFS, FSTYPE_USG_STATFS, FSTYPE_AIX_STATFS,
	FSTYPE_MNTENT, FSTYPE_STATFS, FSTYPE_GETMNT): Add comment, so that
	we don't need acconfig.h.
	(AC_CHECK_TYPE): Add ssize_t.
	(AC_REPLACE_FUNCS): Add waitpid.
	(AC_CHECK_FUNCS): Remove basename.
	(AC_FUNC_MKTIME): Remove.
	(LIBOBJS): Add no-ops to work around automake 1.4 bug.
	(AC_OUTPUT): Add lib/posix/Makefile.

	* find/defs.h: Include <config.h>, <sys/types.h>, <sys/stat.h>,
	<stdio.h>, <limits.h>, <inttypes.h>.  All includers changed to not
	include these files, and to include "defs.h" first (since config.h
	must be included first).
	(CHAR_BIT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
	S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, MOD_WXUSR,
	MODE_R, MODE_RW, MODE_RWX, MODE_ALL): New macros.
	(enum permissions_type): New enum.
	(struct long_val.negative): New member.
	(struct long_val.l_val): Now uintmax_t, not unsigned long.
	(struct size_val.size): Likewise.
	(struct perm_val): New type.
	(struct predicate.perm): Now struct perm_val, not unsigned long.
	(struct predicate.type): Now mode_t, not unsigned long.
	(list_file): New parameters current_time, output_block_size.
	All callers changed.
	(savedir, basename): Remove decls.
	(output_block_size, start_time): New extern vars.

	* find/find.c: Include <human.h>, <savedir.h>.
	(output_block_size, start_time): New vars.
	(main): Initialize them.  No need to check for negative st_size,
	since savedir now does it for us.

	* find/fstype.c: Include "dirname.h".
	(xatoi): Remove.
	(filesystem_type_uncached): Use xstrtoumax instead of xatoi.
	
	* find/parser.c: Include "xstrtol.h".
	(get_num_days, get_num, parse_amin, parse_cmin, parse_mmin,
	parse_size, parse_used, insert_time, insert_num): Compute using
	uintmax_t, not unsigned long.
	(parse_amin, parse_cmin, parse_mmin, parse_used, insert_time):
	Keep track of whether time was negative before converting it to an
	unsigned type.
	(parse_daystart): Don't assume that localtime succeeds; e.g. it
	can fail with 64-bit time_t and 32-bit tm_year.
	(parse_perm, insert_type): Compute using mode_t, not unsigned
	long.
	(insert_type): Use symbolic constants like MODE_ALL instead of
	traditional ones like 07777.  Set new kind member to indicate
	permissions type, instead of using unportable magic numbers.
	(make_segment): We will use human_readable to convert most numeric
	values, so simplify the cases.
	(get_num_days): Write in terms of get_num, to avoid duplicated
	code.
	(insert_time, insert_num): When debugging, convert large values to
	uintmax_t and output with %ju.
	(get_num): Use xstrtoumax to do the real work.

	* find/pred.c: Include "basename.h", "human.h".
	(DEV_BSIZE, ST_BLKSIZE, ST_NBLOCKSIZE): New macros, taken from
	fileutils.
	(ST_NBLOCKS): Replace with fileutils defn.
	(MAX): New macro.
	(ctime_format): New function.
	(pred_fprintf, format_date): Use human_readable to output large
	numbers portably.
	(pred_fprintf): Use ctime_format to output ctime-style dates.  Use
	base_name to compute the base name of a path.  With %m, output the
	mode portably using traditional numbers, even if the host uses
	some other numbering scheme.
	(pred_iname, pred_name): basename -> base_name.
	(pred_perm): Use new kind member to deduce permissions type,
	instead of relying on magic numbers.
	(pred_size): Compute using uintmax_t, not unsigned long.  Avoid
	overflow if file size is near the maximum.
	(pred_type): Compute using mode_t, not unsigned long.
	(launch): Use waitpid, not wait.  Check for EINTR.
	(format_date): Don't assume that localtime succeeds.

	* find/util.c (basename): Remove; we now use base_name.

	* lib/Makefile.am (SUBDIRS): New macro.
	(libfind_a_SOURCES): Add argmatch.h, argmatch.c, basename.h,
	basename.c, human.c, human.h, quotearg.c, quotearg.h, xstrtoumax.c.
	Remove error.h, error.c, getline.c.
	(EXTRA_DIST): Add mktime.c, regex.c.

	* lib/listfile.c: Include "human.h".
	(alloca): Declare, or include appropriate files to declare.
	(DEV_BSIZE, ST_NBLKSIZE, ST_NBLOCKS, ST_NBLOCKSIZE): New macros.
	(convert_blocks): Remove.
	(list_file): New current_time and output_block_size args.
	Revamp quite a bit, to handle large numbers correctly
	and to match GNU ls behavior more closely.

	* m4/Makefile.am (EXTRA_DIST): Add c-bs-a.m4, gettext.m4,
	largefile.m4, lcmessage.m4, link-follow.m4, progtest.m4,
	strerror_r.m4, xstrtoumax.m4.  Remove check-type.m4, const.m4,
	decl.m4, lfs.m4, mktime.m4, perl.m4, putenv.m4, timespec.m4,
	uptime.m4, utimbuf.m4, utime.m4, utimes.m4.

	* xargs/xargs.c (wait_for_proc): Retry wait if it fails with
	errno == EINTR.

2000-04-05  Kevin Dalley  <kevind@rahul.net>

	* xargs/Makefile.am:  add ansi2knr

	* xargs/xargs.c: add macros PARAMS rather than P_.  Add
	prototypes.

	* po/POTFILES: new file listing all POFILES.

	* m4/gl.po, m4/et.po: new files

	* m4/Makefile.am.in:  updated file

	* m4: update directory

	* locate/Makefile.am: create updatedb from updatedb.sh

	* locate/updatedb.sh, locate/updatedb.in: removed file.  Replaced
	by updatedb.sh

	* locate/frcode.c, locate/code.c, locate/bigram.c: add macros
	PARAMS rather than P_.  Add prototypes.

	* lib/xstat.in: new file

	* lib/Makefile.am: update to latest versions of library files.

	* find/testsuite/Makefile.am: add CLEANFILES

	* find/util.c: remove definition of basename
	
	* find/util.c, find/tree.c, find/pred.c, find/parser.c,
	find/fstype.c, find/find.c, find/defs.h: add macros PARAMS rather
	than P_, for consistency, change to prototypes

	* find/Makefile.am: Add prototypes and ansi2knr

	* configure.in: add Galition and Estonian languages.
	Miscellaneous other fixes.
	

2000-03-11  Kevin Dalley  <kevind@rahul.net>

	* lib/basename.c: Add file from libit.
	* lib/Makefile.am (libfind_a_SOURCES): add basename.c since it is
	no longer replaceable.

	* find/util.c: Remove definition of basename, which is now in
	lib/basename.c (as base_name).
	* find/pred.c: Use base_name, not basename.
	* find/defs.h: Likewise.

	* configure.in : Don't replace basename.  Now we use only
	base_name.

2000-02-26  Kevin Dalley  <kevind@rahul.net>

	* Version 4.1.4
	
	* lib/strtoul.c: added to distribution
	
	* configure.in: added strtoul to AC_REPLACE_FUNCS

	* configure.in: added jm_CHECK_ALL_TYPE

2000-02-23  Kevin Dalley  <kevind@rahul.net>

	* po/ChangeLog: removed, merged with top-level ChangeLog.
	
	* po/de.po: new version of German file.
	
	* po/gl.po, po/et.po: new languages, Estonian and Galician.

	* locate/updatedb.sh (PRUNEFS): enclose paths in quotes

2000-02-17  Kevin Dalley  <kevind@rahul.net>

	* po/it.po: new version of Italian file.
	
	* locate/updatedb.sh (prunefs_exp): have sed statement use '*'
	rather than the often unsupported '+'.

2000-02-13  Kevin Dalley  <kevind@rahul.net>

	* configure.in: removed AC_ARG_PROGRAM, which is already in
	AM_INIT_AUTOMAKE. 

	* locate/Makefile.am (updatedb), locate/updatedb.sh: add
	transforms of find, frcode, bigram, and code back into
	updatedb.sh, which were accidentally removed.

2000-02-12  Kevin Dalley  <kevind@rahul.net>

	* lib/wait.h: updated address.

2000-01-26  Kevin Dalley  <kevind@rahul.net>

	* Version 4.1.3

	* acconfig.h: added internationalization.

	* intl/*: copied from tar-1.13.17.

	* locate/Makefile.am, locate/locate.c, locate/code.c:
	internationalized file.

	* locate/frcode.c, locate/bigram.c: include headers from ../lib
	directory.

	* xargs/Makefile.am, xargs/xargs.c: internationalized directory.

2000-01-26  Kevin Dalley  <kevind@rahul.net>

	* POTFILES.in: added list of files with translatable strings.

	* de.po, es.po, fr.po, it.po, ko.po, nl.po, pl.po, pt_BR.po,
	ru.po, sv.po: New, slightly out of date, files imported from the
	Translation Project: http://www.iro.umontreal.ca/contrib/po/HTML/,
	German, Spanish, French, Italian, Korean, Dutch, Polish, Brazilian
	Portuguese.


2000-01-24  Kevin Dalley  <kevind@rahul.net>

	* lib/xmalloc.c, lib/regex.c, lib/getopt.c: internationalization
	works with current version of gettext.

	* lib/getline.h : added declaration of getstr.
	* lib/Makefile.am (libfind_a_SOURCES): added getline.[ch] to
	standard compilation. Added internationalization.
	* find/Makefile.am (INCLUDES): corrected -I options for building
	in other directories.
	(LDADD): changes for internationalization.

	* configure.in (ALL_LINGUAS): added internationalization. 
	getline.c is always compiled and linked, because of getstr.
	AM_GNU_GETTEXT

	* Makefile.am: 
	(DISTCLEANFILES): added intl/libintl.h
	(AUTOMAKE_OPTIONS): added gnits to AUTOMAKE_OPTIONS
	(SUBDIRS): added intl and po

	* acconfig.h: added internationalization values

	* THANKS: added thanks file for gnits compatibility.

2000-01-22  Kevin Dalley  <kevind@rahul.net>

	* added intl directory.

	* Added internationalization, only with slightly out of date po
	files for many locales.

2000-01-18  Kevin Dalley  <kevind@rahul.net>

	* Version 4.1.2
	
	* locate/Makefile.am: remove creation of updatedb, since it is now
	made by configure

	* configure.in: updatedb is now created by configure.

	* xargs/Makefile.am: added testsuite to xargs directory

	* locate/updatedb.in: updatedb is now created by configure

	* locate/frcode.c, locate/code.c, locate/bigram.c: change return
	from main to int.  Replace getstr with getline, where possible.

	* locate/Makefile.am: place frcode, code, bigram in
	libexec_PROGRAMS

	* lib/xstrdup.c, lib/xmalloc.c, lib/xgetcwd.c, lib/xalloc.h,
	lib/strtol.c, lib/strstr.c, lib/strftime.c, lib/strdup.c,
	lib/stpcpy.c, lib/stat.c, lib/savedir.h, lib/savedir.c,
	lib/regex.h, lib/regex.c, lib/realloc.c, lib/pathmax.h,
	lib/modechange.h, lib/modechange.c, lib/mktime.c, lib/memset.c,
	lib/memcmp.c, lib/malloc.c, lib/lstat.c, lib/idcache.c,
	lib/getopt1.c, lib/getopt.c, lib/getopt.h, lib/getline.c,
	lib/getline.h, lib/fnmatch.c, lib/fnmatch.h, lib/filemode.c,
	lib/filemode.h, lib/fileblocks.c, lib/error.c, lib/error.h,
	lib/dirname.c, lib/alloca.c: updated to newer version of file from
	fileutils.

	* find/version.c: version number is now automatically generated by
	configure.

	* find/fstype.c (filesystem_type_uncached): fixes bug described as
	follows:  When 'find' looks for a fstype, it parses the /etc/mtab
	until it finds the good line. But, if there is, before the good
	line, a line whose mountpoint is unreachable, it fails.

	* doc/texinfo.tex: updated to newer version

	* doc/find.texi: added version.texi, fixed a few documentation bugs.

	* configure.in: new m4 features.

	* Makefile.am: moved testsuite to below corresponding directories
	find and xargs.

	* acconfig.h: updated to match new m4 files.

	* m4: added m4 directory, largely borrowed from Jim Meyering's
	fileutils.

2000-01-17  Kevin Dalley  <kevind@rahul.net>

	* doc/find.texi (Multiple Files): placed missing xargs in examples

	* find/testsuite/find.gnu/depth.exp: added find tests to test
	"-depth" bug.

	* doc/find.texi: include version.texi for automatic determination
	of version number, update bug report email address to
	bug-findutils@gnu.org.
	(Combining Primaries With Operators): add indices for "	,", "()",
	"-a", "-o", etc.

2000-01-17  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

	* find/tree.c (opt_expr): Never rearrange the arguments of the
	comma operator, since it is not commutative.  Remove useless
	assignment.2
	
2000-01-17  Jonathan R. Ferro <jferro@corwin.ece.cmu.edu>
	
	* find/find.c (process_path): fix problem with "-depth" which is
	tested in depth.exp test.

1999-08-15  Kevin Dalley  <Kevin Dalley <kevin@seti.org>>

	* find/fstype.c (filesystem_type_uncached): a stat failure with
	EACCESS will ignore this file system keep on looking.  Patch
	suggested by Vincent Danjean <vdanjean@ens-lyon.fr>.

1999-08-15  Mark Kettenis  <kettenis@gnu.org>

	* xargs/xargs.c (LONG_MAX): Define if necessary.
	(main): If ARG_MAX is -1 (that is sysconf
	(_SC_ARG_MAX) returns -1) the system does not impose a limit.  In
	that case, use LONG_MAX as the limit.
	
1999-08-15  Kevin Dalley  <Kevin Dalley <kevind@rahul.net>

	* find/version.c: version string is now set by config.h

1999-08-08  Kevin Dalley  <kevin@seti.org>

	* Version 4.1.1

	* README-alpha: added alpha README file

	* find/defs.h: move lstat declarations into defs.h

	* xargs/Makefile.am, testsuite/Makefile.am, locate/Makefile.am,
 	lib/Makefile.am, find/Makefile.am, doc/Makefile.am, configure.in,
 	Makefile.am: update for automake-1.4

1999-08-02  Kevin Dalley  <kevind@rahul.net>

	* AUTHORS: added file listing AUTHORS

	* lib/Makefile.am: modified code for EXTRA sources
	
1999-01-30  Kevin Dalley  <kevind@rahul.net>

	* added const to declaration of basename, which should satisfy
 	Linux as well as Hurd (fixes bug #31325).
	
1998-12-04  Kevin Dalley  <kevind@rahul.net>
	
	* lib/nextelem.c: removed declaration of strdup and free, which
 	meets GNU coding standards and allows compilation on more
 	platforms.
	
  	* find.texi: corrected explanation of -amin option which described
 	hours instead of minutes
	
1998-09-26  Kevin Dalley  <kevind@rahul.net>
	
	* lib/getline.c: fix getstr so that it correctly handles long file
 	paths
	
1998-09-20  Kevin Dalley  <kevind@rahul.net>
	
	* removed more function declarations to meet GNU coding standards
	
1998-08-30  Kevin Dalley  <kevind@rahul.net>
	
	* lib/nextelem.c: removed declaration of strdup and free, which
 	meets GNU coding standards and allow compilation on sparc
	
  	* corrected explanation of -amin option which described hours
 	instead of minutes
	
1998-02-27  Kevin Dalley  <kevind@rahul.net>
	
  	* locate/locate.c: add --existing option to locate, which only
 	prints the names of files which still exist
	
1998-02-08  Kevin Dalley  <kevind@rahul.net>
	
  	* locate/locate.c: corrected get_short so that it correctly
 	returns negative numbers.
	
	* remove declarations of various string functions.  Removing the
 	declarations almost matches the GNU Coding Standards.
	
1997-03-03  Kevin Dalley  <kevind@rahul.net>
	
	* xargs/xargs.c: xargs fixed to prevent occasional core dumping.
	
1997-01-11  Kevin Dalley  <kevind@rahul.net>
	
	* locate/updatedb.sh: add --localuser option to updatedb, which
 	allows find to be run as nobody, while allowing database file to
 	be created as root, change suggested by
 	<Bernd_Eckenfels@Wittumstrasse13.76646Bruchsal.de>
	
1996-12-28  Kevin Dalley  <kevind@rahul.net>
        * added PRUNEFS as variable in updatedb and --prunefs as option to
 	updatedb

1996-05-27  Kevin Dalley  <kevind@rahul.net>
	
	* updatedb.sh: when NETPATHS is used, only su to NETUSER if whoami
	is root
1996-04-27  Kevin Dalley  <kevind@rahul.net>

	* lib/getline.c (getstr): verify that nchars_avail is *really*
 	greater than 0; set *n to a large enough number, stops some core
 	dumping

Thu Nov  3 09:23:33 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>

	* Version 4.1.

	* locate/Makefile.am: Move updatedb from LIBSCRIPTS to SCRIPTS.

	* Makefile.am (distname): Change distribution name from find to
	  findutils.

	* testsuite/config/unix.exp: Don't abuse xfail; simulate it correctly.

	* locate/Makefile.am (CLEANFILES): Fix typo.

Wed Nov  2 15:11:52 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>

	* The big 4 0.

	* lib/listfile.c find/defs.h (list_file): Take a stream arg.
	* find/pred.c (pred_ls): pass it.
	* find/parser.c pred.c defs.h (parse_fls, pred_fls): New functions.

Tue Oct 25 16:09:04 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>

	* find/pred.c (pred_fprintf): Flush output after \c.  From Chapman
	Flack.

	* find/parser.c (insert_fprintf): Warn about unrecognized \ and %
        sequences.

Tue Oct 18 00:03:10 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>

	* find/defs.h parser.c pred.c tree.c util.c: Globally change
	"victim" to "primary".

	* find/parser.c (insert_fprintf): For 'c' format, don't lose the
	need_stat information.  From Chapman Flack.

	* doc/find.texi perm.texi: New files.
	* configure.in: Configure the doc directory.

	* find/pred.c (pred_regex): Check that the regex matched the whole
	file name.

Wed Oct 12 17:13:47 1994  David J. MacKenzie  (djm@duality.gnu.ai.mit.edu)

	* find/find.c (main): Tell what the invalid arg is.
	From Kaveh Ghazi.

Fri Oct  7 12:33:24 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>

	* find/parser.c: Add -mount as an alias for -xdev.
	From Klaus.Steinberger@physik.uni-muenchen.de (Klaus Steinberger).

	* lib/modechange.c: Make umask_value unsigned short.

	* xargs/xargs.c: Use symbolic constants in longopts.
	From Chapman Flack.

Wed Oct  5 11:23:09 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>

	* xargs/xargs.c (main, read_line, read_string, do_exec): Pass 
	  along the lengths of the args.
	  (main): Calculate length of replace_pat.
	  (push_arg, do_insert): Use those lengths instead of calculating
	  them. 

Tue Oct  4 10:02:05 1994  David MacKenzie  <djm@churchy.gnu.ai.mit.edu>

	* locate/updatedb.sh Makefile.in: Add substitutions to get
	  the transformed program names.

	* xargs/xargs.c: Put back the global variables for now.
	Rename some variables.  Increase default args_per_exec.
	Use boolean where applicable.
	(main): Reduce default arg_max by 2048 for POSIX.2.
	(read_string): Don't check EOF string.
	(read_line, read_string): Take initial args size into account.

Sat Oct  1 17:43:13 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>

	* find/pred.c (launch): Use pid_t.

	* xargs/xargs.c (EOF_STR): Define and use.
	[__STDC__]: Declare xrealloc and xmalloc using void *.
	* find/defs.h: Likewise.

	* find/defs.h: Only declare stpcpy if !HAVE_STPCPY.

	* xargs/xargs.c: Replace most global variables with structure
	  pointers passed as arguments.  Use pid_t.
	* lib/wait.h: Include sys/wait.h if HAVE_SYS_WAIT_H.
	* configure.in: Call AC_TYPE_MODE_T and AC_HEADER_SYS_WAIT.

	* xargs/xargs.c: Improve paging performance and memory
	  fragmentation by building command arguments in a pre-allocated
	  buffer and re-implementing the child pid list as an expandable
	  array.  From tsi@gpu.srv.ualberta.ca (Marc Aurele La France).

Thu Sep 29 11:38:07 1994  David J. MacKenzie  (djm@geech.gnu.ai.mit.edu)

	* xargs/xargs.c [__STDC__]: Prototype declarations.

Wed Sep 28 11:25:53 1994  David J. MacKenzie  (djm@duality.gnu.ai.mit.edu)

	* find/fstype.c [AFS, __STDC__]: Fix definition of _VICEIOCTL.

Tue Sep 27 08:14:27 1994  David MacKenzie  <djm@churchy.gnu.ai.mit.edu>

	* find/fstype.c (fstype_to_string): Add more cases.  Use
	  INITMOUNTNAMES if defined.
	* find/defs.h: Change boolean typedef from char to int.
	* configure.in: Check for mktime.

Tue Sep 27 01:20:28 1994  Kaveh R. Ghazi  (ghazi@noc.rutgers.edu)

	* configure.in: Add AC_HEADER_STAT.
	* lib/listfile.c, lib/modetype.h: Add STAT_MACROS_BROKEN.

	* find/pred.c: Move the inclusion of defs.h ahead of the first
	  test of _POSIX_VERSION.

	* lib/xgetcwd.c: Remove _POSIX_VERSION, rely only on HAVE_GETCWD.

Mon Sep 26 16:43:01 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>

	* configure.in: Add AC_CONFIG_HEADER.
	* find/*.c locate/*.c xargs/*.c: Include config.h.
	* locate/updatedb.sh: Add --version; --old -> --old-format.

Sun Sep 25 23:43:37 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>

	* find/* [__STDC__]: Prototype declarations.

	* locate/updatedb.sh: Account for renaming code and frcode.

	* find/find.c (process_path): Store dev and ino of directories in
	  current branch to avoid symlink loops.  From DJ Delorie
	  <dj@ctron.com>.
	  (process_dir): If following symlinks, don't cd to ..; instead,
	  cd to the starting directory and then to the parent directory.
	  (main) [HAVE_FCHDIR]: Save the dev, ino of the starting directory.
	  (process_top_path) [HAVE_FCHDIR]: Use it.
	* find/pred.c (launch) [HAVE_FCHDIR]: Likewise.
	* defs.h [HAVE_FCHDIR]: Declare starting_desc instead of starting_dir.
	* configure.in: Check for dev_t, ino_t, fchdir, fcntl.h.

Fri Sep 23 11:55:38 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>

	* lib/listfile.c: Change #ifdef S_IFLNK to #ifdef S_ISLNK.
	From Andreas Luik <luik@isa.de>.

Thu Sep 22 11:42:40 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>

	* locate/locate.c (last_literal_end): Dynamically allocate enough
	  memory for the subpattern.

Wed Sep 21 06:12:56 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>

	* locate/locate.c (locate): Warn if database is >8 days old.
	From Ian Lance Taylor.

	* xargs/xargs.c (do_exec), find/pred.c (launch): Set SIGCHLD to
	  default.  From tsi@gpu.srv.ualberta.ca (Marc Aurele La France).
	* find/find.c pred.c util.c lib/listfile.c: Remove fflush(stdout)
	  calls before error.  error does it, and doesn't trash errno.
	  From tsi@gpu.srv.ualberta.ca (Marc Aurele La France).

	* find/fstype.c (filesystem_type_uncached): Don't trust mtab dev
	  number on HPUX.  From Andreas Luik <luik@isa.de>.
	  (filesystem_type_uncached): Don't cache unknown file system
	  types.  From casper@fwi.uva.nl (Casper Dik).

	* locate/updatedb.sh: Collect results in temp file and rename it
	  atomically.  From Andreas Luik <luik@isa.de>.

	* xargs/xargs.c (parse_num): Print a long using %ld.  From Jim
	  Meyering.

	* find/defs.h find.c parser.c pred.c util.c, lib/nextelem.c:
	  Emulate strchr and strrchr with index and rindex, not vice versa.

	Remove man directory; move man pages to the directories of the
	programs they document.

	* locate/frcode.c: Renamed from code.c.
	* locate/frcode.c (put_short): Renamed from puthalfword.
	* locate/locate.c (get_short): Renamed from gethalfword.
	(last_literal_end): Renamed from patprep.
	(locate): Recognize old-format databases too.
	* locate/locatedb.h: Add defines for old-format databases.
	* locate/bigram.c locate/code.c: Put back programs to create
	old-format databases.
	* locate/updatedb.sh: Take --old option to use them.

Tue Sep 20 15:41:11 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>

	* configure.in: Update for Autoconf v2.
	* find/pred.c lib/savedir.c: Use new symbols for dir header.
	* locate/updatedb.sh: Add --help option.

Sun Feb 13 11:21:58 1994  Jim Meyering  (meyering@comco.com)

	* man/Makefile.in [man1ext, man5ext]: Set man5ext (not man1ext) to 5.

Sun Aug  1 22:30:55 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)

	* bigram.c: File removed.
	* getline.c, memcmp.c, locatedb.h, updatedb.1, locatedb.5: New files.
	* updatedb.sh: Take command line options.
	Don't do bigram compression.
	* code.c, locate.c: Don't do bigram compression.
	Write and read counts in network byte order.
	Handle arbitrarily long paths.
	Use a magic number at the start of the databases.

Thu Jul 29 20:44:53 1993  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)

	* Makefile.in (config.status): Run config.status --recheck, not
	configure, to get the right args passed.

Thu Jul 22 12:53:12 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)

	* listfile.c (list_file): Print inode as a long.

Wed Jul 14 14:14:45 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)

	* fstype.c [STDC_HEADERS]: Include stdlib.h.

	* Move unistd.h include from parser.c and pred.c to defs.h.

Wed Jun 30 14:14:47 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)

	* updatedb.sh: Construct PRUNEREGEX from PRUNEPATHS with sed.
	Prune /afs.  Change NFSUSER to NETUSER and NFSPATHS to NETPATHS.

Tue Jun 29 12:19:58 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)

	* pred.c (pred_fprintf): Abort in switch if `c' is not A, C, or T.

Mon Jun 28 00:18:52 1993  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)

	* fstype.c (in_afs) [AFS]: New function, derived from code by
	Sanjay Ramamurthy <ramams@rpi.edu>.
	(filesystem_type_uncached) [AFS]: Call it if the fs type is
	otherwise unknown.

	* parser.c (parse_size): Recognize b and w suffixes for dd
	compatibility. 

	* code.c (puthalfword): New function.
	(main): Call it.
	* locate.c (gethalfword): New function.
	(locate): Call it.
	From ifado!wb@germany.eu.net (Wilhelm B. Kloke).

	* listfile.c: Include pathmax.h.
	(get_link_name): Always allocate PATH_MAX + 1 bytes for
	readlink buffers.
	* pred.c (pred_fprintf, insert_lname): Call get_link_name.

	* fstype.c (filesystem_type, filesystem_type_uncached),
	listfile.c (list_file): Take an arg for the path to access.
	* pred.c (pred_ls, pred_fstype, pred_fprintf): Pass it.

	* find.c (process_dir): Renamed from scan_directory.

	Changes from jrs@world.std.com (Rick Sladkey) to chdir into
	subdirectories instead of using string concatenation, for speed:
	* find.c (process_top_path): New function.
	(main): Call it, and xgetcwd.
	(process_path, scan_directory): Take new arg, the pathname
	relative to ".".  Use it and pass it on.
	* pred.c (pred_and, pred_comma, pred_negate, pred_or,
	pred_xtype, pred_fprintf, pred_empty, insert_lname):
	access rel_pathname instead of pathname.
	(launch): chdir to starting_dir.
	* defs.h: Declare rel_pathname and starting_dir.
	* find.c: Define them.

	* xgetcwd.c: New file.

	* updatedb.sh: Recognize -fstype NFS as well as nfs.
	* locate.c (patprep): Skip trailing character classes correctly.
	From luik@pharao.stgt.sub.org (Andreas Luik).

	* parser.c (parse_group): Make gid a gid_t, not short or int.
	(parse_nogroup): Cast gid to unsigned when using it as an array index.
	(parse_user, parse_nouser): Similar changes for uid.
	* defs.h: Use uid_t and gid_t.

	* parser.c (parse_help): New function.
	(parse_table):  Add --version, -help, and --help options.
	Rename struct parser_table_t to struct parser_table.
	(parse_version): Exit after printing message, on
	stdout not stderr.

	* xargs.c, locate.c (main, usage): Add --version and --help
	options.

Wed Mar 31 22:39:57 1993  Jim Meyering  (meyering@comco.com)

	* parser.c: Define isascii macro to be 1 also if STDC_HEADERS.
	* xargs.c: Ditto.

Wed Mar 31 16:04:07 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)

	* pred.c (pred_fprintf): If curdepth is 0, don't nuke
	segment->text; nuke cp.

Mon Mar 29 15:57:20 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)

	* Version 3.8.

Fri Mar 26 16:36:59 1993  David J. MacKenzie  (djm@hal.gnu.ai.mit.edu)

	* pred.c (pred_ilname, pred_iname, pred_ipath): New functions.
	(pred_table): Add them.
	(insert_lname): New function.
	(pred_lname): Call it.
	* parser.c (parse_ilname, parse_iname, parse_ipath,
	parse_iregex): New functions.
	(parse_table): Add them.
	(insert_regex): New function.
	(parse_regex): Call it.

	* fstype.c (filesystem_type): Cache previous result.
	(filesystem_type_uncached): New function.
	pred.c (pred_fstype, pred_fprintf): Adjust callers to not cache.

	* parser.c: Don't define const.

	* fstype.c [FSTYPE_STATFS] (fstype_to_string): #ifdef
	MOUNT_PC for 386bsd.

Thu Mar 25 18:32:24 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)

	* parser.c (parse_regex): If ignore_case, set up a translate
	table for the regex.

	* defs.h: Include string.h or strings.h.
	* find.c fstype.c parser.c pred.c util.c: Don't.

	* nextelem.c [index]: Don't redefine.

Wed Mar 24 17:47:10 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)

	* xargs.c (wait_for_proc): Exit with a nonrunnable command's exit
	status, not the wait status value.  From
	Andreas Schwab <schwab@lamothe.informatik.uni-dortmund.de>.

	* parser.c (make_segment, insert_fprintf), pred.c
	(pred_fprintf): Add '%F' to print filesystem type.

	* parser.c (parse_fprintf): Check if second arg is missing.

Tue Mar 23 13:18:08 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)

	* pred.c (pred_fprintf): For %P, don't move past an assumed
	slash if the ARGV element ends with one, because in that case
	we didn't add one.

	* parser.c (parse_printf): Check for missing arg.
	From smj@cats.com (Steve James).

	* parser.c: Add #ifdef around atol decl for Linux.

Fri Dec 11 08:17:07 1992  Jim Meyering  (meyering@comco.com)

	* defs.h: Remove dcl of process_path.
	* find.c: Put dcl of p

	* pred.c (pred_fprintf): Don't print "\n" unless it's in the
	format string.

Mon Oct 21 22:30:35 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)

	* defs.h, parser.c, pred.c: Rename some types that conflict
	with reserved POSIX.1 namespace (ended in _t).

	
	
Thu Oct 17 22:39:06 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)

	* xargs.c: Don't determine memory.h based on POSIX, which
	doesn't mention it.

Sat Oct  5 16:11:05 1991  Jim Meyering (meyering at churchy.gnu.ai.mit.edu)

	* parser.c (parse_perm): Parse new `-perm +mode' notation.
	* pred.c (pred_perm): Interpret same.

Fri Sep 13 14:58:27 1991  David J. MacKenzie  (djm at churchy.gnu.ai.mit.edu)

	* xargs.c [POSIX]: Always use sysconf to get ARG_MAX.

Thu Sep  5 23:57:06 1991  David J. MacKenzie  (djm at apple-gunkies)

	* bigram.c, code.c (main): Make path_max int, not unsigned.
	* locate.c (main): Check for pathconf failure.

Thu Sep  5 11:54:44 1991 Jim Meyering (meyering at churchy.gnu.ai.mit.edu)

	* parser.c (insert_fprintf): Add `\\' escape and fixed `%%'
	interpretation.
	* pred.c (pred_fprintf): fixed off-by-one indexing problem
	when handling [gGuU] printf formats.

Wed Aug 28 20:53:57 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)

	* Version 3.2.

Mon Aug 26 18:57:32 1991  David J. MacKenzie  (djm at pogo.gnu.ai.mit.edu)

	* bigram.c, code.c: Fix handling of PATH_MAX.
	Check for anomalous input line lengths.
	From Bruce Evans.

Fri Aug 23 11:00:18 1991  David J. MacKenzie  (djm at apple-gunkies)

	* pred.c (pred_fprintf): Round block number up to get K.

Thu Aug 22 10:46:30 1991  David J. MacKenzie  (djm at apple-gunkies)

	* pred.c (pred_fprintf, pred_lname) [_AIX]: Allocate PATH_MAX
	byte for link object since st_size is wrong.

	* listfile.c (list_file): Don't convert blocks to kilobytes if
	env. var POSIX_ME_HARDER is defined.

	* fstype.c [FS_AIX_STATFS]: New case.

	* configure: Make sure the sys/mount.h is the 4.4BSD version
	with grep instead of just testing whether it exists.

	* listfile.c (list_file): Add 1 to number of 512-byte blocks
	before dividing to get 1K blocks (so we round up, not down).

Wed Aug 21 13:02:46 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)

	* Version 3.1.

	* parser.c (parse_fprintf), pred.c (pred_fprintf): Add %k
	conversion to print 1K blocks.

	* listfile.c: Print counts of 1K blocks, for consistency with
	new fileutils release.  Bad timing, there.

	* Version 3.0.

	* pred.c [VOID_CLOSEDIR]: Fake a return value for closedir,
	which returns void on some systems, like Sequents.
	* configure: Check sys/dir.h for 'void closedir'.

Thu Aug 15 16:07:46 1991  David J. MacKenzie  (djm at frob)

	* modetype.h: Define POSIX.1 stat stuff if missing.
	* pred.c, parser.c, find.c, fstype.c: Don't define it.
	* updatedb.sh: Use a variable substitution method like configure's.
	* Makefile.in: Add datadir variable to separate programs from
	data file.

	* parser.c, pred.c: Rename -fulldays to -daystart.

	* defs.h, find.c, parser.c, pred.c: Add many new predicates
	from Jay Plett (jay@princeton.edu).

Wed Aug 14 14:37:06 1991  David J. MacKenzie  (djm at bleen)

	* parser.c (parse_size), pred.c (pred_size), defs.h (struct
	size_t): Allow `k' to follow number to measure size in Kbytes.
	* parser.c (parse_size, get_num, insert_num), defs.h (struct
	size_t): Use enum comparison_type instead of short.

Fri Aug  9 00:49:32 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)

	* xargs.c (read_line): Use isblank, to support POSIX locales.

	* fstype [FS_STATVFS]: New code for SVR4, from slootman@dri.nl
	(Paul Slootman).
	* configure: Figure out when to use it.

	* configure: Check for st_blocks in struct stat.
	* listfile.c (ST_NBLOCKS): New macro.
	(list_file): Print file's block count.
	Use S_ISLNK instead of S_IFLNK.
	* fileblocks.c: New file, from fileutils.

Thu Aug  8 17:20:19 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)

	* parser.c, pred.c [CACHE_IDS]: Optional code to turn uid and
	gid lookups into table lookups.

Wed Aug  7 00:22:29 1991  David J. MacKenzie  (djm at wheat-chex)

	* configure, Makefile.in's: Support +srcdir option via VPATH.
	Clean up clean targets.

Sat Jul 20 01:11:51 1991  David J. MacKenzie  (djm at apple-gunkies)

	* configure: Filter /etc and /usr/etc from path.

	* xargs.c (wait_for_proc): Fix handling of child exit status.
	(main): Exit with a nonzero status if any child did.

	* pred.c (launch): Flush stdout and stderr before forking.

	* fstype.c (filesystem_type) [FS_MNTENT]: Skip entries of
	type "ignore".

Fri Jul 19 22:53:42 1991  David J. MacKenzie  (djm at bleen)

	* pred.c, locate.c: Use fnmatch instead of glob_match.
	* fnmatch.c, fnmatch.h: New files.

	* Many files: Use string.h if STDC_HEADERS, as well as if USG.

	* locate.c, code.c, bigram.c: Possibly use pathconf to get
	PATH_MAX.  Use malloc to allocate path arrays.

	* xargs.c: Possibly use sysconf to get ARG_MAX.
	(env_size): Make definition unconditional.
	(main): Do arg_max adjustment that can't be done with
	preprocessor now that ARG_MAX might be a function call.
	(do_exec): Exit with status 126 or 127 after failed exec, for
	POSIX.2 draft 11.1.

	* xargs.c, pred.c, listfile.c: Use POSIX, not UNISTD_MISSING.
	* wait.h: Use POSIX, not WAIT_MACROS_MISSING.

	* COPYING: Use version 2.  Update all files.

	* Replace Makefile and lib/Makefile with Makefile.in,
	lib/Makefile.in and configure.  Update README.

Fri Apr  5 12:49:09 1991  David J. MacKenzie  (djm at apple-gunkies)

	* Version 2.2.

Fri Mar 15 20:44:45 1991  David J. MacKenzie  (djm at geech.ai.mit.edu)

	* xargs.c (main): Always run the command if some args are left over.
	Rename some variables.

Fri Jan 18 03:35:57 1991  David J. MacKenzie  (djm at geech.ai.mit.edu)

	* bigram.c, code.c, locate.c: Use LIMITS_MISSING, not
	_POSIX_SOURCE, to decide whether to include limits.h.

	* parser.c, pred.c, listfile.c: Use POSIX, not _POSIX_SOURCE,
	to decide whether to declare getpwuid and getgrgid.

	* xargs.c: Use POSIX, not _POSIX_SOURCE, to determine whether
	to include memory.h.

Sat Jan 12 04:12:34 1991  David J. MacKenzie  (djm at wookumz.ai.mit.edu)

	* defs.h, find.c, parser.c, pred.c: Remove -permmask option.

Thu Jan 10 04:32:52 1991  David J. MacKenzie  (djm at albert.ai.mit.edu)

	* wait.h: Include sys/types.h to get pid_t.

	* xargs.c [USG && !STDC_HEADERS]: Only include memory.h if not
	_POSIX_SOURCE.

Tue Jan  1 23:53:32 1991  David J. MacKenzie  (djm at albert.ai.mit.edu)

	* Version 2.1.

Wed Dec 26 03:25:51 1990  David J. MacKenzie  (djm at apple-gunkies)

	* locate.c, bigram.c, code.c: Attempt to get max. path length
	on more kinds of systems, incl. POSIX.

	* pred.c, listfile.c, xargs.c: Get some decls from unistd.h,
	if available. 

	* find.c, defs.h: Make `cur_day_start' a time_t, not long.

Fri Dec 21 01:49:12 1990  David J. MacKenzie  (djm at egypt)

	* defs.h, parser.c: Remove unused field from `struct exec_t'.

	* xargs.c: Add +no-run-if-empty option to cause the command to
	not be run if the input is empty.

	* defs.h (struct exec_t): Change the array of offsets into an
	array of `struct path_arg'.
	* parser.c (insert_exec_ok): Fill in new fields, to allow "{}"
	to be substituted (multiple times) anywhere in an arg to -exec
	or -ok.
	* pred.c (pred_exec): Add code to substitute "{}" within args.
	(pred_ok): After prompting, just run pred_exec.

Thu Dec 20 02:32:09 1990  David J. MacKenzie  (djm at egypt)

	* fstype.c (filesystem_type) [FS_MNTENT]: Allow for optional
	"0x" at front of "dev=" mount option, which amd puts there but
	Sun automounter doesn't.

Sat Dec 15 19:01:12 1990  David J. MacKenzie  (djm at egypt)

	* find.c (main), util.c (usage): Make directory args optional,
	defaulting to ".".

Sat Dec 15 18:36:29 1990  David J. MacKenzie  (djm at apple-gunkies)

	* listfile.c: Define major and minor if not defined (as in POSIX).

Mon Dec  3 01:04:35 1990  David J. MacKenzie  (djm at alborz)

	* find.c, fstype.c, parser.c, pred.c, util.c: Flush stdout before
	writing to stderr, in case they have been redirected to the
	same file descriptor.

	* pred.c (launch): Use POSIX wait macros from wait.h.

	* xargs.c (print_xargs): Read from tty_stream, not stdin.

Tue Nov 20 16:48:24 1990  David J. MacKenzie  (djm at apple-gunkies)

	* Version 2.0.

	* fstype.c [FS_USG_STATFS]: New code.
	[FS_STATFS]: For symlinks, statfs the directory the link is in
	instead of the link.
	* Various files: Conditionalize some declarations on
	STDC_HEADERS or _POSIX_SOURCE.

Fri Nov 16 12:24:43 1990  David J. MacKenzie  (djm at egypt)

	* modetype.h: New file.
	parser.c, pred.c: Use it.

Thu Nov 15 18:05:54 1990  David J. MacKenzie  (djm at apple-gunkies)

	* xmalloc.c: New file from fileutils.

	* fstype.c (fstype_to_string): Add case for MFS.
	(filesystem_type): Take a pathname as a second arg.
	[FS_STATFS] return "unknown" instead of exiting if statfs
	fails because of ENOENT.
	* pred.c (pred_fstype): Pass the pathname.  Set current_dev.
	* find.c (process_path): Make root_dev local again.

Mon Nov 12 02:54:00 1990  David J. MacKenzie  (djm at apple-gunkies)

	* pred.c (pred_fstype): Free old fs type.

	* fstype.c, pred.c (pred_fstype), parser.c (parse_fstype): 
	Reread the file system type info. every time a filesystem
	mount point is crossed, to allow for automounting.

	* xstrdup.c: New file from fileutils.

	* find.c (process_path): Rename root_dev to current_dev and
	make it global, for -fstype.

	* wait.h: New file taken from xargs.c.

	* xargs.c: Make limits.h vs. sys/param.h conditional on
	LIMITS_MISSING instead of USG, to accomodate SVR2.

Thu Nov  8 11:52:22 1990  David J. MacKenzie  (djm at apple-gunkies)

	* parser.c, pred.c, listfile.c: If not _POSIX_SOURCE, declare
	getpwuid and getgrgid.  Use them.

	* listfile.c: If not _POSIX_SOURCE, define S_ISDIR and
	S_ISBLK.  Use them. 

	* find.c: Use S_ISDIR instead of S_IFDIR, and define if not
	_POSIX_SOURCE. 

	* Makefile: Define AR and RANLIB and pass to child makes.
	lib/Makefile: Use them.

	* xargs.c (WIFSIGNALED): Redefine so it works.

Mon Nov  5 00:02:01 1990  David J. MacKenzie  (djm at apple-gunkies)

	* find.c (process_path): For -xdev, process filesystem
	mountpoints (but don't descend them), instead of skipping them
	entirely. 

	* find.c, parser.c, defs.h: Add -follow predicate.

	* xargs.c: Change ifdefs to support STDC POSIX systems.

Sat Nov  3 20:18:05 1990  David J. MacKenzie  (djm at apple-gunkies)

	* xargs.c (do_exec): Child process exits with status 255, not
	127, if command can't be run.

Fri Nov  2 02:11:42 1990  David J. MacKenzie  (djm at apple-gunkies)

	* xargs.c: Exit with status 127 if running commmand fails, as
	required by POSIX.

	* fstype.c: Support -fstype for Ultrix (-DFS_GETMNT).
	Sun/BSD code is now -DFS_MNTENT.

Thu Nov  1 13:06:01 1990  David J. MacKenzie  (djm at egypt)

	* Reorganize into subdirectories and add xargs.  Rewrite Makefiles.

	* find.c (process_path, main): Allow a maxdepth of 0, meaning
	only process command line args.

	* parser.c, pred.c: Add -print0 predicate.

	* xargs.c: Add -0 option and long options.  Move standard
	library functions into separate files.  Use error instead of
	fatal and fprintf/perror.  Use POSIX macros for examining exit
	status from wait.
	(read_string): New function.

Fri Sep 21 10:21:09 1990  David J. MacKenzie  (djm at apple-gunkies)

	* find.c (process_path): Take DEPTH as an arg instead of ROOT,
	and change callers.

Thu Sep 20 23:58:47 1990  David J. MacKenzie  (djm at apple-gunkies)

	* parser.c (parse_maxdepth): New function.
	* find.c (process_path): If -maxdepth was given, don't go
	more than that many levels deep.
	* defs.h: Declare maxdepth.

Wed Sep 12 02:12:31 1990  David J. MacKenzie  (djm at apple-gunkies)

	* parser.c: Add -not as synonym for !.

Sun Aug 26 06:16:08 1990  Jim Kingdon  (kingdon at pogo.ai.mit.edu)

	* Makefile (TAGS): New target.

Sun Aug 12 00:32:01 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)

	* xargs.c (main): Tell getopt to not permute.

Sat Aug  4 21:43:45 1990  David J. MacKenzie  (djm at pogo.ai.mit.edu)

	* parser.c (parse_perm), pred.c (pred_perm): Always compare
	bits 07777.

	* locate.c, Makefile: Rename 'fastfind' program to 'locate',
	following comment in POSIX.2 draft 10 rationale for find.

Wed Jul 25 18:45:03 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)

	* listfile.c (getuser, getgroup): Make uid and gid unsigned
	short, not int.

Mon Jul 16 13:40:13 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)

	* defs.h: Don't declare fprintf and printf, in case they have
	prototypes in stdio.h (important for functions that use stdarg).

Sun Jul 15 23:39:39 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)

	* parser.c (parse_and): New function, for compatibility.

Wed Jul  4 00:17:57 1990  David J. MacKenzie  (djm at apple-gunkies)

	* find.c (main): Only enclose expressions that produce no side
	effects within `( ... )'.

Tue Jul  3 01:59:39 1990  David J. MacKenzie  (djm at apple-gunkies)

	* parser.c (strspn): Stop when end of string reached.

	* Version 1.2.

	* Move version number from Makefile to new file version.c.
	* parser.c: Recognize new -version predicate.

	* find.c (main): If no predicates that produce output are
	given, default to -print if the entire expression is true, not
	just the last part of an alternation.
	* Print the names of predicates with invalid arguments.

Mon Jul  2 23:48:17 1990  David J. MacKenzie  (djm at apple-gunkies)

	* pred.c: Don't check for invalid comparison types in numeric
	predicate functions.

Thu Jun 28 00:34:57 1990  David J. MacKenzie  (djm at apple-gunkies)

	* parser.c (parse_regex): Set fastmap and translate before
	compiling regex.

Mon Jun 25 18:08:59 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)

	* fastfind.c (fastfind): Initialize count to 0.

	* lib/updatedb.sh: Only do regex comparison on directories,
	for speed.

	* listfile.c (list_file): Truncate user and group name to 8 chars.

Sun Jun 24 13:51:27 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)

	* Version 1.1.

	* Makefile [DISTFILES]: Add COPYING.

Fri Jun 22 03:54:27 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)

	* Version 1.0.

Tue Jun 19 03:55:28 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)

	* lib/updatedb.sh: Prune entries that match PRUNEREGEX.
	Split up finding files from computing bigrams.
	Use redirection instead of nonportable grep -s to detect sort
	failure.  Optionally search network filesystems as well as
	local ones.

	* pred.c (pred_regex): Match against full pathname instead of
	just last element.
	* util.c (basename): Return "/", not "", if given "/".

	* find.c (process_path): Fix error in handling "/" directory.

Mon Jun 18 01:49:16 1990  David J. MacKenzie  (djm at apple-gunkies)

	* parser.c [STRSPN_MISSING] (strspn): New function.

Sun Jun 17 13:54:09 1990  David J. MacKenzie  (djm at apple-gunkies)

	* listfile.c: New file.
	* parser.c (parse_ls): New function.
	* pred.c (pred_ls): New function.

	* find.c (main): Remove interface to fastfind, to prevent
	conflict with POSIX syntax.
	* util.c (usage): Remove fastfind syntax from message.
	* fastfind.c (main): New function.
	* Makefile: Make fastfind a separate program.

	* find.c (main): Print correct message if a predicate arg is
	missing. 

	* parser.c (insert_exec_ok): Make args that start with a ';' but
	contain other characters not terminate the command.

Fri Jun 15 00:33:45 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)

	* fstype.c: If MOUNTED isn't defined but MNT_MNTTAB is, use it
	instead.  True for HP/UX, at least.

Thu Jun 14 10:10:25 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)

	* savedir.c: New file; now find won't run out of file
	descriptors in deep trees.
	* find.c (process_path): Use savedir.

Sat Jun  9 03:15:21 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)

	* parser.c (parse_permmask): Allow symbolic mode masks.
	(parse_perm): Free 'struct change' when done with it.
	(get_oct): Function removed.

	* find.c (process_path): Allow arbitrarily-long filenames.
	More efficient string copying.  Initialize perm_mask to 07777
	instead of -1.

Thu Jun  7 04:22:42 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)

	* Makefile, find.c: Use DIRENT to control whether <dirent.h>
	is used.

Thu May 31 04:46:11 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)

	* parser.c (parse_regex): New function.
	* pred.c (pred_regex): New function.

	* fstype.c (read_mtab): If mtab entry has a "dev=" option
	(like in SunOS 4.1), use it, so there is no need to stat the
	special file later on.
	(xatoi, strstr): New functions.

Mon May 21 01:04:42 1990  David J. MacKenzie  (djm at abyss)

	* lib/updatedb.sh: Put BINDIR in PATH.

	* fstype.c: Do nothing if MNTENT_MISSING is defined.

	* fstype.c: New file.
	* parser.c (parse_fstype): New function.
	* pred.c (pred_fstype): New function.

	* parser.c (parse_newer): Failure to stat -newer file is a
	fatal error.

	* pred.c (pred_ok): Flush output before reading.  Use getchar
	instead of scanf.

	* pred.c (pred_prune): Return false if -depth given.
	* find.c: Apply the predicates to the dir when -depth and
	-prune are given.

Sun May 20 19:55:30 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)

	* pred.c (pred_prune): Set new global var `stop_at_current_level'.
	* find.c (process_path): Test and reset it.

Fri May 18 01:56:17 1990  David J. MacKenzie  (djm at abyss)

	* modechange.c, modechange.h: New files.
	* parser.c (parse_perm): Use mode_compile and mode_adjust to
	parse arg, to allow symbolic mode for POSIX.

Thu May 17 02:07:44 1990  David J. MacKenzie  (djm at abyss)

	* parser.c (get_oct): Don't consider an empty string a valid number.

	* parser.c (parse_perm): If arg starts with '-', set flag bit
	for special comparison (POSIX).
	* pred.c (pred_perm): If flag bit set, compare s[ug]id &
	sticky bits as well, and return true if the given perms are
	set, ignoring other bits.

	* find.c: New global var `exit_status'.  Use it.  (POSIX)
	* parser.c: Set `exit_status' if lstat on -newer file fails.

	* fastfind.c: New file.
	* find.c (main): Call fastfind if given only 1 arg.
	* util.c (usage): Update message. 
	* lib/{Makefile,updatedb.sh,bigram.c,code.c}: New files.
	* Makefile: Add 'all' and 'install' targets.

Wed May 16 23:23:35 1990  David J. MacKenzie  (djm at abyss)

	* parser.c (parse_nogroup, parse_nouser): Implement.
	* pred.c (pred_nogroup, pred_nouser): Implement.

Mon May 14 00:09:35 1990  David J. MacKenzie  (djm at abyss)

	* find.c: Add variable `stay_on_filesystem' for -xdev.
	(process_path): Take an arg determining whether this call is
	the root of a tree.  Use lstat instead of stat.  If
	stay_on_filesystem, don't process a dir on a different
	filesystem. 

	* parser.c (parse_newer): Use lstat instead of stat.  Is this right?
	(parse_xdev): Set stay_on_filesystem.

	* parser.c: Add dummy parse_nogroup, parse_nouser,
	parse_prune, and parse_xdev; to be written later.
	* pred.c: Add dummy pred_nogroup, pred_nouser, pred_prune.

	* find.c: Support System V directory library/headers.

	* find.c (process_path): Don't continue with a file that stat
	fails on.

	* defs.h, parser.c, pred.c: Change 'u_long' and 'u_short' to
	'unsigned long' and 'unsigned short'.
	* find.c, defs.h: Remove 'convert_glob' variable.
	* parser.c (parse_fullregex): Function removed.
	(parse_name): Remove regular expression code.
	(parse_type): Recognize sockets.
	Add code to check for missing arguments to many parse_* functions.
	* pred.c (pred_name): Use glob_match instead of regex.

Sun May 13 17:45:09 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)

	* Replace fprintf, simple_error, and mem_error with error and
	usage. 

	* Fix string header includes for USG.

Tue Mar 27 12:40:29 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)

	* defs.h: Change some #defines to enums.

Sun Mar 25 22:08:58 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)

	* find.c (main): Don't take basename of argv[0].

	* util.c (xmalloc): New function.
	* find.c, parser.c, utils.c: Use xmalloc instead of malloc.

	* pred.c: Remove emulation of regex for BSD and use GNU
	library version in regcmp.c instead.
	* parser.c: Remove emulation of regcmp for BSD and use GNU
	library version in regcmp.c instead.
	* Makefile: Link with regex.o and regcmp.o.
	Add a DISTFILES macro and dist target.

	* Indent source code.  Move RCS logs to this file.

Wed Mar 21 09:30:18 1990  David J. MacKenzie  (djm at pogo.ai.mit.edu)

	* xargs.c: Indent.  Comment and rename some global variables.
	(main): Use getopt to parse options.  Open new global var
	`tty_stream' to /dev/tty if querying requested.
	(print_args): Read response from tty_stream, not stdin.
	(xmalloc): New function.
	Global: Use xmalloc instead of malloc.
	(usage): Revise message.

87/02/22  20:01:20  20:01:20  cire (Eric B. Decker)

	* pred.c: added guts to pred_size

87/02/22  00:59:42  00:59:42  cire (Eric B. Decker)

	* pred.c: added guts to perm and permmask.

87/02/21  23:02:21  23:02:21  cire (Eric B. Decker)

	* pred.c: made pred_name only look at the last component of
	the path.

87/02/21  22:26:47  22:26:47  cire (Eric B. Decker)

	* pred.c: added guts to name.  useds regex and regcmp to do
	regular expression handling.

87/02/21  00:17:21  00:17:21  cire (Eric B. Decker)

	* pred.c: added predicate newer

87/02/20  11:40:07  11:40:07  cire (Eric B. Decker)

	* pred.c: added guts to pred_ok

87/02/19  23:52:37  23:52:37  cire (Eric B. Decker)

	* pred.c: finished exec.

87/02/22  20:01:09  20:01:09  cire (Eric B. Decker)

	* parser.c: added guts to parse_size

87/02/22  00:59:16  00:59:16  cire (Eric B. Decker)

	* parser.c: added guts of perm and permmask.  added getoct
	routine for perm and permmask

87/02/21  23:32:50  23:32:50  cire (Eric B. Decker)

	* parser.c: added -fre, -fullregex predicate to turn off
	globbing conversion

87/02/21  23:01:01  23:01:01  cire (Eric B. Decker)

	* parser.c: reworked name so the regexpr pattern includes $ at
	the end to force globbing to work correctly.  End of the
	pattern refers to the end of the filename.

87/02/21  22:25:34  22:25:34  cire (Eric B. Decker)

	* parser.c: added guts to name.  uses a conversion from
	globbing to regexp format.  uses regex and regcmp to actually
	to the comparison.

87/02/21  00:17:11  00:17:11  cire (Eric B. Decker)

	* parser.c: added predicate newer

87/02/20  11:39:35  11:39:35  cire (Eric B. Decker)

	* parser.c: added ok guts.  consolidated exec and ok to using
	insert_exec_ok

87/02/19  00:20:54  00:20:54  cire (Eric B. Decker)

	* parser.c: minor bug in -fulldays predicate parser.  It
	should have set the flag full_days to true.

87/02/22  00:58:32  00:58:32  cire (Eric B. Decker)

	* find.c: changed where we are setting perm_mask to -1.  need
	to make sure that this happens before every apply_predicate.

87/02/21  23:32:11  23:32:11  cire (Eric B. Decker)

	* find.c: added error checking for no paths.  better error
	message if illegal ordering.

87/02/21  22:19:58  22:19:58  cire (Eric B. Decker)

	* find.c: added global convert_glob

87/02/22  20:00:12  20:00:12  cire (Eric B. Decker)

	* defs.h: added definition of BLKSIZE for size

87/02/21  22:19:25  22:19:25  cire (Eric B. Decker)

	* defs.h: added global convert_glob for name