File: ChangeLog

package info (click to toggle)
cvs 1.9.26-5
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 9,936 kB
  • ctags: 5,963
  • sloc: ansic: 69,262; sh: 12,663; lisp: 2,772; makefile: 1,873; perl: 940; yacc: 826; csh: 181
file content (2567 lines) | stat: -rw-r--r-- 90,144 bytes parent folder | download
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
1998-03-04  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* acconfig.h, configure.in: Add PRESERVE_PERMISSIONS_SUPPORT and
	always define it.
	* configure, config.h.in: Regenerated.

Tue Feb 17 18:32:36 1998  Ian Lance Taylor  <ian@cygnus.com>

	* configure.in: Add memmove back to AC_REPLACE_FUNCS list.
	* configure: Rebuild.

1998-02-16  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO (190): Remove "failed to check out" from commit.c from
	lists of error messages suppressed by -q; it no longer is.

4 Feb 1998  Jim Kingdon

	* cvsnt.mak: The usual "because Visual C++ feels like it"
	changes.  These ones seem to have to do with reordering
	files and release versus debug configurations, mainly.

Fri Jan 30 10:37:40 1998  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Update which version of CVS was tested with EMX.

15 Jan 1998  W. L. Estes  <wlestes@hamlet.uncg.edu>
	and Jim Kingdon  <kingdon@harvey.cyclic.com>

	* cvs.spec, Makefile.in: Fix some problems with the spec file
	distributed with cvs.  RPM chokes on a build root of slash, so
	that is gone now.  CVS is relocatable (as far as I know) so I
	added a prefix tag.  The source location was incorrect and in
	fixing that I had to add a `g' flag to one of the sed commands in
	the Makefile.in so the spec file gets generated correctly.

13 Jan 1998  Jim Kingdon

	* cvsnt.mak: Add lib/fncase.c.  Plus of course the usual
	"because Visual C++ feels like it" changes.

Tue Jan 13 16:49:38 1998  Ian Lance Taylor  <ian@cygnus.com>

	* acconfig.h (USE_SETMODE_STDOUT): Add undef line.
	(HAVE_SETMODE): Likewise.
	* configure.in: If cygwin32, define USE_SETMODE_STDOUT and
	HAVE_SETMODE.
	* configure, config.h.in: Regenerate.

	* acconfig.h (UTIME_EXPECTS_WRITABLE): Add undef line.
	* configure.in: If cygwin32, define UTIME_EXPECTS_WRITABLE.
	* configure, config.h.in: Regenerate.

	* configure.in: Add test for cygwin32, and set LIBOBJS and LIBS
	accordingly.
	* configure: Regenerate.

Sun Jan 11 11:43:55 1998  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* HACKING: Add example of indentation for switch statement.  I
	always have to look this one up, and it seems worthwhile to
	specify it here rather than be unsure which switch statement in
	CVS to use as an example.

Wed Jan  7 09:41:08 1998  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: Revise item 149 (concerning changing CVS/Root and such).
	"This whole area is a rather bad pile of individual decisions which
	accumulated over time, some of them probably bad decisions with
	hindsight."

Wed Dec 31 09:25:20 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* FAQ: Re-import from FAQ-O-Matic.  Features a change regarding
	removing directories.

Tue Dec 23 08:28:44 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* README.VMS, INSTALL, HACKING, BUGS, README: Change bug-cvs
	address from prep.ai.mit.edu to gnu.org per email from Martin
	Hamilton.  When referring to bug-reporting procedure refer to
	Cederqvist not README.

Tue Dec 16 13:13:53 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* FAQ: Re-import from FAQ-O-Matic.  The content is the same, but
	instead of being from Mosaic, it is from "lynx -dump -nolist".
 	This output is somewhat better (for example, it is formatted for
	80 columns or so, rather than Mosaic which is rather
	inconsistent), and also lynx is free and still maintained whereas
	NCSA Mosaic is proprietary and no longer maintained.

	* FAQ: Re-import from FAQ-O-Matic.  Features an update to the
	Sablime question.

	* NEWS: Add item about GSSAPI.

Fri Dec 12 14:00:57 1997  Ian Lance Taylor  <ian@cygnus.com>

	* configure.in: Add --with-gssapi option, and look for gssapi.h
	and GSSAPI Kerberos v5 libraries.
	* acconfig.h: Add HAVE_GSSAPI.
	* configure, config.h.in: Regenerate.

Thu Dec 11 15:58:06 1997  Eric Mumpower  <nocturne@cygnus.com>

	* configure.in: Let --with-krb4 override the system Kerberos
	header files and libraries, if any.
	* configure: Regenerate.

Thu Dec  4 20:01:02 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* configure.in (AC_CHECK_FUNCS): Remove mempcpy per change to
	src/rcs.c.
	* configure: Regenerated (never was regenerated after getwd change).

1997-12-04  Jim Meyering  <meyering@na-net.ornl.gov>

	* configure.in (AC_CHECK_FUNCS): Add mempcpy.

Thu Dec  4 10:42:32 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* BUGS: Update for kfogel .cvswrappers fix.

Tue Dec  2 22:14:03 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* MINOR-BUGS: Update per info-cvs mail from Steve Cameron.

1997-11-29  Jim Kingdon

	* cvsnt.mak: Remove lib/getwd.c (see lib/ChangeLog for rationale).

	* cvsnt.mak: The usual "because Developer Studio feels like
	it" changes.

Sat Nov 29 22:10:32 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* configure.in (AC_REPLACE_FUNCS): Remove getwd (see lib/ChangeLog
	for rationale).

Mon Nov 24 10:36:39 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Update QNX information per email from Michael Hunter of
	QNX.

Wed Nov 19 17:44:21 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Add Sequent entry per bug-cvs report.

1997-11-17  Karl Fogel  <kfogel@floss.red-bean.com>

	* BUGS: Remove item about exporting binary files to non-unix
	clients; this is fixed.

Mon Nov 17 09:07:44 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* BUGS: Add yet another binary files problem.

1997-11-14  Karl Fogel  <kfogel@floss.red-bean.com>

	* cvsnt.mak: updated for diff/ subdir.

Fri Nov 14 12:25:10 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* BUGS: Remove item about dying gasps message.  At least one known
	cause has been fixed.

Wed Nov 12 20:24:49 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* FAQ: Re-import from FAQ-O-Matic.  Features a wording fix to
	"What do I do first? How do I create a Repository?" and a
	formatting fix (makes it clear which bullets are under what)
	to "What is a module?"

	* NEWS: Add item about RCS library.  Remove item about RCSBIN in
	CVSROOT/config.
	* INSTALL: Simplify instructions to reflect the fact that one need
	not any longer install RCS and GNU diff.
	* PROJECTS: Remove item about RCS library; it is done.

Mon, 10 Nov 1997  Jim Kingdon

	* cvsnt.dsp: For diff/diff.c, also look for include files in
	diff directory.  This means we get diff/system.h not lib/system.h.

Sun Nov  9 16:16:56 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO (#195): New item, about rsync and such issues.

Thu Nov  6 14:29:14 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO (#194): New item, about separated metadata.

	* TODO (#186): Rewrite paragraph on CVSclusters to be clearer
	about what this can do and why I think it is a cool idea.

Sun Nov  2 19:34:30 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* DEVEL-CVS: Wording fix: want to specify that new developers are
	granted checkin access and the ability to send to devel-cvs, not
	specify whether this is implemented via an "account" (whatever
	that is) (editorial change, not run by devel-cvs).

Fri Oct 31 16:30:57 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Mention admin -o rev1::rev2.

Wed Oct 29 08:40:05 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: Add item 193, about alternatives to timestamps in CVS/Entries.

Tue Oct 28 19:59:48 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO (190): "rcs failed" message is no longer affected by global
	-q option.

1997-10-28  Jim Kingdon

	* .cvsignore: Add Visual C++ files du jour, namely
	{diff,vc50}.{pdb,idb,pch}.

	* cvsnt.dsp: Add files for diff library.  The custom build
	stuff for diff/version.c and diff/diff.c was to deal with
	there also being a src/version.c and src/diff.c.  There
	might be an easier way.

Mon Oct 27 11:21:15 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* FAQ: Re-import from FAQ-O-Matic.  Features an edit from Larry
	Jones regarding CVS on Windows.

Mon Oct 20 15:23:17 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* BUGS: Add item about spaces in login names.

Mon Oct 20 10:25:42 1997  Hannes R. Boehm  <hannes@boehm.org>

	* INSTALL (Tested platforms): Add Red Hat Linux 4.2.

Wed Oct 15 10:55:20 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO (#192): Also mention issue with opening connections to new
	servers if CVSROOT changes.

	* TODO (#191): Add thoughts on external difference programs.

1997-10-11  Noel Cragg  <noel@swish.red-bean.com>

	* BUGS: remove note about the `-d' flag bug that was just fixed.

	* TODO: new item 192.

Thu Oct  9 12:59:28 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: Revise item #182 to be clearer and to point to the
	unofficial patch.

Thu Sep 25 14:48:26 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* build.com: Also recurse into diff directory.

Wed Sep 24 10:35:50 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* configure.in: Don't check for system-supplied regex matcher; see
	comment for rationale.
	* configure: Regenerated.

Tue Sep 23 16:00:25 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* BUGS: Add item about cvs add and -k wrappers.

Mon Sep 22 11:21:11 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: Revise item #191 in response to xdelta 1.10 release and a
	few other random thoughts.

Sun Sep 21 17:56:28 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* configure.in: Instead of checking for memchr, just define
	HAVE_MEMCHR and HAVE_STRCHR.
	Add comment about AC_FUNC_VFORK and vfork in general.
	* acconfig.h: Add HAVE_MEMCHR and HAVE_STRCHR.
	* configure, config.h.in: Regenerated.

	* config.h.in: Regenerate using autoheader from autoconf 2.10.

Sat Sep 20 01:17:10 1997  Tim Pierce  <twp@twp.tezcat.com>

	[notes: (1) includes the patches to config.h.in which he sent
	(presumably generated), (2) I have omitted a change, which was
	sent without a ChangeLog entry, to change re_exec to
	re_compile_pattern in configure.in, (3) Also adds diff/Makefile in
	AC_OUTPUT -kingdon]

	* Makefile.in (USOURCE_SUBDIRS, check, remotecheck, installcheck):
	Add diff.

	Note that AC_CHECK_FUNCS(vfork)
	has been replaced by AC_FUNC_VFORK... libdiff wants the more
	specific test, and it seems unlikely to break CVS.

	* configure.in: Add AC_FUNC_CLOSEDIR_VOID, AC_FUNC_VFORK,
	AC_STRUCT_ST_BLKSIZE.
	(AC_CHECK_HEADERS): Add limits.h and sys/file.h.
	(AC_REPLACE_FUNCS): Add memchr.
	(AC_CHECK_FUNCS): Remove vfork.

Fri Sep 19 09:59:33 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: Add item #191, concerning how to store binary files.

Wed Sep 17 16:13:49 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TESTS: Add ideas about ability to pass spaces in arguments, and
	stdin, to the program under test, as something to consider for the
	different test frameworks.

Tue Sep 16 00:14:55 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* BUGS: Add item about importing binary files.

	* TODO: Adjust item #150 to reflect the fact that the client is
	not quite so mean about tossing the log message as it was.

Fri Sep 12 13:04:31 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Update Windows entries per email from Greg Strockbine
	<gstrock@dpc.com>.

Thu Sep 11 15:03:21 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: New item #190, about meaning of -q and -Q global options.

Wed Sep 10 18:48:41 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: A few more thoughts on "cvs message" (item 150).

