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.5" | #define VERSION "0.8.6" | |||
/* 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 | |||
depcache.h | depcache.h | |||
---|---|---|---|---|
skipping to change at line 192 | skipping to change at line 192 | |||
/** \brief Returns \b true for packages matching a regular | /** \brief Returns \b true for packages matching a regular | |||
* expression in APT::NeverAutoRemove. | * expression in APT::NeverAutoRemove. | |||
*/ | */ | |||
class DefaultRootSetFunc : public InRootSetFunc, public Configuration::M atchAgainstConfig | class DefaultRootSetFunc : public InRootSetFunc, public Configuration::M atchAgainstConfig | |||
{ | { | |||
public: | public: | |||
DefaultRootSetFunc() : Configuration::MatchAgainstConfig("APT::NeverAu toRemove") {}; | DefaultRootSetFunc() : Configuration::MatchAgainstConfig("APT::NeverAu toRemove") {}; | |||
virtual ~DefaultRootSetFunc() {}; | virtual ~DefaultRootSetFunc() {}; | |||
bool InRootSet(const pkgCache::PkgIterator &pkg) { return pkg.end() == true && Match(pkg.Name()); }; | bool InRootSet(const pkgCache::PkgIterator &pkg) { return pkg.end() == false && Match(pkg.Name()); }; | |||
}; | }; | |||
struct StateCache | struct StateCache | |||
{ | { | |||
// Epoch stripped text versions of the two version fields | // Epoch stripped text versions of the two version fields | |||
const char *CandVersion; | const char *CandVersion; | |||
const char *CurVersion; | const char *CurVersion; | |||
// Pointer to the candidate install version. | // Pointer to the candidate install version. | |||
Version *CandidateVer; | Version *CandidateVer; | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||