|
|
|
@ -18,11 +18,12 @@ Main options:
@@ -18,11 +18,12 @@ Main options:
|
|
|
|
|
--help This help text. |
|
|
|
|
|
|
|
|
|
Dependency options: |
|
|
|
|
--with-libtorrent-inc=[path] Path to libtorrent include 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-lib=[path] Path to libcurl library files |
|
|
|
|
--with-libtorrent-inc=[path] Path to libtorrent include files |
|
|
|
|
--with-libtorrent-lib=[path] Path to libtorrent library files |
|
|
|
|
--with-libtorrent-static-lib=[path] Path to libtorrent .a file |
|
|
|
|
--with-libboost-inc=[path] Path to libboost include files |
|
|
|
|
--with-libcurl-inc=[path] Path to libcurl include files |
|
|
|
|
--with-libcurl-lib=[path] Path to libcurl library files |
|
|
|
|
|
|
|
|
|
EOT |
|
|
|
|
} |
|
|
|
@ -149,6 +150,11 @@ while [ $# -gt 0 ]; do
@@ -149,6 +150,11 @@ while [ $# -gt 0 ]; do
|
|
|
|
|
shift |
|
|
|
|
;; |
|
|
|
|
|
|
|
|
|
--with-libtorrent-static-lib=*) |
|
|
|
|
QC_WITH_LIBTORRENT_STATIC_LIB=$optarg |
|
|
|
|
shift |
|
|
|
|
;; |
|
|
|
|
|
|
|
|
|
--with-libboost-inc=*) |
|
|
|
|
QC_WITH_LIBBOOST_INC=$optarg |
|
|
|
|
shift |
|
|
|
@ -187,6 +193,7 @@ echo DATADIR=$DATADIR
@@ -187,6 +193,7 @@ echo DATADIR=$DATADIR
|
|
|
|
|
echo EX_QTDIR=$EX_QTDIR |
|
|
|
|
echo QC_WITH_LIBTORRENT_INC=$QC_WITH_LIBTORRENT_INC |
|
|
|
|
echo QC_WITH_LIBTORRENT_LIB=$QC_WITH_LIBTORRENT_LIB |
|
|
|
|
echo QC_WITH_LIBTORRENT_STATIC_LIB=$QC_WITH_LIBTORRENT_STATIC_LIB |
|
|
|
|
echo QC_WITH_LIBBOOST_INC=$QC_WITH_LIBBOOST_INC |
|
|
|
|
echo QC_WITH_LIBCURL_INC=$QC_WITH_LIBCURL_INC |
|
|
|
|
echo QC_WITH_LIBCURL_LIB=$QC_WITH_LIBCURL_LIB |
|
|
|
@ -289,6 +296,7 @@ public:
@@ -289,6 +296,7 @@ public:
|
|
|
|
|
name: libtorrent |
|
|
|
|
arg: with-libtorrent-inc=[path], Path to libtorrent include files |
|
|
|
|
arg: with-libtorrent-lib=[path], Path to libtorrent library files |
|
|
|
|
arg: with-libtorrent-static-lib=[path], Path to libtorrent .a file |
|
|
|
|
-----END QCMOD----- |
|
|
|
|
*/ |
|
|
|
|
class qc_libtorrent : public ConfObj |
|
|
|
@ -322,6 +330,12 @@ public:
@@ -322,6 +330,12 @@ public:
|
|
|
|
|
conf->addIncludePath(s); |
|
|
|
|
conf->addIncludePath(s+QDir::separator()+"libtorrent"); |
|
|
|
|
|
|
|
|
|
s = conf->getenv("QC_WITH_LIBTORRENT_STATIC_LIB"); |
|
|
|
|
if(!s.isEmpty() && QFile::exists(s) && s.endsWith(".a")){ |
|
|
|
|
conf->addLib(s); |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
s = conf->getenv("QC_WITH_LIBTORRENT_LIB"); |
|
|
|
|
if(!s.isEmpty()) { |
|
|
|
|
if(!conf->checkLibrary(s, "torrent")) { |
|
|
|
@ -1431,6 +1445,7 @@ export DATADIR
@@ -1431,6 +1445,7 @@ export DATADIR
|
|
|
|
|
export EX_QTDIR |
|
|
|
|
export QC_WITH_LIBTORRENT_INC |
|
|
|
|
export QC_WITH_LIBTORRENT_LIB |
|
|
|
|
export QC_WITH_LIBTORRENT_STATIC_LIB |
|
|
|
|
export QC_WITH_LIBBOOST_INC |
|
|
|
|
export QC_WITH_LIBCURL_INC |
|
|
|
|
export QC_WITH_LIBCURL_LIB |
|
|
|
|