Some work about adaptive color scheme for Web UI (PR #19901)
http://[316:c51a:62a3:8b9::4]/d4708/qBittorrent/src/branch/adaptive-webui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.7 KiB
61 lines
1.7 KiB
/* |
|
-----BEGIN QCMOD----- |
|
name: libupnp |
|
arg: disable-upnp, disable UPnP support |
|
arg: with-libupnp-inc=[path], Path to libupnp include files |
|
-----END QCMOD----- |
|
*/ |
|
class qc_libupnp : public ConfObj |
|
{ |
|
public: |
|
qc_libupnp(Conf *c) : ConfObj(c) {} |
|
QString name() const { return "libupnp"; } |
|
QString shortname() const { return "libupnp"; } |
|
bool exec(){ |
|
QString s; |
|
s = conf->getenv("QC_DISABLE_UPNP"); |
|
if(!s.isEmpty()){ |
|
conf->addDefine("NO_UPNP"); |
|
return false; |
|
} |
|
s = conf->getenv("QC_WITH_LIBUPNP_INC"); |
|
if(!s.isEmpty()) { |
|
if(!conf->checkHeader(s, "upnp/upnp.h")) { |
|
//qWarning("libupnp includes not found!"); |
|
conf->addDefine("NO_UPNP"); |
|
return false; |
|
} |
|
conf->addIncludePath(s); |
|
}else{ |
|
QStringList sl; |
|
sl += "/usr/include"; |
|
sl += "/usr/local/include"; |
|
if(!conf->findHeader("upnp/upnp.h", sl, &s)) { |
|
//qWarning("libupnp includes not found!"); |
|
conf->addDefine("NO_UPNP"); |
|
return false; |
|
} |
|
conf->addIncludePath(s); |
|
} |
|
|
|
/*s = conf->getenv("QC_WITH_LIBUPNP_LIB"); |
|
if(!s.isEmpty()) { |
|
if(!conf->checkLibrary(s, "upnp")) { |
|
qWarning("libupnp library not found!"); |
|
return false; |
|
} |
|
conf->addLib(QString("-L") + s); |
|
}else{ |
|
if(!conf->findLibrary("upnp", &s)) { |
|
qWarning("libupnp library not found!"); |
|
return false; |
|
} |
|
if (!s.isEmpty()) |
|
conf->addLib(QString("-L") + s); |
|
} |
|
|
|
conf->addLib("-lupnp");*/ |
|
|
|
return true; |
|
} |
|
};
|
|
|