diff options
author | ticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358> | 2008-12-14 23:20:45 (EST) |
---|---|---|
committer | ticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358> | 2008-12-14 23:20:45 (EST) |
commit | 8b44d858a9895bfaec1f78562c9619c5652d9056 (patch) | |
tree | 6a47e7b0a01f36c6cf09262a86d811cedfe83de9 /pkg.h | |
parent | 9f88cb5044297003623fb63d47836c1167322417 (diff) |
opkg: add a status flag to record if the package was automatically installed to
satisfy a dependency
git-svn-id: http://opkg.googlecode.com/svn/trunk@24 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358
Diffstat (limited to 'pkg.h')
-rw-r--r-- | pkg.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -176,6 +176,10 @@ struct pkg int arch_priority; /* Adding this flag, to "force" opkg to choose a "provided_by_hand" package, if there are multiple choice */ int provided_by_hand; + + /* this flag specifies whether the package was installed to satisfy another + * package's dependancies */ + int auto_installed; }; pkg_t *pkg_new(void); |