This repository has been archived by the owner on Dec 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
ChangeLog
4130 lines (2558 loc) · 109 KB
/
ChangeLog
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
2004-10-10 19:52 mbp
* configure.ac: Bump version to 0.9.7
2004-10-10 19:51 mbp
* NEWS: Prepare for release
2004-09-10 13:07 mbp
* check-rdiff: Take options to specify the file size and block len.
The defaults are as before.
2004-09-10 12:48 mbp
* NEWS, THANKS, delta.c, emit.c, job.c, netint.c, patch.c, scoop.c,
stats.c, trace.h, tube.c: #1024881
Use %lu or %llu if possible to print uint64 values, rather than
converting to double.
(I can't see any measurable difference in overall benchmarks
because finding sums is so slow, but it's still good to fix.)
2004-09-10 12:07 mbp
* mdfour.c: rs_mdfour_block (ia64/pa-risc): only copy the block
into an aligned buffer if it's not already aligned.
2004-09-10 12:03 mbp
* NEWS: Note printf fixes
2004-09-10 12:01 mbp
* check-rdiff: Test script by Eran Tromer
2004-09-10 11:55 mbp
* mdfour.c: Mark small mdfour functions as 'inline'.
2004-09-10 11:48 mbp
* mdfour.c: Add prototype for rs_mdfour_block, and make it static.
On i386 rs_mdfour_block can be an inline-able static function
rather than a macro, just for consistency.
2004-09-10 11:37 mbp
* delta.c, mksum.c, rdiff.c, scoop.c, stream.c: Make sure printf
formats and arguments are consistent for size_t
2004-09-10 11:10 mbp
* emit.c: Drop quote.
2004-09-10 11:09 mbp
* emit.c: #1022764
Problem: rs_emit_copy_cmd used to use the RS_OP_COPY_N4_N4 format
by default, but this causes integer truncation when one of the
operands is over 32 bits.
Fix: Use the right encoding for any operand sizes.
2004-09-10 11:04 mbp
* THANKS: Thanks Eran!
2004-09-10 11:02 mbp
* NEWS: Note recent bug fixes.
2004-09-10 11:01 mbp
* THANKS: Update thanks, remove dead email addresses. Thanks to
sfllaw for reporting alignment bug.
2004-09-10 10:58 mbp
* NEWS: Mention unaligned access fix
2004-09-09 16:06 mbp
* mdfour.c: #879763
Problem: mdfour operations failed on pa-risc and gave warnings on
ia64 because of unaligned access.
Fix: On non-i386 little-endian machines, copy mdfour input data
into a uint32 aligned buffer before processing.
2004-09-09 12:29 mbp
* configure.ac: We seem to need AM_CONFIG_HEADER for
autoconf2.53/automake1.4p6.
2003-12-16 15:13 mbp
* TODO: Add comments from abo on checking for consecutive blocks,
and on the rsync-zlib hack. Possibly these are premature
optimizations.
2003-12-16 14:07 abo
* NEWS, THANKS:
Updated NEWS and THANKS to include everything and everyone since
the release of 0.9.6.
2003-12-16 11:31 abo
* NEWS, THANKS:
Added large file fixes to NEWS.
Added Eran Tromer to thanks for bugreport/fix.
2003-12-16 11:10 abo
* THANKS, buf.c:
Added Dave Coombs to THANKS for C++ wrapper patch.
Put #include <config.h> first in buf.c to fix bug
librsync-Bugs-855477 (thanks Eran Tromer).
2003-12-16 11:03 abo
* librsync.h:
Applied Dave Coombs C++ wrapper patch.
2003-12-15 17:18 abo
* HACKING, NEWS, README.CVS, THANKS, TODO:
Updated HACKING, adding reference to README.CVS and THANKS.
Updated descriptions of NEWS and CHANGELOG to explain
auto-generation of ChangeLog.
Added empty Changes in 0.9.7 section at top of NEWS.
Added reference to HACKING to README.CVS. Added Releasing section
to explain release procedure.
Restructured THANKS according to procedure documented in THANKS,
making it more NEWS like with per-release lists of contributors.
Added empty Contributors for 0.9.7 section.
Updated TODO, removing resolve ChangeLog entry. Adding stuff
about THANKS convention and consistant text documentation.
2003-12-06 01:32 mbp
* TODO: Perhaps don't use popt.
2003-12-06 01:31 mbp
* TODO: Notes about handling of consecutive matches, and about the
rsync hack for gzip.
2003-12-06 01:14 mbp
* TODO: Add in some more items that I think ought to be done.
Mostly para-technical, like writing some documentation.
2003-12-06 01:13 mbp
* HACKING: Start of a list of suggested practices for people who'd
like to change the tree.
2003-10-18 02:15 abo
* AUTHORS, Makefile.am, delta.c, librsync.h, mdfour.c, mdfour.h,
rollsum.c, rollsum.h:
Added myself to AUTHORS and Copyright listings on files I
contributed significantly to.
Currently configure.ac has no Copyright listing of it's own, but
has an AC_COPYRIGHT macro. I suspect it should still have a
Copyright and $Id: comment block, but I haven't touched it.
2003-09-26 01:46 abo
* Makefile.am, configure.ac:
Changed configure.ac to enable trace by default.
Changed Makefile.am to make rdiff a bin_PROGRAM instead of a
noinst, and tidied up a bit.
2003-08-21 18:44 abo
* Makefile.am, TODO, delta.c, job.h, rollsum.c, rollsum.h:
Applied delta-refactor patch.
2003-08-21 16:13 abo
* debian/: README.debian, changelog, control, copyright,
crontab.ex, dirs, diversions.ex, docs, inetd.conf.ex, info.ex,
init.d.ex, librsync-dev.dirs, librsync-dev.files, librsync1.dirs,
librsync1.files, manpage.1.ex, menu.ex, rdiff.files, rules,
watch, watch.ex:
Updated debian/ files from 0.9.6-2 Debian packages.
2003-08-21 15:32 abo
* Makefile.am, TODO, copyq.c, isprefix.driver.c, mksum.h:
Removed debian/ files from EXTRA_DIST in Makefile.am so they
don't appear in the distribution tarball.
Removed isprefix.driver.c which is duplicated in testsuite.
Removed unused old copyq.c and mksum.h.
2003-08-05 23:18 abo
* THANKS:
Added large file debugging thanks to Paul Green. Added
librsync.h rename thanks to wayned.
2003-08-05 23:10 abo
* NEWS:
Updated NEWS about large file support.
2003-08-05 18:28 abo
* netint.c, patch.c, search.c:
Added extra checking for invalid LITERAL commands in patch.c.
Simplified rs_squirt_netint in netint.c.
Fixed rs_search_for_block in patch.c so that it doesn't overflow
when calculating offsets for large files.
2003-08-05 02:41 wayned
* TODO: Fixed a typo and added another alternative to the popt
TODO.
2003-08-04 02:47 abo
* netint.c:
Fixed incorrect rs_int_len calculation for values needing 8 bytes
caused by "long" integer constant values where we needed
rs_long_t values.
2003-08-04 01:36 abo
* NEWS:
Added NEWS for 0.9.6 about snprinf replacement functions fix.
2003-08-04 01:13 abo
* README:
Updated README info about compiling under win32.
2003-08-04 00:42 abo
* configure.ac, configure.msc:
Fixed "cl" instead of "lc" typo on configure.ac when setting
CFLAGS.
Removed CFLAGS from configure.msc.
2003-08-04 00:36 abo
* Makefile.am, TODO, configure.ac, configure.msc, rdiff.c,
snprintf.h, stats.c, trace.c, PCbuild/config.h,
PCbuild/librsync-config.h, PCbuild/rdiff.dsp:
Added PCbuild/librsync-config.h to distribution and updated
PCbuild files.
Fixed replacement functions snprintf and vsnprintf autoconf
checks and snprintf.h to use MSVC _* varients if available. Added
include of snprintf.h to as needed to trace.c, stats.c, and
rdiff.c. Added snprintf.h to Makefile.am SOURCES. LIBADD'd
@LIBOBJS@ to librsync.la instead of default unused LDADD.
Added cvs option -z6 for compression to cvs2cl generation of
ChangeLog.
Added TODO about splitting snprintf.c into two replacement
functions. Added TODO about making popt a conditional SUBDIRS.
Added CFLAGS to configure.msc again because it seems configure.ac
is not setting it right.
2003-08-02 10:17 abo
* Makefile.am, NEWS, buf.c, configure.ac, configure.msc:
* configure.ac: Removed obsolete default sizes from
AC_CHECK_SIZEOF checks. Added check for FSEEKO Added
default CFLAGS for MSVC * buff.c: added define of fseek to
fseeko if available for large file support. * NEWS: refined
and added descriptions of changes for 0.9.6. * configure.msc:
simplified and fixed to take into account new autoconf.
2003-07-24 19:12 abo
* configure.ac, scoop.c, trace.h:
* scoop.c: Removed potentialy confusing debugging code that could
be edited to disable rs_trace. * trace.h: changed alternate
rs_trace macro arg to be consistant. * configure.ac: extended
HAVE_VARARG_MACROS test to reject limited varargs found on OSX.
2003-07-24 15:38 abo
* README.CVS:
Added recommended versions of autotools required for building.
2003-07-24 15:24 abo
* README.CVS:
Added missing ./configure step in build instructions as noticed
by Mark Bucciarelli.
2003-06-13 05:05 abo
* configure.ac, trace.c, trace.h:
* configure.ac : added VARARG_MACRO test. * trace.c,trace.h:
added support for HAVE_VARARG_MACROS instead of using __APPLE__.
fixed trace support for non GNUC compilers.
2003-06-12 16:49 wayned
* NEWS: Mention the rsync.h -> librsync.h change.
2003-06-12 16:48 wayned
* doc/main.dox, PCbuild/rdiff.dsp: Changed rsync.h to librsync.h.
2003-06-12 16:21 wayned
* .cvsignore: Ignore the latest generated files.
2003-06-12 16:08 wayned
* librsync.h: Fixed a comment that still mentioned rsync.h instead
of librsync.h.
2003-06-12 16:07 wayned
* librsync.h: Got rid of the rs_long_t typedef and added an include
for librsync-config.h.
2003-06-12 16:06 wayned
* Makefile.am: Changed rsync.h to librsync.h and added
librsync-config.h.
2003-06-12 16:05 wayned
* configure.ac: Define the RS_LONG_T variable and substitute it in
the new librsync-config.h.in file.
2003-06-12 16:04 wayned
* librsync-config.h.in: New input file for our librsync-config.h
include file.
2003-06-12 16:03 wayned
* doc/librsync.3: Changed rsync.h to librsync.h.
2003-06-12 16:01 wayned
* mkprototab.pl: - Changed rsync.h to librsync.h. - Got rid of
run-time warnings. - Changed multi-line prints to use <<EOT.
2003-06-12 15:50 wayned
* autogen.sh: Changed rsync.h to librsync.h.
2003-06-12 15:47 wayned
* base64.c, buf.c, checksum.c, command.c, copyq.c, delta.c, emit.c,
fileutil.c, hex.c, job.c, mdfour.c, mksum.c, msg.c, netint.c,
patch.c, rdiff.c, readsums.c, scoop.c, search.c, stats.c,
stream.c, sumset.c, trace.c, tube.c, util.c, version.c, whole.c:
Changed the include "rsync.h" to include "librsync.h".
2003-06-12 15:44 wayned
* librsync.h, rsync.h: Renamed rsync.h to librsync.h.
2003-06-12 15:41 wayned
* configure.ac, configure.in: Rename configure.in to configure.ac
so that we're using the new naming idiom, and certain
auto-version-sensing scripts (such as automake) work better.
2003-06-12 05:18 wayned
* THANKS: Tweak a mispelled name.
2003-03-27 02:07 abo
* Makefile.am:
* Makefile.am: Added rule for building popt if required.
2003-03-27 01:41 abo
* testsuite/: delta.test, driver.sh:
* testsuite/delta.test, testsuite/driver.sh: unrolled changes
that make these work on windows because they have permission
problems on unix.
2003-03-27 01:27 abo
* PCbuild/config.h:
* PCbuild/config.h: updated to latest generated by cygwin.
2003-03-27 00:45 abo
* Makefile.am, NEWS, README, README.CVS, THANKS, TODO, acconfig.h,
acinclude.m4, configure.in, librsync.spec, testsuite/delta.test,
testsuite/driver.sh:
* acconfig.h: removed, redundant. * acinclude.m4: removed,
redundant. * configure.in: Ran autoupdate. Cleaned up
boilerplate, adding AC_COPYRIGHT, removing comment quote.
Changed AC_REVISION to use $Revision$ instead of $Id$ Moved
AC_DISABLE_SHARED above program checks. Tidied up program
checks including checks from configure.scan. Changed AC_DEFINE
of _GNU_SOURCE to AC_GNU_SOURCE check. Reformated
AC_COMPILE_IFELSE generated by autoupdate. Added descriptions
to AC_DEFINES from librsyncupdate.patch. Made popt test
actually use local popt if missing. Removed spurious
HAVE_SOCK_SIN_LEN and intmax_t tests. Simplified trace and
cmalloc enable tests (trace is off by default). Removed
suspect old AC_SUBST settings. Moved AC_GNU_SOURCE and
AC_ISC_POSIX around CC program check. Added mcheck.h to
AC_CHECK_HEADERS for popt Added AC_CHECK_FUNCS([gettext
dgettext]) for popt Re-arranged to put FUNC tests together
Changed to indent 2 spaces. Commented out
AC_FUNC_MALLOC|MEMCMP|REALLOC because of missing replacements. *
Makefile.am: Changed librsync_la_SOURCES to build prototab.[ch]
first. Removed quote comment (was raising warnings in
automake). simplified MAINTAINERCLEANFILES for automake1.7,
removing AUX_DIST. added depcomp to MAINTAINERCLEANFILES for
automake1.7. * README: added instructions for compiling on
Windows. * README.CVS: changed apt-get instructions to ensure
automake1.7 is installed. * NEWS: added summary of updates for
0.9.6. * THANKS: updated with contributors for 0.9.6 * TODO:
added stuff about autoconf cleanups. * librsync.spec: updated
for 0.9.6 and sourceforge project. * testsuite/delta.test:
Changed to use tempfile instead of /dev/null for win32 testing.
* testsuite/driver.sh: Added option and default of using
relative paths for tests for win32 testing.
2003-03-21 02:10 abo
* Makefile.am, mutate.pl, testsuite/COPYING, testsuite/Makefile.am,
testsuite/mksum.test:
* mutate.pl: Removed, duplicated in testsuite/ *
testsuite/COPYING: Removed, duplicated in / * Makefile.am:
EXTRA_DIST, added autogen.sh, configure.msc, rdiff.magic,
README.RPM, debian/, PCbuild/. *testsuite/Makefile.am: removed
directories from test_data. *testsuite/mksum.test: changed to
use ../COPYING for test data.
2003-03-20 20:19 abo
* Makefile.am, README, autogen.sh, configure.in, dot,
doc/Makefile.am, popt/Makefile.am, testsuite/Makefile.am:
Added MAINTAINERCLEANFILES settings for automake.
* autogen.sh: Added call to libtoolize. Fixed cache deletion to
test for a directory instead of a file.
* configure.in: Removed redundant AC_CANNONICAL_HOST. Removed CVS
as a dependancy for ChangeLog for distcheck. Changed AM_ libtool
options to AC_. Fixed librsync_libversion handling.
* Makefile.am: Changed AUX_DIST to include libtool AUX files.
Fixed librsync_libversion handling.
* testsuite/Makefile.am: Added testsuite EXTRA_DIST to ensure
tests get distributed.
* README: Updated for sourceforge project details.
* dot: removed.
2003-03-20 12:00 abo
* Makefile.am, README.CVS, autogen.sh:
Updated README.CVS to refer to project hosting on sourceforge.
Fixed automake support for generating ChangeLog from CVS.
2003-03-19 16:21 abo
* fileutil.c, fileutil.h, rdiff.c:
committed patch "again rdiff cosmetic patch", adding
rs_file_close to fileutil.[ch]. Also adds popt cleanup to rdiff.
2003-03-06 03:34 abo
* mdfour.c:
Applied mdfour optimisations and cleanups patch from SF.
2003-03-06 03:24 abo
* .cvsignore, ChangeLog, Makefile.am, autogen.sh, configure.in,
libversions.txt, prototab.h, testsuite/.cvsignore,
testsuite/ChangeLog, testsuite/Makefile.am:
Added AC_PREREQ(2.53) to force autoconf version checking.
Updated autogen.sh to use 'automake --foreign' because ChangeLog
is now generated, and to clean autom4te.cache instead of
config.cache
Added popt and testsuite to Makefile.am SUBDIRS and configure.in
AC_OUTPUT.
Changed and documented project version to 0.9.6 and library
version to 1:2:0.
Fixed Makefile.am $(LIBOBJS) to @LIBOBJS@.
Removed LIBOBJS from testsuite/Makefile.am because it doesn't
expand properly for functions found in $(top_srcdir). This needs
to be fixed by building a "replace" library of replacement
functions to link with.
Added rule for building ChangeLog using cvs2cl.
Updated .cvsignore files to ignore generated files with autoconf
2.5x.
Removed generated ChangeLog and prototab.h files.
2003-02-25 01:43 abo
* trace.h:
Added Mac OS-X support patch which affects one line in trace.h.
2002-08-22 03:28 wayned
* sumset.c: Allow the user to free a sumset even if
rs_build_hash_table() wasn't called on it.
2002-07-14 04:58 wayned
* configure.in: Added a check for the popt library.
2002-07-14 04:51 wayned
* configure.in: - Got rid of the included-popt stuff. - Don't
build popt/Makefile and testsuite/Makefile.
2002-07-14 04:49 wayned
* Makefile.am: - Got rid of the testsuite subdir because it is
currently broken in the distribution (using "make dist"). -
Got rid of the popt subdir. - Added the missing mdfour.h file to
the librsync_la_SOURCES list.
2002-06-30 05:51 wayned
* mdfour.c: Robert Weber submitted changes to make the checksum
work on files >512Meg and also to speed up little-endian systems.
I tweaked them a tad and this is the result.
2002-06-30 05:47 wayned
* types.h: Define uint64_t, if possible.
2002-06-30 05:44 wayned
* mdfour.h: Changed typedef into simple structure definition.
2002-06-30 05:44 wayned
* delta.c: Got rid of the include of "types.h" since it is now
included by an earlier include.
2002-06-30 05:33 wayned
* rsync.h: Got rid of the contents of the rs_mdfour_t typedef.
2002-06-30 05:32 wayned
* job.h: Include the new mdfour.h header.
2002-06-30 05:31 wayned
* configure.in: Added check for big-endian systems.
2002-06-30 05:31 wayned
* mdfour.h: Moved the struct here to hide its contents from the
user.
2002-06-30 05:02 wayned
* configure.msc, PCbuild/PCbuild.dsw, PCbuild/config.h,
PCbuild/rdiff.dsp: A file to help build librsync on a MS-OS PC.
2002-06-30 04:59 wayned
* fileutil.c, hex.c, stats.c, trace.c: Conditionally include
several header files.
2002-06-30 04:56 wayned
* configure.in: Added header-file checks for fcntl.h, inttypes.h,
and sys/file.h.
2002-06-30 04:47 wayned
* rsync.h: Check for LONG_LONG for WIN32.
2002-06-30 04:41 wayned
* buf.c, copyq.c, rsync.h: Use rs_long_t instead of off_t.
2002-06-30 04:25 wayned
* popt/system.h: A couple changes to make PC builds work.
2002-06-30 04:14 wayned
* whole.c: Use HAVE_UNISTD_H define.
2002-06-28 18:35 wayned
* buf.c: - Include <sys/types.h> for FreeBSD. - Free the "fb->buf"
variable in rs_filebuf_free().
2002-06-20 08:45 wayned
* patch.c: Added include of <string.h> to remove compiler warning
about memcpy().
2002-06-20 08:44 wayned
* .cvsignore, doc/.cvsignore, popt/.cvsignore,
testsuite/.cvsignore: Added missing generated files.
2002-06-20 04:57 wayned
* delta.c: Fixed a bug in delta-generation that caused them to be
too large. (Patch provided by Shirish H. Phatak.)
2002-06-20 04:57 wayned
* job.c: Fix a memory leak. (Patch by Shirish H. Phatak.)
2002-06-20 04:50 wayned
* rdiff.c: Explicitly close our open files and free the sumset so
it's clearer what cleanup needs to be done in a long-running
application.
2002-06-20 04:48 wayned
* emit.c: Removed an unused variable.
2002-01-26 08:47 bje
* ChangeLog, Makefile.am, autogen.sh, configure.in, driver.sh: *
configury clean-up.
* Makefile.am (SUBDIRS): Add doc, testsuite.
(librsync_la_SOURCES): Condense.
(man_MANS): Remove--handled by doc/Makefile.am now.
(TESTS_ENVIRONMENT): Remove--handled by
testsuite/Makefile.am.
(test_scripts): Likewise.
(try_scripts): Likewise.
(TESTS): Likewise.
(test_data): Likewise.
(noinst_SCRIPTS): Update.
(EXTRA_DIST): Likewise.
(bin_PROGRAMS): Rename from this ..
(noinst_PROGRAMS): .. to this.
(check_PROGRAMS): Remove.
(isprefix_driver_SOURCES): Likewise.
(isprefix_driver_LDADD): Likewise.
(check_programs): Likewise.
* autogen.sh: Don't specify Makefiles to automake.
* configure.in (AC_INIT_AUTOMAKE): Simplify invocation.
(AC_OUTPUT): Emit doc/Makefile, doc/Doxyfile,
tesdtsuite/Makefile.
2002-01-26 08:46 bje
* .cvsignore: * prune right back--we can always update later.
2002-01-26 08:33 bje
* ChangeLog, README.autoconf, changes.test, delta.test,
isprefix.test, mdfour.test, mksum.test, mutate.test,
signature.test, sources.test, triple.test: *
README.autoconf: Remove.
* changes.test: Move to testsuite subdirectory.
* delta.test: Ditto.
* isprefix.test: Ditto.
* mdfour.test: Ditto.
* mksum.test: Ditto.
* mutate.test: Ditto.
* signature.test: Ditto.
* sources.test: Ditto.
* triple.test: Ditto.
2002-01-26 08:25 bje
* ChangeLog, Doxyfile, codeheader.c, codeheader.man, codeheader.sh,
doxygen.css, extra.dox, footer.html, gloss.dox, header.html,
librsync.3, main.dox, rdiff.1, rdiff.dox, rproxy-small-logo.png,
doc/Doxyfile.in, doc/Makefile.am, doc/codeheader.c,
doc/codeheader.man, doc/codeheader.sh, doc/doxygen.css,
doc/extra.dox, doc/footer.html, doc/gloss.dox, doc/header.html,
doc/librsync.3, doc/main.dox, doc/rdiff.1, doc/rdiff.dox,
doc/rproxy-small-logo.png: * doc/Makefile.am: New file.
* Doxyfile: Move from here ..
* doc/Doxyfile.in: .. to here (with added substitutions).
* codeheader.c: Move from here ..
* doc/codeheader.c: .. to here.
* codeheader.man: Move from here ..
* doc/codeheader.man: .. to here.
* codeheader.sh: Move from here ..
* doc/codeheader.sh: .. to here.
* doyxgen.css: Move from here ..
* doc/doxygen.css: .. to here.
* extra.dox: Move from here ..
* doc/extra.dox: .. to here.
* header.html: Move from here ..
* doc/header.html: .. to here.
* librsync.3: Move from here ..
* doc/librsync.3: .. to here.
* main.dox: Move from here ..
* doc/main.dox: .. to here.
* rdiff.1: Move from here ..
* doc/rdiff.1: .. to here.
* rdiff.dox: Move from here ..
* doc/rdiff.dox: .. to here.
* rproxy-small-logo.png: Move from here ..
* doc/rproxy-small-logo.png: .. to here.
2002-01-26 08:15 bje
* doc/.cvsignore: * new file.
2002-01-26 08:13 bje
* testsuite/: COPYING, ChangeLog, mksum.input/COPYING.sig: *
mksum.input/COPYING.sig: Move here from top-level directory.
* COPYING: Likewise, copy from top-level.
2002-01-26 08:10 bje
* testsuite/: dot, driver.sh: * new files; missed from earlier
check-in.
2002-01-26 08:09 bje
* testsuite/.cvsignore: * new file.
2002-01-26 08:08 bje
* testsuite/: mutate.pl, ChangeLog, Makefile.am, changes.test,
delta.test, isprefix.driver.c, isprefix.test, mdfour.test,
mksum.test, mutate.test, signature.test, sources.test,
triple.test: * Makefile.am: New file.
* changes.test: Move here from top-level directory.
* delta.test: Ditto.
* isprefix.test: Ditto.
* mdfour.test: Ditto.
* mksum.test: Ditto.
* mutate.test: Ditto.
* signature.test: Ditto.
* sources.test: Ditto.
* triple.test: Ditto.
* dot: Ditto.
* driver.sh: Ditto.
* isprefix.driver.c: Ditto.
* mutate.pl: Ditto.
2002-01-25 23:13 bje
* testsuite/: ChangeLog, changes.input/01.in, changes.input/02.in,
changes.input/03.in, changes.input/04.in, delta.input/01.delta,
delta.input/01.expect, delta.input/02.delta,
delta.input/02.expect, delta.input/03.delta,
delta.input/03.expect, mdfour.input/01.data,
mdfour.input/01.expect, signature.input/01.in,
signature.input/01.sig, triple.input/copying.in,
triple.input/half.in, triple.input/hello.in,
triple.input/zero.in: * changes.input: Replica test directory.
* delta.input: Likewise.
* mdfour.input: Likewise.
* signature.input: Likewise.
* triple.input: Likewise.
2002-01-25 20:16 bje
* ChangeLog, autogen.sh: * autogen.sh: Don't implicitly run
configure.
2001-09-14 11:41 mbp
* NEWS, configure.in: Update NEWS
Call this 0.9.5.
Pacify autoconf warnings.
2001-09-14 11:31 mbp
* configure.ac, configure.in: rename configure.ac back to
configure.in, since the Debian breakage about autoconf2.13->2.50
migration seems to be fixed
2001-09-14 11:29 mbp
* buf.c, job.h: Patch from Shirish Hemant Phatak to
- properly handle return from fread when file size is a multiple
of
input block size
- adjusts the tube length in job.h to better confirm with
largefiles
2001-08-10 15:13 mbp
* configure.ac, configure.in: Rename to configure.ac to make
autoconf2.50 happier
2001-08-08 17:51 mbp
* configure.in: This isn't 0.9.4 anymore.
2001-08-08 17:11 mbp
* librsync.3, rdiff.1: Fix documentation credits.
2001-08-08 17:07 mbp
* librsync.spec: Try to make sure we catch manpages in the package.
2001-08-08 16:26 mbp
* librsync.spec: Try again.
2001-08-08 16:23 mbp
* NEWS, configure.in, libversions.txt, librsync.spec: Get ready for
0.9.4 release.
2001-08-08 16:16 mbp
* librsync.spec: Munge spec file to actually build properly on RH
7.0.
2001-08-08 15:44 mbp
* librsync.spec: Update spec for 0.9.4pre and take out the RLL
patch which is now merged.
2001-08-08 15:43 mbp
* Makefile.am: Include RPM spec file in tarball
2001-08-08 15:37 mbp
* README: Add note about broken gcc on RH7.0.
2001-08-08 15:36 mbp
* configure.in: It looks like libtool doesn't like AC_PROG_RANLIB
to be explicitly tested.
2001-08-08 15:06 mbp
* configure.in: autoconf2.50 is more fussy about quoting in
configure.in, so I cleaned that up.
2001-08-08 15:05 mbp
* Makefile.am: includes.h was in the list of files to be
distributed, but we don't use it anymore.
2001-08-08 14:58 mbp
* NEWS, delta.c, emit.c: RLL encoding fix from Shirish Hemant
Phatak <shirish@nustorage.com>: Fixes a weak checksum bug and
improves efficiency on sequences of exact matches
2001-08-08 14:54 mbp
* acinclude.m4: Fix quoting for autoconf2.50.
2001-08-08 14:54 mbp
* README.autoconf: Explain autoconf madness.
2001-08-08 11:20 mbp
* README.RPM, librsync.spec: Add spec file from Peter Braam.
(Fixed description, otherwise the same. Don't know if it works
yet.)
2001-04-10 01:02 mbp
* NEWS, configure.in, job.c, job.h, rsync.h: Fixes for rsync.h from
Thorsten Schuett <thorsten.schuett@zib.de>
2001-04-10 00:59 mbp
* mdfour.c: Const-correctness
2001-03-20 15:26 mbp
* README: Test direction of CVS commit messages
2001-03-19 19:13 mbp
* rdiff.c: Doc.
2001-03-19 19:10 mbp
* rdiff.c: Doc.
2001-03-19 16:52 mbp
* mdfour.c: Help the compiler a little bit in copy64.
Alignment fix by tridge for rs_mdfour_choose_packer.
2001-03-19 15:57 mbp
* msg.c: Doc.
2001-03-19 15:47 mbp
* Makefile.am: Include rsync.h in librsync sources.
2001-03-19 01:46 mbp
* debian/: README.debian, changelog, control, copyright,
crontab.ex, dirs, diversions.ex, inetd.conf.ex, info.ex,
init.d.ex, librsync1.files, manpage.1.ex, menu.ex, rules,
watch.ex: First-cut Debian support from deb-make
2001-03-19 01:42 mbp
* NEWS, driver.sh, hex.c, trace.h: More Tru64 portability fixes.
2001-03-19 01:29 mbp
* NEWS, trace.c, trace.h: Make trace work better on non-gcc
compilers.
2001-03-19 01:28 mbp
* rsync.h: Some compilers don't like trailing commas in enums.
2001-03-19 01:21 mbp
* netint.c: Type correctness on 64-bit platforms.
2001-03-19 01:20 mbp
* job.c: Shut up compiler warning.
2001-03-19 01:20 mbp
* delta.c: Doc.
2001-03-19 01:19 mbp
* configure.in: Tru64 cc can't cope with space between -I and the
path.
2001-03-19 01:19 mbp
* Makefile.am: Remove duplicate source file from list.
Upload NEWS to librsync-NEWS on web site.
2001-03-19 00:41 mbp
* rdiff.c: Build properly without zlib.h