diff options
author | Michael Vogt <egon@bottom> | 2007-09-10 15:59:55 +0200 |
---|---|---|
committer | Michael Vogt <egon@bottom> | 2007-09-10 15:59:55 +0200 |
commit | d4db3e0afce3492d75ab2226393f93e58b0fbfde (patch) | |
tree | b69793fe9c3f46feed2aac101035d7de57744056 /apt-pkg/pkgcache.h | |
parent | 74bc8bb9d60d202a0fffee30785f6f0feb7dc354 (diff) | |
parent | 646501c8fd4c747b8162b87ecaa8406b1509be84 (diff) |
* dpkg-triggers: Deal properly with new package states.
Diffstat (limited to 'apt-pkg/pkgcache.h')
-rw-r--r-- | apt-pkg/pkgcache.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apt-pkg/pkgcache.h b/apt-pkg/pkgcache.h index 83b7548a3..59d5003bb 100644 --- a/apt-pkg/pkgcache.h +++ b/apt-pkg/pkgcache.h @@ -81,7 +81,8 @@ class pkgCache enum PkgSelectedState {Unknown=0,Install=1,Hold=2,DeInstall=3,Purge=4}; enum PkgInstState {Ok=0,ReInstReq=1,HoldInst=2,HoldReInstReq=3}; enum PkgCurrentState {NotInstalled=0,UnPacked=1,HalfConfigured=2, - HalfInstalled=4,ConfigFiles=5,Installed=6}; + HalfInstalled=4,ConfigFiles=5,Installed=6, + TriggersAwaited=7,TriggersPending=8}; }; struct Flag |