Tue Sep  9 22:20:15 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* README.VMS (Notes regarding compiling on VAX/VMS): Add item
	about mode_t and pid_t.

Sun Sep  7 17:34:03 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* FAQ: Re-import from FAQ-O-Matic.  The metavariables are back.

	* FAQ: Re-import from FAQ-O-Matic.  Features comment from
	julian@whistle about update -r branch:date.  It also clobbered the
	metavariables (confusion about "<" as data vs. HTML tag I would
	guess), which I plan on fixing in a moment.

	* configure.in: Add comment about re_exec and regexp syntax.

	* configure.in (AC_REPLACE_FUNCS): Remove strdup; CVS was long
	ago converted to use its own routine xstrdup.
	* configure: Regenerated.

Sat Sep  6 00:08:20 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* FAQ: Re-import from FAQ-O-Matic.  In particular: GIC info
	updated, binary files updated (e.g. -kb not -ko), rename database
	and rCVS info updated (refer to TODO), tweaks to section on
	contributing (HACKING, DEVEL-CVS, &c), Cyclic info updated
	(e.g. remove Indiana address), usenet info updated
	(e.g. comp.software.config-mgmt not gnu.*).

Fri Sep  5 20:46:26 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* FAQ: Add another introductory paragraph which talks about out of
	date material from 1995 FAQ.

	* FAQ: Re-import from FAQ-O-Matic.  This was mainly as a proof of
	concept that I could edit the Cygnus question and have the diffs
	come out looking right (which worked), but I also discovered that
	the previous checkin was truncated partway through.

	* FAQ: Replace file with an introductory paragraph plus a
	downloaded copy of Molli's FAQ-O-Matic.  I believe the content
	closely matches the 1995 Grubbs FAQ but because everything is
	re-ordered it would be painstaking work to verify this.

Thu Sep  4 17:33:53 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* BUGS: Add item about -w global option and client/server.

Wed Sep  3 23:03:34 1997  Noel Cragg  <noel@harvey.cyclic.com>

	* TODO: Verbosify verbiage in item #189.

Wed Sep  3 14:14:54 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: Add item #189, concerning renames.

Sat Aug 30 03:26:57 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: Fix typo in Noel's change.

Sat Aug 30 03:17:36 1997  Noel Cragg  <noel@harvey.cyclic.com>

	* TODO: Add a header so emacs chooses the correct editing mode.
  	Made several entries more verbose (expanded some of the less
 	well-known acronyms and/or added pointers to further
 	documentation).

Wed Aug 20 09:51:52 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Remove "SparcClassing" typo that has been there for
	a while.

Wed Aug 20 09:51:52 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>
			  and Loren James Rittle <rittle@comm.mot.com>

	* INSTALL: Update information for SunOS4, Solaris, Digital Unix,
	and HPUX.

Fri Aug 15 16:42:12 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Remove the "CVS 1.6" crud; it really isn't needed.  Add
	paragraph about the meaning of the last three arguments to cvs
	import.

Thu Aug 14 14:42:53 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>
			  and Loren James Rittle <rittle@comm.mot.com>

	* INSTALL: Update information for SunOS4 and Solaris.

Mon Aug  4 00:02:24 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* BUGS: Be specific about wrappers not working client/server.

Sat Aug  2 09:23:50 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: In step 4, be more generic (the CVS sources are just an
	example, and people might not have them handy).

Fri Jul 25 17:02:30 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Refer to cvs.texinfo as the Cederqvist manual; that
	seems to be the description which best applies no matter how it
	was obtained.  Be a little more explicit about the "$" prompt
	convention and setting environment variables.  Use double quotes
	because they work on both DOS and Unix.

Thu Jul 24 12:22:49 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Also mention SystemAuth.

	* INSTALL (MIPS): Add more detailed report concerning Irix 6.2,
	as reported by larry.jones@sdrc.com (Larry Jones).

Tue Jul 22 17:35:31 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL (PowerPC): Add item for Lynx 2.5.

21 Jul 1997  Jim Kingdon

	* Makefile.in (DISTFILES): Add cvsnt.dsp.

Mon Jul 21 09:40:10 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* configure.in: Adjust comment regarding version of autoconf which
	introduced --bindir.

Fri Jul 18 09:47:12 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: Remove item 161 (the comments in cvs.texinfo have a much
	more complete discussion of date format issues).  In item 30,
	change "patch" to "rdiff" and expand discussion slightly.  Remove
	item 64 (the performance issues in initial checkout have probably
	changed quite a bit since that was written and in any event it
	isn't particularly useful without specifics of what is slow and
	ideas for speeding it up).

	* INSTALL: Reorganize to separate out building/installing CVS
	executables from what to do once you have them.  Adjust Visual C++
	instructions to deal with Visual C++ 5.x.  Add brief mentions of
	platforms other than unix and Windows.

Thu Jul 17 21:13:16 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: In item 39, talk about how PRCS 1.2 as a possible model.

Sat Jul 12 15:43:01 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* HACKING: Rewrite paragraph on arbitrary limits to reflect the
	fact that the known arbitrary limits are gone.

8 Jul 1997  Jim Kingdon

	* cvsnt.dsp: Turn on browse information.

Thu Jul  3 10:07:01 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Sending exact suggested text is almost as good as a diff.

	* INSTALL (i386 family): Add lines about Watcom and EMX on OS/2.

	* TODO: Add notes about popt and option parsing in general.

Wed Jul  2 13:11:03 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: Update item 149 to reflect CVS/Root.

	* TODO: Add item 187, about usage errors vs. help messages.

Mon Jun 23 18:24:13 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Adjust mention of read-only access in the light of
	changes to cvs.texinfo.

	* TODO: Add item 186, concerning multisite.

Sun, 22 Jun 1997  Jim Kingdon

	* cvsnt.dsp: New file.  This apparently is what Visual C++ 5.0
	uses in lieu of a .mak file (or so it seems).
	* .cvsignore: Add cvsnt.opt cvsnt.dsw cvsnt.plg.  These seem to
	be the generated files du jour for Visual C++ 5.0.

Thu Jun 19 17:16:39 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Add item about CVSROOT/config.

Wed Jun 18 00:00:02 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Mention pserver --allow-root.

Mon Jun 16 19:07:34 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* Makefile.in (SUBDIRS): Add emx.
	* configure.in (AC_OUTPUT): Add emx.
	* configure: Regenerated.

Sun Jun  8 23:44:00 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* configure.in (AC_CHECK_FUNCS): Remove mkfifo; not used anywhere.
	* configure, config.h.in: Regenerated.

Thu May 29 15:53:06 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* DEVEL-CVS: Add "Policy regarding checkout-only access" to
	replace parenthetical remark about checkout-only access.  This is
	more of a cosmetic/editorial change than a new policy.

Wed May 21 17:02:29 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* BUGS: Add item about wrappers.

Fri May 16 13:43:53 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* BUGS: Add item about "cvs export" and binary files.

