You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
phonon/0009-fix-inverted-if.patch

29 lines
807 B

From 7d1008a5765b4c66e8a2e8c38aac8cb06eb09eb8 Mon Sep 17 00:00:00 2001
From: Harald Sitter <sitter@kde.org>
Date: Wed, 12 Sep 2012 18:35:38 +0200
Subject: [PATCH 09/12] fix inverted if
---
cmake/FindPhononInternal.cmake | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cmake/FindPhononInternal.cmake b/cmake/FindPhononInternal.cmake
index de7f6ea..d629fb3 100644
--- a/cmake/FindPhononInternal.cmake
+++ b/cmake/FindPhononInternal.cmake
@@ -68,9 +68,9 @@ endif (${QT_MIN_VERSION} VERSION_LESS "4.6.0")
find_package(Qt4 ${_REQ_STRING_KDE4})
# TODO: do we want this here?
-if (QT_QTDBUS_FOUND)
+if (NOT QT_QTDBUS_FOUND)
message(WARNING "Building without DBus support as QtDBus was not found.")
-endif(QT_QTDBUS_FOUND)
+endif(NOT QT_QTDBUS_FOUND)
# - Automoc
--
1.8.3.1