This is the mail archive of the cygwin-apps-cvs@sources.redhat.com mailing list for the cygwin-apps project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

setup ./ChangeLog ./IniDBBuilder.cc ./IniDBBui ...


CVSROOT:	/cvs/cygwin-apps
Module name:	setup
Changes by:	rbcollins@sources.redhat.com	2002-05-18 20:07:55

Modified files:
	.              : ChangeLog IniDBBuilder.cc IniDBBuilder.h 
	                 IniDBBuilderPackage.cc IniDBBuilderPackage.h 
	                 Makefile.am Makefile.in README String++.cc 
	                 String++.h choose.cc configure configure.in 
	                 dialog.h download.cc filemanip.cc find.cc 
	                 find.h fromcwd.cc ini.cc iniparse.y 
	                 postinstall.cc 
Added files:
	.              : FindVisitor.cc FindVisitor.h 
	                 IniParseFindVisitor.cc IniParseFindVisitor.h 
	                 ScanFindVisitor.cc ScanFindVisitor.h 
	                 io_stream_rsync.cc io_stream_rsync.h 
	rsync          : AUTHORS COPYING ChangeLog INSTALL Makefile.am 
	                 Makefile.in NEWS README README.CVS THANKS TODO 
	                 acconfig.h aclocal.m4 base64.c buf.c buf.h 
	                 changes.test checksum.c checksum.h command.c 
	                 command.h config.h.in configure configure.in 
	                 delta.c delta.test depcomp dot driver.sh emit.c 
	                 emit.h fileutil.c fileutil.h hex.c install-sh 
	                 isprefix.c isprefix.driver.c isprefix.h 
	                 isprefix.test job.c job.h librsync.3 
	                 libversions.txt ltconfig mdfour.c missing 
	                 mkinstalldirs mkprototab.pl mksum.c mksum.test 
	                 msg.c mutate.pl mutate.test netint.c netint.h 
	                 patch.c protocol.h prototab.c prototab.h 
	                 rdiff.1 rdiff.c readsums.c rsync.h scoop.c 
	                 search.c search.h signature.test snprintf.c 
	                 sources.test stamp-h.in stats.c stream.c 
	                 stream.h sumset.c sumset.h trace.c trace.h 
	                 triple.test tube.c types.h util.c util.h 
	                 version.c whole.c whole.h 
	rsync/changes.input: 01.in 02.in 03.in 04.in 
	rsync/changes.input/changes.input: 01.in 02.in 03.in 04.in 
	rsync/delta.input: 01.delta 01.expect 02.delta 02.expect 
	                   03.delta 03.expect 
	rsync/delta.input/delta.input: 01.delta 01.expect 02.delta 
	                               02.expect 03.delta 03.expect 
	rsync/mdfour.input: 01.data 01.expect 
	rsync/mdfour.input/mdfour.input: 01.data 01.expect 
	rsync/mksum.input: COPYING.sig 
	rsync/mksum.input/mksum.input: COPYING.sig 
	rsync/popt     : CHANGES COPYING Makefile.am Makefile.in README 
	                 findme.c findme.h popt.c popt.h poptconfig.c 
	                 popthelp.c poptint.h poptparse.c system.h 
	rsync/signature.input: 01.in 01.sig 
	rsync/triple.input: copying.in half.in hello.in zero.in 
	rsync/triple.input/triple.input: copying.in half.in hello.in 
	                                 zero.in 

