From 421c249f1ff8e75ce646b6d94c0e0a141b30f2a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sat, 27 Jun 2015 15:02:37 +0200 Subject: Fix build on freebsd MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- ConfigureChecks.cmake | 18 ++++++++++++++++++ ksim/monitors/disk/CMakeLists.txt | 2 +- superkaramba/src/CMakeLists.txt | 1 + superkaramba/src/imagelabel.h | 4 +++- tdelirc/irkick/tdelircclient.cpp | 4 ++++ 5 files changed, 27 insertions(+), 2 deletions(-) diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 765f608..509362a 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -164,6 +164,17 @@ if ( BUILD_KSIM ) tde_message_fatal( "netsnmp is required, but was not found on your system" ) endif () endif( WITH_SNMP ) + + check_library_exists( devstat selectdevs "" HAVE_DEVSTAT_SELECTDEVS ) + if( HAVE_DEVSTAT_SELECTDEVS ) + set( DEVSTAT_LIBRARIES devstat ) + else( ) + check_library_exists( devstat devstat_selectdevs "" HAVE_DEVSTAT_DEVSTAT_SELECTDEVS ) + if( HAVE_DEVSTAT_DEVSTAT_SELECTDEVS ) + set( DEVSTAT_LIBRARIES devstat ) + endif( ) + endif( HAVE_DEVSTAT_SELECTDEVS ) + endif ( BUILD_KSIM ) @@ -185,6 +196,13 @@ if ( BUILD_SUPERKARAMBA ) if( WITH_XMMS ) set( HAVE_XMMS 1 ) endif( WITH_XMMS ) + + if( ${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD" ) + check_library_exists( kvm kvm_getswapinfo "" HAVE_LIBKVM ) + if( HAVE_LIBKVM ) + set( LIBKVM_LIBRARIES kvm ) + endif( ) + endif( ) endif ( BUILD_SUPERKARAMBA ) diff --git a/ksim/monitors/disk/CMakeLists.txt b/ksim/monitors/disk/CMakeLists.txt index 0dfb879..b37ca18 100644 --- a/ksim/monitors/disk/CMakeLists.txt +++ b/ksim/monitors/disk/CMakeLists.txt @@ -28,7 +28,7 @@ link_directories( tde_add_kpart( ksim_disk AUTOMOC SOURCES ksimdisk.cpp - LINK ksimcore-shared + LINK ksimcore-shared ${DEVSTAT_LIBRARIES} DESTINATION ${PLUGIN_INSTALL_DIR} ) diff --git a/superkaramba/src/CMakeLists.txt b/superkaramba/src/CMakeLists.txt index b0f9a4e..8f560b6 100644 --- a/superkaramba/src/CMakeLists.txt +++ b/superkaramba/src/CMakeLists.txt @@ -56,6 +56,7 @@ tde_add_executable( superkaramba AUTOMOC svcgrp_python.cpp LINK tdeio-shared ${PYTHON_LIBRARIES} ${TDENEWSTUFF_LIBRARIES} + ${LIBKVM_LIBRARIES} DESTINATION ${BIN_INSTALL_DIR} ) diff --git a/superkaramba/src/imagelabel.h b/superkaramba/src/imagelabel.h index 9ed9672..1346c2e 100644 --- a/superkaramba/src/imagelabel.h +++ b/superkaramba/src/imagelabel.h @@ -38,7 +38,9 @@ #include "karamba.h" class ImageLabel; -class TDEIO::CopyJob; +namespace TDEIO { + class CopyJob; +} // Abstract Effects Baseclass class Effect : public TQObject diff --git a/tdelirc/irkick/tdelircclient.cpp b/tdelirc/irkick/tdelircclient.cpp index feb69cb..ee00c88 100644 --- a/tdelirc/irkick/tdelircclient.cpp +++ b/tdelirc/irkick/tdelircclient.cpp @@ -55,7 +55,11 @@ bool KLircClient::connectToLirc() sockaddr_un addr; addr.sun_family = AF_UNIX; +#if defined(__FreeBSD__) + strcpy(addr.sun_path, "/var/run/lirc/lircd"); +#else strcpy(addr.sun_path, "/dev/lircd"); +#endif if(::connect(sock, (struct sockaddr *)(&addr), sizeof(addr)) == -1) { ::close(sock); // in case of mandrake... -- cgit v1.2.3