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.8" | #define PACKAGE_VERSION "0.9.8.1" | |||
/* 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 | |||
indexcopy.h | indexcopy.h | |||
---|---|---|---|---|
skipping to change at line 103 | skipping to change at line 103 | |||
bool Verify(std::string prefix,std::string file, indexRecords *records); | bool Verify(std::string prefix,std::string file, indexRecords *records); | |||
bool CopyMetaIndex(std::string CDROM, std::string CDName, | bool CopyMetaIndex(std::string CDROM, std::string CDName, | |||
std::string prefix, std::string file); | std::string prefix, std::string file); | |||
public: | public: | |||
bool CopyAndVerify(std::string CDROM,std::string Name,std::vector<std::s tring> &SigList, | bool CopyAndVerify(std::string CDROM,std::string Name,std::vector<std::s tring> &SigList, | |||
std::vector<std::string> PkgList,std::vector<std::stri ng> SrcList); | std::vector<std::string> PkgList,std::vector<std::stri ng> SrcList); | |||
__deprecated static bool RunGPGV(std::string const &File, std::string co nst &FileOut, | __deprecated static bool RunGPGV(std::string const &File, std::string co nst &FileOut, | |||
int const &statusfd, int fd[2]) { | int const &statusfd, int fd[2]); | |||
ExecGPGV(File, FileOut, statusfd, fd); | ||||
return false; | ||||
}; | ||||
__deprecated static bool RunGPGV(std::string const &File, std::string co nst &FileOut, | __deprecated static bool RunGPGV(std::string const &File, std::string co nst &FileOut, | |||
int const &statusfd = -1) { | int const &statusfd = -1); | |||
ExecGPGV(File, FileOut, statusfd); | ||||
return false; | ||||
}; | ||||
}; | }; | |||
/*}} }*/ | /*}} }*/ | |||
#endif | #endif | |||
End of changes. 2 change blocks. | ||||
8 lines changed or deleted | 2 lines changed or added | |||