Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « doc « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 10a0f2286921f3d97aba954cea725844c46db8f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
2010-03-29  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7.3): New section.

2010-03-27  Corinna Vinschen  <corinna@vinschen.de>

	* setup2.sgml (setup-locale-charsetlist): Add EUC-CN and GB2312.

2010-03-27  Corinna Vinschen  <corinna@vinschen.de>

	* textbinary.sgml: Add missing </para>.

2010-03-27  Christopher Faylor  <me+cygwin@cgf.cx>

	* textbinary.sgml: Remove tr example and just mention u2d and d2u
	instead.

2010-03-25  Christopher Faylor  <me+cygwin@cgf.cx>

	* pathnames.sgml: Clarify wording of user-specific fstab files.  Fix
	typo.

2010-03-24  Corinna Vinschen  <corinna@vinschen.de>

	* legal.sgml: Bump copyright date.

2010-03-17  Corinna Vinschen  <corinna@vinschen.de>

	* faq-using.xml (faq.using.unicode): Remove old examples.

2010-03-12  Corinna Vinschen  <corinna@vinschen.de>

	* effectively.sgml (using-shortcuts): Match chapter with reality.

2010-03-11  Corinna Vinschen  <corinna@vinschen.de>

	* faq-using.xml (faq.using.bloda): Add "Credant Guardian Shield".

2010-03-05  Corinna Vinschen  <corinna@vinschen.de>

	* setup2.sgml (setup-env): Add cross reference to using-cygwinenv.
	Change description for locale environment variables to comply with
	changes in 1.7.2.

2010-03-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>

	* new-features.sgml (ov-new1.7.2): Describe XDR support.

2010-02-26  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7.2): Add strptime changes.

2010-02-26  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7.2): Add strftime/wcsftime changes.

2010-02-25  Yaakov Selkowitz  <yselkowitz@users.sourceforge.net>

	* new-features.sgml (ov-new1.7.2): Add SIGPWR support.

2010-02-25  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7.2): Move stty erase support into
	correct category.  Change "console window" to "Windows console".

2010-02-17  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7.2): Accommodate name change of getlocale
	to locale.
	* setup2.sgml (setup-locale-how): Ditto.

2010-02-15  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7.2): Add native DOS path and UNC path
	change.
	* pathnames.sgml (pathnames-intro): Make the Win32 path text a note
	and xref to new pathnames-win32 section.
	(cygdrive): Add description how the cygdrive mount flags apply to
	UNC paths starting with slashes.
	(pathnames-win32): New section describing native path handling.

2010-02-11  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7.2): Rephrase getlocale entry.

2010-02-10  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7.2): Add LC_MESSAGES support.
	* setup2.sgml (setup-locale-ov): Change "@euro" modifier description.
	(setup-locale-missing): Remove.

2010-02-07  Yaakov Selkowitz  <yselkowitz@users.sourceforge.net>

	* new-features.sgml (ov-new1.7-misc): Fix typo.

2010-02-07  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7.2): Add support for locales from
	/usr/share/locale/locale.alias.
	* setup2.sgml (setup-locale-ov): Ditto.

2010-02-06  Corinna Vinschen  <corinna@vinschen.de>

	* setup2.sgml (setup-locale-ov): Align description of working modifiers
	to latest changes.

2010-02-06  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7.2): Add support for new charsets.
	Change text for modifier support.
	(setup-locale-charsetlist): Add new GEORGIAN-PS and PT154 charsets
	to list of supported charsets.  Reorder list for non-ISO, non-CP
	charsets alphabetically.

2010-02-05  Corinna Vinschen  <corinna@vinschen.de>

	* setup2.sgml (setup-locale-ov): Add description for "uz_UZ@cyrillic"
	and "tt_RU@iqtelif" modifiers.  Slightly rephrase locale specifier
	description in terms of the modifier string.

2010-02-05  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7.2): Add grouping for printf/wprintf.

2010-02-04  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7.2): Add multibyte-awareness of regcomp
	and regexec.

2010-02-01  Yaakov Selkowitz  <yselkowitz@users.sourceforge.net>

	* README: Update for Cygwin docbook-utils package.
	* faq-programming.xml: Ditto.

2010-01-26  Yaakov Selkowitz  <yselkowitz@users.sourceforge.net>

	* faq-api.xml: d2u/u2d are from cygutils, not util-linux.

2010-01-26  Christopher Faylor  <me+cygwin@cgf.cx>

	* Makefile.in: Skip validation in xmlto step.

2010-01-26  Christopher Faylor  <me+cygwin@cgf.cx>

	* overview.sgml: Clarify language in "A brief history of Cygwin".

2010-01-26  Thomas Wolff  <towo@towo.net>

	* new-features.sgml (ov-new1.7.2): Add console enhancements.

2010-01-25  Corinna Vinschen  <corinna@vinschen.de>

	* faq-setup.xml: Drop references to non-NT systems.
	* faq-using.xml: Ditto.
	(faq.using.sshd-in-domain): New FAQ entry.

2010-01-25  Andy Koppe  <andy.koppe@gmail.com>

	* faq-using.xml: Fix typos and remove incorrect locale-specific
	documentation.
	* new-features.sgml: Ditto.
	* pathnames.sgml: Ditto.

2010-01-24  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml: Rework layout to use itemizedlist.  Fix typo.
	Add two missing entries.

2010-01-23  Corinna Vinschen  <corinna@vinschen.de>

	* setup2.sgml (setup-locale-charsetlist): Add CP932.  Change description
	for SJIS.

2010-01-23  Corinna Vinschen  <corinna@vinschen.de>

	* setup2.sgml (setup-locale-charsetlist): Add ASCII and TIS-620.  Add
	various aliases and case differences.

2010-01-22  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7.2): Add chapter for news in 1.7.2.
	* setup2.sgml (setup-locale-ov): Describe how valid locales are
	determined by Windows locale support.  Change description for modifiers
	in locale environment variables.
	(setup-locale-how): Describe new charset behaviour.  Mention new
	getlocale tool to fetch valid locale information from Windows.
	(setup-locale-missing): Drop now implemented LC_foo options.
	Explain missing LC_MESSAGES in more detail.

2010-01-17  Corinna Vinschen  <corinna@vinschen.de>

	* setup2.sgml (setup-locale): Mention three character codes per
	ISO 639-3.

2010-01-17  Corinna Vinschen  <corinna@vinschen.de>
	    Andy Koppe <andy.koppe@gmail.com>

	* setup2.sgml (setup-locale): Adapt description to the C using ASCII
	change in 1.7.2.

2010-01-16  Christopher Faylor  <me+cygwin@cgf.cx>

	* setup-net.sgml: Remove obsolete assertion.

2010-01-15  Corinna Vinschen  <corinna@vinschen.de>

	Suggested by Frank Fesevur <ffes@users.sourceforge.net>:
	* faq-using.xml (faq.using.bloda): Clarify wxvault.dll.

