- Moved everything to trunk to create a stable branch

This commit is contained in:
Christophe Dumez 2006-09-30 16:02:39 +00:00
commit 969a02b93e
200 changed files with 46382 additions and 0 deletions

25
qcm/libcurl.qcm Normal file
View file

@ -0,0 +1,25 @@
/*
-----BEGIN QCMOD-----
name: libcurl
-----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;
QStringList sl;
sl += "/usr/include";
sl += "/usr/local/include";
sl += "/sw/include";
if(!conf->findHeader("curl/curl.h", sl, &s)) {
qWarning("libcurl includes not found!\n");
return false;
}
conf->addIncludePath(s);
return true;
}
};