From kde-commits Mon Aug 11 13:12:03 2008 From: Antonio Larrosa Jimenez Date: Mon, 11 Aug 2008 13:12:03 +0000 To: kde-commits Subject: KDE/kdebase/runtime/phonon Message-Id: <1218460323.995073.692.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=121846033613977 SVN commit 845311 by antlarr: If xine wasn't really found, don't try to compile the xine directory M +3 -1 CMakeLists.txt --- trunk/KDE/kdebase/runtime/phonon/CMakeLists.txt #845310:845311 @@ -58,7 +58,9 @@ macro_log_feature(FALSE "Xine" "xine-lib v${XINE_VERSION} was found on your system. This version contains major changes compared to 1.1.x and has not been tested properly for use with this backend. Consider downgrading to version 1.1.9." "http://sourceforge.net/project/showfiles.php?group_id=9655&package_id=9732") set(XINE_FOUND FALSE) endif(XINE_MINOR_VERSION LESS 2 AND XINE_BUGFIX_VERSION LESS 90) - macro_optional_add_subdirectory(xine) + if(XINE_FOUND) + macro_optional_add_subdirectory(xine) + endif(XINE_FOUND) endif(XINE_FOUND) endif (NOT Q_WS_WIN) endif(KDE4_DISABLE_MULTIMEDIA)