2010-01-15  Christopher Faylor  <me+cygwin@cgf.cx>

	* faq-setup.xml: Add missing setup options.  Sort options.

2010-01-12  Corinna Vinschen  <corinna@vinschen.de>

	* cygwinenv.sgml (cygwinenv-implemented-options): Try to make
	compatibility new symlinks vs. old Cygwin clearer.

2010-01-10  Corinna Vinschen  <corinna@vinschen.de>

	* pathnames.sgml (mount-table): Add info that posix=0 is default for
	the cygdrive prefix.

2010-01-07  Corinna Vinschen  <corinna@vinschen.de>

	* overview.sgml: Fix Red Hat brand name.

2010-01-04  Christopher Faylor  <me+cygwin@cgf.cx>

	* overview.sgml: Fix Red Hat URL.

2009-12-23  Corinna Vinschen  <corinna@vinschen.de>

	* pathnames.sgml (mount-table): Add missing slash in pathname.

2009-12-14  Corinna Vinschen  <corinna@vinschen.de>

	* faq-setup.xml (faq.setup.mirror): Fix URL to wget.

2009-12-02  Ken Brown  <kbrown@cornell.edu>

	* setup2.sgml (setup-env): Clarify that Windows environment gets
	copied over.  Add paragraph about TMP, TEMP, and TMPDIR.

2009-11-18  Corinna Vinschen  <corinna@vinschen.de>

	* overview2.sgml (ov-hi-files): Remove reference to root directory when
	explaining fstab content.  Add paragraph about Extended Attributes.
	Discourage chroot.

2009-11-16  Corinna Vinschen  <corinna@vinschen.de>

	* pathnames.sgml (pathnames-specialchars): Fix typos.

2009-11-12  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7-os): Mention Windows 7 and 2008 R2.
	(ov-new1.7-device): Add API get_avphys_pages, get_nprocs,
	get_nprocs_conf, and get_phys_pages.

2009-10-31  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7-misc): Add installation-specific
	unique object names description.

2009-10-28  Yaakov Selkowitz  <yselkowitz@users.sourceforge.net>

	* pathnames.sgml: Add limitation of case sensitivity with CreateProcess.

2009-10-28  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7-posix): Mention UTF-8 as "C" default
	and the default locale "C.UTF-8".
	* setup2.sgml (setup-locale-ov): Ditto.

2009-10-26  Christopher Faylor  <me+cygwin@cgf.cx>

	* faq-setup.xml: Fix clean_setup.pl reference.

2009-10-26  Christopher Faylor  <me+cygwin@cgf.cx>

	* faq-setup.xml: Change clean_setup.pl reference.

2009-10-15  Corinna Vinschen  <corinna@vinschen.de>

	* faq-setup.xml (faq.setup.disk-space): Fix URL pointing to
	clean_setup.pl script.

2009-10-09  Corinna Vinschen  <corinna@vinschen.de>

	* pathnames.sgml (pathnames-specialchars): Add control chars to the
	list.  Explain backslash exception.

2009-10-03  Dave Korn  <dave.korn.cygwin@gmail.com>

	* faq-using.xml (faq.using.bloda): Add Lenovo IPS Core Service.

2009-10-02  Corinna Vinschen  <corinna@vinschen.de>

	* setup2.sgml (setup-locale-ov): Fix typo in C+charset example.
	Rephrase how the locale environment variables are evaluated.

2009-09-30  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7-file): Ctrl-X, not Ctrl-N.
	* pathnames.sgml (pathnames-unusual): Ditto.
	* setup2.sgml (setup-locale-ov): Change description according to
	latest changes.
	(setup-locale-how): Rewrite.
	(setup-locale-console): Enable section again.  Change to reflect
	recent changes.
	(setup-locale-problems): Change to reflect recent changes.

2009-09-26  Eric Blake  <ebb9@byu.net>

	* new-features.sgml (ov-new1.7-file): Mention fexecve, execvpe.

2009-09-25  Eric Blake  <ebb9@byu.net>

	* new-features.sgml (ov-new1.7-file): Mention eaccess, euidaccess,
	canonicalize_file_name, and document change in access semantics.

2009-09-24  Corinna Vinschen  <corinna@vinschen.de>

	* setup2.sgml (setup-locale-problems): Fix charset names of codepages
	936 and 949.

2009-09-24  Eric Blake  <ebb9@byu.net>

	* setup2.sgml (setup-locale-problems): Document how to install
	non-default charsets.

2009-09-21  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7-file): Add new hardlink behaviour on
	filesystems not supporting hardlinks.
	* overview2.sgml (ov-hi-files): Change descripton accordingly.

2009-08-26  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7-posix): Add "KOI8-R" and "KOI8-U"
	charsets.

2009-08-22  Corinna Vinschen  <corinna@vinschen.de>

	* setup2.sgml (setup-locale-charsetlist): Add KOI8-R and KOI8-U to list
	of supported charsets.

2009-08-22  Corinna Vinschen  <corinna@vinschen.de>

	* setup2.sgml (setup-locale-charsetlist): Add description of
	case-insensitivity of charsets.  Fix a typo.  Add "UTF8" to the list.

2009-08-12  Dave Korn  <dave.korn.cygwin@gmail.com>

	* faq-using.xml (faq.using.bloda): Typofix MacAfee -> McAfee.

2009-07-23  Corinna Vinschen  <corinna@vinschen.de>

	* faq-using.xml (faq.using.ipv6): Try to clarify OS specific support.
	* faq-what.xml (faq.what.supported): Add Windows 7 and 2008 R2.
	* new-features.sgml: Add "and later" to rcmd news.

2009-07-20  Corinna Vinschen  <corinna@vinschen.de>

	* Makefile.in (all): Fix wrong target names.
	(cygwin-ug-net/cygwin-ug-net-nochunks.html.gz): Ditto.
	(cygwin-ug-net/cygwin-ug-net.pdf): Convert to use docbook2pdf.
	(cygwin-api/cygwin-api.pdf): Ditto.

2009-07-20  Corinna Vinschen  <corinna@vinschen.de>

	* faq: Throughout, revert references to User's Guide to default URL.

2009-07-20  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7-misc): Add stdc++ new/delete wrappers.

2009-07-20  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7-posix): Add WCONTINUED, WIFCONTINUED.

2009-07-20  Corinna Vinschen  <corinna@vinschen.de>

	* setup2.sgml (setup-locale-charsetlist): Fix ISO88-59-13 and -15
	codepage numbers.

2009-07-08  Christopher Faylor  <me+cygwin@cgf.cx>

	* pathnames.sgml: Fix typo.

2009-07-03  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7-file): Add fpurge and mkstemps to new
	API functions.

2009-07-01  Christopher Faylor  <me+cygwin@cgf.cx>

	Clean up some sources.redhat.com references.

