Integrate local changes
authortholo <tholo@openbsd.org>
Sat, 29 Mar 1997 04:49:44 +0000 (04:49 +0000)
committertholo <tholo@openbsd.org>
Sat, 29 Mar 1997 04:49:44 +0000 (04:49 +0000)
gnu/usr.bin/cvs/configure.in
gnu/usr.bin/cvs/src/cvs.h
gnu/usr.bin/cvs/src/ignore.c

index 71482d6..c18f4a1 100644 (file)
@@ -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
index ce90e6f..a5f12b2 100644 (file)
@@ -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));
index 379b92b..91b015d 100644 (file)
@@ -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. */