+Sun Oct 26 14:55:53 CET 2003 Wichert Akkerman <wichert@wiggy.net>
+
+ * dselect/pkgdepcon.cc: change return value for pkgdepcon() to indicate
+ a conflict resolution is needed when dealing with autoselected
+ recommends
+
Sat Oct 25 15:46:16 CDT 2003 Adam Heath <doogie@debian.org>
* debian/changelog: Tag for 1.10.16 release date(for real this time).
+dpkg (1.10.17) unstable; urgency=medium
+
+ * Make dselect do conflict resolution when dealing with automatically
+ selected recommended package. Thanks to Colin Watson for the analysis
+ and patch. Closes: Bug#151663
+
+ -- Wichert Akkerman <wakkerma@debian.org> Sun, 26 Oct 2003 14:58:55 +0100
+
dpkg (1.10.16) unstable; urgency=low
* Almost *EVERY* damn file was including config.h in the wrong spot.
best->selected= best->suggested= pkginfo::want_install;
best->spriority= sp_selecting;
}
- return r;
+ return r ? 2 : 0;
mustdeselect:
best= depends->up->clientdata;
? pkginfo::want_purge : pkginfo::want_deinstall; /* fixme: configurable */
best->spriority= sp_deselecting;
}
- return r;
+ return r ? 2 : 0;
case dep_conflicts: