diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-04-27 19:43:32 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-04-27 19:43:32 +0000 |
commit | 49126961fd129e607f88970e81ab6d48baaecda0 (patch) | |
tree | 8168bd6a7b92392e99d483a83c51b3f8f7df113d /gnu/usr.bin/cvs/windows-NT/options.h | |
parent | 61aa6f7b30e536382606a49e9a65374b125db338 (diff) |
Latest public release from Cyclic; fixes numerous memory leaks and have
some performance improvements
Diffstat (limited to 'gnu/usr.bin/cvs/windows-NT/options.h')
-rw-r--r-- | gnu/usr.bin/cvs/windows-NT/options.h | 26 |
1 files changed, 5 insertions, 21 deletions
diff --git a/gnu/usr.bin/cvs/windows-NT/options.h b/gnu/usr.bin/cvs/windows-NT/options.h index 479f67335bb..54f95537b35 100644 --- a/gnu/usr.bin/cvs/windows-NT/options.h +++ b/gnu/usr.bin/cvs/windows-NT/options.h @@ -80,23 +80,6 @@ #endif /* - * The "rm" program to execute when pruning directories that are not part of - * a release. This "rm" must support the "-fr" options. Specify a full - * pathname if your site wants to use a particular rm. - */ -#ifndef RM -#define RM "rm" -#endif - -/* - * The "sort" program to execute when displaying the module database. Specify - * a full pathname if your site wants to use a particular sort. - */ -#ifndef SORT -#define SORT "sort" -#endif - -/* * The "patch" program to run when using the CVS server and accepting * patches across the network. Specify a full pathname if your site * wants to use a particular patch. @@ -242,10 +225,11 @@ #endif /* - * The authenticated client/server is under construction -- it is not - * known to work with Windows NT. + * Yes, we can do the authenticated client. */ -/* #define AUTH_CLIENT_SUPPORT 1 */ +#define AUTH_CLIENT_SUPPORT 1 + +/* Authenticated server doesn't work yet on NT. */ /* #define AUTH_SERVER_SUPPORT 1 */ /* @@ -256,7 +240,7 @@ * and recv(), or maybe one has to link against a different library or something, * I don't know. So this is commented out. */ -/* #define NO_SOCKET_TO_FD 1 */ +#define NO_SOCKET_TO_FD 1 /* End of CVS configuration section */ |