diff options
author | OBATA Akio <[email protected]> | 2019-08-15 18:14:50 +0900 |
---|---|---|
committer | OBATA Akio <[email protected]> | 2019-08-15 18:14:50 +0900 |
commit | 64ba1818fe4c0e1ba110574459b8a11fa54e2cf0 (patch) | |
tree | 1c2512bbf4c7e1e051187b5e38477b740e3ad460 | |
parent | abdc45cc9a75a0ad41e58b6653d72b9a773c7e26 (diff) | |
download | tdeaddons-64ba1818fe4c0e1ba110574459b8a11fa54e2cf0.tar.gz tdeaddons-64ba1818fe4c0e1ba110574459b8a11fa54e2cf0.zip |
Fix to detect xmms properly
Signed-off-by: OBATA Akio <[email protected]>
-rw-r--r-- | ConfigureChecks.cmake | 7 |
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 ) |