- Tagged v1.0.0final

This commit is contained in:
Christophe Dumez
2008-04-11 17:01:38 +00:00
parent 755a5a4aa7
commit 726e3b2eae
3 changed files with 11 additions and 11 deletions

4
configure vendored
View File

@@ -594,7 +594,7 @@ public:
s = conf->getenv("QC_WITH_LIBMAGICK_LIB");
if(!s.isEmpty()) {
if(!QFile::exists(s+QString("/libMagick++.so"))){
if(!conf->checkLibrary(s, "Magick++")) {
return false;
}
}else{
@@ -605,7 +605,7 @@ public:
sl << "/usr/local/lib64/";
bool found = false;
foreach(s, sl){
if(QFile::exists(s+QString("libMagick++.so"))){
if(conf->checkLibrary(s, "Magick++")) {
found = true;
break;
}

View File

@@ -44,7 +44,7 @@ public:
s = conf->getenv("QC_WITH_LIBMAGICK_LIB");
if(!s.isEmpty()) {
if(!QFile::exists(s+QString("/libMagick++.so"))){
if(!conf->checkLibrary(s, "Magick++")) {
return false;
}
}else{
@@ -55,7 +55,7 @@ public:
sl << "/usr/local/lib64/";
bool found = false;
foreach(s, sl){
if(QFile::exists(s+QString("libMagick++.so"))){
if(conf->checkLibrary(s, "Magick++")) {
found = true;
break;
}

View File

@@ -11,7 +11,7 @@ TARGET = qbittorrent
CONFIG += qt thread x11 network
# Update this VERSION for each release
DEFINES += VERSION=\\\"v1.0.0rc11\\\"
DEFINES += VERSION=\\\"v1.0.0\\\"
DEFINES += VERSION_MAJOR=1
DEFINES += VERSION_MINOR=0
DEFINES += VERSION_BUGFIX=0