diff options
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/cvs/cvs/options.h | 25 | ||||
-rw-r--r-- | gnu/usr.bin/cvs/lib/config.h | 14 | ||||
-rw-r--r-- | gnu/usr.bin/cvs/lib/config.h.proto | 14 |
3 files changed, 40 insertions, 13 deletions
diff --git a/gnu/usr.bin/cvs/cvs/options.h b/gnu/usr.bin/cvs/cvs/options.h index 144980e..41e1f94 100644 --- a/gnu/usr.bin/cvs/cvs/options.h +++ b/gnu/usr.bin/cvs/cvs/options.h @@ -1,3 +1,4 @@ +/* $FreeBSD$ */ /* * Copyright (c) 1992, Brian Berliner and Jeff Polk * Copyright (c) 1989-1992, Brian Berliner @@ -15,13 +16,12 @@ * or the configure script directly. Sorry. */ -/* - * For portability and heterogeneity reasons, CVS is shipped by - * default using my own text-file version of the ndbm database library - * in the src/myndbm.c file. If you want better performance and are - * not concerned about heterogeneous hosts accessing your modules - * file, turn this option off. - */ +/* By default, CVS stores its modules and other such items in flat + text files (MY_NDBM enables this). Turning off MY_NDBM causes CVS + to look for a system-supplied ndbm database library and use it + instead. That may speed things up, but the default setting + generally works fine too. */ + #ifndef MY_NDBM #define MY_NDBM #endif @@ -89,13 +89,12 @@ * repository, change the contents of CVS/Root files in your * checked-out code, and CVS will work without problems. * - * This is likely to be the default in the future, but we want to give - * people who may be relying on absolute pathnames time to update - * their scripts/software. + * Therefore, RELATIVE_REPOS is now the default. In the future, this + * is likely to disappear entirely as a compile-time (or other) option, + * so if you have other software which relies on absolute pathnames, + * update them. */ -#ifndef RELATIVE_REPOS -/* #define RELATIVE_REPOS */ -#endif +#define RELATIVE_REPOS 1 /* * When committing or importing files, you must enter a log message. diff --git a/gnu/usr.bin/cvs/lib/config.h b/gnu/usr.bin/cvs/lib/config.h index 67751b8..4de4241 100644 --- a/gnu/usr.bin/cvs/lib/config.h +++ b/gnu/usr.bin/cvs/lib/config.h @@ -1,3 +1,4 @@ +/* $FreeBSD$ */ /* config.h. Generated automatically by configure. */ /* config.h.in. Generated automatically from configure.in by autoheader. */ @@ -75,6 +76,10 @@ /* Define if you have GSSAPI with MIT Kerberos version 5 available. */ /* #undef HAVE_GSSAPI */ +/* Define if GSS_C_NT_HOSTBASED_SERVICE is defined in the gssapi.h + header file. Only relevant when using GSSAPI. */ +/* #undef HAVE_GSS_C_NT_HOSTBASED_SERVICE */ + /* Define if you want CVS to be able to be a remote repository client. */ #define CLIENT_SUPPORT 1 @@ -192,6 +197,15 @@ /* Define if you have the <fcntl.h> header file. */ #define HAVE_FCNTL_H 1 +/* Define if you have the <gssapi.h> header file. */ +/* #undef HAVE_GSSAPI_H */ + +/* Define if you have the <gssapi/gssapi.h> header file. */ +/* #undef HAVE_GSSAPI_GSSAPI_H */ + +/* Define if you have the <gssapi/gssapi_generic.h> header file. */ +/* #undef HAVE_GSSAPI_GSSAPI_GENERIC_H */ + /* Define if you have the <io.h> header file. */ /* #undef HAVE_IO_H */ diff --git a/gnu/usr.bin/cvs/lib/config.h.proto b/gnu/usr.bin/cvs/lib/config.h.proto index 67751b8..4de4241 100644 --- a/gnu/usr.bin/cvs/lib/config.h.proto +++ b/gnu/usr.bin/cvs/lib/config.h.proto @@ -1,3 +1,4 @@ +/* $FreeBSD$ */ /* config.h. Generated automatically by configure. */ /* config.h.in. Generated automatically from configure.in by autoheader. */ @@ -75,6 +76,10 @@ /* Define if you have GSSAPI with MIT Kerberos version 5 available. */ /* #undef HAVE_GSSAPI */ +/* Define if GSS_C_NT_HOSTBASED_SERVICE is defined in the gssapi.h + header file. Only relevant when using GSSAPI. */ +/* #undef HAVE_GSS_C_NT_HOSTBASED_SERVICE */ + /* Define if you want CVS to be able to be a remote repository client. */ #define CLIENT_SUPPORT 1 @@ -192,6 +197,15 @@ /* Define if you have the <fcntl.h> header file. */ #define HAVE_FCNTL_H 1 +/* Define if you have the <gssapi.h> header file. */ +/* #undef HAVE_GSSAPI_H */ + +/* Define if you have the <gssapi/gssapi.h> header file. */ +/* #undef HAVE_GSSAPI_GSSAPI_H */ + +/* Define if you have the <gssapi/gssapi_generic.h> header file. */ +/* #undef HAVE_GSSAPI_GSSAPI_GENERIC_H */ + /* Define if you have the <io.h> header file. */ /* #undef HAVE_IO_H */ |