57e58c3aa7
things fixed in here, including the '-ko' vs. -A problem with remote cvs which caused all files with -ko to be resent each time (which is damn painful over a modem, I can tell you). It also found a heap of stray empty directories that should have been pruned with the -P flag to cvs update but were not for some reason. It also has the fully integrated rcs and diff, so no more fork/exec overheads for rcs,ci,patch,diff,etc. This means that it parses the control data in the rcs files only once rather than twice or more. If the 'cvs diff' vs. Index thing is going to be fixed for future patch compatability, this is the place to do it.
39 lines
1.1 KiB
C
39 lines
1.1 KiB
C
/* Define if you have MIT Kerberos version 4 available. */
|
|
#undef HAVE_KERBEROS
|
|
|
|
/* Define if you have GSSAPI with MIT Kerberos version 5 available. */
|
|
#undef HAVE_GSSAPI
|
|
|
|
/* Define if you want CVS to be able to be a remote repository client. */
|
|
#undef CLIENT_SUPPORT
|
|
|
|
/* Define if you want CVS to be able to serve repositories to remote
|
|
clients. */
|
|
#undef SERVER_SUPPORT
|
|
|
|
/* Define if you want to use the password authenticated server. */
|
|
#undef AUTH_SERVER_SUPPORT
|
|
|
|
/* Define if you want encryption support. */
|
|
#undef ENCRYPTION
|
|
|
|
/* Define if you have the connect function. */
|
|
#undef HAVE_CONNECT
|
|
|
|
/* Define if you have memchr (always for CVS). */
|
|
#undef HAVE_MEMCHR
|
|
|
|
/* Define if you have strchr (always for CVS). */
|
|
#undef HAVE_STRCHR
|
|
|
|
/* Define if utime requires write access to the file (true on Windows,
|
|
but not Unix). */
|
|
#undef UTIME_EXPECTS_WRITABLE
|
|
|
|
/* Define if setmode is required when writing binary data to stdout. */
|
|
#undef USE_SETMODE_STDOUT
|
|
|
|
/* Define if the diff library should use setmode for binary files.
|
|
FIXME: Why two different macros for setmode? */
|
|
#undef HAVE_SETMODE
|