Log message:
	2002-05-19  Robert Collins  <rbtcollins@hotmail.com>
	
	* rsync: New support library, contains librsync. This is not (yet)
	rsync interoperable.
	* configure.in: --with-rsync to enable rsync support. (Not complete).
	* Makefile.am: Enable building with rsync.
	* Makefile.in: Regenerate.
	* configure: Ditto.
	* IniDBBuilder.cc (IniDBBuilder::buildPackageInstall): Pass the md5 as
	an array.
	(IniDBBuilder::buildPackageSource): Ditto.
	* IniDBBuilder.h: Ditto.
	* IniDBBuilderPackage.cc: Ditto.
	* IniDBBuilderPackage.h: Ditto.
	* FindVisitor.cc: New file.
	* FindVisitor.h: New file, interface for visiting a file system
	aggregate.
	* IniParseFindVisitor.cc: New file.
	* IniParseFindVisitor.h: New file, concrete FindVisitor that parses
	found setup.ini's.
	* README: Update TODO's.
	* String++.cc (String::String): New constructor for <string> inter-
	operability.
	(String::substr): New method.
	* String++.h: Ditto.
	* choose.cc (scan2): Remove.
	(scan_downloaded_files): Simplify.
	* dialog.h: Include parsing pre-requirements.
	* download.cc (check_for_cached): Fullname was used incorrectly - fix.
	* filemanip.cc (parse_filename): -src packages where incorrectly parsed.
	* find.cc: Rewrite. Now uses a Visitor pattern and is re-entrant.
	* find.h: Ditto.
	* fromcwd.cc: Remove unneeded includes.
	(is_test_version): Remove.
	(found_file): Remove.
	(SetupFindVisitor): Trivial visitor to detect setup.ini's.
	(found_ini): Remove.
	(do_fromcwd): Remove commented code that has be replaced elsewhere.
	* ini.cc (local_ini): Remove.
	(findBuilder): Remove.
	(find_routine): Remove.
	(do_local_ini): Use new IniParseFindVisitor.
	* iniparse.y: Typecase MD5 arrays, as we know they are allocated as
	unsigned char.
	* postinstall.cc: Remove non-core includes.
	(run_script_in_postinstall): Remove.
	(RunFindVisitor): Trivial Visitor, runs each found script.
	(do_postinstall): Use new find syntax.

Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/FindVisitor.cc.diff?cvsroot=cygwin-apps&r1=NONE&r2=2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/FindVisitor.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/IniParseFindVisitor.cc.diff?cvsroot=cygwin-apps&r1=NONE&r2=2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/IniParseFindVisitor.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/ScanFindVisitor.cc.diff?cvsroot=cygwin-apps&r1=NONE&r2=2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/ScanFindVisitor.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/io_stream_rsync.cc.diff?cvsroot=cygwin-apps&r1=NONE&r2=2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/io_stream_rsync.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/ChangeLog.diff?cvsroot=cygwin-apps&r1=2.239&r2=2.240
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/IniDBBuilder.cc.diff?cvsroot=cygwin-apps&r1=2.1&r2=2.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/IniDBBuilder.h.diff?cvsroot=cygwin-apps&r1=2.1&r2=2.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/IniDBBuilderPackage.cc.diff?cvsroot=cygwin-apps&r1=2.1&r2=2.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/IniDBBuilderPackage.h.diff?cvsroot=cygwin-apps&r1=2.1&r2=2.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/Makefile.am.diff?cvsroot=cygwin-apps&r1=2.11&r2=2.12
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/Makefile.in.diff?cvsroot=cygwin-apps&r1=2.70&r2=2.71
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/README.diff?cvsroot=cygwin-apps&r1=2.19&r2=2.20
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/String++.cc.diff?cvsroot=cygwin-apps&r1=2.4&r2=2.5
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/String++.h.diff?cvsroot=cygwin-apps&r1=2.5&r2=2.6
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/choose.cc.diff?cvsroot=cygwin-apps&r1=2.97&r2=2.98
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/configure.diff?cvsroot=cygwin-apps&r1=2.16&r2=2.17
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/configure.in.diff?cvsroot=cygwin-apps&r1=2.10&r2=2.11
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/dialog.h.diff?cvsroot=cygwin-apps&r1=2.6&r2=2.7
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/download.cc.diff?cvsroot=cygwin-apps&r1=2.26&r2=2.27
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/filemanip.cc.diff?cvsroot=cygwin-apps&r1=2.8&r2=2.9
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/find.cc.diff?cvsroot=cygwin-apps&r1=2.4&r2=2.5
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/find.h.diff?cvsroot=cygwin-apps&r1=2.3&r2=2.4
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/fromcwd.cc.diff?cvsroot=cygwin-apps&r1=2.25&r2=2.26
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/ini.cc.diff?cvsroot=cygwin-apps&r1=2.29&r2=2.30
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/iniparse.y.diff?cvsroot=cygwin-apps&r1=2.32&r2=2.33
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/postinstall.cc.diff?cvsroot=cygwin-apps&r1=2.8&r2=2.9
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/AUTHORS.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/COPYING.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/ChangeLog.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/INSTALL.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/Makefile.am.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/Makefile.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/NEWS.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/README.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/README.CVS.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/THANKS.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/TODO.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/acconfig.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/aclocal.m4.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/base64.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/buf.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/buf.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/changes.test.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/checksum.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/checksum.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/command.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/command.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/config.h.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/configure.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/configure.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/delta.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/delta.test.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/depcomp.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/dot.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/driver.sh.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/emit.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/emit.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/fileutil.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/fileutil.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/hex.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/install-sh.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/isprefix.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/isprefix.driver.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/isprefix.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/isprefix.test.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/job.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/job.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/librsync.3.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/libversions.txt.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/ltconfig.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/mdfour.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/missing.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/mkinstalldirs.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/mkprototab.pl.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/mksum.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/mksum.test.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/msg.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/mutate.pl.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/mutate.test.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/netint.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/netint.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/patch.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/protocol.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/prototab.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/prototab.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/rdiff.1.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/rdiff.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/readsums.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/rsync.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/scoop.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/search.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/search.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/signature.test.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/snprintf.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/sources.test.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/stamp-h.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/stats.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/stream.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/stream.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/sumset.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/sumset.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/trace.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/trace.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/triple.test.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/tube.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/types.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/util.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/util.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/version.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/whole.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/whole.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/changes.input/01.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/changes.input/02.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/changes.input/03.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/changes.input/04.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/changes.input/changes.input/01.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/changes.input/changes.input/02.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/changes.input/changes.input/03.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/changes.input/changes.input/04.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/delta.input/01.delta.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/delta.input/01.expect.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/delta.input/02.delta.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/delta.input/02.expect.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/delta.input/03.delta.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/delta.input/03.expect.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/delta.input/delta.input/01.delta.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/delta.input/delta.input/01.expect.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/delta.input/delta.input/02.delta.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/delta.input/delta.input/02.expect.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/delta.input/delta.input/03.delta.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/delta.input/delta.input/03.expect.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/mdfour.input/01.data.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/mdfour.input/01.expect.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/mdfour.input/mdfour.input/01.data.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/mdfour.input/mdfour.input/01.expect.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/mksum.input/COPYING.sig.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/mksum.input/mksum.input/COPYING.sig.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/popt/CHANGES.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/popt/COPYING.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/popt/Makefile.am.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/popt/Makefile.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/popt/README.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/popt/findme.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/popt/findme.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/popt/popt.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/popt/popt.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/popt/poptconfig.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/popt/popthelp.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/popt/poptint.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/popt/poptparse.c.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/popt/system.h.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/signature.input/01.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/signature.input/01.sig.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/triple.input/copying.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/triple.input/half.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/triple.input/hello.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/triple.input/zero.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/triple.input/triple.input/copying.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/triple.input/triple.input/half.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/triple.input/triple.input/hello.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/setup/rsync/triple.input/triple.input/zero.in.diff?cvsroot=cygwin-apps&r1=NONE&r2=1.1


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]