diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rpmds.c | 5 | ||||
-rw-r--r-- | lib/rpmtag.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lib/rpmds.c b/lib/rpmds.c index 383c21f9e..14c5aa586 100644 --- a/lib/rpmds.c +++ b/lib/rpmds.c @@ -1034,6 +1034,11 @@ static const struct rpmlibProvides_s rpmlibProvides[] = { { "rpmlib(FileDigests)", "4.4.90-1", ( RPMSENSE_EQUAL), N_("file checksum digest algorithm is per package configurable") }, +#ifdef WITH_CAP + { "rpmlib(FileCaps)", "4.6.1-1", + ( RPMSENSE_EQUAL), + N_("support for POSIX.1e file capabilities") }, +#endif { NULL, NULL, 0, NULL } }; diff --git a/lib/rpmtag.h b/lib/rpmtag.h index b66cbabae..efcbd0088 100644 --- a/lib/rpmtag.h +++ b/lib/rpmtag.h @@ -280,6 +280,7 @@ typedef enum rpmTag_e { RPMTAG_ORIGFILENAMES = 5007, /* s[] extension */ RPMTAG_LONGFILESIZES = 5008, /* l[] */ RPMTAG_LONGSIZE = 5009, /* l */ + RPMTAG_FILECAPS = 5010, /* s[] */ RPMTAG_FIRSTFREE_TAG /*!< internal */ } rpmTag; |