From 64ba1818fe4c0e1ba110574459b8a11fa54e2cf0 Mon Sep 17 00:00:00 2001 From: OBATA Akio Date: Thu, 15 Aug 2019 18:14:50 +0900 Subject: [PATCH] Fix to detect xmms properly Signed-off-by: OBATA Akio --- ConfigureChecks.cmake | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 444e48e..172d05b 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -35,9 +35,10 @@ if( BUILD_KICKER_APPLETS ) check_include_file( "fcntl.h" HAVE_FCNTL_H ) if( WITH_XMMS ) - # FIXME: xmms is realy outdated, so check if this is really works - check_library_exists( xmms_remote_is_running xmms HAVE_XMMSLIB ) - check_symbol_exist( xmms_remote_is_running "xmms/xmmsctrl.h" HAVE_XMMS ) + check_library_exists( xmms xmms_remote_is_running "" HAVE_XMMS_LIB ) + tde_save_and_set( CMAKE_REQUIRED_LIBRARIES "xmms" ) + check_symbol_exists( xmms_remote_is_running "xmms/xmmsctrl.h" HAVE_XMMS ) + tde_restore( CMAKE_REQUIRED_LIBRARIES ) if( HAVE_XMMS_LIB AND HAVE_XMMS ) set( XMMS_LIBRARIES xmms ) else( HAVE_XMMS )