diff --git a/TODO b/TODO index a6dc9a313..3b1a5a043 100644 --- a/TODO +++ b/TODO @@ -54,14 +54,6 @@ - Fix all (or almost all) opened bugs in bug tracker - Recheck doc - Translations update (IN PROGRESS) -- add qt4-qtconfig as package dependency -rc4->rc5 changelog: -- BUGFIX: Now filtered don't appear on hard drive anymore (libtorrent >= r1659) -- BUGFIX: AddInPause setting doesn't pause downloads on startup anymore -- BUGFIX: Fixed an ETA calculation problem when the torrent has filtered files -- BUGFIX: Fixed possible overflow in ETA calculation -- BUGFIX: Fixed "Missing Input path" error when creating a torrent -- BUGFIX: Fixed some notification messages for torrent addition dialog -- BUGFIX: Fixed "Automatically start seeding" feature in torrent creation tool -- COSMETIC: Improved progress bar text rendering \ No newline at end of file +rc5->rc6 changelog: +- BUGFIX: configure looks for libraries in lib64 folders too \ No newline at end of file diff --git a/configure b/configure index 707d9232d..8ce4a7c7f 100755 --- a/configure +++ b/configure @@ -412,7 +412,9 @@ public: }else{ QStringList sl; sl << "/usr/lib/"; + sl << "/usr/lib64/"; sl << "/usr/local/lib/"; + sl << "/usr/local/lib64/"; bool found = false; foreach(s, sl){ if(conf->checkLibrary(s, "torrent")){ @@ -541,7 +543,9 @@ public: }else{ QStringList sl; sl << "/usr/lib/"; + sl << "/usr/lib64/"; sl << "/usr/local/lib/"; + sl << "/usr/local/lib64/"; bool found = false; foreach(s, sl){ if(QFile::exists(s+QString("libccext2.so"))){ @@ -620,7 +624,9 @@ public: }else{ QStringList sl; sl << "/usr/lib/"; + sl << "/usr/lib64/"; sl << "/usr/local/lib/"; + sl << "/usr/local/lib64/"; bool found = false; foreach(s, sl){ if(QFile::exists(s+QString("libMagick++.so"))){ @@ -698,7 +704,9 @@ public: }else{ QStringList sl; sl << "/usr/lib/"; + sl << "/usr/lib64/"; sl << "/usr/local/lib/"; + sl << "/usr/local/lib64/"; bool found = false; foreach(s, sl){ if(QFile::exists(s+QString("libzzip.so"))){ diff --git a/qcm/libcommoncpp2.qcm b/qcm/libcommoncpp2.qcm index 12db1ab74..7e8aecd1a 100644 --- a/qcm/libcommoncpp2.qcm +++ b/qcm/libcommoncpp2.qcm @@ -45,7 +45,9 @@ public: }else{ QStringList sl; sl << "/usr/lib/"; + sl << "/usr/lib64/"; sl << "/usr/local/lib/"; + sl << "/usr/local/lib64/"; bool found = false; foreach(s, sl){ if(QFile::exists(s+QString("libccext2.so"))){ diff --git a/qcm/libmagick.qcm b/qcm/libmagick.qcm index 899846541..65ec6d67b 100644 --- a/qcm/libmagick.qcm +++ b/qcm/libmagick.qcm @@ -50,7 +50,9 @@ public: }else{ QStringList sl; sl << "/usr/lib/"; + sl << "/usr/lib64/"; sl << "/usr/local/lib/"; + sl << "/usr/local/lib64/"; bool found = false; foreach(s, sl){ if(QFile::exists(s+QString("libMagick++.so"))){ diff --git a/qcm/libtorrent.qcm b/qcm/libtorrent.qcm index 692d08e96..808a9d822 100644 --- a/qcm/libtorrent.qcm +++ b/qcm/libtorrent.qcm @@ -52,7 +52,9 @@ public: }else{ QStringList sl; sl << "/usr/lib/"; + sl << "/usr/lib64/"; sl << "/usr/local/lib/"; + sl << "/usr/local/lib64/"; bool found = false; foreach(s, sl){ if(conf->checkLibrary(s, "torrent")){ diff --git a/qcm/libzzip.qcm b/qcm/libzzip.qcm index 2547db2f6..bb2b9917e 100644 --- a/qcm/libzzip.qcm +++ b/qcm/libzzip.qcm @@ -50,7 +50,9 @@ public: }else{ QStringList sl; sl << "/usr/lib/"; + sl << "/usr/lib64/"; sl << "/usr/local/lib/"; + sl << "/usr/local/lib64/"; bool found = false; foreach(s, sl){ if(QFile::exists(s+QString("libzzip.so"))){