Skip to content

Commit

Permalink
- BUGFIX: configure doesn't require paths with a terminal "/" anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
Christophe Dumez committed Oct 14, 2007
1 parent 902116c commit 6099544
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion TODO
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,5 @@
- Translations update (IN PROGRESS)

rc5->rc6 changelog:
- BUGFIX: configure looks for libraries in lib64 folders too
- BUGFIX: configure looks for libraries in lib64 folders too
- BUGFIX: configure doesn't require paths with a terminal "/" anymore
8 changes: 4 additions & 4 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -535,9 +535,9 @@ public:
s = conf->getenv("QC_WITH_LIBCOMMONCPP2_LIB");
if(!s.isEmpty()) {
if(!QFile::exists(s+QString("libccext2.so")))
if(!QFile::exists(s+QString("/libccext2.so")))
return false;
if(!QFile::exists(s+QString("libccgnu2.so")))
if(!QFile::exists(s+QString("/libccgnu2.so")))
return false;
conf->addLib(QString("-L") + s);
}else{
Expand Down Expand Up @@ -618,7 +618,7 @@ public:
s = conf->getenv("QC_WITH_LIBMAGICK_LIB");
if(!s.isEmpty()) {
if(!QFile::exists(s+QString("libMagick++.so"))){
if(!QFile::exists(s+QString("/libMagick++.so"))){
return false;
}
}else{
Expand Down Expand Up @@ -698,7 +698,7 @@ public:
s = conf->getenv("QC_WITH_LIBZZIP_LIB");
if(!s.isEmpty()) {
if(!QFile::exists(s+QString("libzzip.so"))){
if(!QFile::exists(s+QString("/libzzip.so"))){
return false;
}
}else{
Expand Down
4 changes: 2 additions & 2 deletions qcm/libcommoncpp2.qcm
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ public:

s = conf->getenv("QC_WITH_LIBCOMMONCPP2_LIB");
if(!s.isEmpty()) {
if(!QFile::exists(s+QString("libccext2.so")))
if(!QFile::exists(s+QString("/libccext2.so")))
return false;
if(!QFile::exists(s+QString("libccgnu2.so")))
if(!QFile::exists(s+QString("/libccgnu2.so")))
return false;
conf->addLib(QString("-L") + s);
}else{
Expand Down
2 changes: 1 addition & 1 deletion qcm/libmagick.qcm
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public:

s = conf->getenv("QC_WITH_LIBMAGICK_LIB");
if(!s.isEmpty()) {
if(!QFile::exists(s+QString("libMagick++.so"))){
if(!QFile::exists(s+QString("/libMagick++.so"))){
return false;
}
}else{
Expand Down
2 changes: 1 addition & 1 deletion qcm/libzzip.qcm
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public:

s = conf->getenv("QC_WITH_LIBZZIP_LIB");
if(!s.isEmpty()) {
if(!QFile::exists(s+QString("libzzip.so"))){
if(!QFile::exists(s+QString("/libzzip.so"))){
return false;
}
}else{
Expand Down

0 comments on commit 6099544

Please sign in to comment.