From 72ecca6cc43bd4198bd584dfd3fbee5cca1452c2 Mon Sep 17 00:00:00 2001 From: tholo Date: Sat, 29 Mar 1997 04:49:44 +0000 Subject: [PATCH] Integrate local changes --- gnu/usr.bin/cvs/configure.in | 5 +++-- gnu/usr.bin/cvs/src/cvs.h | 5 +++++ 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. */ -- 2.20.1