Sun May 11 11:38:03 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* README.VMS: Remove information about "direct TCP".  Noone has
	been complaining about it being broken (the code bitrotted not long
	after it was written), nor has anyone complained
	that contrib/listener.c was omitted from the distribution (because
	it wasn't mentioned in contrib/Makefile.in DISTFILES).  If there
	is a desire to resurrect such a feature, it should use port 2401
	as now discussed in doc/cvsclient.texi.

Thu May  8 12:14:40 1997  Larry Jones  <larry.jones@sdrc.com>
	and Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Update MIPS/SGI Irix 6.2
	* TESTS: Add note about TESTDIR and SGI Irix 6's XFS.

Wed May  7 12:01:21 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: Fix keywords accidentally expanded in previous checkin.

	* TODO: Add item #185, concerning keyword expansion and merges.

Sun May  4 19:46:03 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* README: Replace section on reporting bugs with a reference to
	the bug-reporting section in cvs.texinfo.

Fri May  2 22:50:04 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* BUGS: Remove item about importing binary files; the bug is fixed.

Sun Apr 27 19:54:34 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Refer to doc/DIFFUTILS-2.7-BUG.

	* INSTALL: Don't mention GREP; CVS no longer uses it.

	* configure.in: Add comment about --bindir.

Thu Apr 24 15:21:17 1997  Norbert Kiesel  <nk@cosa.de>

	* configure.in (AC_CHECK_FUNCS): added tempnam and mktemp
	* config.h.in, configure: Regenerated with autoconf 2.10.

21 Apr 1997  Jim Kingdon

	* cvsnt.mak: Visual C++, as usual, wants to fiddle with this.
	This time it would appear to be chiefly the dependencies.

Mon Apr 21 01:06:31 1997  Ian Lance Taylor  <ian@cygnus.com>

	* NEWS: Document that the client no longer needs an external patch
	program.

Thu Apr 17 14:28:20 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: Combine items 150 and 181 since they are basically the same.

Tue Apr 15 12:32:26 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* FAQ: The URL of yahoo's Configuration Management category has
	changed.  As it might change again, just cite their top-level page
	rather than the entire URL.

8 Apr 1997  Jim Kingdon

	* cvsnt.mak: Add windows-NT/sockerror.c.

Wed Mar 26 15:51:33 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* BUGS: Further note on import -kb bug.

Tue Mar 25 17:51:32 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* cvs-format.el: Add comment concerning c-label-offset.

Wed Mar 19 14:06:40 1997  Jim Meyering  <meyering@totoro.cyclic.com>

	* configure.in (test for shadow passwords): Use AC_MSG_RESULT
 	rather than echo, so configure obeys --quiet.
	Use yes and no in message rather than yup and nope.

19 Mar 1997  Jim Kingdon

	* cvsnt.mak: Now Visual C++ wants to add a bunch of dependencies
	for the Release configuration as well as the Debug one.  Why it
	didn't do this before, I have no idea.

13 Mar 1997  Jim Kingdon

	* cvsnt.mak: Recent changes have added a number of getline.h
	dependencies.

Thu Mar 13 08:43:04 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* configure.in (AC_C_CROSS): Add comment about obsolescence
	thereof.
	* config.h.in, configure: Regenerated with autoconf 2.10.

Thu Mar 13 05:50:29 1997  Philippe De Muyter  <phdm@info.ucl.ac.be>

	Here are the fixes I needed to make to cvs-1.9 to get it to
	compile and successfully pass 'make check' on m68k-motorola-sysv.
	* lib/getwd.c (getwd): Added declaration for getcwd().
	* lib/wait.h (WIFSTOPPED et al.): Macro defined if not defined.
	* lib/waitpid.c (waitpid): Use wait, not wait3, if !HAVE_WAIT3.
	* src/admin.c (admin): Added declaration for getgrnam().
	* src/server.c (fcntl.h): Do not include file twice.  Already included
	from system.h from cvs.h.
	* src/sanity.sh (imported-f*): Renamed from imported-file*, that were
	too long for sysv.
	* configure.in (wait3): Added to AC_CHECK_FUNCS list.

Wed Mar 12 14:32:50 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* BUGS: Add "failed assertion `rev == NULL || isdigit (*rev)'" bug.

	* TODO: Remove item 135; this is solved by %v and %V in loginfo.

	* configure.in (AC_CHECK_FUNCS): Don't check for setvbuf;
	HAVE_SETVBUF is no longer used.
	* config.h, configure: Regenerated with autoconf 2.10.

	* TODO: Add item 184, concerning MD5-based password hash.
	Remove item 14, concerning "pathname stripper".  I think that was
	a reference to the late unlamented strip_path.

Sat Mar  8 21:22:54 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: NT 4.0 is client and local (like other NT 3.51 & Win95).

Fri Mar  7 16:51:13 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Just talked to a NT 4.0 user; add it to the list.

Sun Mar  2 22:01:23 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Add item about "cvs admin" vs. "cvs admin .".

	* TODO: Remove item #169.  It doesn't really explain what an
	"archive library" is or in general what the feature they discuss is
	supposed to do--I mean, CVS _can_ be used to store .o's, if
	that is what they are talking about.

	* TODO: Add item #183, about greater documentation/visiblity for
	Entries.Static and CVS/Tag.

	* INSTALL (footnote 5): Add note about how /usr/tmp vs. /var/tmp
	shouldn't be an issue anymore

Thu Feb 20 13:53:19 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Update Cray entry per mail from John Bowman
	<bowman@ipp-garching.mpg.de>

	* configure.in: Add comments about autoconf version.

Mon Feb 17 09:55:35 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* configure: Regenerated.

Sat Feb 15 15:37:39 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* configure.in (AC_OUTPUT): Add windows-NT/SCC/Makefile.

Sun Dec 15 13:12:30 1996  Michael Douglass <mikedoug@texas.net>
			  and Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Mention "cvs logout".

1997-02-12  Jim Kingdon

	* cvsnt.mak: Visual C++ seems to want to make some cosmetic
	changes (reordering *.obj files), perhaps prodded by "Save
	All".  I hope that putting in these changes will make it
	happy...

1997-02-11  Jim Kingdon  <kingdon@cyclic.com>

	* cvsnt.mak: Replace with version from Visual C++ 4.0.  If someone
	wants the 2.x one back, I suppose we can put them side by side,
	but I won't be able to update the 2.x one any more as I won't be
	having access to 2.x.

Tue Feb 11 16:43:43 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* .cvsignore: Add cvsnt.mdp and cvsnt.ncb.  They seem to be files
	created by Visual C++ 4.x which were not created by Visual C++ 2.x.

Tue Feb  4 11:42:30 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: OS/2 port is client only.

	* Rename devel-cvs (which had only been in the repository, not the
	distribution) to DEVEL-CVS.  Add "Charter for the devel-cvs
	mailing list:" heading, "CVS Development Policies" title, and
	one-sentence introduction (editorial changes, not run by
	devel-cvs).  Revise paragraph concerning membership in the list to
	reflect policy change to make read-only membership different from
	the ability to send to the list (the new wording was approved by
	devel-cvs, as was the rename and including it in the
	distribution).
	* Makefile.in (DISTFILES): Add DEVEL-CVS.
	* HACKING: Add "Mailing lists" section.

Tue Jan 28 10:41:05 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* configure.in: Remove AC_CHECK_SIZEOF; no longer needed with
	lib/md5.c changes.
	* acconfig.h: Add HAVE_CONNECT.  This is needed so that autoheader
	2.10 works; I think this has been broken since 2 Dec 1996.
	* config.h.in: Regenerated with autoheader 2.10.
	* configure: Regenerated with autoconf 2.10.

	* HACKING: Revise criterion for whether something goes in NEWS
	again (now "user-visible change worth mentioning"--the language
	from the GNU coding standards).

Mon Jan 27 23:05:24 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* HACKING: Criterion for whether something goes in NEWS is not
	whether it is user-visible; it is whether it is a bugfix or a
	feature.

Tue Jan 21 10:21:53 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Warn people against pre-5.x RCS; describe how to find
	out what version of RCS you have.

Wed Jan  8 14:50:47 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* Makefile.in, NEWS, README, TODO, configure.in: Remove CVSid; we
	decided to get rid of these some time ago.

Wed Jan  8 00:17:13 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* README (Credits): Refer to NEWS not ChangeLog; the ChangeLog in
	question got renamed a bit but ended up as the bottom of the NEWS
	file.  Eliminate use of first person in a few places where it is
	unclear who it refers to.  Explicitly say that the lists
	of contributors are not comprehensive.

Thu Jan  2 12:59:45 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* README, Makefile.in: Remove paragraph about writing to the Free
	Software Foundation at 675 Massachusetts Avenue.  (1) They are no
	longer at that address; (2) the Free Software Foundation are not
	the ones to write to concerning CVS licensing.  bug-cvs would be a
	more appropriate choice; (3) there is probably little need for
	this paragraph anyway.

Thu Jan  2 09:46:37 1997  Karl Fogel  <kfogel@ynu38.ynu.edu.cn>

        * NEWS: mention read-only repository access feature.

Wed Jan  1 18:47:08 1997  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* cvs.spec: Don't include ChangeLog and ChangeLog.zoo in %doc.
	There is no point in including them without src/ChangeLog,
	src/ChangeLog-96, etc., but more to the point they really belong
	in the source distribution rather than a binary distribution anyway.

Mon Dec 30 16:55:54 1996  Abe Feldman  <feldman@harvey.cyclic.com>

	* NEWS: Add entry for changes to checkout command (creating CVS
	directory at top of working directory)

Tue Dec 17 13:13:30 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Add entry for verifymsg.

Tue Dec 10 19:22:20 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* cvs-format.el: Revise comments to explain how to use it and
	general minor tidying of comments.

Mon Dec  2 13:05:44 1996  Ian Lance Taylor  <ian@cygnus.com>

	* configure.in: Don't call AC_CHECK_FUNCS(connect) a second time,
	because the value will have been cached; instead, check whether
	the library was found with connect defined.
	* configure: Rebuild with autoconf 2.12.

Sat Nov 30 23:04:52 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* BUGS: Add note about mysterious failure in test 187a3.

Fri Nov 29 10:19:50 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* configure.in (AC_CHECK_FUNCS): Also check for readlink.
	* config.h.in: Regenerated using autoheader 2.10.

Fri Nov 22 16:30:27 1996  Brendan Kehoe  <brendan@cygnus.com>

	* configure.in: Check for -lsocket, etc., before checking for
	Kerberos libraries.
	* configure: Rebuild.

1996-11-19  Jim Kingdon

	* cvsnt.mak: Remove strippath.c.

Sun Nov  3 21:54:18 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* README: Move detailed information on compatibility to
	the manual; simply point to it here.

Thu Oct 31 07:20:45 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* BUGS: Add note about cvs import of binary files on non-unix.

Tue Oct 29 13:59:14 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* BUGS: Add note about "dying gasps" message.

Sat Oct 26 16:17:09 1996  Jim Blandy  <jimb@totoro.cyclic.com>

	* configure.in (AC_CHECK_FUNCS): Check for tzset.

Fri Oct 25 10:27:08 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Mention new loginfo features.

Thu Oct 24 08:21:48 1996  Lars.Henriksen@netman.dk

	* INSTALL: Update to "DEC Alpha running OSF/1 version 3.2 (1.9)"

Tue Oct 22 10:34:21 1996  Noel Cragg  <noel@gargle.rain.org>

	* configure.in: don't check for the existence of the /etc/security
 	directory, because it's possible to have PAM installed without
 	using shadow passwords.
	* configure: regenerated.

Sat Oct 19 18:34:29 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* README: Say that the remote protocol is not interoperable before
	CVS 1.5.

Sat Oct 19 13:06:53 1996  Mark H. Wilkinson  <mhw@minster.york.ac.uk>
			  and Jim Kingdon  <kingdon@cyclic.com>

	* configure.in, INSTALL: New options for configure to enable or
	disable client and server code, overriding configure's defaults.
	* confiugre: Regenerated.

Sat Oct 19 13:06:53 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Add note about what to do if you got a binary
	distribution of CVS.  Add VAX/VMS entry.

Thu Oct 17 15:38:03 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS, README: Reinstate 30 Sep 96 changes concerning US letter
	vs. A4 paper.

Wed Oct 16 16:59:57 1996  Jim Blandy  <jimb@totoro.cyclic.com>

	* configure.in: Simplify code to check for crypt.  Check for
	-lcrypt first, and then check for the crypt function.  The old
	code did slightly funky things with cache variables, which JimK's
	last change disturbed.  Let's just keep it simple.
	* configure: Rebuilt.

Wed Oct 16 15:01:59 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* configure.in: Don't call unset.  It isn't portable to Ultrix,
	but perhaps more to the point, seems like we should be using the
	cached values (there was no comment explaining why we should
	ignore the cached values, and none of the CVS developers were
	able to	provide an explanation when I asked).
	* configure: Regenerated.

	* NEWS: Add item regarding export and "cvs history".

Tue Oct 15 07:40:42 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TESTS: Mention the fact that expr is only for the tests, not for
	CVS itself.  At least one person was unclear on this.

Mon Oct 14 12:13:03 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* HACKING: Add "Submitting patches (strategy)" section and
	sentence about test cases.  These changes have been run by
	devel-cvs and there was no objection.

Sat Oct 12 19:43:56 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* README.VMS: Add notes about some build problems on VAX/VMS.

Thu Oct 10 09:20:25 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* BUGS: Remove item about & in modules file and client/server; the
	bug is fixed.

	* README.VMS: Rewrite sections about wildcard expansion and
	calling editors to suggest technical approaches and to make it
	clear that fixes will only happen if someone gets around to them.

Sat Oct  5 15:01:22 1996  Jim Blandy  <jimb@totoro.cyclic.com>

	* Version 1.9 released.

Tue Oct  1 14:32:44 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS, README: Revert changes regarding -D, -g, and A4.  They
	are for new features which are not appropriate at this stage of
	the release process.

Mon Sep 30 14:51:36 1996  Greg A. Woods  <woods@most.weird.com>

	* INSTALL (sun3): 1.8.86+ builds and runs make check.

	* NEWS: describe -D and -g; DIFFBIN and GREPBIN

	* MINOR-BUGS: yet another couple of annoyances...

Mon Sep 30 08:33:51 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* BUGS: Mention "cvs add -m" client/server bug.

	* NEWS: Document change from A4 to US letter.  It may seem minor,
	but it affects a *lot* of people.

	* README: Revise discussion of US letter vs. A4 to reflect recent
	change to cvs.texinfo.

Sun Sep 29 16:32:47 1996  Greg A. Woods  <woods@most.weird.com>

	* MINOR-BUGS: describe a minor annoyance or two

	* BUGS: describe a couple of new bugs

Sun Sep 29 14:09:49 1996  Noel Cragg  <noel@gargle.rain.org>

	* configure.in: check for shadow password files as well as for
 	getspnam.  Some systems (like Linux) have getspnam in the C
 	library, but aren't necessarily using shadow passwords.
	* configure, config.h.in: Regenerate.

Fri Sep 27 16:49:53 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* Makefile.in (TSUBDIRS): Remove comment about order of
	directories mattering.  That was only for an old set of hacks,
	since gone, which tried to combine several tag files into one
	(before emacs could use several tag files at once).

Wed Sep 25 10:35:06 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Add note about "cvs log -d" date formats changing.  See
	comment I added to cvs.texinfo for more whining about this situation.

	* BUGS: Remove item about ~/.cvsignore on NT; it is fixed.

Wed Sep 25 10:22:00 1996  Larry Jones  <larry.jones@sdrc.com>

	* configure.in: Add hack for ISC crypt (the version in the posix C
	library doesn't work -- why am I not surprised).  Add check for
	libsec.a for shadow password functions.

	* Makefile.in: Make zlib along with lib in the check targets.

Wed Sep 25 08:34:01 1996  Jim Blandy  <jimb@floss.cyclic.com>

	Fix from Mark A. Solinski <markso@mcs.com>:
	* cvsnt.mak: The debug configuration adds the zlib directory to
	the include path but it is missing from the release configuration.
	Add it to the "ADD CPP" and "CPP_PROJ" lines.

Tue Sep 24 11:32:20 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Add VMS entry.  Clarify what "tested" means.

	* README: Replace section about what CVS is with the blurb from
	cvs.spec (which is also the paragraph we use in the release
	announcements).
	Change location of pcl-cvs from contrib/pcl-cvs to tools/pcl-cvs.

	* BUGS: Remove item about version numbers; we now have version
	numbers.  Remove item about server using /usr/tmp; this has been
	changed.  Remove item about deadlocks between server and client
	and file contents being interpreted as commands; I believe this
	refers to the case which was fixed by Ian's 7 Aug 96 change to
	receive_partial_file.  Remove item about server temp directory
	becoming full; I'm not sure all bugs related to that have been
	fixed, but I think the ones mentioned have been.  Remove item
	about .# files; this is a documented behavior.  Refer to
	platform-specific documentation.  Add bug with & in modules file
	and client/server CVS.  Move bug about weird use of long file
	names to end; the bug report is so long people won't want to read
	past it.  Refer to README concerning reporting bugs.  Add
	introduction.  Reword some bug descriptions.  Add bug concerning
	~/.cvsignore on NT.
	* MINOR-BUGS: Add introduction.  Reword some bug descriptions.
	Remove item about "premature end of file"--we've improved that
	error message as much as we can figure out how.  Remove item about
	filenames getting truncated (with rcs2log?)--I think this is a fixed
	bug although I couldn't quickly find a ChangeLog entry for the fix.

Tue Sep 17 12:46:37 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* .cvsignore: Add cvs-*.spec.

Mon Sep 16 17:42:30 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: In 180, mention issue of network being down.  Add item
	182, about inclusiveness of "cvs log -r foo -r bar".

	* HACKING: Also mention arbitrary limits and reentrancy.
	User-visible changes should be documented in cvs.texinfo as well
	as NEWS.

Thu Sep 12 16:06:33 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* README.VMS: Put authorship info at end.  Add disclaimer.  Say
	that patch is mandatory not optional.  Don't mention gzip; we
	don't require it any more.  Remove section on filename case; the
	bugs described there are fixed.  Miscellaneous tweaks and updates.

Wed Sep 11 11:08:39 1996  Jim Blandy  <jimb@totoro.cyclic.com>

	* configure.in (AC_OUTPUT): Don't forget to create vms/Makefile.

Tue Sep 10 19:55:07 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* Makefile.in (DISTFILES): Add build.com and README.VMS.
	(SUBDIRS): Add vms.
	* build.com: Also recurse into zlib directory.

	* NEWS: Mention Win95.

Fri Sep  6 11:43:26 1996  Ian Lance Taylor  <ian@cygnus.com>

	* configure.in: Add AC_ARG_ENABLE for encryption.
	* acconfig.h: Add ENCRYPTION.
	* configure, config.h.in: Regenerate.
	* NEWS: Modify the entry on encryption to mention that you must
	configure with --enable-encryption.
	* INSTALL: Mention the --with-krb4 and --enable-encryption
	configure options.

Thu Sep  5 11:30:45 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Revise access method item to mention both :ext: and
	:server:.

	* README.VMS: Change bug reporting address to bug-cvs.  In
	discussing filenames, don't mention a hypothetical behavior
	involving folding to lowercase (I'm not sure what is meant, and it
	doesn't sound right to me) and do mention that things might be
	different now (as a result of recent changes to case sensitivity
	code).

Wed Sep  4 1996  Jim Kingdon  <kingdon@cyclic.com>

	* cvsnt.mak: Add windows-NT/ChangeLog.

Wed Sep  4 13:55:11 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* Makefile.in (DISTFILES): Add cvs.spec.

Mon Aug 26 15:30:13 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: Add item suggesting "cvs message" command.

Tue Aug 20 12:22:53 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* configure.in (AC_C_INLINE): Removed; see src/ChangeLog.
	* config.h.in, configure: Regenerated.
	* os2/config.h, windows-NT/config.h: Remove #define of inline.

	* configure.in (AC_C_CHAR_UNSIGNED): Removed; it is not used
	anywhere.
	* config.h.in, configure: Regenerated.
	* os2/config.h, vms/config.h, windows-NT/config.h: Likewise,
	remove __CHAR_UNSIGNED__.

Fri Aug 16 13:37:19 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* cvs.spec (%description): Replace description with one that
	resembles the release announcements we have been sending out.  The
	previous one was out of date and not really focused on describing
	what CVS does.
	(%build): Don't define SERVER_FLOWCONTROL; if we are ready to make
	this is the default it should be for all kinds of builds, not just
	those via RPM.

Fri Aug 16 16:09:59 1996  Norbert Kiesel  <nk@col.sw-ley.de>

	* cvs.spec: new file.  This is a template for a RPM specification
	file (which is used by 'make spec').

	* Makefile.in (installdirs-local): new (empty) target
	(all install uninstall installdirs): add installdirs to list of
	targets which are done for all subdirs 
	(spec): new target to create a rpm specification file (which can
	be used to create RPM source and binary packages)
	(dist): depend on spec (which now also creates .fname)

Wed Aug 14 13:59:11 1996  Norbert Kiesel  <nk@col.sw-ley.de>

	* configure.in (AC_REPLACE_FUNCS): add getspnam for reading shadow
	password entries
	* configure: regenerated
	* config.h.in: regenerated

Mon Aug 12 14:15:31 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* Makefile.in (config.status): When running config.status
	--recheck, preserve the value of CFLAGS.

Fri Aug  9 14:11:31 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TESTS: Also mention dejagnu advantages.

Thu Aug  8 16:00:55 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TESTS (ABOUT STDOUT AND STDERR): New section.
	(ABOUT TEST FRAMEWORKS): Add sed/cmp/diff (a la C News) as an option.

	* NEWS: Change entry regarding "cvs log" not invoking "rlog" so
	that it emphasizes user-visible behaviors.

Tue Aug  6 17:01:23 1996  Ian Lance Taylor  <ian@cygnus.com>

	* TODO: Remove item #167 (cvs log doesn't understand symbolic
	branch names).  It works now.

	* NEWS: Mention that "cvs log" no longer invokes "rlog".

Wed Jul 31 16:06:03 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* HACKING: Mention rule about _ vs - in file names.

Wed Jul 24 19:10:38 1996  Ian Lance Taylor  <ian@cygnus.com>

	* NEWS: Mention that Kerberos encryption is now supported.

Mon Jul 22 23:48:39 1996  Ian Lance Taylor  <ian@cygnus.com>

	* NEWS: Mention that the commit message has changed slightly when
 	committing changes on a branch.

Fri Jul 19 16:10:04 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TESTS: Say that GNU expr is part of sh-utils.

Thu Jul 18 18:16:33 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Mention -k wrappers option.

	* TESTS: In list of what we would like in a test framework, only
	mention portable once, and other wording cleanups.

Mon Jul 15 1996  Jim Kingdon  <kingdon@cyclic.com>

	* cvsnt.mak: Add src/ChangeLog (lets us edit it from within
	the integrated development environment).

Sun Jul 14 1996  Jim Kingdon  <kingdon@cyclic.com>

	* cvsnt.mak: Add src/zlib.c.  Add zlib group containing the .c
	files in zlib.  Add /I "zlib" compiler options.

Sun Jul 14 10:26:21 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Expand zlib item to emphasize user-visible (and
	CVS-installer-visible) consequences.

Sat Jul 13 21:11:50 1996  Ian Lance Taylor  <ian@cygnus.com>

	* NEWS: Mention that -z now uses zlib.

Fri Jul 12 18:54:21 1996  Ian Lance Taylor  <ian@cygnus.com>

	* Makefile.in (USOURCE_SUBDIRS): Add zlib.
	* configure.in (AC_OUTPUT): Add zlib/Makefile.
	* configure: Regenerate.

	* zlib/*: Import zlib 1.0.3.  Remove zlib/Makefile.  Modify
	zlib/Makefile.in for use with CVS.

Fri Jul 12 1996  Jim Kingdon  <kingdon@cyclic.com>

	* cvsnt.mak: Add src/buffer.c

Wed Jul 10 18:44:58 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Say that rlog is deprecated.

Tue Jul  9 14:37:41 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* PROJECTS: Refer to comment in rcscmds.c regarding RCS library.

	* HACKING: Expand comments on portability.

Sun Jul  7 23:21:02 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* configure.in (AC_REPLACE_FUNCS): Remove memmove; it was used by
	a very old version of the CVS server for nefarious purposes and it
	has been long gone.
	* configure: Regenerated.

Tue Jul  2 22:36:31 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TESTS: Add discussion of test frameworks.

Fri Jun 28 20:27:56 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Describe "cvs diff -q" removal and new diff options.

Thu Jun 13 17:29:30 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: Remove item #67 about having cvs import create CVS
	directories; I don't think it is wise to have cvs import mess with
	the directory it is working in at all.  Remove item #69 about
	having import edit modules--in many cases there is no need for an
	entry in modules.  Remove item #76 about running on top of SCCS;
	we are clearly not evolving in that direction.  Remove item #91
	about documenting how to import sources from SCCS or RCS; this is
	now documented in cvs.texinfo.  Remove item #129 about "U CFTS/";
	without more information it is impossible to know what behavior is
	being discussed.  Remove item #157 concerning module names in cvs
	release; cvs release takes a directory name, not a module name.
	Remove item #159 about checking access times; this is as likely to
	be an annoyance as a help, and people who are into that can just
	look at the result from "cvs update" (directly or with a script).
	Remove item #164 concerning variables in *info files; it is done.
	Remove item #35 (it just says "cvs admin" is cheesy, which isn't
	specific enough to be useful).  Rewrite #39 to be specific about
	what would be nice in having branches track each other.  Remove
	item #46--I'm not sure what it means and if it means that one
	should check in with "cci" or some such instead of "cvs ci" then
	that is an installation hassle and a minimal convenience.  Add
	item #180.

	* config.h.in: Regenerated.

Thu Jun 13 1996  Ian Lance Taylor  <ian@cygnus.com>
		 and Jim Kingdon  <kingdon@cyclic.com>

	* configure.in: Put -L${krb_libdir} in LDFLAGS temporarily when
	looking for -ldes.
	* configure: Regenerated.

Mon Jun 10 13:13:35 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Mention NT local.

Fri Jun  7 18:02:36 1996  Ian Lance Taylor  <ian@cygnus.com>
			  and Jim Kingdon  <kingdon@cyclic.com>

	* NEWS: Mention new annotate options.

Thu Jun  6 14:08:31 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* lib/savecwd.c: Revert CVS_* patch.  The include files where
	CVS_* is defined were not included, and the code in question was
	inside HAVE_FCHDIR which isn't defined on the Mac anyway.

	* src/filesubr.c: Revert CVS_* patch in this one file.  The mac
	port should have its own copy of filesubr.c instead.

Wed Jun 05 10:03:10 1996  Mike Ladwig  <mike@twinpeaks.prc.com>

	* lib/{system.h,savecwd.c}, src/{add.c,checkout.c,client.c,
	commit.c,create_adm.c,diff.c,edit.c,entries.c,fileattr.c,
	filesubr.c,find_names.c,history.c,ignore.c,import.c,lock.c,
	login.c,logmsg.c,mkmodules.c,modules.c,myndbm.c,no_diff.c,
	parseinfo.c,patch.c,rcs.c,recurse.c,release.c,remove.c,root.c,
	rtag.c,server.c,tag.c,update.c,vers_ts.c,wrapper.c}:
	Under non-UNIX operating systems (MS-DOS, WinNT, MacOS), many
	filesystem calls take only one argument; permission is handled
	very differently on those systems than in UNIX.  On MacOS,
	the naming scheme for volumes and subdirectories is quite
	different.  This patch leaves hooks in the form of CVS_ACCESS,
	CVS_CHDIR, CVS_CREAT, CVS_FOPEN, CVS_MKDIR, CVS_OPEN, CVS_OPENDIR,
	CVS_RENAME, CVS_RMDIR, CVS_STAT, and CVS_UNLINK to accomodate
	these differences.

Thu Jun  6 11:11:53 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Say "changes from 1.7 to 1.8" not "changes since 1.7".

Wed Jun  5 1996  Jim Kingdon  <kingdon@cyclic.com>

	* cvsnt.mak: Visual C++ 2.1 seems to want to reformat the line
	breaks.  No substantive changes, I think.

Thu May 30 15:35:57 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* Makefile.in (DISTFILES): add TESTS.

Tue May 28 13:10:42 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* src/server.c: Add comment regarding out-of-order bug.
	* TESTS: Explain out-of-order bug.

	* INSTALL: Remove $CVSId$.  More strongly encourage people to skip
	the tests if they don't have the time to look at the results.
	Move most of the discussion of tests to new file TESTS, and add
	some information on interpreting check.log output.
	* README: In brief summary of install, don't spell out details of
	"make check" or "cvs init" steps.

Sun May 26 17:59:46 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Change "up-to-date" to "not locally modified"; the file
	need not match the head revision it only need match some revision.

Sun May 26 17:02:49 1996  Norbert Kiesel  <nk@col.sw-ley.de>

	* NEWS: document new option "-c" for tag

Thu May 23 21:49:33 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Remove footnote 10.  The only kind of change suitable
	for listing here is fairly easy portability stuff.

Fri May 17 11:49:11 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Refer to cvs.texinfo and say "filesystem" not "fs".

Thu May 16 17:13:56 1996  Noel Cragg  <noel@gargle.rain.org>

	* NEWS: Mention all access methods.

Wed May 15 23:38:15 1996  Noel Cragg  <noel@gargle.rain.org>

	* NEWS: add info about access methods and document behavior change
 	for "cvs login."

Mon May 13 10:37:09 1996  Greg A. Woods  <woods@most.weird.com>

	* INSTALL: updated for Sun-3 SunOS 4.1.1_U1 (1.8.2)

Fri May 10 09:39:49 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Document that -d overrides CVS/Root.

Mon May  6 06:00:10 1996  Benjamin J. Lee  <benjamin@cyclic.com>

	* Version 1.8.1

Sun May  5 17:38:21 1996  Benjamin J. Lee  <benjamin@cyclic.com>

	Integrated changes submitted by Ian Taylor <ian@cygnus.com>

	* update.c (update_dirent_proc): cvs co -p doesn't print
	anything when run from an empty directory.

        * import.c (import_descend_dir): Check for a file in the
        repository which will be checked out to the same name as the
        directory.

Sun May  5 15:49:00 1996  Benjamin J. Lee  <benjamin@cyclic.com>

	* configure.in: autoconf 2.9 handles AC_CHECK_LIB in a
	way that it can not be used to check for main().  Check
	for printf() instead. (Reported by ian@cygnus.com)

	* configure: Regenerated.

Thu May  2 13:34:37 1996  Benjamin J. Lee  <benjamin@cyclic.com>

	* Version 1.7.88

Thu May  2 10:42:13 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Clarify what happened to examples directory.

Thu May  2 02:06:49 1996  Benjamin J. Lee  <benjamin@cyclic.com>

	* INSTALL: Updated for NeXTSTEP 3.3 (1.7)

Thu May  2 01:40:55 1996  Benjamin J. Lee  <benjamin@cyclic.com>

	* Compatibility fixes affecting QNX, NetBSD, and SCO

	* configure.in (AC_CHECK_FUNCS): Added check for initgroups(),
          (ac_cv_func_crypt) Added check for crypt() in -lcrypt;
          define AUTH_SERVER_SUPPORT only if crypt() is found.

	* configure: Regenerated.

	* src/server.c (HAVE_INITGROUPS): Use initgroups() only if
        located by configure.

Wed May  1 15:38:56 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Remove item about reserving all-uppercase tag names.

Wed May 01 00:18:01 1996  noel  <noel@BOAT_ANCHOR>

	* cvsnt.mak: remove all of those unnecessary libraries!  We only
 	need advapi32.lib and wsock32.lib.

Wed Apr 24 16:48:35 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Document that -d overrides CVS/Root.

Fri Apr 19 11:22:35 1996  Benjamin J. Lee  <benjamin@cyclic.com>

	* Version 1.7.86

Sun Apr 14 11:06:44 1996  Karl Fogel  <kfogel@floss.red-bean.com>

        * configure.in (AC_OUTPUT): generate contrib/elib/Makefile,
        tools/Makefile, and tools/pcl-cvs/Makefile.  Do not any longer
        generate contrib/pcl-cvs/Makefile.
        
        * Makefile.in: deal w/ above changes.
        
        * configure: regenerated.

        * Added `tools' subdir (pcl-cvs will live there, as will other
        things maintained along with the CVS distribution).

Wed Apr 10 17:15:25 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* README: Mention documentation and A4 paper in particular.

Thu Mar 28 12:31:38 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Add "cvs annotate".

Tue Mar 26 10:46:59 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: In example, change tag name to avoid using a tag name
	reserved to CVS.

	* NEWS: Document reservation of some tag names.

Fri Mar 22 10:45:23 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Clarify that RCS is only for server or local.

Mon Mar 18 10:15:18 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* README: Mention info@cyclic.com where we mention support
	contracts, not at the end where people might be tempted to view it
	as a generic help line.

Thu Mar 14 16:34:26 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* Makefile.in (stamp-h): Don't run ./config.status --recheck.

Thu Mar 14 1996  Jim Kingdon  <kingdon@cyclic.com>

	* cvsnt.mak: Regenerate dependencies.

Thu Mar 14 13:45:11 1996  Jim Blandy  <jimb@totoro.cyclic.com>

	* configure.in (AC_OUTPUT): Don't create examples/Makefile; we're
	not using the examples directory any more.

Wed Mar 13 17:02:00 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Refer to cvs.texinfo rather than out-of-date cvsinit
	instructions.  Instead of telling everyone to update modules
	whenever adding directories (which is optional), refer to the
	manual regarding all administrative files.  Revise "make check"
	instructions to be even less encouraging about submitting bug
	reports.

	* examples/*: Removed.
	* Makefile.in (SUBDIRS): Remove examples.
	* cvsinit.sh: Removed.
	* Makefile.in: Remove all cvsinit and PROGS stuff.
	* NEWS: Mention cvsinit -> cvs init change.

Mon Mar 11 13:12:35 1996  Samuel Tardieu  <sam@inf.enst.fr>

	* BUGS: removed previous description from Greg Woods (3/6/96)
	since the bug seems to be corrected

Wed Mar  6 10:35:32 1996  Greg A. Woods  <woods@most.weird.com>

	* BUGS: describe a weird core-dump with 'cvs co -c'.  Now I can't
	even get a stack backtrace again -- dbx dumps core!

Fri Mar  1 09:21:56 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* README.VMS: Remove distribution information (since it is no
	longer different for VMS).  Various wording fixes to reflect the
	fact that using rsh is just one of several ways to connect to a
	cvs server, not "the official" one.  Say that the unsuitable rsh
	is the UCX one.  Clarify what rsh uses privileged ports for.

Fri Mar  1 01:26:28 1996  Benjamin J. Lee  <benjamin@cyclic.com>

	* README.VMS, build.com: Added for VMS.

Thu Feb 29 10:04:20 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Mention change to default ignore list.

Thu Feb 29 00:28:08 1996  Peter Wemm  <peter@jhome.DIALix.COM>

	* configure.in: correctly spell FNM_PATHNAME in fnmatch() test,
	the supplied test fails on proposed POSIX.2, lib/fnmatch.*, Linux,
	FreeBSD, etc.
	* configure: Regenerated.

Tue Feb 27 10:43:14 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Change submission address to bug-cvs from info-cvs.
	Encourage submissions to be in the form of diffs to INSTALL.

Sun Feb 25 15:23:31 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* HACKING: Fix typo.

Fri Feb 23 1996  Jim Kingdon  <kingdon@cyclic.com>

	* cvsnt.mak: Add login.c and scramble.c.

Fri Feb 23 16:36:11 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* README: Mention comp.software.config-mgmt.  Don't mention old
	cyclic-cvs mailing list.

	* acconfig.h: Add AUTH_SERVER_SUPPORT.  Remove DIFF and GREP (no
	longer used).
	* configure.in: Define AUTH_SERVER_SUPPORT.
	* config.h.in, configure: Regenerated.

Thu Feb 22 22:32:09 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* configure.in: Remove AC_FUNC_ALLOCA.
	* configure: Regenerated.

Mon Feb 19 09:39:21 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* HACKING: Add comments about portability and assert().

Thu Feb 15 16:40:13 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Mention $USER internal variable.

Thu Feb 15 14:00:00 1996  Gary Oberbrunner  <garyo@avs.com>
			  and Jim Kingdon  <kingdon@cyclic.com>

	* cvsnt.mak: Add vasprintf.c and mkmodules.c

Tue Feb 13 20:05:47 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* configure.in (AC_REPLACE_FUNCS): Add strtoul.
	* configure: Regenerated.

Mon Feb 12 10:06:27 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: Remove mkmodules stuff.
	* NEWS: Add item concerning mkmodules.

	* configure.in (AC_REPLACE_FUNCS): Add vasprintf.
	* configure: Regenerated.

Sun Feb 11 16:43:38 1996  Karl Fogel  <kfogel@floss.red-bean.com>

        * Makefile.in (DISTFILES): added HACKING.

Sun Feb 11 12:38:51 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Revise *info files feature (now user vars, not env vars).

Fri Feb  9 23:51:39 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Mention env var in *info files feature.

Fri Feb  9 02:41:50 1996  Jim Blandy  <jimb@totoro.cyclic.com>

	* Makefile.in (DISTFILES): Remove config.sub and config.guess from
	the list; they're not distributed any more.

Thu Feb  1 19:47:46 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Remove RM; no longer used.

Thu Feb  1 14:38:04 1996  Karl Fogel  <kfogel@floss.red-bean.com>

        * configure: re-ran autoconf.

        * Makefile.in (USOURCE_SUBDIRS, SUBDIRS): abstract unix source
        subdirs to new var USOURCE_SUBDIRS, for lint's sake and possibly
        etags's someday.
        (lint): run in USOURCE_SUBDIRS only.

Thu Feb  1 13:06:47 1996  Roland McGrath  <roland@baalperazim.frob.com>

	* configure.in (WITH_KRB4): Escape $ in help text.

Wed Jan 31 19:03:37 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* HACKING: Add info about NEWS file and release process.

Tue Jan 30 16:00:00 1996  Jim Kingdon  <kingdon@peary.cyclic.com>

	* cvsnt.mak: Change save-cwd.c to savecwd.c and regenerate
	dependencies to take care of save-cwd.h.
	* windows-NT/README: Update information about Visual C++ 4.0.

Tue Jan 30 16:09:53 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* Rename lib/save-cwd.c to lib/savecwd.c.  Avoiding a hyphen
	seems to be the only way to get Visual C++ 2.1 to generate a
	cvsnt.mak which Visual C++ 4.0 will accept.
	* Rename lib/save-cwd.h to lib/savecwd.h for consistency.
	* os2/Makefile.in, lib/Makefile.in, lib/savecwd.c, src/add.c,
	src/import.c, src/modules.c, src/recurse.c, src/tag.c: Update
	accordingly.

	* INSTALL, os2/options.h, windows-NT/options.h,
	macintosh/options.h, src/options.h.in: Remove SORT; it is no
	longer used.

Mon Jan 29 15:16:39 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Mention -b.  Don't talk about RCS 5.6.[5-7] beta
	releases; this will be an issue for few if any people.  Remove
	stuff about diff and --with-diffutils which is no longer true.

	* README: Refer to HACKING file.  Refer to cvs.texinfo not
	manpage.  Rewrite section about compatibility between CVS versions.
	* HACKING: New file.
	* INSTALL: Move -Wall section to HACKING; refer to HACKING.

Wed Jan 24 20:26:55 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* configure.in: Remove diff stuff.  Also remove AC_CANONICAL_HOST
	and bindir crud as that was the only place they were used.
	* config.h.in, configure: Regenerated.
	* config.sub, config.guess: Removed.
	* src/options.h.in (DIFF): Change to "diff" and change comment to tell
	people not to use -a.
	* src/sanity.sh: New test binfiles tests for above-fixed bug (see
	comments in patch_file in update.c--passing -a to diff generates a
	patch which patch cannot apply).

	* NEWS: Adjust to reflect existence of 1.7.

Tue Jan 23 14:20:39 1996  Jim Blandy  <jimb@totoro.cyclic.com>

	* devel-cvs: New file, not to be included in the distribution.

Thu Jan 18 21:46:56 1996  Jim Blandy  <jimb@totoro.cyclic.com>

	* BUGS: Remove all mention of the outdated cyclic-cvs@cyclic.com
	and remote-cvs@cyclic.com addresses.  It turns out that people see
	these addresses and use them.  Mention the proper way to report
	bugs.

Wed Jan 17 16:40:01 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* README: Fix typo (info-cvs-requests -> info-cvs-request).

Fri Jan 12 13:38:12 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* configure.in, configure: Revert "Checking user's gender" change.
	Sure, you only live once, but I want mine to be a *long* life, not
	one interrupted by a CVS user who is not amused coming after me
	with an axe.

Fri Jan 12 12:46:23 1996  Karl Fogel  <kfogel@floss.red-bean.com>

        * configure: regenerated.
        
        * configure.in: print "Checking user's gender... ok".  I mean,
        what the heck, you only live once.

Thu Jan 11 14:00:00 1996  Jim Kingdon  <peary.cyclic.com>

	* cvsnt.mak: Update dependencies.

Thu Jan 11 12:03:10 1996  Norbert Kiesel  <nk@col.sw-ley.de>

	* NEWS: document loss of CVS_NOADMIN.  Also, mention the
	  possibility to use "cvs" in .cvsrc.

Wed Jan 10 20:40:23 1996  Karl Fogel  <kfogel@floss.red-bean.com>

        * configure: regenerated.

        * configure.in (AC_OUTPUT): added `macintosh/Makefile'.
        
        * Makefile.in (SUBDIRS): added `macintosh'.

Wed Jan 10 01:17:18 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* README: Remove URL of obsolete David Zuhn web page.

	* FAQ: Replace entire file with short paragraph explaining the FAQ
	is dead.

	* configure.in: Don't set exec_prefix.  Set bindir from prefix if
	exec_prefix isn't set.
	* configure: Regenerated.

	* INSTALL: Update list of machines for 1.6.85 (further changes to
	the list of machines will not receive ChangeLog entries).

Tue Jan  9 09:02:05 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Mention changes in default ignore list.

	* INSTALL: check.log is not in /tmp/cvs-sanity.  Mention
	submitting bug reports as a possibility, not a request from us.
	Separate out "make check" a bit to make clear it is optional.

Mon Jan  8 11:42:40 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Remove grep stuff; no longer necessary.
	Don't say that patch must understand unidiffs; no longer true.
	Suggest configuring with -Wall (here until we have a "how to hack
	CVS document").

Wed Jan  3 19:00:00 1996  Jim Kingdon  <kingdon@peary.cyclic.com>

	* .cvsignore: Add cvsnt.vcp.

Mon Jan  1 22:45:50 1996  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* os2/Makefile.in (Makefile), windows-NT/Makefile.in (Makefile):
	New rules.

Sun Dec 31 16:52:49 1995  Karl Fogel  <kfogel@floss.cyclic.com>

        * NEWS: add a blurb about password authentication.

Sun Dec 31 16:16:38 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* README: Add "submissions will be distributed under the GPL"
	language (like the newspapers have for letters to the editor).

Thu Dec 21 16:00:00 1995  Jim Kingdon  <kingdon@peary.cyclic.com>

	* cvsnt.mak: Revert to an old version, then add in recent changes
	to lists of files (using Visual C++; not by hand editing--this way
	it can be used as an internal project not just an external one).

Tue Dec 19 17:13:14 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Mention -kb (strictly speaking a bugfix, not a new
	feature, I guess, but it seems worth mentioning anyway).

Tue Dec 19 17:00:00 1995  Jim Kingdon  <kingdon@peary.cyclic.com>

	* TODO: Remove "regular TODO list:" line which accidentally got
	checked in.

Mon Dec 18 18:59:30 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* Makefile.in (TAR_VERBOSE): Default to empty, not "v".  I don't
	want that whole long list of files any more than jimb's daily
	update script does.

Sun Dec 17 23:59:11 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* configure.in (AC_REPLACE_FUNCS): Remove vasprintf.
	* configure: Regenerated.

Sat Dec 16 17:19:45 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* configure.in (AC_REPLACE_FUNCS): Add vasprintf.
	* configure: Regenerated.

Mon Nov 20 14:19:47 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: Remove items about developer communications; they are done.
	* NEWS: Mention developer communication features.
	* cvsinit.sh: Also add notify file.

Mon Dec 11 22:44:58 1995  Karl Fogel  <kfogel@totoro.cyclic.com>

        * New subdir "macintosh", for Mike Ladwig's
        <mike@twinpeaks.prc.com> port-in-progress.

Thu Dec  7 14:32:49 1995  Jim Meyering	(meyering@comco.com)

	* Makefile.in (check): Make sure library is built before running
	make in src.
	(remotecheck): Likewise.
	(installcheck): Likewise.

Wed Dec  6 11:40:37 1995  J.T. Conklin  <jtc@slave.cygnus.com>

	* configure.in: Remove leading -l from first argument of
 	AC_CHECK_LIB for -lkrb and -ldes checks.

Mon Dec  4 08:06:31 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* config.h.in: Regenerated.

Sun Dec  3 20:05:10 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* configure.in: Remove grep stuff.
	* configure: Regenerated.

Fri Dec  1 11:16:18 1995  Norbert Kiesel  <nk@col.sw-ley.de>

	* configure, config.h.in: re-ran autoconf

	* configure.in (AC_CHECK_HEADERS): add sys/resource.h to list of
	  tested headers

	* Makefile.in (DISTFILES): add config.sub and config.guess

Thu Nov 23 09:01:53 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: Remove item about doc describing undoing a change; it
	already does.

Sun Nov 19 18:12:36 1995  Jim Blandy  <jimb@totoro.cyclic.com>

	* Makefile.in (dist): Pull out the 'v' in the tar command to a
	variable, so I can disable it in my daily update script.

Tue Nov 14 18:31:36 1995  Greg A. Woods  <woods@most.weird.com>

	* cvsinit.sh:
	- new rcs id
	- new opening comment
	- read only one "word" for CVSROOT
	- add checkoutlist, cvswrappers, taginfo, wrap, & unwrap to
	examples install loop, special handling for latter....
	- don't do any special stuff for loginfo -- always comment out
	everything in the newly installed examples
	- add a wee message to suggest editing newly installed examples
	- tweak some more comments, esp. regarding install of contrib
	scripts....
	- make $CVSROOT/CVROOT/history group writable if it didn't exist
	as it's not very useful otherwise

Tue Nov 14 15:22:25 1995  Greg A. Woods  <woods@most.weird.com>

	* cvsinit.sh: woops!  wasn't installing contrib/log!

Tue Nov 14 12:09:11 1995  Greg A. Woods  <woods@most.weird.com>

	* INSTALL: oops, missed a couple of things about "configure"

	* configure: re-ran autoconf

Tue Nov 14 11:06:25 1995  Greg A. Woods  <woods@most.weird.com>

	* config.guess, config.sub: first time in (from autoconf-2.4)

	* configure.in:
	- updated to work with autoconf-2.4
	- call AC_CANONICAL_HOST to get host OS type right (needs
	config.sub and config.guess)
	- added full support for --with-diffutils and --with-gnugrep
	- fixed the diff search to work almost like the one for RCS-5.7
	- fixed some quoting problems

	* README: mention optional 'make check' step

	* INSTALL:
	- updated notes about working SunOS versions
	- re-wrote notes about RCS, diffutils, etc.
	- added notes about configuring	with GNU diffutils and GNU grep
	- added notes about using 'make	check'
	- changed bug reporiting instructions to mention cvsbug
	- re-wrote notes about setting CVSROOT in shell startups

Fri Nov  3 11:11:16 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* README: Fix typo in URL of molli's web site.

Tue Oct 31 19:28:16 1995  Karl Fogel  <kfogel@totoro.cyclic.com>

        * testing something, please ignore.

Mon Oct 23 18:37:27 1995  Karl Fogel  <kfogel@floss.cyclic.com>

        * configure: re-ran autoconf.

        * configure.in (AC_OUTPUT): os2/Makefile.

        * Makefile.in (SUBDIRS): added os2 subdir.

Mon Oct 23 12:02:51 1995  Norbert Kiesel  <nk@col.sw-ley.de>

	* cvsnt.mak:  added lib/getline.c

Fri Oct 20 17:04:55 1995  Norbert Kiesel  <nk@col.sw-ley.de>

	* cvsnt.mak: added src/expand_path.c, error.[ch] now in src

Thu Oct 19 16:26:32 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Remove note about RCS 5.7 and log messages
	consisting only of whitespace; fixed in CVS on 11 Jul 95.

Tue Oct 17 17:57:23 1995  Warren Jones  <wjones@tc.fluke.com>

	* man/cvs.5, examples/modules: Document -e.

Tue Oct 10 16:34:25 1995  Thorsten Lockert  <tholo@sigmasoft.com>

	* configure.in: More crud looking for kerberos, this time for 4.4BSD.
	* configure: Regenerated.

Sun Oct  8 12:22:19 1995  Peter Wemm  <peter@haywire.DIALix.COM>

	* configure.in: check for POSIX and BSD style reliable signals
	* configure: regenerated by autoconf
	* config.h.in: regenerated by autoheader

Fri Oct  6 21:50:48 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	There is little point in trying to share a file as trivial as
	lib/error.c between programs.  So just admit it is CVS specific:
	* lib/error.c: Move from here...
	* src/error.c: ...to here, and remove CVS_SUPPORT ifdefs.
	* lib/error.h: Move from here...
	* src/error.h: ...to here.  Remove CVS_SUPPORT
	ifdefs; remove unused variable error_message_count.
	* src/Makefile.in (OBJECTS): Add error.o.
	(SOURCES): Add error.c.
	(HEADERS): Add error.h.
	* lib/Makefile.in (OBJECTS): Remove error.o.
	(SOURCES): Remove error.c.
	(HEADERS): Remove error.h.
	* acconfig.h, configure.in: Remove CVS_SUPPORT.
	* configure, config.h.in: Rebuilt using autoconf and autoheader.
	* windows-NT/config.h: Remove CVS_SUPPORT.

Thu Oct  5 17:26:38 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Mention Siemens-Nixdorf RM600.

Tue Oct  3 09:32:19 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* NEWS: Remove item about -f global option; it is old news already
	mentioned elsewhere in the file.

Mon Oct  2 18:12:15 1995  Jim Blandy  <jimb@totoro.cyclic.com>

	* FAQ: Updated for CVS 1.5.  And now 1.6 is almost out.  The FAQ
        always lags the package, sigh...

Mon Oct  2 18:10:35 1995  Larry Jones  <larry.jones@sdrc.com>

	* configure, config.h.in: Rebuilt using autoconf and autoheader.

	* configure.in: check for <sys/bsdtypes.h>; used by src/server.c.
	(ISC keeps all the stuff that BSD has in <sys/types.h> here, so
	we need it for the FD_SET stuff for select().)
	Moved check for gethostname() after check for connect() since if
	connect() is not found, we may add librariesd and gethostname()
	may well be in one of those libraries.
	If connect() isn't found, look in -linet (ISC) in addition to
	-lsocket and -lnsl.  Also, ignore the cache since we need to
	update LIBS reguardless of whether it was found before or not and
	the answer may well be different afterwards.
	Define CLIENT_SUPPORT and SERVER_SUPPORT only if connect() is
	found.

	* INSTALL: update info for ISC 4.0.1; renumber footnotes.

Mon Oct  2 17:01:07 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Indicate CVS version tested with Solaris 2.4.

Mon Oct  2 10:42:37 1995  Karl Fogel  <kfogel@totoro.cyclic.com>

        * (configure): Re-ran autoconf.

Mon Oct  2 10:33:58 1995  Michael Finken  <finken@conware.de>

        * configure.in: AC_REPLACE `strstr'.

Sun Oct  1 23:22:28 1995  Bryan O'Sullivan  <bos@serpentine.com>

	* (INSTALL): noted that CVS works fine on Solaris 2.4 with both
	  gcc and SPARCworks cc.

Sun Oct  1 18:48:19 1995  Karl Fogel  <kfogel@totoro.cyclic.com>

        * (configure): re-ran autoconf following Peter Wemm's change
        below.

Sun Oct  1 22:24:56 1995  Peter Wemm  <peter@haywire.dialix.com>

	* configure.in: more extensive searching for -lsocket and -lnsl
	as done in Taylor-UUCP 1.06

Sun Oct  1 15:32:01 1995  Karl Fogel  <kfogel@totoro.cyclic.com>

        * (configure): re-ran autoconf.

Sun Oct  1 11:35:17 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: Remove item about setting comment leader automatically;
	RCS 5.7 does this.

Wed Sep 27 15:34:04 1995  Peter Wemm  <peter@haywire.dialix.com>

	* configure.in: correct detection of GNU diff's -a option for
	src/options.h
	* configure: regenerate with autoconf

Fri Sep 22 14:29:31 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: Remove item about reindenting on the way in and out.
	wrappers provide this functionality.

Wed Sep 20 14:27:28 1995  Jim Blandy  <jimb@totoro.cyclic.com>

        * configure.in: #define the symbols DIFF and GREP to be the paths
	to the DIFF and GREP programs; their values will be edited into
	src/options.h (and config.h, coincidentally).
	* acconfig.h (DIFF, GREP): Add these.
	* configure, config.h.in: Rebuilt using autoconf and autoheader.

Sun Sep 10 21:38:05 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* TODO: CVS can already undo a change, suggest documenting how.
	Expand slightly on mode stuff.
	Remove item about not letting people check out into repository (it
	is done).
	Redo item about expanding env vars in *info to reflect current
	thinking.
	Remove item about making it hard to accidentally move tags; it is
	done.
	Add client/server note to suggestion regarding interactive merging.

Fri Sep  1 12:07:02 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* BUGS: Remove items about refetching unpatchable files and options.h.

Fri Sep  1 09:20:09 1995  Jim Blandy  <jimb@totoro.cyclic.com>

	* Makefile.in (DISTFILES): Remove cvsnt.vcp; it's been deleted.

Thu Aug 31 13:47:35 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* Makefile.in (stamp-h): Rebuild config.status before trying to
	use it to build config.h.

	* Makefile.in: Change "cd foo; make" to "cd foo && make";
	otherwise we get into an infinite loop if an objdir doesn't exist.

Thu Aug 31 11:07:06 1995  Jim Blandy  <jimb@totoro.cyclic.com>

	* configure.in: Arrange not to touch options.h if we haven't
	modified it.  AC_CONFIG_HEADER checks if the file is unmodified,
	whereas AC_OUTPUT doesn't, and they're otherwise identical, so...
	(AC_CONFIG_HEADER): ... mention src/options.h here...
	(AC_OUTPUT): ... not here.
	Copy src/options.h to src/options.h-SAVED, don't move it.
	Otherwise, configure will create it again every time.
	Remove the code to compare the new src/options.h with
	src/options.h-SAVED and move it back if it's unchanged; autoconf
	writes that for us now.

Wed Aug 30 18:45:28 1995  Jim Blandy  <jimb@totoro.cyclic.com>

        * .cvsignore: Ignore WinDebug and WinRel directories, used by
	Microsoft Visual C++ to store object files and executables.

	* acconfig.h (CVS_SUPPORT, CLIENT_SUPPORT, SERVER_SUPPORT): New
	symbols, which autoheader will use to build config.h.in from
	configure.in.
	* configure.in (SERVER_SUPPORT, CLIENT_SUPPORT): Remove spaces
	between AC_DEFINEs and opening parens of argument lists.  Oops.
	* configure: Rebuild using autoconf.
	* config.h.in: Rebuild using autoheader.

	* Makefile.in (SUBDIRS): Uncomment windows-NT.

	* INSTALL: Added Windows NT to list of supported platforms.
	Added Windows NT installation instructions.

Tue Aug 29 16:08:01 1995  Jim Blandy  <jimb@totoro.cyclic.com>

	* cvsnt.mak: Completed Windows NT port.

	* configure.in (SERVER_SUPPORT, CLIENT_SUPPORT): Arrange for these
	to get #defined.  In the config.h file for the Windows NT port, we
	only #define CLIENT_SUPPORT.
	* config.h.in (SERVER_SUPPORT, CLIENT_SUPPORT): Add #undefs for
        these.

	* configure.in (AC_OUTPUT): Build the Makefile for the windows-NT
	subdirectory too.

	* cvsnt.vcp: Removed.  This doesn't store any information needed
	to compile CVS; it seems to be mostly programmer preference stuff.
	There's no need to distribute it.

	* INSTALL: Added info about Harris Nighthawk from Steve Allen ---
	thanks!

Mon Aug 21 16:08:37 1995  Jim Blandy  <jimb@totoro.cyclic.com>

        Bring the saga to a close:
	* configure.in: Use AC_PROG_MAKE_SET here, to decide whether we
	need to set the MAKE variable in Makefile.
	* Makefile.in: Use @SET_MAKE@ here, to set MAKE when appropriate.

Mon Aug 21 15:26:29 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* Makefile.in: Add comment regarding AC_SET_MAKE.

Sat Aug 19 21:57:51 1995  Jim Blandy  <jimb@totoro.cyclic.com>

	* configure.in: Define CVS_SUPPORT, to tell certain library
	functions that they're part of CVS.
	* config.h.in: Add #undef for CVS_SUPPORT, for configure to chew
	on.

Fri Aug 18 22:35:34 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* Makefile.in: Don't set MAKE; apparently all makes set it and GNU
	make, at least, will set it to what make was invoked as (perhaps gmake
	or some such), not just "make" (which might not support VPATH, for
	example).

Sun Aug 13 23:35:47 1995  Jim Kingdon  <kingdon@harvey.cyclic.com>

	* INSTALL: Convert Data General entry to same format as other entries.

Sun Aug 13 13:11:36 1995  Jim Blandy  <jimb@totoro.cyclic.com>

	* cvs-format.el: Add note about set-c-style.

Thu Aug  3 16:13:29 1995  Jim Blandy  <jimb@totoro.cyclic.com>

	* INSTALL: Fixed mail address for updates.

        * INSTALL: Noted that 1.5 runs on SunOS 4.1.1 -- 4.1.3.

Sun Jul 30 20:12:26 1995  James Kingdon  <kingdon@harvey.cyclic.com>

	* cvsinit.sh: Unify code for modules and loginfo with code for
	other files which have checked-out and ,v files in CVSROOT.
	Don't add "#" to start of lines in rcstemplate.

Sat Jul 29 16:48:05 1995  James Kingdon  <kingdon@harvey.cyclic.com>

	* cvsinit.sh: If arguments are given, give version number and
	usage message.  Make printed messages much more concise.

	* cvsinit.sh: Rename log.pl to log.  Don't install log twice.

	* Makefile.in (install-local), contrib/Makefile.in (install):
	Remove "reminder" to run cvsinit; running cvsinit is not required.

Fri Jul 28 16:46:10 1995  James Kingdon  <kingdon@harvey.cyclic.com>

	* Makefile.in (SUBDIRS): Comment out windows-NT.

Fri Jul 28 02:27:54 1995  Jim Blandy  <jimb@totoro.cyclic.com>

	* Makefile.in (DISTFILES): Add cvsnt.mak and cvsnt.vcp.
	(SUBDIRS): Add windows-NT.

	* config.h.in: Regenerated from configure.in by autoheader.

Wed Jul 19 18:00:00 1995  Jim Blandy  <jimb@cyclic.com>

	* configure.in (AC_CHECK_HEADERS): Check for <io.h> and <direct.h>.

Tue Jul 18 21:18:00 1995  Jim Blandy  <jimb@cyclic.com>

	* configure.in (AC_CHECK_HEADERS): Check for sys/param.h; Windows NT
	doesn't have it.

	* configure.in (AC_CHECK_HEADERS): Check for sys/time.h.  If you're
	using AC_HEADER_TIME, it's best to check for this too.

	* cvsnt.mak: New file --- makefile equivalent for Microsoft Visual C++.
	Choose this as your project when working with CVS under MSVC++.
	* cvsnt.vcp: New file --- configuration info for Microsoft Visual C++.
	* windows-NT: New subdirectory, containing files to be used to
	build under Microsoft Windows NT.

Wed Jul 12 23:26:24 1995  James Kingdon	 <kingdon@harvey.cyclic.com>

	* Makefile.in: Remove duplicate install-info rule.

Wed Jul 12 16:00:27 1995 Karl Fogel <kfogel@floss.cyclic.com>

	* Makefile.in (install-local): added rule for install-info, made
	`install' depend on it.

	* README: correct mailing list addresses.
	* INSTALL: same.

Wed Jul 12 09:15:02 1995  Jim Meyering	(meyering@comco.com)

	* configure.in (gdiff_path): Remove gdiff from the list of programs.
	SGI's Irix includes a program named gdiff that is an X-based GUI to
	diff.

	* configure.in: Add check for working fnmatch functions so that
	systems providing it don't incur the space overhead of linking
	with the version in lib.  Cross compiling builds always use the
	version in lib.

Tue Jul 11 15:47:20 1995  Greg A. Woods	 <woods@most.weird.com>

	* configure.in: add some FIXME comments
	- add a hack to restore src/options.h if AC_OUTPUT() didn't modify
	it. Note that this does *not* work for config.status, thus one
	FIXME comment.
	- add test for #! (to warn about possible failure of perl scripts
	- add test for diff and grep paths (for src/options.h.in)
	- fix up handling of src/options.h.in
	- add checks for PERL_PATH and CSH_PATH (from previous local changes)

Tue Jul 11 14:31:18 1995  Michael Shields  <shields@tembel.org>

	* Makefile.in (LDFLAGS): Pick up from configure.

Sun Jul	 9 19:03:00 1995  Greg A. Woods	 <woods@most.weird.com>

	* configure: re-ran autoconf-2.4

	* cvsinit.sh: make use of xVERSIONx from the Makefile
	- get rid of stuff duplicated in examples/* and use that instead

	* Makefile.in: $(VERSION) for cvsinit.sh wasn't set, so get it
	from src/version.c instead.

	* cvsinit.sh: install two more example CVSROOT control/config
	files: rcstemplate checkoutlist
	- install useful scripts from $CVSLIB/contrib too...
	(from previous local changes)

	* Makefile.in: add another reminder to run 'cvsinit' to update
	repository(ies) (from previous local changes)

Thu Jul	 6 17:53:55 1995  Paul Eggert  <eggert@twinsun.com>

	* Makefile.in (mostlyclean-local): Remove $(PROGS).

Sat Jul	 1 13:11:41 1995  James Kingdon	 <kingdon@harvey.cyclic.com>

	* Version 1.5.1.

Thu Jun 29 01:02:09 1995  James Kingdon	 <kingdon@harvey.cyclic.com>

	* configure.in, configure: cross_compiling gets set to "no", not
	empty--change test accordingly.

	* Version 1.4.93.

Wed Jun 28 22:33:54 1995  James Kingdon	 <kingdon@harvey.cyclic.com>

	* lib/Makefile.in, man/Makefile.in, doc/Makefile.in: Comment out
	rules for configure and config.status, just like in Makefile.in or
	src/Makefile.in.

Tue Jun 27 19:53:05 1995  James Kingdon	 <kingdon@harvey.cyclic.com>

	* configure.in (AC_REPLACE_FUNCS), configure: Remove fnmatch.
	* lib/Makefile.in (OBJECTS): Add fnmatch.
	Avoids buggy Solaris 2.4 libc fnmatch.

	* FAQ: Updated with new version from ftp.odi.com.

Mon Jun 26 15:17:46 1995  James Kingdon	 <kingdon@harvey.cyclic.com>

	* Version 1.4.92.

Thu Jun 22 12:45:24 1995  James Kingdon	 <kingdon@harvey.cyclic.com>

	* Version 1.4.91.

Wed Jun 21 16:33:04 1995  James Kingdon	 <kingdon@harvey.cyclic.com>

	* PROJECTS: New file.
	* Makefile.in (DISTFILES): Add it.

Wed Jun 21 16:12:14 1995  James Kingdon	 <kingdon@harvey.cyclic.com>

	* Makefile.in (FLAGS_TO_PASS): Don't pass INSTALL to sub-makes.
	The reason for passing it is gone now that we are using autoconf
	2.x which will set INSTALL in the sub-makefiles correctly.

Tue Jun 20 18:14:54 1995  James Kingdon	 <kingdon@harvey.cyclic.com>

	* configure.in, configure: Make sure src directory exists before
	trying to copy options.h to it.

Mon Jun 19 13:47:20 1995  Jim Blandy  <jimb@totoro.cyclic.com>

	* Makefile.in: Add a "remotecheck" target here, for consistency;
	people shouldn't have to switch to src before running the tests.

Mon Jun 19 10:08:03 1995  Jim Kingdon  (kingdon@lioth.cygnus.com)

	* INSTALL: Update list of machines tested.  Remove note about
	systems missing opendir--this is an autoconf issue, not something
	installers should have to worry about.	Refer to NEWS instead of
	ChangeLog.  No longer "strongly recommend" putting diff -a in
	options.h.

Fri Jun 16 22:30:03 1995  Jim Kingdon  (kingdon@cyclic.com)

	* Version 1.4.90.

	* configure, configure.in (AC_OUTPUT): Add config/pcl-cvs/Makefile.

	* Makefile.in (dist): Rename dist from ccvs-<version> to cvs-<version>.

	* Makefile.in (dist, dist-dir), src/Makefile.in, doc/Makefile.in,
	examples/Makefile.in, contrib/Makefile.in,
	contrib/pcl-cvs/Makefile, man/Makefile.in, lib/Makefile.in
	(dist-dir): Use srcdir where appropriate.

Thu Jun 15 14:33:37 1995  Jim Kingdon  (kingdon@cyclic.com)

	* CYCLIC-CVS-FAQ: Removed.
	* Rename ChangeLog.fsf to NEWS.	 Add information about changes
	since 1.4A2.
	* Makefile.in (DISTFILES): Adjust accordingly.
	* README: Revise to reflect current status of releases.

Thu Jun 15 12:22:42 1995  Jim Kingdon  (kingdon@cyclic.com)

	* TODO: Remove various items already fixed.  Revise others.

Thu Jun 15 12:24:45 1995  J.T. Conklin	<jtc@rtl.cygnus.com>

	* configure.in: Use AC_C_INLINE to handle inline.
	Reorganized to put compiler and OS checks first so that any
	special defines they might provide are used in subsequent tests.

	* configure, config.h.in: regenerated with autoconf and
	autoheader version 2.3.

Thu Jun	 8 16:33:51 1995  Jim Kingdon  (kingdon@lioth.cygnus.com)

	* INSTALL (Installation): Disrecommend RCS 5.6.[5-7].

Tue May 30 00:07:15 1995  Jim Meyering	(meyering@comco.com)

	* Makefile.in (distclean-local): Don't delete config.status here.
	(distclean): Delete config.status here instead, but only after
	recursive make invocations.  Otherwise, the new dependencies
	in */Makefile.in on ../config.status led to failure in each sub-make
	because there is no rule there to make ../config.status.
	Reported by Jeff Johnson <jbj@brewster.jbj.org>.
	(realclean): Likewise.

Mon May 29 22:24:28 1995  J.T. Conklin	<jtc@rtl.cygnus.com>

	* configure.in: Use AC_HEADER_DIRENT instead of AC_DIR_HEADER.
	Use AC_HEADER_STAT to determine if S_FOO() macros work.
	Use AC_HEADER_TIME to determine if both <sys/time.h> and <time.h>
	can be included as recommend by autoconf manual.
	Remove AC_STRUCT_TM test, as above test is better.

	* configure, config.h.in: regenerated with autoconf and
	autoheader version 2.3.

Fri Apr 28 14:36:49 1995  Ken Raeburn  (raeburn@kr-pc.cygnus.com)

	* Makefile.in: Set "all" as default target instead of ".PHONY".
	Some versions of make will otherwise try building all of the phony
	targets, in order.

Mon May	 1 14:02:42 1995  Jim Blandy  <jimb@totoro.bio.indiana.edu>

	* configure.in: Set up src/options.h for the user.  Its defaults are
	usually right.
	* README, INSTALL: Adjust installation instructions appropriately.

Fri Apr 28 22:31:26 1995  Jim Blandy  <jimb@totoro.bio.indiana.edu>

	* Makefile.in (DISTFILES): Brought up-to-date.
	(dist): Rewritten to use dist-dir targets, passing DISTDIR variable.
	(GZIP, GZIP_EXT): New variables.
	(dist-dir): New target.

	We don't want to include a file the user has to edit in the
	distribution.
	* src/options.h: No longer distributed.
	* src/options.h.in: Distribute this instead.
	* INSTALL, README: Installation instructions updated.

Sat Apr	 8 19:02:21 1995  Roland McGrath  <roland@baalperazim.frob.com>

	* configure.in: Check for fchdir.
	(connect check): Use AC_CHECK_LIB instead of (obsolete)
	AC_HAVE_LIBRARY.

Sat Apr	 8 14:52:46 1995  Jim Blandy  <jimb@totoro.bio.indiana.edu>

	* Makefile.in (CFLAGS): Let configure set the default for CFLAGS.
	Under GCC, we want -g -O.

Wed Feb	 8 06:49:49 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>

	* Makefile.in (stamp-h): Pass CONFIG_FILES=$@ to config.status so
	the target is created.
	* configure.in: Applied `autoupdate' from Autoconf 2.1 to
	modernize macro usage.
	(AC_RSH): Call removed.	 It was obsolete and not doing anything useful.
	(AC_OUTPUT): Write stamp-h as the Makefile rules expect we will.
	(AC_TYPE_PID_T): Add this check.

Tue Nov	 8 06:26:54 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)

	* Add stamp-h.in.  Remove it from .cvsignore.

Fri Oct 28 11:50:51 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)

	* Makefile.in: Comment out autoconf and autoheader rules.

Tue Oct 25 17:44:13 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>

	* Makefile.in (all, install, uninstall): Fail if make in
	subdirectory fails.

Tue Oct 18 13:26:15 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)

	* Makefile.in (FLAGS_TO_PASS): Pass INSTALL*.  Add comment about
	why we need to.

Tue Sep 27 08:27:06 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)

	* Makefile.in (SUBDIRS): Reinstate "contrib".
	* configure.in (AC_OUTPUT): Add contrib/Makefile.
	* configure: Regenerated.

Tue Sep 27 01:03:59 1994  John Gilmore	(gnu@cygnus.com)

	* Makefile.in (SUBDIRS):  Comment out "contrib".  Since we don't
	bother to configure it, we shouldn't make it either.

Wed Aug 10 14:52:57 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)

	* Makefile.in (FLAGS_TO_PASS): Don't include LIBS or CFLAGS twice.

	* configure.in: Include waitpid and memmove in AC_REPLACE_FUNCS
	list.  Don't check for memmove separately.
	* configure: Regenerated.
	* config.h.in: Regenerated for Mark's change.

Wed Aug 10 14:32:24 1994  Mark Eichin  (eichin@cygnus.com)

	* configure.in (KRB4): recognize --with-krb4=path. Also test for
	krb_get_err_text so src/main.c and src/client.c can deal
	appropriately.

Tue Aug	 9 15:49:07 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)

	* configure.in: Check sizes of `long' and `int', needed for md5
	code.
	* acconfig.h: New file.	 Mention HAVE_KERBEROS, to keep autoheader
	happy.
	* configure, config.h.in: Regenerated.

Tue Jul 19 11:23:21 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)

	* configure.in: Check not only that krb.h exists, but that it will
	actually compile correctly.
	* configure: Regenerated.

Mon Jul 11 07:04:36 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)

	* configure.in: Add comment re autoheader.

