mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-10 14:57:52 +00:00
Added a new parameter to configure file :
--with-libtorrent-inc=[path] Path to libtorrent include files
This commit is contained in:
parent
eac0254744
commit
3c28c04b40
41
configure
vendored
41
configure
vendored
@ -17,6 +17,9 @@ Main options:
|
|||||||
--verbose Show extra configure output.
|
--verbose Show extra configure output.
|
||||||
--help This help text.
|
--help This help text.
|
||||||
|
|
||||||
|
Dependency options:
|
||||||
|
--with-libtorrent-inc=[path] Path to libtorrent include files
|
||||||
|
|
||||||
EOT
|
EOT
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -132,6 +135,11 @@ while [ $# -gt 0 ]; do
|
|||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
--with-libtorrent-inc=*)
|
||||||
|
QC_WITH_LIBTORRENT_INC=$optarg
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
|
||||||
--verbose)
|
--verbose)
|
||||||
QC_DEBUG="Y"
|
QC_DEBUG="Y"
|
||||||
shift
|
shift
|
||||||
@ -153,6 +161,7 @@ echo PREFIX=$PREFIX
|
|||||||
echo BINDIR=$BINDIR
|
echo BINDIR=$BINDIR
|
||||||
echo DATADIR=$DATADIR
|
echo DATADIR=$DATADIR
|
||||||
echo EX_QTDIR=$EX_QTDIR
|
echo EX_QTDIR=$EX_QTDIR
|
||||||
|
echo QC_WITH_LIBTORRENT_INC=$QC_WITH_LIBTORRENT_INC
|
||||||
echo
|
echo
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -250,6 +259,7 @@ public:
|
|||||||
/*
|
/*
|
||||||
-----BEGIN QCMOD-----
|
-----BEGIN QCMOD-----
|
||||||
name: libtorrent
|
name: libtorrent
|
||||||
|
arg: with-libtorrent-inc=[path], Path to libtorrent include files
|
||||||
-----END QCMOD-----
|
-----END QCMOD-----
|
||||||
*/
|
*/
|
||||||
class qc_libtorrent : public ConfObj
|
class qc_libtorrent : public ConfObj
|
||||||
@ -260,16 +270,26 @@ public:
|
|||||||
QString shortname() const { return "libtorrent"; }
|
QString shortname() const { return "libtorrent"; }
|
||||||
bool exec(){
|
bool exec(){
|
||||||
QString s;
|
QString s;
|
||||||
QStringList sl;
|
s = conf->getenv("QC_WITH_LIBTORRENT_INC");
|
||||||
sl += "/usr/include";
|
if(!s.isEmpty()) {
|
||||||
sl += "/usr/local/include";
|
if(!conf->checkHeader(s, "libtorrent/extensions/ut_pex.hpp")) {
|
||||||
sl += "/sw/include";
|
qWarning("libtorrent v0.12 includes not found!\nYou can download it at http://www.libtorrent.net");
|
||||||
if(!conf->findHeader("libtorrent/extensions/ut_pex.hpp", sl, &s)) {
|
return false;
|
||||||
qWarning("libtorrent v0.12 includes not found!\nYou can download it at http://www.libtorrent.net");
|
}
|
||||||
return false;
|
conf->addIncludePath(s);
|
||||||
}
|
return true;
|
||||||
conf->addIncludePath(s);
|
}else{
|
||||||
return true;
|
QStringList sl;
|
||||||
|
sl += "/usr/include";
|
||||||
|
sl += "/usr/local/include";
|
||||||
|
sl += "/sw/include";
|
||||||
|
if(!conf->findHeader("libtorrent/extensions/ut_pex.hpp", sl, &s)) {
|
||||||
|
qWarning("libtorrent v0.12 includes not found!\nYou can download it at http://www.libtorrent.net");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
conf->addIncludePath(s);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
#line 1 "libboost.qcm"
|
#line 1 "libboost.qcm"
|
||||||
@ -1303,6 +1323,7 @@ export PREFIX
|
|||||||
export BINDIR
|
export BINDIR
|
||||||
export DATADIR
|
export DATADIR
|
||||||
export EX_QTDIR
|
export EX_QTDIR
|
||||||
|
export QC_WITH_LIBTORRENT_INC
|
||||||
export QC_DEBUG
|
export QC_DEBUG
|
||||||
rm -rf .qconftemp
|
rm -rf .qconftemp
|
||||||
(
|
(
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
-----BEGIN QCMOD-----
|
-----BEGIN QCMOD-----
|
||||||
name: libtorrent
|
name: libtorrent
|
||||||
|
arg: with-libtorrent-inc=[path], Path to libtorrent include files
|
||||||
-----END QCMOD-----
|
-----END QCMOD-----
|
||||||
*/
|
*/
|
||||||
class qc_libtorrent : public ConfObj
|
class qc_libtorrent : public ConfObj
|
||||||
@ -11,15 +12,25 @@ public:
|
|||||||
QString shortname() const { return "libtorrent"; }
|
QString shortname() const { return "libtorrent"; }
|
||||||
bool exec(){
|
bool exec(){
|
||||||
QString s;
|
QString s;
|
||||||
QStringList sl;
|
s = conf->getenv("QC_WITH_LIBTORRENT_INC");
|
||||||
sl += "/usr/include";
|
if(!s.isEmpty()) {
|
||||||
sl += "/usr/local/include";
|
if(!conf->checkHeader(s, "libtorrent/extensions/ut_pex.hpp")) {
|
||||||
sl += "/sw/include";
|
qWarning("libtorrent v0.12 includes not found!\nYou can download it at http://www.libtorrent.net");
|
||||||
if(!conf->findHeader("libtorrent/extensions/ut_pex.hpp", sl, &s)) {
|
return false;
|
||||||
qWarning("libtorrent v0.12 includes not found!\nYou can download it at http://www.libtorrent.net");
|
}
|
||||||
return false;
|
conf->addIncludePath(s);
|
||||||
}
|
return true;
|
||||||
conf->addIncludePath(s);
|
}else{
|
||||||
return true;
|
QStringList sl;
|
||||||
|
sl += "/usr/include";
|
||||||
|
sl += "/usr/local/include";
|
||||||
|
sl += "/sw/include";
|
||||||
|
if(!conf->findHeader("libtorrent/extensions/ut_pex.hpp", sl, &s)) {
|
||||||
|
qWarning("libtorrent v0.12 includes not found!\nYou can download it at http://www.libtorrent.net");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
conf->addIncludePath(s);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user