summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 )