Tue Jun 28 22:09:23 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)

	* configure.in: Only look for -lsocket and -lnsl if we don't
	already have connect.
	* configure: Regenerated.

Mon Jun 27 17:21:48 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)

	* configure.in: Correct "krb_libdir" to "${krb_libdir}".
	* configure: Regenerated.

Fri Jun	 3 10:15:24 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)

	* configure.in: Check for -lsocket and -lnsl.
	* configure: Regenerated.

Fri May 27 18:12:43 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)

	* configure.in: Add valloc to AC_REPLACE_FUNCS.	 Add getpagesize
	to AC_HAVE_FUNCS.  Check for krb.h and -lkrb.  If not found, look
	in /usr/kerberos if native.  If found somewhere, define
	HAVE_KERBEROS and also look for -ldes.	Substitute includeopt.
	* configure: Regenerated.

Fri Mar 11 13:11:51 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)

	* configure.in: Check for <sys/select.h>; used by src/server.c.
	* configure: Regenerated.

Sun Jan	 9 12:04:15 1994  Ken Raeburn  (raeburn@kr-pc.cygnus.com)

	* configure.in: Check for timezone function, for NetBSD support.
	* configure: Regenerated.

Wed Dec 15 18:05:21 1993  david d `zoo' zuhn  (zoo@andros.cygnus.com)

	* Makefile.in: add MAKEINFO to MDEFINES, pass down MDEFINES on all
	  recursive make invocations that require it; define
	  INSTALL_PROGRAM and use it; reorganize MDEFINES; set infodir and
	  add to MDEFINES; use YACC instead of BISON


Mon Dec	 6 17:02:18 1993  K. Richard Pixley  (rich@sendai.cygnus.com)

	* src/diff.c (diff_fileproc): add support for "cvs diff -N" which
	  allows for adding or removing files via patches.