Deleted Added
full compact
info.h (96030) info.h (103149)
1/* $FreeBSD: head/usr.sbin/pkg_install/info/info.h 96030 2002-05-04 14:49:49Z sobomax $ */
1/* $FreeBSD: head/usr.sbin/pkg_install/info/info.h 103149 2002-09-09 19:43:30Z sobomax $ */
2
3/*
4 * FreeBSD install - a package for the installation and maintainance
5 * of non-core utilities.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:

--- 18 unchanged lines hidden (view full) ---

28#ifndef MAXINDEXSIZE
29#define MAXINDEXSIZE 59
30#endif
31
32#ifndef MAXNAMESIZE
33#define MAXNAMESIZE 20
34#endif
35
2
3/*
4 * FreeBSD install - a package for the installation and maintainance
5 * of non-core utilities.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:

--- 18 unchanged lines hidden (view full) ---

28#ifndef MAXINDEXSIZE
29#define MAXINDEXSIZE 59
30#endif
31
32#ifndef MAXNAMESIZE
33#define MAXNAMESIZE 20
34#endif
35
36#define SHOW_COMMENT 0x0001
37#define SHOW_DESC 0x0002
38#define SHOW_PLIST 0x0004
39#define SHOW_INSTALL 0x0008
40#define SHOW_DEINSTALL 0x0010
41#define SHOW_REQUIRE 0x0020
42#define SHOW_PREFIX 0x0040
43#define SHOW_INDEX 0x0080
44#define SHOW_FILES 0x0100
45#define SHOW_DISPLAY 0x0200
46#define SHOW_REQBY 0x0400
47#define SHOW_MTREE 0x0800
48#define SHOW_SIZE 0x1000
49#define SHOW_ORIGIN 0x2000
50#define SHOW_CKSUM 0x4000
51#define SHOW_FMTREV 0x8000
36#define SHOW_COMMENT 0x00001
37#define SHOW_DESC 0x00002
38#define SHOW_PLIST 0x00004
39#define SHOW_INSTALL 0x00008
40#define SHOW_DEINSTALL 0x00010
41#define SHOW_REQUIRE 0x00020
42#define SHOW_PREFIX 0x00040
43#define SHOW_INDEX 0x00080
44#define SHOW_FILES 0x00100
45#define SHOW_DISPLAY 0x00200
46#define SHOW_REQBY 0x00400
47#define SHOW_MTREE 0x00800
48#define SHOW_SIZE 0x01000
49#define SHOW_ORIGIN 0x02000
50#define SHOW_CKSUM 0x04000
51#define SHOW_FMTREV 0x08000
52#define SHOW_PTREV 0x10000
52
53struct which_entry {
54 TAILQ_ENTRY(which_entry) next;
55 char file[PATH_MAX];
56 char package[PATH_MAX];
57 Boolean skip;
58};
59TAILQ_HEAD(which_head, which_entry);

--- 20 unchanged lines hidden ---
53
54struct which_entry {
55 TAILQ_ENTRY(which_entry) next;
56 char file[PATH_MAX];
57 char package[PATH_MAX];
58 Boolean skip;
59};
60TAILQ_HEAD(which_head, which_entry);

--- 20 unchanged lines hidden ---