Browse Source
- Used downloadThread in search plugin update instead of libcurl (no more gui freeze by the same occasion) - Still need to handle download from urls errors and use fallback url in search plugin update (before beta2)adaptive-webui-19844
Christophe Dumez
18 years ago
13 changed files with 145 additions and 204 deletions
@ -0,0 +1,64 @@
@@ -0,0 +1,64 @@
|
||||
/* |
||||
-----BEGIN QCMOD----- |
||||
name: libcommoncpp2 |
||||
arg: with-libcommoncpp2-inc=[path], Path to libcommoncpp2 include files |
||||
arg: with-libcommoncpp2-lib=[path], Path to libcommoncpp2 library files |
||||
-----END QCMOD----- |
||||
*/ |
||||
class qc_libcommoncpp2 : public ConfObj |
||||
{ |
||||
public: |
||||
qc_libcommoncpp2(Conf *c) : ConfObj(c) {} |
||||
QString name() const { return "GNU Common C++"; } |
||||
QString shortname() const { return "libcommoncpp2"; } |
||||
bool exec(){ |
||||
QString s; |
||||
s = conf->getenv("QC_WITH_LIBCOMMONCPP2_INC"); |
||||
if(!s.isEmpty()) { |
||||
if(!conf->checkHeader(s, "cc++/common.h")) { |
||||
return false; |
||||
} |
||||
}else{ |
||||
QStringList sl; |
||||
sl << "/usr/include"; |
||||
sl << "/usr/local/include"; |
||||
bool found = false; |
||||
foreach(s, sl){ |
||||
if(conf->checkHeader(s, "cc++/common.h")){ |
||||
found = true; |
||||
break; |
||||
} |
||||
} |
||||
if(!found) { |
||||
return false; |
||||
} |
||||
} |
||||
conf->addIncludePath(s); |
||||
|
||||
s = conf->getenv("QC_WITH_LIBCOMMONCPP2_LIB"); |
||||
if(!s.isEmpty()) { |
||||
if(!QFile::exists(s+QString("libccext2.so"))) |
||||
return false; |
||||
if(!QFile::exists(s+QString("libccgnu2.so"))) |
||||
return false; |
||||
conf->addLib(QString("-L") + s); |
||||
}else{ |
||||
QStringList sl; |
||||
sl << "/usr/lib/"; |
||||
sl << "/usr/local/lib/"; |
||||
bool found = false; |
||||
foreach(s, sl){ |
||||
if(QFile::exists(s+QString("libccext2.so"))){ |
||||
if(QFile::exists(s+QString("libccgnu2.so"))){ |
||||
found = true; |
||||
break; |
||||
} |
||||
} |
||||
} |
||||
if(!found) return false; |
||||
conf->addLib(QString("-L") + s); |
||||
} |
||||
conf->addLib("-lccext2 -lccgnu2"); |
||||
return true; |
||||
} |
||||
}; |
@ -1,61 +0,0 @@
@@ -1,61 +0,0 @@
|
||||
/* |
||||
-----BEGIN QCMOD----- |
||||
name: libcurl |
||||
arg: with-libcurl-inc=[path], Path to libcurl include files |
||||
arg: with-libcurl-lib=[path], Path to libcurl library files |
||||
-----END QCMOD----- |
||||
*/ |
||||
class qc_libcurl : public ConfObj |
||||
{ |
||||
public: |
||||
qc_libcurl(Conf *c) : ConfObj(c) {} |
||||
QString name() const { return "libcurl"; } |
||||
QString shortname() const { return "libcurl"; } |
||||
bool exec(){ |
||||
QString s; |
||||
s = conf->getenv("QC_WITH_LIBCURL_INC"); |
||||
if(!s.isEmpty()) { |
||||
if(!conf->checkHeader(s, "curl/curl.h")) { |
||||
return false; |
||||
} |
||||
}else{ |
||||
QStringList sl; |
||||
sl << "/usr/include"; |
||||
sl << "/usr/local/include"; |
||||
bool found = false; |
||||
foreach(s, sl){ |
||||
if(conf->checkHeader(s, "curl/curl.h")){ |
||||
found = true; |
||||
break; |
||||
} |
||||
} |
||||
if(!found) { |
||||
return false; |
||||
} |
||||
} |
||||
conf->addIncludePath(s); |
||||
|
||||
s = conf->getenv("QC_WITH_LIBCURL_LIB"); |
||||
if(!s.isEmpty()) { |
||||
if(!conf->checkLibrary(s, "curl")) { |
||||
return false; |
||||
} |
||||
conf->addLib(QString("-L") + s); |
||||
}else{ |
||||
QStringList sl; |
||||
sl << "/usr/lib/"; |
||||
sl << "/usr/local/lib/"; |
||||
bool found = false; |
||||
foreach(s, sl){ |
||||
if(conf->checkLibrary(s, "curl")){ |
||||
found = true; |
||||
break; |
||||
} |
||||
} |
||||
if(!found) return false; |
||||
conf->addLib(QString("-L") + s); |
||||
} |
||||
conf->addLib("-lcurl"); |
||||
return true; |
||||
} |
||||
}; |
Loading…
Reference in new issue