diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-03-29 04:49:52 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-03-29 04:49:52 +0000 |
commit | feb054f697504b4bd86d3f1325ab66e1d1fb1e51 (patch) | |
tree | 24705c135aff3546024878305378634aa960b681 /gnu/usr.bin | |
parent | 30fd9a923b75a4b86d1857d3a700a14e7643acc7 (diff) |
Integrate local changes
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/cvs/configure.in | 5 | ||||
-rw-r--r-- | gnu/usr.bin/cvs/src/cvs.h | 5 | ||||
-rw-r--r-- | gnu/usr.bin/cvs/src/ignore.c | 5 |
3 files changed, 11 insertions, 4 deletions
diff --git a/gnu/usr.bin/cvs/configure.in b/gnu/usr.bin/cvs/configure.in index 71482d674e5..c18f4a1c82f 100644 --- a/gnu/usr.bin/cvs/configure.in +++ b/gnu/usr.bin/cvs/configure.in @@ -70,12 +70,13 @@ dnl AC_MSG_CHECKING([for evidence of shadow passwords]) if test -f /etc/shadow \ || test -f /etc/security/passwd.adjunct ; then - echo "yup" + found="yes" AC_CHECK_LIB(sec, getspnam) AC_CHECK_FUNCS(getspnam) else - echo "nope" + found="no" fi +AC_MSG_RESULT([$found]) AC_CHECK_FUNC(re_exec, :, LIBOBJS="$LIBOBJS regex.o") AC_FUNC_UTIME_NULL diff --git a/gnu/usr.bin/cvs/src/cvs.h b/gnu/usr.bin/cvs/src/cvs.h index ce90e6f3946..a5f12b269f2 100644 --- a/gnu/usr.bin/cvs/src/cvs.h +++ b/gnu/usr.bin/cvs/src/cvs.h @@ -516,6 +516,11 @@ void rename_file PROTO((const char *from, const char *to)); extern void expand_wild PROTO ((int argc, char **argv, int *pargc, char ***pargv)); +#ifdef SERVER_SUPPORT +extern int cvs_casecmp PROTO ((char *, char *)); +extern int fopen_case PROTO ((char *, char *, FILE **, char **)); +#endif + void strip_trailing_slashes PROTO((char *path)); void update_delproc PROTO((Node * p)); void usage PROTO((const char *const *cpp)); diff --git a/gnu/usr.bin/cvs/src/ignore.c b/gnu/usr.bin/cvs/src/ignore.c index 379b92b5bba..91b015d94d9 100644 --- a/gnu/usr.bin/cvs/src/ignore.c +++ b/gnu/usr.bin/cvs/src/ignore.c @@ -250,8 +250,9 @@ ign_add (ign, hold) } } -/* Set to 1 if ignore file patterns should be matched in a case-insensitive - fashion. */ +/* Set to 1 if filenames should be matched in a case-insensitive + fashion. Note that, contrary to the name and placement in ignore.c, + this is no longer just for ignore patterns. */ int ign_case; /* Return 1 if the given filename should be ignored by update or import. */ |