summaryrefslogtreecommitdiff
path: root/usr.sbin/pkg_install/lib/global.c
diff options
context:
space:
mode:
authorMarco S Hyman <marc@cvs.openbsd.org>1998-09-07 22:30:18 +0000
committerMarco S Hyman <marc@cvs.openbsd.org>1998-09-07 22:30:18 +0000
commitb7191a530a228038c0867ad6aedd90f5b534d1e9 (patch)
treedff11f7b0f8e66c2c0a6b6dbf273127ef93423cd /usr.sbin/pkg_install/lib/global.c
parentd772ee662c59d0c57ee6ec091bcc1b5d284fb641 (diff)
updated pkg_* tools. Merged in many changes/improvements from NetBSD.
New features include md5 hash so pkg_delete won't remove files that have changed and the ability to define conflicting packages, e.g. you can't install both mh and nmh. The ports tree will have to be updated to take advantage of this. Let me know of any problems, real or imagined :-)
Diffstat (limited to 'usr.sbin/pkg_install/lib/global.c')
-rw-r--r--usr.sbin/pkg_install/lib/global.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/pkg_install/lib/global.c b/usr.sbin/pkg_install/lib/global.c
index c5137e6bb37..c86f21a7934 100644
--- a/usr.sbin/pkg_install/lib/global.c
+++ b/usr.sbin/pkg_install/lib/global.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: global.c,v 1.2 1996/06/04 08:43:44 niklas Exp $ */
+/* $OpenBSD: global.c,v 1.3 1998/09/07 22:30:16 marc Exp $ */
#ifndef lint
-static const char *rcsid = "$OpenBSD: global.c,v 1.2 1996/06/04 08:43:44 niklas Exp $";
+static const char *rcsid = "$OpenBSD: global.c,v 1.3 1998/09/07 22:30:16 marc Exp $";
#endif
/*
@@ -30,6 +30,7 @@ static const char *rcsid = "$OpenBSD: global.c,v 1.2 1996/06/04 08:43:44 niklas
/* These are global for all utils */
Boolean Verbose = FALSE;
Boolean Fake = FALSE;
+Boolean Force = FALSE;
int AutoAnswer = FALSE;