rpmtag.h | rpmtag.h | |||
---|---|---|---|---|
skipping to change at line 425 | skipping to change at line 425 | |||
RPMTAG_ORIGINTID = 1209, /* i[] */ | RPMTAG_ORIGINTID = 1209, /* i[] */ | |||
RPMTAG_ORIGINTIME = 1210, /* i[] */ | RPMTAG_ORIGINTIME = 1210, /* i[] */ | |||
RPMTAG_HEADERSTARTOFF = 1211, /* l */ | RPMTAG_HEADERSTARTOFF = 1211, /* l */ | |||
RPMTAG_HEADERENDOFF = 1212, /* l */ | RPMTAG_HEADERENDOFF = 1212, /* l */ | |||
RPMTAG_PACKAGETIME = 1213, /* l */ | RPMTAG_PACKAGETIME = 1213, /* l */ | |||
RPMTAG_PACKAGESIZE = 1214, /* l */ | RPMTAG_PACKAGESIZE = 1214, /* l */ | |||
RPMTAG_PACKAGEDIGEST = 1215, /* s */ | RPMTAG_PACKAGEDIGEST = 1215, /* s */ | |||
RPMTAG_PACKAGESTAT = 1216, /* x */ | RPMTAG_PACKAGESTAT = 1216, /* x */ | |||
RPMTAG_PACKAGEBASEURL = 1217, /* s */ | RPMTAG_PACKAGEBASEURL = 1217, /* s */ | |||
RPMTAG_DISTEPOCH = 1218, /* s */ | RPMTAG_DISTEPOCH = 1218, /* s */ | |||
#define RPMTAG_D RPMTAG_DISTEPOCH /* s */ | ||||
RPMTAG_FILEDIGESTALGO = 5011, /* i file checksum algorithm */ | RPMTAG_FILEDIGESTALGO = 5011, /* i file checksum algorithm */ | |||
/*@-enummemuse@*/ | /*@-enummemuse@*/ | |||
RPMTAG_FIRSTFREE_TAG, /*!< internal */ | RPMTAG_FIRSTFREE_TAG, /*!< internal */ | |||
/*@=enummemuse@*/ | /*@=enummemuse@*/ | |||
RPMTAG_PACKAGETRANSFLAGS = 0x4efaafd9, /* s[] arbitrary */ | RPMTAG_PACKAGETRANSFLAGS = 0x4efaafd9, /* s[] arbitrary */ | |||
RPMTAG_PACKAGEDEPFLAGS = 0x748a8314, /* s[] arbitrary */ | RPMTAG_PACKAGEDEPFLAGS = 0x748a8314, /* s[] arbitrary */ | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 1 lines changed or added | |||
rpmversion.h | rpmversion.h | |||
---|---|---|---|---|
skipping to change at line 81 | skipping to change at line 81 | |||
/* link-time information */ | /* link-time information */ | |||
extern uint32_t rpmlibVersion(void) | extern uint32_t rpmlibVersion(void) | |||
/*@*/; | /*@*/; | |||
extern uint32_t rpmlibTimestamp(void) | extern uint32_t rpmlibTimestamp(void) | |||
/*@*/; | /*@*/; | |||
extern uint32_t rpmlibVendor(void) | extern uint32_t rpmlibVendor(void) | |||
/*@*/; | /*@*/; | |||
/* compile-time information */ | /* compile-time information */ | |||
#define RPMLIB_VERSION RPMLIB_VERSION_ENCODE(5,2,r,0,0,_) | #define RPMLIB_VERSION RPMLIB_VERSION_ENCODE(5,2,r,1,0,_) | |||
#define RPMLIB_TIMESTAMP RPMLIB_TIMESTAMP_ENCODE(2009,0,0,0,0) | #define RPMLIB_TIMESTAMP RPMLIB_TIMESTAMP_ENCODE(2009,0,0,0,0) | |||
#define RPMLIB_VENDOR RPMLIB_VENDOR_ENCODE('R','P','M','5') | #define RPMLIB_VENDOR RPMLIB_VENDOR_ENCODE('R','P','M','5') | |||
/* RPM release version encoding */ | /* RPM release version encoding */ | |||
#define RPMLIB_VERSION_ENCODE(major,minor,type,micro,revision,snap) \ | #define RPMLIB_VERSION_ENCODE(major,minor,type,micro,revision,snap) \ | |||
( RPMLIB_BITFIELD_SET(31,27,(major)) \ | ( RPMLIB_BITFIELD_SET(31,27,(major)) \ | |||
| RPMLIB_BITFIELD_SET(26,21,(minor)) \ | | RPMLIB_BITFIELD_SET(26,21,(minor)) \ | |||
| RPMLIB_BITFIELD_SET(20,18,RPMLIB_VERSION_ENCODE_T(type)) \ | | RPMLIB_BITFIELD_SET(20,18,RPMLIB_VERSION_ENCODE_T(type)) \ | |||
| RPMLIB_BITFIELD_SET(17,10,(micro)) \ | | RPMLIB_BITFIELD_SET(17,10,(micro)) \ | |||
| RPMLIB_BITFIELD_SET(9,1,(revision)) \ | | RPMLIB_BITFIELD_SET(9,1,(revision)) \ | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||