2009-06-24  Corinna Vinschen  <corinna@vinschen.de>

	* faq-setup.xml (faq.setup.setup-fails-on-ts): Fix another typo.

2009-06-24  Corinna Vinschen  <corinna@vinschen.de>

	* faq-setup.xml (faq.setup.setup-fails-on-ts): Fix typo.

2009-06-23  Corinna Vinschen  <corinna@vinschen.de>

	* faq-setup.xml (faq.setup.setup-failes-on-ts): Change rebaseall to
	rebase.

2009-06-23  Corinna Vinschen  <corinna@vinschen.de>

	* faq-setup.xml (faq.setup.setup-failes-on-ts): New FAQ entry.

2009-06-19  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7-misc): Add new link libs.
	* setup2.sgml (setup-locale-ov): Explain locale-specific wcwidth
	feature.

2009-06-12  Ken Brown  <kbrown@cornell.edu>

	* faq-using.xml (faq.using.emacs): Update.

2009-06-04  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml: Add changes to console BS and Space key.

2009-05-26  Christopher Faylor  <me+cygwin@cgf.cx>

	Change explicitely to explicitly throughout.

2009-05-15  Corinna Vinschen  <corinna@vinschen.de>

	* setup2.sgml (setup-locale-console): Disable section for now.

2009-05-14  Corinna Vinschen  <corinna@vinschen.de>

	* faq-setup.xml (faq.setup.upgrade-mountpoints): New entry.
	* faq-using.xml (faq.using.directory-structure): Align example to
	latest mount output.
	* pathnames.sgml (mount-table): Add note about upgrade helper scripts
	to create /etc/fstab and /etc/fstab.f/${USER}.

2009-05-14  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml: Add automounting of /, /usr/bin, and /usr/lib.
	* pathnames.sgml (pathnames-intro): Be more verbose about POSIX and
	Win32 paths.
	(mount-table): Add "auto" flag.  Add a paragraph about /usr/bin and
	/usr/lib.
	(pathnames-mount-ex): Enhance flags output.

2009-05-13  Corinna Vinschen  <corinna@vinschen.de>
	    Christopher Faylor  <me+cygwin@cgf.cx>

	* pathnames.sgml (mount-table): Sort mount options and add override
	option.  Add description of root mount handling.

2009-05-13  Corinna Vinschen  <corinna@vinschen.de>

	* pathnames.sgml (pathnames-unusual): Talk about using UTF-8 in C
	locale.
	* setup2.sgml (setup-locale-problems): Ditto.

2009-05-06  Corinna Vinschen  <corinna@vinschen.de>

	* faq-setup.xml: Fix entry explaing how the homedir is evaluated
	according to recent change.

2009-04-07  Corinna Vinschen  <corinna@vinschen.de>

	* setup2.sgml (setup-locale-console): New section to explain
	console character set setting.
	* faq: Throughout, change references to User's Guide to references
	to 1.7 User's Guide temporarily.
	* faq-setup.html (faq.using.unicode): Rephrase slightly.
	(faq.using.weirdchars): New FAQ entry for console charset problems.

2009-04-06  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml (ov-new1.7-posix): Remove JIS from supported
	charsets.
	* setup2.sgml (setup-locale-charsetlist): Ditto.

2009-04-06  Corinna Vinschen  <corinna@vinschen.de>

	* setup2.sgml (setup-locale-problems): Change title to be more clear
	when referencing this section.

2009-04-03  Kevin Buettner  <kevinb@redhat.com>

	* Various syntactical and semantical fixes throughout.

2009-04-01  Corinna Vinschen  <corinna@vinschen.de>

	* faq-using.xml (faq.using.symlinkstoppedworking): Rename.
	(faq.using.ipv6): New IPv6 FAQ.
	* gdb.sgml: Remove incorrect statement about Insight.

2009-03-31  Corinna Vinschen  <corinna@vinschen.de>

	* setup2.sgml (setup-locale-problems): Fix an incomplete sentence.

2009-03-31  Corinna Vinschen  <corinna@vinschen.de>

	* faq-using.xml (faq.using.unicode): Modernize.
	(faq.api.symlinkstoppedworking): Move here from faq-api.xml.

2009-03-30  Dave Korn  <dave.korn.cygwin@gmail.com>

	* faq-using.xml (faq.using.bloda):  Update with new entries.

2009-03-26  Corinna Vinschen  <corinna@vinschen.de>

	* cygwinenv.sgml: Add text to explain new UTF-16 symlinks.
	* faq-api.xml: Add FAQ entry "Why do some of my old symlinks don't
	work anymore?"
	* new-features.sgml: Fix symlink text.  Add new UTF-16 symlinks.
	* overview2.sgml: Add text about new UTF-16 symlinks and potential
	problems with old symlinks.
	* pathnames.sgml: Fix typo.  
	* setup2.sgml: Extend text about problems with symlinks.

2009-03-26  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml: Replace GB2312 with GBK.
	* setup2.sgml: Ditto.

2009-03-25  Corinna Vinschen  <corinna@vinschen.de>

	* pathnames.sgml: Add a note that ASCII SO handling isn't foolproof
	under all circumstances.

2009-03-25  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml: Add missing GB2312 and eucKR character sets.
	* pathnames.sgml: Change "DOS devices" title to "Invalid filenames"
	and rephrase that section.
	Add section "Filenames with unusual (foreign) characters".
	Fix an emphasis.
	* setup-net.sgml: Integrate setup-locale section.
	* setup2.sgml: Add locale variables to section "Environment Variables".
	Add section "Internationalization".

2009-03-24  Corinna Vinschen  <corinna@vinschen.de>

	* new-features.sgml: Add section about chaged (no)winsymlink default.

2009-03-24  Corinna Vinschen  <corinna@vinschen.de>

	* cygwinenv.sgml: Move "codepage:xxx" to the removed options section.
	Change text accordingly.
	* new-features.sgml: Try to explain new way to define character sets.

2009-03-18  Corinna Vinschen  <corinna@vinschen.de>

	* cygwin-ug-net.in.sgml: Update date.
	* cygwinenv.sgml: Fix codepage:utf8 text in terms of setting
	environment variables.
	* new-features.sgml: New file describing new Cygwin 1.7 features.
	Layout is preliminiary only.
	* overview.sgml: Insert content of new-features.sgml.

2009-03-18  Corinna Vinschen  <corinna@vinschen.de>

	* overview2.sgml: Remove reference to CYGWIN=binmode.
	* textbinary.sgml: Ditto.  Rephrase certain paragraphs to match
	Cygwin 1.7 behaviour.  Add popen(3) and pipe(2) behaviour.  Make
	quite clear that binmode is preferred.  Add *mode.o files to
	description for developers.

2009-03-09  Corinna Vinschen  <corinna@vinschen.de>

	* pathnames.sgml: Try to be more clear explain raw devices.

