diff options
author | Michael Schroeder <mls@suse.de> | 2012-02-22 10:01:26 +0100 |
---|---|---|
committer | Michael Schroeder <mls@suse.de> | 2012-02-22 10:01:26 +0100 |
commit | 9719138694aecbc578cc2bb3c8ea02ce1bc8fea5 (patch) | |
tree | cd8976531e8408f4b248430d7f4d5af67c5795f1 /src/pool.h | |
parent | 7eb4102e3eebb5518c4945ed8c44eb21c06456de (diff) | |
download | libsolv-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.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |