diff options
author | jbj <devnull@localhost> | 2003-03-10 23:28:24 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2003-03-10 23:28:24 +0000 |
commit | f9200584683e5bda36cc3cc66d66cb0d43c51305 (patch) | |
tree | db023d2fd0b6b46fe7d1936ab199deb244af0733 /lib/rpmlib.h | |
parent | 205419460247f03ab62c2357f305e9931ecefe1e (diff) | |
download | rpm-f9200584683e5bda36cc3cc66d66cb0d43c51305.tar.gz rpm-f9200584683e5bda36cc3cc66d66cb0d43c51305.tar.bz2 rpm-f9200584683e5bda36cc3cc66d66cb0d43c51305.zip |
- upgrade to zlib-1.2.beta7.
- pass structure pointer, not args, through headerSprintf call chain.
- add ":xml" header format modifier.
CVS patchset: 6675
CVS date: 2003/03/10 23:28:24
Diffstat (limited to 'lib/rpmlib.h')
-rw-r--r-- | lib/rpmlib.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/rpmlib.h b/lib/rpmlib.h index 46140f024..e2fc8517b 100644 --- a/lib/rpmlib.h +++ b/lib/rpmlib.h @@ -237,6 +237,7 @@ typedef enum rpmTag_e { RPMTAG_SIGPGP = RPMTAG_SIG_BASE+3, RPMTAG_SIGLEMD5_2 = RPMTAG_SIG_BASE+4, /*!< internal - obsolete */ RPMTAG_SIGMD5 = RPMTAG_SIG_BASE+5, +#define RPMTAG_PKGID RPMTAG_SIGMD5 RPMTAG_SIGGPG = RPMTAG_SIG_BASE+6, RPMTAG_SIGPGP5 = RPMTAG_SIG_BASE+7, /*!< internal - obsolete */ @@ -246,11 +247,16 @@ typedef enum rpmTag_e { RPMTAG_DSAHEADER = RPMTAG_SIG_BASE+11, RPMTAG_RSAHEADER = RPMTAG_SIG_BASE+12, RPMTAG_SHA1HEADER = RPMTAG_SIG_BASE+13, +#define RPMTAG_HDRID RPMTAG_SHA1HEADER RPMTAG_NAME = 1000, +#define RPMTAG_N RPMTAG_NAME RPMTAG_VERSION = 1001, +#define RPMTAG_V RPMTAG_VERSION RPMTAG_RELEASE = 1002, +#define RPMTAG_R RPMTAG_RELEASE RPMTAG_EPOCH = 1003, +#define RPMTAG_E RPMTAG_EPOCH #define RPMTAG_SERIAL RPMTAG_EPOCH /* backward comaptibility */ RPMTAG_SUMMARY = 1004, RPMTAG_DESCRIPTION = 1005, |