2009-03-03  Corinna Vinschen  <corinna@vinschen.de>

	* faq-using.xml: Rework UTF FAQ to accommodate latest setlocale
	change in newlib.

2009-03-03  Corinna Vinschen  <corinna@vinschen.de>

	* pathnames.sgml: Remove reference to managed mountpoints in mount
	entry example.

2009-02-23  Dr. Volker Zell <dr.volker.zell@oracle.com>

	* faq-using.xml: Rework XEmacs FAQ.

2009-02-14  Corinna Vinschen  <corinna@vinschen.de>

	* faq-using.xml: Fix usage of ampersand in NT emacs script.

2009-02-14  Jari Aalto <jari.aalto@cante.net>

	* faq-using.xml: Expand Emacs entries.

2009-02-13  Nahor <nahor.j+gmane@gmail.com>

	* overview.sgml: Fix 1.7 release date.

2009-02-13  Corinna Vinschen  <corinna@vinschen.de>

	* cygwin-api.in.sgml: Fix API section layout.

2009-02-13  Corinna Vinschen  <corinna@vinschen.de>

	* pathnames.sgml: Add a cygdrive section.

2009-02-13  Corinna Vinschen  <corinna@vinschen.de>

	* pathnames.sgml: Replace "binmode" with new "binary" output of mount.

2009-02-12  Corinna Vinschen  <corinna@vinschen.de>

	* faq-using.xml: First cut on Emacs.

2009-02-12  Corinna Vinschen  <corinna@vinschen.de>

	* faq-setup.xml: Revamp for Cygwin 1.7.
	* faq-using.xml: Ditto.

2009-02-11  Corinna Vinschen  <corinna@vinschen.de>

	* faq-programming.xml: Revamp (mostely) for Cygwin 1.7.
	* faq-what.xml: Ditto.

2009-02-11  Corinna Vinschen  <corinna@vinschen.de>

	* Makefile.in (FAQ_SOURCES): Define FAQ sources.
	(faq/faq.html): Depend on FAQ sources.
	(faq/faq-nochunks.html): Ditto.
	* faq-api.xml: Revamp for Cygwin 1.7.
	* faq-problems.xml: Remove.
	* faq-sections.xml: Accommodate removal of faq-problems.xml.
	* faq.xml: Ditto.

2009-02-03  Corinna Vinschen  <corinna@vinschen.de>

	* pathnames.sgml: Rephrase the "Case sensitive filenames" chapter
	slightly.

2009-01-24  Corinna Vinschen  <corinna@vinschen.de>

	* pathnames.sgml: Add requirement for world-readability of special
	/etc files.

2009-01-24  Corinna Vinschen  <corinna@vinschen.de>

	* pathnames.sgml: Add section about accessing /etc files.

