summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjbj <jbj>2001-06-08 20:41:44 +0000
committerjbj <jbj>2001-06-08 20:41:44 +0000
commitaf934d39a6c7547b59f5d41bdb45aa5234fbaaba (patch)
tree34509b8e41e0600a61ca7c8df7aa856ff459df34
parentedf020b0b4d7fe4bffbbfadd29e2884f27cadd19 (diff)
downloadlibpopt-af934d39a6c7547b59f5d41bdb45aa5234fbaaba.tar.gz
- 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.
-rw-r--r--popt.h6
1 files changed, 6 insertions, 0 deletions
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