diff options
author | Dan McGee <dan@archlinux.org> | 2007-03-01 19:07:38 +0000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-03-01 19:07:38 +0000 |
commit | efca1cc0106fd4b1eea795b6ff8ae208e1196042 (patch) | |
tree | 6fe6a4b5689a5d239ffb568a673c17b6cc66caf7 /lib/libalpm/db.h | |
parent | ca139e985017652fa1d25b2ff8ac4a8ebbe4c648 (diff) | |
download | pacman-efca1cc0106fd4b1eea795b6ff8ae208e1196042.tar.xz |
* Modified values of INFRQ_* options so we start at 0x01 and not 0x00. This
allows for the same bit operators to be used across the board on pkg_get
operations.
* Changed name of INFRQ_NONE -> INFRQ_BASE to more clearly reflect what it
does (loads pkg name and version).
* Added a few missing things on package functions, such as SYMEXPORT and
ALPM_LOG_FUNC.
* Slight updates to pmenv to print 'pass' and 'fail' instead of 'passed' and
'failed'. Keeps output a bit more concise.
* Fixed a doxygen comment spelling error. :P
Diffstat (limited to 'lib/libalpm/db.h')
-rw-r--r-- | lib/libalpm/db.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libalpm/db.h b/lib/libalpm/db.h index 4f3c1bf0..81c15f50 100644 --- a/lib/libalpm/db.h +++ b/lib/libalpm/db.h @@ -28,11 +28,11 @@ /* Database entries */ typedef enum _pmdbinfrq_t { - INFRQ_NONE = 0x00, - INFRQ_DESC = 0x01, - INFRQ_DEPENDS = 0x02, - INFRQ_FILES = 0x04, - INFRQ_SCRIPTLET = 0x08, + INFRQ_BASE = 0x01, + INFRQ_DESC = 0x02, + INFRQ_DEPENDS = 0x04, + INFRQ_FILES = 0x08, + INFRQ_SCRIPTLET = 0x16, INFRQ_ALL = 0xFF } pmdbinfrq_t; |