2009-01-21  Corinna Vinschen  <corinna@vinschen.de>

	* cygserver.sgml: Remove the "How to use the Cygserver services"
	section.
	* cygwinenv.sgml: Move "(no)server" to the removed options section.
	* faq-programming.xml: Remove CYGWIN=server requirement for running
	the Cygwin testsuite.
	* ntsec.sgml: Ditto for using `passwd -R'.

2008-12-15  Corinna Vinschen  <corinna@vinschen.de>

	* gcc.sgml: Use 'bash$' as Cygwin prompt throughout.
	* gdb.sgml: Ditto.
	* pathnames.sgml: Ditto.  Fix the @ expansion example.

2008-12-13  Christopher Faylor  <me+cygwin@cgf.cx>

	* pathnames.sgml: Convert some backslashes to slashes.

2008-12-11  Christian Franke  <franke@computer.org>

	* pathnames.sgml: New section for /proc/registry. Document registry
	name encoding.

2008-12-04  Corinna Vinschen  <corinna@vinschen.de>

	* ntsec.sgml: Fix typo.

2008-12-03  Corinna Vinschen  <corinna@vinschen.de>

	* ntsec.sgml: Revamp parts of the doc for clearness.

2008-12-02  Corinna Vinschen  <corinna@vinschen.de>

	* ntsec.sgml: Fix a few typos.

2008-12-02  Corinna Vinschen  <corinna@vinschen.de>

	* cygserver.sgml: Fix cross reference to the ntsec documentation.

2008-12-02  Corinna Vinschen  <corinna@vinschen.de>

	* cygserver.sgml: Document new feature to store hidden passwords
	for seteuid.

2008-12-02  Corinna Vinschen  <corinna@vinschen.de>

	* ntsec.sgml: Finishing up changes for 1.7.

2008-12-01  Corinna Vinschen  <corinna@vinschen.de>

	* ntsec.sgml: Further changes for 1.7.  Switch from "NT" to "Windows". 
	Add preliminary text.  Try to be more clear in description.  Remove
	useless chapters.  Finish the permission related chapters.

2008-11-30  Christopher Faylor  <me+cygwin@cgf.cx>

	* faq-using.xml: Remove assertion that lpr doesn't exist.
	* faq-what.xml: Remove ancient who's who data.

2008-11-25  Christopher Faylor  <me+cygwin@cgf.cx>

	* overview2.sgml: Reorganize and make minor wording changes.

2008-11-25  Christopher Faylor  <me+cygwin@cgf.cx>

	* overview2.sgml: Clarify unix-specific automatic updates section.

2008-11-25  Corinna Vinschen  <corinna@vinschen.de>

	Suggested by Valerio Bigiani <vbigiani@yahoo.it>:
	* overview2.sgml: Add text that no automatic updates are provided.

2008-11-11  Corinna Vinschen  <corinna@vinschen.de>

	* cygwinenv.sgml: Add description for upcaseenv option.

2008-09-22  Christopher Faylor  <me+cygwin@cgf.cx>

	* setup2.sgml: Clarify heap allocation.

2008-08-13  Corinna Vinschen  <corinna@vinschen.de>

	* pathnames.sgml: Move description for (cyg,not)exec mount options
	from utils.sgml here.  Clarify nouser mount points.

2008-07-18  Corinna Vinschen  <corinna@vinschen.de>

	* cygwinenv.sgml: Move binmode option to list of removed options.

2008-07-17  Corinna Vinschen  <corinna@vinschen.de>

	* Revamp documentation for Cygwin 1.7, part 1.

2008-07-01  Christopher Faylor  <me+cygwin@cgf.cx>

	* Makefile.in: Temporarily add ability to generate pdfs.

2008-06-26  Fred Korz  <korz_fred@emc.com>

	* effectively.sgml: Correct subject-verb agreement, missing verb
	(typo), preposition and (definite vs indefinite) article use.

2008-06-19  Christopher Faylor  <me+cygwin@cgf.cx>

	* faq-using.xml: Add more words about multiple cygwins.

2008-04-24  Corinna Vinschen  <corinna@vinschen.de>

	* cygwin-api.in.sgml: Add std-susv4 section to Compatibility chapter.

2008-04-13  Corinna Vinschen  <corinna@vinschen.de>

	* cygwinenv.sgml: Drop description of "transparent_exe" option.

2007-29-12  Dave Korn  <dave.korn@artimi.com>

	* faq-using.xml (faq.using.bloda):  New entry.
	(faq.using.firewall, faq.using.anti-virus):  Link to faq.using.bloda.
	* faq-setup.xml (faq.setup.hang):  Likewise link to faq.using.bloda.

2007-12-16  Christopher Faylor  <me+cygwin@cgf.cx>

	* pathnames.xml: Fix a typo.

2007-09-25  Corinna Vinschen  <corinna@vinschen.de>

	* faq-what.xml: Remove paragraph about and link to stoneage old
	history.html file.

2007-08-24  Christopher Faylor  <me+cygwin@cgf.cx>

	* dll.sgml: myprog.ca -> myprog.c

2007-08-12  Christopher Faylor  <me+cygwin@cgf.cx>

	* faq-programming.xml: Clarify where to run "make check".

2007-07-18  Brian Dessent  <brian@dessent.net>

	* faq-using.xml (faq.using.console-window): Mention FHS location of
	docs and remove outdated reference to ash.

2007-06-29  Corinna Vinschen  <corinna@vinschen.de>

	* cygwin-api.in.sgml: Remove authorgroup and revhistory.
	* cygwin-ug.in.sgml: Add Joshua Daniel Franklin to authorgroup.
	Remove revhistory.
	* legal.sgml: Update dates.

2007-06-05  Corinna Vinschen  <corinna@vinschen.de>

	* cygwin-api.in.sgml: Accommodate new "Compatibility" section layout.

2006-12-12  Corinna Vinschen  <corinna@vinschen.de>

	* cygwinenv.sgml: Drop description of "traverse" option.

2006-08-25  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* faq-setup.xml (faq.setup.uninstall): Mention Safe Mode
	requirement for accessing the Security tab in XP Home.
	* faq-using.xml (faq.using.chmod): Mention FAT32.

2006-08-09  Christopher Faylor  <cgf@timesys.com>

	* overview2.sgml: Remove inaccurate "full support for windows
	pathnames" clause.

2006-08-01  Christopher Faylor  <cgf@timesys.com>

	* cygwinenv.sgml: Document [no]dosfilewarning option.

2006-07-18  Corinna Vinschen  <corinna@vinschen.de>

	* pathnames.sgml: Change text for the order in which executables
	are evaluated.

2006-06-01  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* faq-setup.xml (faq.setup.automated): New FAQ.

2006-05-30  Dave Korn  <dave.korn@artimi.com>

	* faq-api.xml (faq.api.winsock):  Replace references to depracated
	Win32_Winsock macro with __USE_W32_WINSOCK, and enlarge on details.

2006-05-24  Christopher Faylor  <cgf@timesys.com>

	* configure.in: Update to newer autoconf.
	(thanks to Steve Ellcey)
	* configure: Regenerate.
	* aclocal.m4: New file.

2006-04-04  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* faq-programming.xml (faq.programming.adjusting-heap):
	Clarify argument parameter sizes.
	* faq-using.xml (faq.using.chmod):
	Improve chmod FAQ.

2006-03-18  Christopher Faylor  <cgf@timesys.com>

	* cygwinenv.sgml: Rename fork_retry to proc_retry since it has turned
	out to be more general than just fork.

2006-03-13  Christopher Faylor  <cgf@timesys.com>

	* cygwinenv.sgml: Explain about new fork_retry CYGWIN environment
	variable setting.

2006-03-07  Bas van Gompel  <cygwin-patch.buzz<at>bavag.tmfweb.nl>

	* cygwinenv.sgml: Add missing </para> at transparent_exe.

2006-02-05  Corinna Vinschen  <corinna@vinschen.de>

	* cygwinenv.sgml: Explain transparent_exe option.

2006-02-01  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* faq-setup.xml (faq.setup.what-packages):
	Mention new cygcheck -p option.

2006-01-27  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* faq-programming.xml (faq.programming.building-cygwin):
	Move cocom to the build requirements.

2006-01-26  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* faq-programming.xml (faq.programming.building-cygwin):
	Simplify instructions, and remove tar usage basics.

2006-01-26  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* faq-programming.xml (faq.programming.ipc): Add new FAQ about
	cygserver and its relation to the "Bad system call" error.
	* faq-setup.xml (faq.setup.uninstall-all): Mention postgresql.
	* overview2.sgml: Update security info on shared memory.

2006-01-25  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* faq-programming.xml (faq.programming.building-cygwin): Add
	list of packages required for building and exact check instructions.
	* faq-setup.xml (faq.setup.uninstall-service): New instructions
	on uninstalling a cygwin service.
	(faq.setup.uninstall-all): Reference new service uninstall FAQ.

2006-01-25  Igor Peshansky  <pechtcha@cs.nyu.edu>

	* faq-setup.xml (faq.setup.snapshots): Rename DLL using Windows tools.

2006-01-18  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* Makefile.in : Remove references to old texinfo FAQ.
	* calls.texinfo : Remove.
	* changes.texinfo : Remove.
	* copy.texinfo : Remove.
	* faq.texinfo : Remove.
	* history.texinfo : Remove.
	* how-api.texinfo : Remove.
	* how-programming.texinfo : Remove.
	* how-resources.texinfo : Remove.
	* how-using.texinfo : Remove.
	* how.texinfo : Remove.
	* install.texinfo : Remove.
	* readme.texinfo : Remove.
	* relnotes.texinfo : Remove.
	* what.texinfo : Remove.
	* who.texinfo : Remove.

2006-01-12  Igor Peshansky  <pechtcha@cs.nyu.edu>

	* doctool.c (scan_directory): Ignore "CVS" directories.
	* faq-setup.xml (faq.setup.setup): Correct URL typo.
	(faq.setup.snapshots): Clarify.

2005-12-30  Christopher Faylor  <cgf@timesys.com>

	* relnotes.texinfo: Remove entry about hyperthreaded processor.

2005-12-30  Christopher Faylor  <cgf@timesys.com>

	* faq-problems.html: Remove entry about hyperthreaded processor.

2005-12-12  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* faq-programming.xml: Add note about struct stat64.

2005-12-03  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* faq-setup.xml: Add note about clean_setup.pl.
	* faq-using.xml: Remove unnecessary line of elisp.

2005-10-02  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* faq-what.xml: Add 2003 and WOW64 to "supported" FAQ.
	* faq-programming.xml: Fix cygexec FAQ, building link.

2005-09-25  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* faq.xml: Remove copyright section, link to license.html
	* faq-sections.xml: Remove copyright section, link to license.html
	* faq-programming.xml: Remove confusing reference to Red Hat.
	* faq-what.xml: Reword "supported" FAQ.

2005-09-15  Corinna Vinschen  <corinna@vinschen.de>

	* cygwinenv.sgml (ntea): Add some wording to scare people away
	from using this option.

2005-08-26  Brian Dessent  <brian@dessent.net>

	* faq-using.xml: Add 'net use' hint to network shares FAQ.

2005-08-26  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* Makefile.in: Remove extra anchor to make NN4 happy.
	* faq.xml: Link to cygwin.com/license.html
	* faq-resources.xml: Link instead of duplicating info.
	* faq-using.xml: Split out services and network shares FAQ.
	* faq-what.xml: Link to cygwin.com/license.html

2005-08-17  Christopher Faylor  <cgf@timesys.com>

	* textbinary.sgml: Correct incorrect information about ability to
	specify text mode in fopen().

2005-08-05  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* cygwin.dsl: Add default DOCTYPE and output filename.
	* Makefile: Update to switch FAQ from texinfo to DocBook.
	* faq.xml: New file.
	* faq-api.xml: New file.
	* faq-problems.xml: New file.
	* faq-programming.xml: New file.
	* faq-resources.xml: New file.
	* faq-sections.xml: New file.
	* faq-setup.xml: New file.
	* faq-using.xml: New file.
	* faq-what.xml: New file.

2005-07-10  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* cygwinenv.sgml: Update tty section to mention rxvt and xterm.
	* how-programming.texinfo: Update GPL section of CVS FAQ.
	* how-using.texinfo: Expand FAQ about out of date packages.
	* setup-net.sgml: Add troubleshooting setup.exe section.

2005-07-08  Corinna Vinschen  <corinna@vinschen.de>

	* how-using.texinfo: Fix typos.

2005-06-20  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* how-resources.texinfo: Update section on cygwin-developers.
	* how-using.texinfo: Add FAQ about firewall software. Update
	section on mounting and specifically note using managed mounts.

2005-06-03  Max Kaehn <slothman@electric-cloud.com>

	* how-programming.texinfo: Add "How do I load cygwin1.dll dynamically
	from a Visual Studio or MinGW application?"

2005-05-28  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* how-using.texinfo : Update the mkdir -p section to reflect
	changes in handling network drives.

2005-05-18  Brian Dessent  <brian@dessent.net>

	* install.texinfo ("How do I uninstall..."): Rewrite to cover
	removing services, dealing with permissions, and other common
	tasks for removing Cygwin completely.

2005-05-08  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* how-programming.texinfo: Replace MAKE_MODE entry with FAQ about
	execvp errors and cygexec.

2005-04-20  Brian Dessent  <brian@dessent.net>

	* pathnames.sgml (mount-table): Indicate that user-specific
	mounts override system-wide.

2005-04-20  Gerd Spalink  <Gerd.Spalink@t-online.de>

	* fhandler-tut.txt: Update description to cygwin 1.5.13

2005-04-19  Corinna Vinschen  <corinna@vinschen.de>

	* cygwinenv.sgml: Mention that check_case is deprecated.

2005-04-16  Corinna Vinschen  <corinna@vinschen.de>

	* cygwinenv.sgml: Add new words for (no)traverse option.

2005-03-30  Christopher Faylor  <cgf@timesys.com>

	* how-using.texinfo: Add more words to the "multiple DLL" section.

2005-03-25  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* how-programming.texinfo: Mention generic-build-script in
	packaging FAQ.

2005-03-19  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* how-programming.texinfo: Remove incorrect libm.a note.

2005-03-05  Christopher Faylor  <cgf@timesys.com>

	* pathnames.sgml: Clarify binmode/textmode behavior slightly.
	* textbinary.sgml: Ditto.

2005-03-03  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* how-api.texinfo: Add Pierre's security text.

2005-02-23  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* README: New file.

2005-01-31  Corinna Vinschen  <corinna@vinschen.de>

	* cygwinenv.sgml: Add words for (no)traverse option.

2005-01-29  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* install.texinfo: Update setup.exe snapshot URL.
	* ntsec.sgml: Add Pierre's Windows 2003 text.

2005-01-28  Corinna Vinschen  <corinna@vinschen.de>

	* how-using.texinfo: Change text about using shortcuts.

2005-01-22  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* how-api.texinfo: Make snapshot URL an HTML link.
	* how-programming.texinfo: Add details about building a
	debugging version of the DLL.
	* how-using.texinfo: Correct rxvt README location.
	* install.texinfo: Add mount -m note to uninstall instructions.

2005-01-21  Christopher Faylor  <cgf@timesys.com>

	* how-programming.texinfo: Remove obsolete w32api instructions and add
	some words about unpacking net release .tar.bz2.

2004-12-30  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* path.sgml: Encode programming example with CDATA.
	* overview.sgml: Add notes about SUS, newlib, and ash.
	* overview2.sgml: Add notes about /usr/share/doc/Cygwin.

2004-12-27  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* Makefile.in: Update to use xmlto.
	* cygwin.dsl: Change into DocBook XSL stylesheet for xmlto.
	* pathnames.sgml: Correct documentation of mount behavior.

2004-12-24  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* cygserver.sgml: Cleanup markup for XML validity.
	* cygwin-api.in.sgml: Cleanup markup for XML validity.
	* cygwin-ug-net.in.sgml: Cleanup markup for XML validity.
	* cygwin-ug.in.sgml: Cleanup markup for XML validity.
	* cygwinenv.sgml: Cleanup markup for XML validity.
	* dll.sgml: Cleanup markup for XML validity.
	* effectively.sgml: Cleanup markup for XML validity.
	* filemodes.sgml: Cleanup markup for XML validity.
	* legal.sgml: Cleanup markup for XML validity.
	* ntsec.sgml: Cleanup markup for XML validity.
	* overview.sgml: Cleanup markup for XML validity.
	* overview2.sgml: Cleanup markup for XML validity.
	* pathnames.sgml: Cleanup markup for XML validity.
	* setup-net.sgml: Cleanup markup for XML validity.
	* setup2.sgml: Cleanup markup for XML validity.
	* textbinary.sgml: Cleanup markup for XML validity.
	* utils.sgml: Cleanup markup for XML validity.

2004-12-02  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* cygserver.sgml: Cleanup minor markup problem.
	* how-resources.texinfo: Add man and info to documentation FAQ.
	* how-using.texinfo: Add more detail to Unicode FAQ.
	* install.texinfo: Finally apply Pierre's patch from 2003-03-03.
	* relnotes.texinfo: Add note about hyperthreading reports.

2004-09-30  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* how-using.texinfo: Fix typo. Add note about "Install For All Users"

2004-09-30  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* how-programming.texinfo: Add gcj note to WinMain@16 FAQ.
	* how-using.texinfo: Add FAQ about network shares and authentication.
	* install.texinfo: Add "Where is make" to FAQ subtitle.

2004-09-24  Corinna Vinschen  <corinna@vinschen.de>

	* cygwinenv.sgml: smbntsec is not on by default.

2004-09-14  Christopher Faylor  <cgf@timesys.com>

	* what.texinfo: Fix two typos reported on cygwin list.

2004-09-02  Corinna Vinschen  <corinna@vinschen.de>

	* textbinary.sgml: Change default mode for non-mounted paths to binary.

2004-07-16  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* how-resources.texinfo: Update documentation to /usr/share/doc.
	* how-using.texinfo: Add paragraph about find -noleaf.

2004-06-14  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* how-programming.texinfo: Add section about Visual Studio linking.

2004-06-13  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* faq.texinfo: Move outdated calls.texinfo to readme.texinfo.
	* how-api.texinfo: Fix typos.
	* how-programming.texinfo: Fix typos.
	* how-resources.texinfo: Fix typos.
	* how-using.texinfo: Fix typos.
	* install.texinfo: Fix typos.
	* readme.texinfo: Move outdated calls.texinfo to readme.texinfo.

2004-05-21  Brian Ford  <ford@vss.fsi.com>

	* pathnames.sgml: Remove /dev/kmem from the supported POSIX
	device list.

	* cygwinenv.sgml: Fix typo in check_case description.

2004-03-30  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* ntsec.sgml: Replace chapter numbers with <link>s,
	replace release-numbers in <title>s with descriptions.

2004-03-30  Ronald Landheer-Cieslak <ronald@landheer.com>

	* ntsec.sgml: Fix typos, correct chapter numbers.

2004-03-29  Corinna Vinschen  <corinna@vinschen.de>

	* pathnames.sgml: Fix /dev/srX description.

2004-03-28  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* how-programming.texinfo: Make list in .lib FAQ enumerative.

2004-03-28  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* how-programming.texinfo: Add note about gcc .lib linking.
	* pathnames.sgml: Mention create_devices.sh for /dev/ creation.

2004-03-27  Corinna Vinschen  <corinna@vinschen.de>

	* cygserver.sgml: New file.
	* using.sgml: Include Cygserver docs.

2004-03-26  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* cygwinenv.sgml: Add example for CYGWIN=error_start.
	* pathnames.sgml: Update list of /dev/ devices.

2004-02-22  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* Makefile.in: Fix problem links in faq0.html file.
	* what.texinfo: Remove outdated 'recent' history.

2004-02-19  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* cygwinenv.sgml: Remove incorrect ^Z information. Add
	some tags to server option description.
	* textbinary.sgml: Remove incorrect ^Z information.

2004-02-16  Corinna Vinschen  <corinna@vinschen.de>

	* cygwinenv.sgml: Add server option description.

2004-02-04  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* Makefile.in: Generate monolithic faq0.html file.

2004-01-24  Joshua Daniel Franklin  <joshuadfranklin@yahoo.com>

	* cygwinenv.sgml: Cleanup minor markup problems.
	* dll.sgml: Cleanup minor markup problems.
	* effectively.sgml: Cleanup minor markup problems.
	* gcc.sgml: Cleanup minor markup problems.
	* ntsec.sgml: Cleanup minor markup problems.
	* pathnames.sgml: Cleanup minor markup problems.
	* setup-net.sgml: Cleanup minor markup problems.
	* textbinary.sgml: Cleanup minor markup problems.
	* windres.sgml: Cleanup minor markup problems.

2004-01-20  Joshua Daniel Franklin <joshuadfranklin@yahoo.com>

	* Makefile.in: Remove unused cygwin-ug and cygwin-api-int
	targets from default build.
	* how-using.texinfo: Add information about 8-bit character
	display to FAQ.
	* setup2.sgml: Add information about 8-bit character display
	to "Setting up Cygwin".

2004-01-15  Joshua Daniel Franklin <joshuadfranklin@yahoo.com>

	* setup-net.sgml: Add "internet-setup" id anchor.
	* overview.sgml: Update "What is it?" section. Add links to
	"Is it free software?" section. Update "Brief History" section.
	* overview2.sgml: Rewrite "Expectations for {Windows,Unix}"
	as "Quick Start for those more experienced with {Windows,Unix}".

2004-01-11  Joshua Daniel Franklin <joshuadfranklin@yahoo.com>

	* Makefile.in: Add new target for single-file User's Guide, use new
	cygwin.dsl for output.
	* cygwin.dsl: New file, DSSSL stylesheet for custom Cygwin output.
	* cygwin-api.in.sgml: Update to DocBook SGML 4.2 DTD.
	* cygwin-ug-net.in.sgml: Update to DocBook SGML 4.2 DTD.
	* cygwin-ug.in.sgml: Update to DocBook SGML 4.2 DTD.
	* cygwinenv.sgml: Correct some tags. Add description of default values
	to ntsec, export, and error_start items.
	* dll.sgml: Add explanation of cyg prefix for DLLs.
	* effectively.sgml: Use systemitem tag for names of Cygwin packages.
	* how-programming.texinfo: Add example to FAQ entry.
	* pathnames.sgml: Add discussion of /proc filesystem.
	* setup-net.sgml: Correct some typos and grammar.

2003-09-01  Corinna Vinschen  <corinna@vinschen.de>

	* pathnames.sgml: Remove description how to mount raw devices and
	dicourage it.  Desparately try to make usage of raw devices a bit
	clearer.

2003-07-31  Joshua Daniel Franklin <joshuadfranklin@yahoo.com>

	* effectively.sgml: New file, "Using Cygwin Effectively with Windows".
	* legal.sgml: Update year in copyright notice.
	* using.sgml: Include "Using Cygwin Effectively with Windows" section.

2003-07-15  Christopher Faylor  <cgf@redhat.com>

	* pathnames.sgml: Use correct registry key.  Clarify '@' operation.

2003-07-03  Christopher Faylor  <cgf@redhat.com>

	* ntsec.sgml: Reword references to "ntsec patch".

2003-05-08  Joshua Daniel Franklin <joshuadfranklin@yahoo.com>

	* cygwin-ug-net.in.sgml: Remove outdated revision information and
	author's names.

2003-04-26  Joshua Daniel Franklin <joshuadfranklin@yahoo.com>

	* gcc.sgml: Remove outdated "WinMainCRTStartup" references. Add a
	hellogui.c example.

2003-03-26  Joshua Daniel Franklin <joshuadfranklin@yahoo.com>

	* setup-net.sgml: Make suggested additions to setup.exe documentation

2003-03-23  Joshua Daniel Franklin <joshuadfranklin@yahoo.com>

	* setup-net.sgml: Improve setup.exe documentation

2003-03-22  Joshua Daniel Franklin <joshuadfranklin@yahoo.com>

	* setup-net.sgml: Document setup.exe

2003-02-07  Christopher Faylor  <cgf@redhat.com>

	* how.texinfo: Add more w32api words.

2003-02-07  Igor Pechtchanski <pechtcha@cs.nyu.edu>

	* ntsec.sgml: Add note on special names for missing user/group.

2002-12-18  Christopher Faylor  <cgf@redhat.com>

	* overview2.sgml: Remove CTRL-Z discussion.
	* cygwinenv.sgml: Expand on CYGWIN=binmode.

2002-11-10  Christopher Faylor  <cgf@redhat.com>

	* how-programming.texinfo: Document _WIN32 more fully.

2002-10-22  Joshua Daniel Franklin <joshuadfranklin@yahoo.com>

	* ntsec.sgml: Correct some minor grammatical errors.

2002-10-22  Joshua Daniel Franklin <joshuadfranklin@yahoo.com>

	* dll.sgml: Simplify dll build instructions.

2002-09-11  Corinna Vinschen  <corinna@vinschen.de>

	* ntsec.html: Add chapter for switching user context w/o password.

2002-08-29  Christopher Faylor  <cgf@redhat.com>

	* how-api.texinfo: Remove a line from the CRLF discussion about lseek
	not working.  Answer thread safe question more simply.

2002-08-27  Nicholas Wourms  <nwourms@netscape.net>

	* calls.texinfo: Add getc_unlocked, getchar_unlocked, putc_unlocked
	and putchar_unlocked.

2002-08-21  Christopher Faylor  <cgf@redhat.com>

	* dll.sgml: Remove indirect reference to older gccs.

2002-06-22  Joshua Daniel Franklin <joshuadfranklin@yahoo.com>

	* dll.sgml: Refine dll build instructions.

2002-08-21  Christopher Faylor  <cgf@redhat.com>

	* ntsec.html: Correct some typos.

2002-07-23  Nicholas Wourms  <nwourms@netscape.net>

	* calls.texinfo: Add fcloseall and fcloseall_r.

2002-06-24  Corinna Vinschen <corinna@vinschen.de>

	* ntsec.sgml: Clean up text for examples of /etc/passwd and /etc/group.
	Add examples with SIDs.  Warn about changing them crudely.

2002-06-21  Christopher Faylor  <cgf@redhat.com>

	* what.texinfo: Fix typo.

2002-06-02  Christopher Faylor  <cgf@redhat.com>

	* how-programming.texinfo: Add more words to the "how to build".

2002-03-01  Christopher Faylor  <cgf@redhat.com>

	* overview.sgml: Fix 'more more' typo.

2002-01-12  Christopher Faylor  <cgf@redhat.com>

	* overview.sgml: Fix Red Hat cygwin contract link.
	* what.texinfo: Ditto.

2002-01-01  Christopher Faylor  <cgf@redhat.com>

	* Makefile.in: Duh.  Actually use bzip2 to create the tarball.  Don't
	just change the name.

2002-01-01  Christopher Faylor  <cgf@redhat.com>

	* Makefile.in: Make .bz2 tarball.

2001-12-11  Christopher Faylor  <cgf@redhat.com>

	* what.texinfo: Clarify XP.

2001-12-03  Christopher Faylor  <cgf@redhat.com>

	Cleanup copyrights and Cygnus'isms throughout.
	* setup.sgml: Nuke ancient instructions.

Tue Oct 16 18:02:00 2001  Corinna Vinschen <corinna@vinschen.de>

	* pathnames.sgml: Cleanup raw device text to be more coherent.

Tue Oct 16 17:14:00 2001  Corinna Vinschen <corinna@vinschen.de>

	* pathnames.sgml: Add description for new fixed device paths.

Fri Sep  7 12:47:47 2001  Michael Schaap <cygwin@mscha.com>

	* how-resources.texinfo: Add some additional words about where to find
	documentation.

Wed Jun 13 13:54:35 2001  Christopher Faylor <cgf@cygnus.com>

	* who.texinfo: Oops.  Add a couple of important folk.

Wed Jun 13 13:45:44 2001  Christopher Faylor <cgf@cygnus.com>

	* who.texinfo: Remove email addresses.  Modernize.

Tue May 29 21:30:07 2001  Christopher Faylor <cgf@cygnus.com>

	* Makefile.in: Tweak to attempt to accomodate older texi2html.

Tue May 29 16:24:46 2001  Christopher Faylor <cgf@cygnus.com>

	* Makefile.in: Accomodate newer versions of docbook and openjade.

Thu Apr 12 23:52:00 2001  Corinna Vinschen <corinna@vinschen.de>

	* cygwinenv.sgml: Add text for `check_case' option.

