config.h | config.h | |||
---|---|---|---|---|
skipping to change at line 39 | skipping to change at line 39 | |||
/* Define to the size of the filesize containing structures */ | /* Define to the size of the filesize containing structures */ | |||
#define _FILE_OFFSET_BITS 64 | #define _FILE_OFFSET_BITS 64 | |||
/* Define the arch name string */ | /* Define the arch name string */ | |||
#define COMMON_ARCH "i386" | #define COMMON_ARCH "i386" | |||
/* The package name string */ | /* The package name string */ | |||
#define PACKAGE "apt" | #define PACKAGE "apt" | |||
/* The version number string */ | /* The version number string */ | |||
#define PACKAGE_VERSION "0.9.7.5" | #define PACKAGE_VERSION "0.9.7.6" | |||
/* The mail address to reach upstream */ | /* The mail address to reach upstream */ | |||
#define PACKAGE_MAIL "APT Development Team <deity@lists.debian.org>" | #define PACKAGE_MAIL "APT Development Team <deity@lists.debian.org>" | |||
#define APT_8_CLEANER_HEADERS | #define APT_8_CLEANER_HEADERS | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
netrc.h | netrc.h | |||
---|---|---|---|---|
skipping to change at line 28 | skipping to change at line 28 | |||
#ifndef APT_8_CLEANER_HEADERS | #ifndef APT_8_CLEANER_HEADERS | |||
#include <apt-pkg/strutl.h> | #include <apt-pkg/strutl.h> | |||
#endif | #endif | |||
#define DOT_CHAR "." | #define DOT_CHAR "." | |||
#define DIR_CHAR "/" | #define DIR_CHAR "/" | |||
class URI; | class URI; | |||
// Assume: password[0]=0, host[0] != 0. | // kill this export on the next ABI break - strongly doubt its in use anywa | |||
// If login[0] = 0, search for login and password within a machine section | y | |||
// in the netrc. | // outside of the apt itself, its really a internal interface | |||
// If login[0] != 0, search for password within machine and login. | __deprecated int parsenetrc (char *host, char *login, char *password, char | |||
int parsenetrc (char *host, char *login, char *password, char *filename); | *filename); | |||
void maybe_add_auth (URI &Uri, std::string NetRCFile); | void maybe_add_auth (URI &Uri, std::string NetRCFile); | |||
#endif | #endif | |||
End of changes. 1 change blocks. | ||||
5 lines changed or deleted | 5 lines changed or added | |||