diff options
author | Ian Jackson <ian@anarres> | 2007-08-16 01:10:35 +0100 |
---|---|---|
committer | Ian Jackson <ian@anarres> | 2007-08-16 01:10:35 +0100 |
commit | fb7bf91ccc01c6fa16ea2eb2b714d5a1b808c1ea (patch) | |
tree | 850709c080f74b3e12fa64b7046754ab2b690e4b /apt-pkg/pkgcache.h | |
parent | 9152d475de2c65d144fc3008043244d4622e136d (diff) |
dpkg-triggers: deal properly with new package states; 0.7.6ubuntu6
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 |