From: Michael Schroeder Date: Mon, 1 Jun 2015 12:29:03 +0000 (+0200) Subject: ABI compat: move whatprovidesaux to private part of pool X-Git-Tag: 0.6.11~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a669833f10c3033c82b9caf33d160067b80e1bf;p=thirdparty%2Flibsolv.git ABI compat: move whatprovidesaux to private part of pool --- diff --git a/src/pool.h b/src/pool.h index 42246af2..6b98efc9 100644 --- a/src/pool.h +++ b/src/pool.h @@ -99,11 +99,6 @@ struct _Pool { Offset whatprovidesdataoff; /* next free slot within whatprovidesdata */ int whatprovidesdataleft; /* number of 'free slots' within whatprovidesdata */ - Offset *whatprovidesaux; - Offset whatprovidesauxoff; - Id *whatprovidesauxdata; - Offset whatprovidesauxdataoff; - /* If nonzero, then consider only the solvables with Ids set in this bitmap for solving. If zero, consider all solvables. */ Map *considered; @@ -161,6 +156,11 @@ struct _Pool { int addedfileprovides; /* true: application called addfileprovides */ Queue lazywhatprovidesq; /* queue to store old whatprovides offsets */ int nowhatprovidesaux; /* don't allocate and use the whatprovides aux helper */ + Offset *whatprovidesaux; + Offset whatprovidesauxoff; + Id *whatprovidesauxdata; + Offset whatprovidesauxdataoff; + #endif };