config.hpp | config.hpp | |||
---|---|---|---|---|
skipping to change at line 214 | skipping to change at line 214 | |||
#define TORRENT_USE_POSIX_MEMALIGN 1 | #define TORRENT_USE_POSIX_MEMALIGN 1 | |||
#if __amd64__ || __i386__ | #if __amd64__ || __i386__ | |||
#define TORRENT_USE_EXECINFO 1 | #define TORRENT_USE_EXECINFO 1 | |||
#endif | #endif | |||
// ==== MINGW === | // ==== MINGW === | |||
#elif defined __MINGW32__ | #elif defined __MINGW32__ | |||
#define TORRENT_MINGW | #define TORRENT_MINGW | |||
#define TORRENT_WINDOWS | #define TORRENT_WINDOWS | |||
#ifndef TORRENT_USE_ICONV | #ifndef TORRENT_USE_ICONV | |||
#define TORRENT_USE_ICONV 0 | # define TORRENT_USE_ICONV 0 | |||
#define TORRENT_USE_LOCALE 1 | # define TORRENT_USE_LOCALE 1 | |||
#endif | #endif | |||
#define TORRENT_USE_RLIMIT 0 | #define TORRENT_USE_RLIMIT 0 | |||
#define TORRENT_USE_NETLINK 0 | #define TORRENT_USE_NETLINK 0 | |||
#define TORRENT_USE_GETADAPTERSADDRESSES 1 | #define TORRENT_USE_GETADAPTERSADDRESSES 1 | |||
#define TORRENT_HAS_SALEN 0 | #define TORRENT_HAS_SALEN 0 | |||
#define TORRENT_USE_GETIPFORWARDTABLE 1 | #define TORRENT_USE_GETIPFORWARDTABLE 1 | |||
#ifndef TORRENT_USE_UNC_PATHS | #ifndef TORRENT_USE_UNC_PATHS | |||
#define TORRENT_USE_UNC_PATHS 1 | # define TORRENT_USE_UNC_PATHS 1 | |||
#endif | #endif | |||
// ==== WINDOWS === | // ==== WINDOWS === | |||
#elif defined WIN32 | #elif defined WIN32 | |||
#define TORRENT_WINDOWS | #define TORRENT_WINDOWS | |||
#ifndef TORRENT_USE_GETIPFORWARDTABLE | #ifndef TORRENT_USE_GETIPFORWARDTABLE | |||
#define TORRENT_USE_GETIPFORWARDTABLE 1 | #define TORRENT_USE_GETIPFORWARDTABLE 1 | |||
#endif | #endif | |||
#define TORRENT_USE_GETADAPTERSADDRESSES 1 | #define TORRENT_USE_GETADAPTERSADDRESSES 1 | |||
#define TORRENT_HAS_SALEN 0 | #define TORRENT_HAS_SALEN 0 | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added | |||
file.hpp | file.hpp | |||
---|---|---|---|---|
skipping to change at line 89 | skipping to change at line 89 | |||
#undef _FILE_OFFSET_BITS | #undef _FILE_OFFSET_BITS | |||
#endif | #endif | |||
namespace libtorrent | namespace libtorrent | |||
{ | { | |||
struct file_status | struct file_status | |||
{ | { | |||
size_type file_size; | size_type file_size; | |||
time_t atime; | boost::uint64_t atime; | |||
time_t mtime; | boost::uint64_t mtime; | |||
time_t ctime; | boost::uint64_t ctime; | |||
enum { | enum { | |||
#if defined TORRENT_WINDOWS | #if defined TORRENT_WINDOWS | |||
fifo = 0x1000, // named pipe (fifo) | fifo = 0x1000, // named pipe (fifo) | |||
character_special = 0x2000, // character special | character_special = 0x2000, // character special | |||
directory = 0x4000, // directory | directory = 0x4000, // directory | |||
regular_file = 0x8000 // regular | regular_file = 0x8000 // regular | |||
#else | #else | |||
fifo = 0010000, // named pipe (fifo) | fifo = 0010000, // named pipe (fifo) | |||
character_special = 0020000, // character special | character_special = 0020000, // character special | |||
directory = 0040000, // directory | directory = 0040000, // directory | |||
End of changes. 1 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added | |||
version.hpp | version.hpp | |||
---|---|---|---|---|
skipping to change at line 38 | skipping to change at line 38 | |||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |||
POSSIBILITY OF SUCH DAMAGE. | POSSIBILITY OF SUCH DAMAGE. | |||
*/ | */ | |||
#ifndef TORRENT_VERSION_HPP_INCLUDED | #ifndef TORRENT_VERSION_HPP_INCLUDED | |||
#define TORRENT_VERSION_HPP_INCLUDED | #define TORRENT_VERSION_HPP_INCLUDED | |||
#define LIBTORRENT_VERSION_MAJOR 0 | #define LIBTORRENT_VERSION_MAJOR 0 | |||
#define LIBTORRENT_VERSION_MINOR 16 | #define LIBTORRENT_VERSION_MINOR 16 | |||
#define LIBTORRENT_VERSION_TINY 14 | #define LIBTORRENT_VERSION_TINY 15 | |||
// the format of this version is: MMmmtt | // the format of this version is: MMmmtt | |||
// M = Major version, m = minor version, t = tiny version | // M = Major version, m = minor version, t = tiny version | |||
#define LIBTORRENT_VERSION_NUM ((LIBTORRENT_VERSION_MAJOR * 10000) + (LIBTO RRENT_VERSION_MINOR * 100) + LIBTORRENT_VERSION_TINY) | #define LIBTORRENT_VERSION_NUM ((LIBTORRENT_VERSION_MAJOR * 10000) + (LIBTO RRENT_VERSION_MINOR * 100) + LIBTORRENT_VERSION_TINY) | |||
#define LIBTORRENT_VERSION "0.16.14.0" | #define LIBTORRENT_VERSION "0.16.15.0" | |||
#define LIBTORRENT_REVISION "$Rev: 9640 $" | #define LIBTORRENT_REVISION "$Rev: 9694 $" | |||
#endif | #endif | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added | |||