summaryrefslogtreecommitdiff
path: root/src/pool.h
diff options
context:
space:
mode:
authorMichael Schroeder <mls@suse.de>2012-02-22 10:01:26 +0100
committerMichael Schroeder <mls@suse.de>2012-02-22 10:01:26 +0100
commit9719138694aecbc578cc2bb3c8ea02ce1bc8fea5 (patch)
treecd8976531e8408f4b248430d7f4d5af67c5795f1 /src/pool.h
parent7eb4102e3eebb5518c4945ed8c44eb21c06456de (diff)
downloadlibsolv-9719138694aecbc578cc2bb3c8ea02ce1bc8fea5.tar.gz
libsolv-9719138694aecbc578cc2bb3c8ea02ce1bc8fea5.tar.bz2
libsolv-9719138694aecbc578cc2bb3c8ea02ce1bc8fea5.zip
- change allowselfconflicts to forbidselfconflicts now that rpm also allows them.
Diffstat (limited to 'src/pool.h')
-rw-r--r--src/pool.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pool.h b/src/pool.h
index 121eb56..4191f53 100644
--- a/src/pool.h
+++ b/src/pool.h
@@ -126,7 +126,7 @@ struct _Pool {
int implicitobsoleteusesprovides; /* true: implicit obsoletes due to same name are matched against provides, not names */
int obsoleteusescolors; /* true: obsoletes check arch color */
int noinstalledobsoletes; /* true: ignore obsoletes of installed packages */
- int allowselfconflicts; /* true: packages which conflict with itself are installable */
+ int forbidselfconflicts; /* true: packages which conflict with itself are not installable */
/* hash for rel unification */
Hashtable relhashtbl; /* hashtable: (name,evr,op)Hash -> Id */
@@ -162,7 +162,7 @@ struct _Pool {
#define SOLV_DEBUG_TO_STDERR (1<<30)
#define POOL_FLAG_PROMOTEEPOCH 1
-#define POOL_FLAG_ALLOWSELFCONFLICTS 2
+#define POOL_FLAG_FORBIDSELFCONFLICTS 2
#define POOL_FLAG_OBSOLETEUSESPROVIDES 3
#define POOL_FLAG_IMPLICITOBSOLETEUSESPROVIDES 4
#define POOL_FLAG_OBSOLETEUSESCOLORS 5