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
|
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.
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.
|