summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorOBATA Akio <obache@wizdas.com>2019-08-15 18:14:50 +0900
committerOBATA Akio <obache@wizdas.com>2019-08-15 18:14:50 +0900
commit64ba1818fe4c0e1ba110574459b8a11fa54e2cf0 (patch)
tree1c2512bbf4c7e1e051187b5e38477b740e3ad460 /ConfigureChecks.cmake
parentabdc45cc9a75a0ad41e58b6653d72b9a773c7e26 (diff)
downloadtdeaddons-64ba1818fe4c0e1ba110574459b8a11fa54e2cf0.tar.gz
tdeaddons-64ba1818fe4c0e1ba110574459b8a11fa54e2cf0.zip
Fix to detect xmms properly
Signed-off-by: OBATA Akio <obache@wizdas.com>
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake7
1 files 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 )