- Use pkgconfig for GNU common c++

This commit is contained in:
Christophe Dumez 2007-07-23 09:48:51 +00:00
commit c8c53e2812
3 changed files with 7 additions and 7 deletions

6
configure vendored
View file

@ -427,7 +427,7 @@ public:
QString s;
s = conf->getenv("QC_WITH_LIBCOMMONCPP2_INC");
if(!s.isEmpty()) {
if(!conf->checkHeader(s, "cc++/common.h")) {
if(!conf->checkHeader(s, "cc++/url.h")) {
return false;
}
}else{
@ -436,7 +436,7 @@ public:
sl << "/usr/local/include";
bool found = false;
foreach(s, sl){
if(conf->checkHeader(s, "cc++/common.h")){
if(conf->checkHeader(s, "cc++/url.h")){
found = true;
break;
}
@ -470,7 +470,7 @@ public:
if(!found) return false;
conf->addLib(QString("-L") + s);
}
conf->addLib("-lccext2 -lccgnu2");
//conf->addLib("-lccext2 -lccgnu2");
return true;
}
};