config.h | config.h | |||
---|---|---|---|---|
skipping to change at line 41 | skipping to change at line 41 | |||
/* Define if we have enabled pthread support */ | /* Define if we have enabled pthread support */ | |||
/* #undef HAVE_PTHREAD */ | /* #undef HAVE_PTHREAD */ | |||
/* If there is no socklen_t, define this for the netdb shim */ | /* If there is no socklen_t, define this for the netdb shim */ | |||
/* #undef NEED_SOCKLEN_T_DEFINE */ | /* #undef NEED_SOCKLEN_T_DEFINE */ | |||
/* Define the arch name string */ | /* Define the arch name string */ | |||
#define COMMON_ARCH "i386" | #define COMMON_ARCH "i386" | |||
/* The version number string */ | /* The version number string */ | |||
#define VERSION "0.8.15" | #define VERSION "0.8.15.1" | |||
/* The package name string */ | /* The package name string */ | |||
#define PACKAGE "apt" | #define PACKAGE "apt" | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
policy.h | policy.h | |||
---|---|---|---|---|
skipping to change at line 57 | skipping to change at line 57 | |||
{ | { | |||
pkgVersionMatch::MatchType Type; | pkgVersionMatch::MatchType Type; | |||
string Data; | string Data; | |||
signed short Priority; | signed short Priority; | |||
Pin() : Type(pkgVersionMatch::None), Priority(0) {}; | Pin() : Type(pkgVersionMatch::None), Priority(0) {}; | |||
}; | }; | |||
struct PkgPin : Pin | struct PkgPin : Pin | |||
{ | { | |||
string Pkg; | string Pkg; | |||
PkgPin(string const &Pkg) : Pin(), Pkg(Pkg) {}; | ||||
}; | }; | |||
Pin *Pins; | Pin *Pins; | |||
signed short *PFPriority; | signed short *PFPriority; | |||
vector<Pin> Defaults; | vector<Pin> Defaults; | |||
vector<PkgPin> Unmatched; | vector<PkgPin> Unmatched; | |||
pkgCache *Cache; | pkgCache *Cache; | |||
bool StatusOverride; | bool StatusOverride; | |||
public: | public: | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 1 lines changed or added | |||