8203c24723
Make LOCALID a runtime option, instead of a compiletime option, by moving the value to CVSROOT/config (repository specific). Some minor fixes for buffer sizes. Add a RCS Id where missing; add some warning about the deprecated RCS_LOCALID variable. Both changes from OpenBSD. Bump to 1.11nb1.
28 lines
928 B
Text
28 lines
928 B
Text
$NetBSD: patch-am,v 1.5 2000/10/21 19:29:06 wiz Exp $
|
|
|
|
--- src/cvs.h.orig Sat Jul 8 21:57:21 2000
|
|
+++ src/cvs.h
|
|
@@ -363,6 +363,7 @@
|
|
extern int use_editor;
|
|
extern int cvswrite;
|
|
extern mode_t cvsumask;
|
|
+extern char *RCS_citag;
|
|
|
|
/* Access method specified in CVSroot. */
|
|
typedef enum {
|
|
@@ -394,6 +395,7 @@
|
|
|
|
extern int trace; /* Show all commands */
|
|
extern int noexec; /* Don't modify disk anywhere */
|
|
+extern int nolock; /* Don't create locks */
|
|
extern int logoff; /* Don't write history entry */
|
|
|
|
extern int top_level_admin;
|
|
@@ -654,6 +656,7 @@
|
|
#define RUN_STDOUT_APPEND 0x0004 /* append to stdout, don't truncate */
|
|
#define RUN_STDERR_APPEND 0x0008 /* append to stderr, don't truncate */
|
|
#define RUN_SIGIGNORE 0x0010 /* ignore interrupts for command */
|
|
+#define RUN_UNSETXID 0x0020 /* undo setxid in child */
|
|
#define RUN_TTY (char *)0 /* for the benefit of lint */
|
|
|
|
void run_arg PROTO((const char *s));
|