Fri Mar  2 12:42:00 2001  Corinna Vinschen <corinna@vinschen.de>

	* cygwinenv.sgml: Add text for `winsymlinks' option.
	* how-api.texinfo: Add text to explain new symlinks==shortcuts
	and the CYGWIN setting `(no)winsymlinks'.
	* how-using.texinfo: Add text that Cygwin now treats shortcuts
	as symlinks.

2001-02-07  Eric M. Monsler  <emonsler@beamreachnetworks.com>

	* setup2.sgml: Add docs about domain accounts.

Thu Dec 21 15:03:29 2000  Edward M. Lee <tailbert@yahoo.com>

	* cygwinenv.sgml: Fix typo in <filename>. Add missing </para>.

Tue Dec 19 21:06:00 2000  Corinna Vinschen <corinna@vinschen.de>

	* cygwinenv.sgml: Add text for `smbntsec' option.

Sat Nov 18 23:50:12 2000  Christopher Faylor <cgf@cygnus.com>

	* cygwinenv.sgml: Remove CYGWIN=strace option.  Update CYGWIN options.
	* setup2.sgml: Remove CYGWIN=strace example.
	* how-programming.texinfo: Remove stuff about CYGWIN=strace.

Thu Oct 26 10:00:00 2000  Corinna Vinschen <corinna@vinschen.de>

	* ntsec.sgml: Slight changes. Fix some errors.

Thu Oct 26  9:35:00 2000  Corinna Vinschen <corinna@vinschen.de>

	* ntsec.sgml: Changed the (now incorrect) hint that ntsec only
	uses access allowed ACEs.

Fri Sep 29 23:52:00 2000  Corinna Vinschen <corinna@vinschen.de>

	* pathnames.sgml: Add documentation about raw block special
	devices and tape devices to the "POSIX devices" chapter.

Fri Aug 18 15:51:06 2000  Christopher Faylor <cgf@cygnus.com>

	* fhandler-tut.txt: hinfo -> dtable.

Thu Jul 20 13:01:00 2000  Corinna Vinschen <corinna@vinschen.de>

	* ntsec.sgml: Add description for the new setuid ability
	of Cygwin since release 1.1.3.
	* overview2.sgml: Add description for new chroot functionality.
	* calls.texinfo: Add missing calls. Change comments for
	setuid, setgid, seteuid, setegid, chroot.

Tue May  3  0:25:00 2000  Corinna Vinschen <corinna@vinschen.de>

	* ntsec.sgml: Revisited description of `ntsec' according to
	the changes in release 1.1.
	* setup.sgml: Include ntsec.
	* setup-net.sgml: Ditto.