summaryrefslogtreecommitdiff
path: root/usr.sbin/pkg_install/info/info.h
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2004-05-28 20:15:49 +0000
committerBrad Smith <brad@cvs.openbsd.org>2004-05-28 20:15:49 +0000
commitf473943a23d39230500fa5d4bd2e7c0be8904725 (patch)
treeaaf5a2ca769ebe488845669e6ad6c019d568bb05 /usr.sbin/pkg_install/info/info.h
parentc3cebc304b3fb018e0c7bcf0bf799547bdd63b40 (diff)
bye bye old package tools.
ok deraadt@
Diffstat (limited to 'usr.sbin/pkg_install/info/info.h')
-rw-r--r--usr.sbin/pkg_install/info/info.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/usr.sbin/pkg_install/info/info.h b/usr.sbin/pkg_install/info/info.h
deleted file mode 100644
index 6e7623b52c5..00000000000
--- a/usr.sbin/pkg_install/info/info.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/* $OpenBSD: info.h,v 1.3 1998/11/19 04:12:55 espie Exp $ */
-
-/*
- * FreeBSD install - a package for the installation and maintainance
- * of non-core utilities.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * Jordan K. Hubbard
- * 23 August 1993
- *
- * Include and define various things wanted by the info command.
- *
- */
-
-#ifndef _INST_INFO_H_INCLUDE
-#define _INST_INFO_H_INCLUDE
-
-#ifndef MAXNAMESIZE
-#define MAXNAMESIZE 20
-#endif
-
-#define SHOW_COMMENT 0x0001
-#define SHOW_DESC 0x0002
-#define SHOW_PLIST 0x0004
-#define SHOW_INSTALL 0x0008
-#define SHOW_DEINSTALL 0x0010
-#define SHOW_REQUIRE 0x0020
-#define SHOW_PREFIX 0x0040
-#define SHOW_INDEX 0x0080
-#define SHOW_FILES 0x0100
-#define SHOW_DISPLAY 0x0200
-#define SHOW_REQBY 0x0400
-#define SHOW_MTREE 0x0800
-
-extern int Flags;
-extern Boolean AllInstalled;
-extern Boolean Quiet;
-extern char *InfoPrefix;
-extern char PlayPen[];
-extern size_t PlayPenSize;
-extern char *CheckPkg;
-
-extern void show_file(char *, char *);
-extern void show_plist(char *, package_t *, pl_ent_t);
-extern void show_files(char *, package_t *);
-extern void show_index(char *, char *);
-
-#endif /* _INST_INFO_H_INCLUDE */