diff options
author | Michael Schroeder <mls@suse.de> | 2014-03-26 14:58:28 +0100 |
---|---|---|
committer | Michael Schroeder <mls@suse.de> | 2014-03-26 14:58:28 +0100 |
commit | f6ec0181558e1a637a90b8b165403d24c93fab90 (patch) | |
tree | c2765592475756d4c9a22e7d27abc3695af30dbc /bindings | |
parent | 758254769a053b80e7b6fba6b37e062c1d87d4c7 (diff) | |
download | libsolv-f6ec0181558e1a637a90b8b165403d24c93fab90.tar.gz libsolv-f6ec0181558e1a637a90b8b165403d24c93fab90.tar.bz2 libsolv-f6ec0181558e1a637a90b8b165403d24c93fab90.zip |
support SOLVER_FLAG_DUP_ALLOW* flags in solver_set_flags and bindings
Diffstat (limited to 'bindings')
-rw-r--r-- | bindings/solv.i | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bindings/solv.i b/bindings/solv.i index b7fd80d..bf46c08 100644 --- a/bindings/solv.i +++ b/bindings/solv.i @@ -2723,6 +2723,10 @@ rb_eval_string( static const int SOLVER_FLAG_NO_INFARCHCHECK = SOLVER_FLAG_NO_INFARCHCHECK; static const int SOLVER_FLAG_BEST_OBEY_POLICY = SOLVER_FLAG_BEST_OBEY_POLICY; static const int SOLVER_FLAG_NO_AUTOTARGET = SOLVER_FLAG_NO_AUTOTARGET; + static const int SOLVER_FLAG_DUP_ALLOW_DOWNGRADE = SOLVER_FLAG_DUP_ALLOW_DOWNGRADE; + static const int SOLVER_FLAG_DUP_ALLOW_ARCHCHANGE = SOLVER_FLAG_DUP_ALLOW_ARCHCHANGE; + static const int SOLVER_FLAG_DUP_ALLOW_VENDORCHANGE = SOLVER_FLAG_DUP_ALLOW_VENDORCHANGE; + static const int SOLVER_FLAG_DUP_ALLOW_NAMECHANGE = SOLVER_FLAG_DUP_ALLOW_NAMECHANGE; static const int SOLVER_REASON_UNRELATED = SOLVER_REASON_UNRELATED; static const int SOLVER_REASON_UNIT_RULE = SOLVER_REASON_UNIT_RULE; |