- BUGFIX: The torrent size displayed now takes filtered files into consideration

- BUGFIX: Fixed compiling errors with libtorrent svn (adds UPnP support)
This commit is contained in:
Christophe Dumez
2007-04-12 21:42:05 +00:00
parent 985bb8926b
commit 06448509fb
11 changed files with 52 additions and 11 deletions

6
configure vendored
View File

@@ -308,6 +308,9 @@ public:
qWarning("Libtorrent >= v0.12 was not detected, PeX will be disabled.");
conf->addDefine("NO_PEX");
}
if(conf->checkHeader(s, "libtorrent/lsd.hpp")){
conf->addDefine("V_0_13");
}
}else{
QStringList sl;
sl << "/usr/include";
@@ -324,6 +327,9 @@ public:
qWarning("Libtorrent >= v0.12 was not detected, PeX will be disabled.");
conf->addDefine("NO_PEX");
}
if(conf->checkHeader(s, "libtorrent/lsd.hpp")){
conf->addDefine("V_0_13");
}
}
conf->addIncludePath(s);
conf->addIncludePath(s+QDir::separator()+"libtorrent");