3 + - jbj: fix: reverse arrows on erasure dependency graph.
4 - rse: provide the necessary pre-processor macros to allow misc/err.h to compile with Sun Studio 12 under Solaris 10
5 - jbj: rpmrepo: be kind to the sqlite3 deprived.
6 - jbj: rpmrepo: cleanly separate SQL representation from execution.
7 Index: rpm/lib/depends.c
8 RCS File: /v/rpm/cvs/rpm/lib/depends.c,v
9 rcsdiff -q -kk '-r1.392' '-r1.393' -u '/v/rpm/cvs/rpm/lib/depends.c,v' 2>/dev/null
10 --- lib/depends.c 2008/03/17 09:50:01 1.392
11 +++ lib/depends.c 2008/03/31 23:00:56 1.393
14 /*@=abstractcompare@*/
16 - requires = rpmteDS(p, tsi->tsi_tagn);
17 + requires = rpmteDS((rpmteType(p) == TR_REMOVED ? q : p), tsi->tsi_tagn);
18 if (requires == NULL) continue; /* XXX can't happen */
20 (void) rpmdsSetIx(requires, tsi->tsi_reqx);
21 @@ -1882,6 +1882,13 @@
25 + /* Erasures are reversed installs. */
26 + if (teType == TR_REMOVED) {
32 /* T3. Record next "q <- p" relation (i.e. "p" requires "q"). */
33 rpmteTSI(p)->tsi_count++; /* bump p predecessor count */
36 tsi->tsi_next = rpmteTSI(q)->tsi_next;
37 rpmteTSI(q)->tsi_next = tsi;
38 rpmteTSI(q)->tsi_qcnt++; /* bump q successor count */