summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-12 17:27:54 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-12 17:27:54 -0600
commitd548013bdb885cac474191d0efdda85685417f08 (patch)
treec0792482daae404ab66cb98c8fd1dfa9d33cd066
parentb73042f8dd7e537374bff3754e621f323ab7d109 (diff)
downloadarts-d548013b.tar.gz
arts-d548013b.zip
Add ESD support to CMake
-rw-r--r--CMakeLists.txt18
-rw-r--r--artsc/CMakeLists.txt3
-rw-r--r--config.h.cmake6
-rw-r--r--flow/CMakeLists.txt1
-rw-r--r--mcop/CMakeLists.txt6
-rw-r--r--mcop_mt/CMakeLists.txt7
6 files changed, 36 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1008340..44d83d1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -34,6 +34,7 @@ option( WITH_ALSA "Enable ALSA support" ON )
option( WITH_AUDIOFILE "Enable audiofile (wav) support" ON )
option( WITH_VORBIS "Enable Ogg/Vorbis support" ON )
option( WITH_MAD "Enable MAD mp3 decoder support" ON )
+option( WITH_ESOUND "Enable ESOUND support" ${WITH_ALL_OPTIONS} )
option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} )
@@ -60,6 +61,8 @@ check_include_file( "ctype.h" HAVE_CTYPE_H )
check_include_file( "malloc.h" HAVE_MALLOC_H )
check_include_file( "memory.h" HAVE_MEMORY_H )
check_include_file( "dlfcn.h" HAVE_DLFCN_H )
+check_include_file( "sys/soundcard.h" HAVE_SYS_SOUNDCARD_H )
+check_include_file( "pthread.h" HAVE_LIBPTHREAD )
##### check for system libraries ################
@@ -147,6 +150,21 @@ if( WITH_ALSA )
endif( WITH_ALSA )
+##### check for esound #######################
+
+set( HAVE_LIBESD 0 )
+if( WITH_ESOUND )
+
+ pkg_search_module( ESOUND esound )
+ if( ESOUND_FOUND )
+ set( HAVE_LIBESD 1 )
+ else( ESOUND_FOUND )
+ message(FATAL_ERROR "\nESOUND support is requested, but `libesd` not found" )
+ endif( ESOUND_FOUND )
+
+endif( WITH_ESOUND )
+
+
##### check for glib/gthread modules ############
pkg_search_module( GLIB2 glib-2.0 )
diff --git a/artsc/CMakeLists.txt b/artsc/CMakeLists.txt
index 51c5144..855c302 100644
--- a/artsc/CMakeLists.txt
+++ b/artsc/CMakeLists.txt
@@ -43,6 +43,7 @@ install( PROGRAMS
include_directories(
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_BINARY_DIR}
+ ${CMAKE_SOURCE_DIR}/artsc
${CMAKE_BINARY_DIR}/mcop
${CMAKE_SOURCE_DIR}/mcop
${CMAKE_BINARY_DIR}/flow
@@ -64,7 +65,7 @@ install( FILES
tde_add_library( artsdsp SHARED
SOURCES artsdsp.c
VERSION 0.0.0
- LINK artsc-shared
+ LINK artsc-shared dl
DESTINATION ${LIB_INSTALL_DIR}
)
diff --git a/config.h.cmake b/config.h.cmake
index 43bdb21..f279385 100644
--- a/config.h.cmake
+++ b/config.h.cmake
@@ -26,8 +26,14 @@
#cmakedefine HAVE_LIBAUDIOFILE 1
+#cmakedefine HAVE_LIBESD 1
+
#cmakedefine HAVE_LIBASOUND2 1
#cmakedefine HAVE_ALSA_ASOUNDLIB_H 1
#cmakedefine HAVE_SND_PCM_RESUME 1
#cmakedefine ALSA_PCM_OLD_SW_PARAMS_API 1
#cmakedefine ALSA_PCM_OLD_HW_PARAMS_API 1
+
+#cmakedefine HAVE_SYS_SOUNDCARD_H 1
+#cmakedefine HAVE_LIBPTHREAD 1
+#define HAVE_IOCTL_INT_ULONGINT_DOTS 3
diff --git a/flow/CMakeLists.txt b/flow/CMakeLists.txt
index 40be36d..3ab8fd2 100644
--- a/flow/CMakeLists.txt
+++ b/flow/CMakeLists.txt
@@ -15,6 +15,7 @@ add_subdirectory( gslpp )
include_directories(
${CMAKE_BINARY_DIR}
+ ${CMAKE_SOURCE_DIR}/artsc
${CMAKE_BINARY_DIR}/mcop
${CMAKE_SOURCE_DIR}/mcop
${CMAKE_CURRENT_BINARY_DIR}
diff --git a/mcop/CMakeLists.txt b/mcop/CMakeLists.txt
index fe62f9f..7b4eec1 100644
--- a/mcop/CMakeLists.txt
+++ b/mcop/CMakeLists.txt
@@ -12,11 +12,11 @@
configure_file( arts_export.h.in arts_export.h )
if( NOT EXTENSION_DIR )
- set( EXTENSION_DIR ${CMAKE_INSTALL_PREFIX}/lib )
+ set( EXTENSION_DIR ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX} )
endif( NOT EXTENSION_DIR )
if( NOT DTRADER_DIR )
- set( DTRADER_DIR ${CMAKE_INSTALL_PREFIX}/lib/mcop )
+ set( DTRADER_DIR ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}/mcop )
endif( NOT DTRADER_DIR )
add_definitions(
@@ -66,6 +66,6 @@ set( ${target}_SRCS
tde_add_library( ${target} SHARED
SOURCES ${${target}_SRCS}
VERSION 1.0.0
- LINK ltdlc-static
+ LINK ltdlc-static ${ESOUND_LIBRARIES}
DESTINATION ${LIB_INSTALL_DIR}
)
diff --git a/mcop_mt/CMakeLists.txt b/mcop_mt/CMakeLists.txt
index d3cd471..3891a4b 100644
--- a/mcop_mt/CMakeLists.txt
+++ b/mcop_mt/CMakeLists.txt
@@ -11,6 +11,11 @@
include_directories(
${CMAKE_BINARY_DIR}
+ ${CMAKE_BINARY_DIR}/flow
+ ${CMAKE_BINARY_DIR}/mcop
+ ${CMAKE_SOURCE_DIR}/flow
+ ${CMAKE_SOURCE_DIR}/mcop
+ ${GLIB2_INCLUDE_DIRS}
)
@@ -19,6 +24,6 @@ include_directories(
tde_add_library( mcop_mt SHARED
SOURCES threads_posix.cc
VERSION 1.0.0
- LINK artsflow-shared
+ LINK artsflow-shared pthread
DESTINATION ${LIB_INSTALL_DIR}
)