mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-29 13:58:51 +03:00
- Fixed configure files
This commit is contained in:
parent
732cc41be4
commit
2ab2e5a40f
1 changed files with 134 additions and 95 deletions
133
configure
vendored
133
configure
vendored
|
@ -20,6 +20,7 @@ Main options:
|
||||||
Dependency options:
|
Dependency options:
|
||||||
--with-libtorrent-inc=[path] Path to libtorrent include files
|
--with-libtorrent-inc=[path] Path to libtorrent include files
|
||||||
--with-libtorrent-lib=[path] Path to libtorrent library files
|
--with-libtorrent-lib=[path] Path to libtorrent library files
|
||||||
|
--with-libboost-inc=[path] Path to libboost include files
|
||||||
--with-libcurl-inc=[path] Path to libcurl include files
|
--with-libcurl-inc=[path] Path to libcurl include files
|
||||||
--with-libcurl-lib=[path] Path to libcurl library files
|
--with-libcurl-lib=[path] Path to libcurl library files
|
||||||
--disable-libupnp Disable use of libupnp
|
--disable-libupnp Disable use of libupnp
|
||||||
|
@ -152,6 +153,11 @@ while [ $# -gt 0 ]; do
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
--with-libboost-inc=*)
|
||||||
|
QC_WITH_LIBBOOST_INC=$optarg
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
|
||||||
--with-libcurl-inc=*)
|
--with-libcurl-inc=*)
|
||||||
QC_WITH_LIBCURL_INC=$optarg
|
QC_WITH_LIBCURL_INC=$optarg
|
||||||
shift
|
shift
|
||||||
|
@ -205,6 +211,7 @@ echo DATADIR=$DATADIR
|
||||||
echo EX_QTDIR=$EX_QTDIR
|
echo EX_QTDIR=$EX_QTDIR
|
||||||
echo QC_WITH_LIBTORRENT_INC=$QC_WITH_LIBTORRENT_INC
|
echo QC_WITH_LIBTORRENT_INC=$QC_WITH_LIBTORRENT_INC
|
||||||
echo QC_WITH_LIBTORRENT_LIB=$QC_WITH_LIBTORRENT_LIB
|
echo QC_WITH_LIBTORRENT_LIB=$QC_WITH_LIBTORRENT_LIB
|
||||||
|
echo QC_WITH_LIBBOOST_INC=$QC_WITH_LIBBOOST_INC
|
||||||
echo QC_WITH_LIBCURL_INC=$QC_WITH_LIBCURL_INC
|
echo QC_WITH_LIBCURL_INC=$QC_WITH_LIBCURL_INC
|
||||||
echo QC_WITH_LIBCURL_LIB=$QC_WITH_LIBCURL_LIB
|
echo QC_WITH_LIBCURL_LIB=$QC_WITH_LIBCURL_LIB
|
||||||
echo QC_DISABLE_libupnp=$QC_DISABLE_libupnp
|
echo QC_DISABLE_libupnp=$QC_DISABLE_libupnp
|
||||||
|
@ -323,39 +330,47 @@ public:
|
||||||
s = conf->getenv("QC_WITH_LIBTORRENT_INC");
|
s = conf->getenv("QC_WITH_LIBTORRENT_INC");
|
||||||
if(!s.isEmpty()) {
|
if(!s.isEmpty()) {
|
||||||
if(!conf->checkHeader(s, "libtorrent/extensions/ut_pex.hpp")) {
|
if(!conf->checkHeader(s, "libtorrent/extensions/ut_pex.hpp")) {
|
||||||
qWarning("libtorrent v0.12 includes not found!\nYou can download it at http://www.libtorrent.net");
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
conf->addIncludePath(s);
|
|
||||||
}else{
|
}else{
|
||||||
QStringList sl;
|
QStringList sl;
|
||||||
sl << "/usr/include/";
|
sl << "/usr/include";
|
||||||
sl << "/usr/local/include";
|
sl << "/usr/local/include";
|
||||||
if(!conf->findHeader("libtorrent/extensions/ut_pex.hpp", sl, &s)) {
|
bool found = false;
|
||||||
qWarning("libtorrent v0.12 includes not found!\nYou can download it at http://www.libtorrent.net");
|
foreach(s, sl){
|
||||||
|
if(conf->checkHeader(s, "libtorrent/extensions/ut_pex.hpp")){
|
||||||
|
found = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(!found) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
conf->addIncludePath(s);
|
|
||||||
}
|
}
|
||||||
|
conf->addIncludePath(s);
|
||||||
|
conf->addIncludePath(s+QDir::separator()+"libtorrent");
|
||||||
|
|
||||||
s = conf->getenv("QC_WITH_LIBTORRENT_LIB");
|
s = conf->getenv("QC_WITH_LIBTORRENT_LIB");
|
||||||
if(!s.isEmpty()) {
|
if(!s.isEmpty()) {
|
||||||
if(!conf->checkLibrary(s, "torrent")) {
|
if(!conf->checkLibrary(s, "torrent")) {
|
||||||
qWarning("libtorrent library not found!");
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
conf->addLib(QString("-L") + s);
|
conf->addLib(QString("-L") + s);
|
||||||
}else{
|
}else{
|
||||||
if(!conf->findLibrary("torrent", &s)) {
|
QStringList sl;
|
||||||
qWarning("libtorrent library not found!");
|
sl << "/usr/lib/";
|
||||||
return false;
|
sl << "/usr/local/lib/";
|
||||||
|
bool found = false;
|
||||||
|
foreach(s, sl){
|
||||||
|
if(conf->checkLibrary(s, "torrent")){
|
||||||
|
found = true;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
if (!s.isEmpty())
|
}
|
||||||
|
if(!found) return false;
|
||||||
conf->addLib(QString("-L") + s);
|
conf->addLib(QString("-L") + s);
|
||||||
}
|
}
|
||||||
|
|
||||||
conf->addLib("-ltorrent");
|
conf->addLib("-ltorrent");
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -363,6 +378,7 @@ public:
|
||||||
/*
|
/*
|
||||||
-----BEGIN QCMOD-----
|
-----BEGIN QCMOD-----
|
||||||
name: libboost
|
name: libboost
|
||||||
|
arg: with-libboost-inc=[path], Path to libboost include files
|
||||||
-----END QCMOD-----
|
-----END QCMOD-----
|
||||||
*/
|
*/
|
||||||
class qc_libboost : public ConfObj
|
class qc_libboost : public ConfObj
|
||||||
|
@ -373,30 +389,45 @@ public:
|
||||||
QString shortname() const { return "libboost"; }
|
QString shortname() const { return "libboost"; }
|
||||||
bool exec(){
|
bool exec(){
|
||||||
QString s;
|
QString s;
|
||||||
|
s = conf->getenv("QC_WITH_LIBBOOST_INC");
|
||||||
|
if(!s.isEmpty()) {
|
||||||
|
if(!conf->checkHeader(s, "boost/format.hpp")) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if(!conf->checkHeader(s, "boost/date_time/posix_time/posix_time.hpp")) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if(!conf->checkHeader(s, "boost/filesystem/path.hpp")) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if(!conf->checkHeader(s, "boost/thread.hpp")) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}else{
|
||||||
QStringList sl;
|
QStringList sl;
|
||||||
sl += "/usr/include";
|
sl << "/usr/include";
|
||||||
sl += "/usr/local/include";
|
sl << "/usr/local/include";
|
||||||
sl += "/sw/include";
|
bool found = false;
|
||||||
if(!conf->findHeader("boost/format.hpp", sl, &s)) {
|
foreach(s, sl){
|
||||||
qWarning("libboost includes not found!");
|
if(conf->checkHeader(s, "boost/format.hpp")){
|
||||||
|
found = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(!found) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
if(!conf->checkHeader(s, "boost/date_time/posix_time/posix_time.hpp")) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if(!conf->checkHeader(s, "boost/filesystem/path.hpp")) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if(!conf->checkHeader(s, "boost/thread.hpp")) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
conf->addIncludePath(s);
|
conf->addIncludePath(s);
|
||||||
if(!conf->findHeader("boost/date_time/posix_time/posix_time.hpp", sl, &s)) {
|
|
||||||
qWarning("libboost-date-time includes not found!");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
conf->addIncludePath(s);
|
|
||||||
if(!conf->findHeader("boost/filesystem/path.hpp", sl, &s)) {
|
|
||||||
qWarning("libboost-filesystem includes not found!");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if(!conf->findHeader("boost/thread.hpp", sl, &s)) {
|
|
||||||
qWarning("libboost-thread includes not found!");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
conf->addIncludePath(s);
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -419,39 +450,46 @@ public:
|
||||||
s = conf->getenv("QC_WITH_LIBCURL_INC");
|
s = conf->getenv("QC_WITH_LIBCURL_INC");
|
||||||
if(!s.isEmpty()) {
|
if(!s.isEmpty()) {
|
||||||
if(!conf->checkHeader(s, "curl/curl.h")) {
|
if(!conf->checkHeader(s, "curl/curl.h")) {
|
||||||
qWarning("libcurl includes not found!");
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
conf->addIncludePath(s);
|
|
||||||
}else{
|
}else{
|
||||||
QStringList sl;
|
QStringList sl;
|
||||||
sl += "/usr/include";
|
sl << "/usr/include";
|
||||||
sl += "/usr/local/include";
|
sl << "/usr/local/include";
|
||||||
if(!conf->findHeader("curl/curl.h", sl, &s)) {
|
bool found = false;
|
||||||
qWarning("libcurl includes not found!");
|
foreach(s, sl){
|
||||||
|
if(conf->checkHeader(s, "curl/curl.h")){
|
||||||
|
found = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(!found) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
conf->addIncludePath(s);
|
|
||||||
}
|
}
|
||||||
|
conf->addIncludePath(s);
|
||||||
|
|
||||||
s = conf->getenv("QC_WITH_LIBCURL_LIB");
|
s = conf->getenv("QC_WITH_LIBCURL_LIB");
|
||||||
if(!s.isEmpty()) {
|
if(!s.isEmpty()) {
|
||||||
if(!conf->checkLibrary(s, "curl")) {
|
if(!conf->checkLibrary(s, "curl")) {
|
||||||
qWarning("libcurl library not found!");
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
conf->addLib(QString("-L") + s);
|
conf->addLib(QString("-L") + s);
|
||||||
}else{
|
}else{
|
||||||
if(!conf->findLibrary("curl", &s)) {
|
QStringList sl;
|
||||||
qWarning("libcurl library not found!");
|
sl << "/usr/lib/";
|
||||||
return false;
|
sl << "/usr/local/lib/";
|
||||||
|
bool found = false;
|
||||||
|
foreach(s, sl){
|
||||||
|
if(conf->checkLibrary(s, "curl")){
|
||||||
|
found = true;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
if (!s.isEmpty())
|
}
|
||||||
|
if(!found) return false;
|
||||||
conf->addLib(QString("-L") + s);
|
conf->addLib(QString("-L") + s);
|
||||||
}
|
}
|
||||||
|
|
||||||
conf->addLib("-lcurl");
|
conf->addLib("-lcurl");
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -1487,6 +1525,7 @@ export DATADIR
|
||||||
export EX_QTDIR
|
export EX_QTDIR
|
||||||
export QC_WITH_LIBTORRENT_INC
|
export QC_WITH_LIBTORRENT_INC
|
||||||
export QC_WITH_LIBTORRENT_LIB
|
export QC_WITH_LIBTORRENT_LIB
|
||||||
|
export QC_WITH_LIBBOOST_INC
|
||||||
export QC_WITH_LIBCURL_INC
|
export QC_WITH_LIBCURL_INC
|
||||||
export QC_WITH_LIBCURL_LIB
|
export QC_WITH_LIBCURL_LIB
|
||||||
export QC_DISABLE_libupnp
|
export QC_DISABLE_libupnp
|
||||||
|
|
Loading…
Reference in a new issue