Skip to content

Commit

Permalink
Fix qmake warning about qdbus CONFIG option being deprecated
Browse files Browse the repository at this point in the history
The qmake CONFIG option qdbus has been replaced with
the QT module dbus which is available since Qt 4.4.
Simply use it instead.
  • Loading branch information
hacst committed Jul 4, 2015
1 parent d3d6920 commit 5acf4af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/mumble/mumble.pro
Expand Up @@ -525,7 +525,7 @@ bonjour {

dbus {
DEFINES *= USE_DBUS
CONFIG *= qdbus
QT *= dbus
HEADERS *= DBus.h
SOURCES *= DBus.cpp
}
Expand Down
2 changes: 1 addition & 1 deletion src/murmur/murmur.pro
Expand Up @@ -68,7 +68,7 @@ macx {

dbus {
DEFINES *= USE_DBUS
CONFIG *= qdbus
QT *= dbus
HEADERS *= DBus.h
SOURCES *= DBus.cpp
}
Expand Down

0 comments on commit 5acf4af

Please sign in to comment.