From af934d39a6c7547b59f5d41bdb45aa5234fbaaba Mon Sep 17 00:00:00 2001 From: jbj Date: Fri, 8 Jun 2001 20:41:44 +0000 Subject: - fix: QUERY_FOR_LIST file count clobbered. - create top level rpmcli API, factor top level modes into popt tables. - popt: add POPT_BIT_SET/POPT_BIT_CLR to API. - autogen.sh checks for latest libtool-1.4 and automake-1.4-p2. - rpm --verify reports failure(s) if corresponding tag is not in header. - rpm --verify honors %config(missingok), add -v for legacy behavior. --- popt.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/popt.h b/popt.h index a195947..8003d46 100644 --- a/popt.h +++ b/popt.h @@ -58,6 +58,12 @@ extern "C" { #define POPT_ARGFLAG_NOT 0x01000000 /*!< arg will be negated */ #define POPT_ARGFLAG_LOGICALOPS \ (POPT_ARGFLAG_OR|POPT_ARGFLAG_AND|POPT_ARGFLAG_XOR) + +#define POPT_BIT_SET (POPT_ARG_VAL|POPT_ARGFLAG_OR) + /*!< set arg bit(s) */ +#define POPT_BIT_CLR (POPT_ARG_VAL|POPT_ARGFLAG_NAND) + /*!< clear arg bit(s) */ + /*@}*/ /** \ingroup popt -- cgit v1.2.1