diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2007-09-06 15:38:32 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2007-09-06 15:38:32 +0200 |
commit | 9d06bc808c5ad28087821c3ecf725304adc81950 (patch) | |
tree | 579e12eed16d2885550fafb82120611ac9dec181 /apt-pkg/pkgcache.h | |
parent | 0b2f4b123a0254bef9a9c6550cbfce109c6276a4 (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 |