- Use PKGConfig again to configure libtorrent

This commit is contained in:
Christophe Dumez 2007-04-05 23:00:41 +00:00
commit 676d6764b9
5 changed files with 8 additions and 7 deletions

View file

@ -1,5 +1,6 @@
* Unknown - Christophe Dumez <chris@qbittorrent.org> - v0.9.2
- BUGFIX: Window can now stay maximized on exit
- BUGFIX: Use PKGCONFIG again for configuring libtorrent
* Wed Apr 04 2007 - Christophe Dumez <chris@qbittorrent.org> - v0.9.1
- BUGFIX: A lot of fixes in configure file

2
configure vendored
View file

@ -342,7 +342,7 @@ public:
if(!found) return false;
conf->addLib(QString("-L") + s);
}
conf->addLib("-ltorrent");
//conf->addLib("-ltorrent");
return true;
}
};

View file

@ -56,7 +56,7 @@ public:
if(!found) return false;
conf->addLib(QString("-L") + s);
}
conf->addLib("-ltorrent");
//conf->addLib("-ltorrent");
return true;
}
};

View file

@ -1,6 +1,6 @@
[Desktop Entry]
Categories=Qt;Application;Network;P2P
Comment=V0.9.1
Comment=V0.9.2
Encoding=UTF-8
Exec=qbittorrent
GenericName=Bittorrent client

View file

@ -11,10 +11,10 @@ TARGET = qbittorrent
CONFIG += qt thread x11
# Update this VERSION for each release
DEFINES += VERSION=\\\"v0.9.1\\\"
DEFINES += VERSION=\\\"v0.9.2rc1\\\"
DEFINES += VERSION_MAJOR=0
DEFINES += VERSION_MINOR=9
DEFINES += VERSION_BUGFIX=1
DEFINES += VERSION_BUGFIX=2
contains(DEBUG_MODE, 1){
CONFIG += debug
@ -28,8 +28,8 @@ contains(DEBUG_MODE, 0){
QMAKE_CXXFLAGS_RELEASE += -fwrapv
QMAKE_CXXFLAGS_DEBUG += -fwrapv
#LIBS += -lcurl
#CONFIG += link_pkgconfig
#PKGCONFIG += libtorrent
CONFIG += link_pkgconfig
PKGCONFIG += libtorrent
QT += network
DEFINES += QT_NO_CAST_TO_ASCII