summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-12-27 14:12:10 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-12-27 18:28:41 +0900
commit1bbc86f7b626b7754fba76d992b367e734991291 (patch)
treebd5be534bd3bae27fa656bb8c25cfb15fc962163 /ConfigureChecks.cmake
parent5c6479b287f1705f83156d3913e4830810f69a8f (diff)
downloadtdemultimedia-1bbc86f7b626b7754fba76d992b367e734991291.tar.gz
tdemultimedia-1bbc86f7b626b7754fba76d992b367e734991291.zip
Replace pthread and dl linking with cmake-based variables
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake13
1 files changed, 0 insertions, 13 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index 16381307..5ffb8e27 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -97,19 +97,6 @@ check_include_file( sys/soundcard.h HAVE_SYS_SOUNDCARD_H )
check_include_file( machine/soundcard.h HAVE_MACHINE_SOUNDCARD_H )
-##### check libraries ###########################
-
-set( DL_LIBRARIES dl )
-check_library_exists( ${DL_LIBRARIES} dlopen /lib HAVE_LIBDL )
-if( NOT HAVE_LIBDL )
- unset( DL_LIBRARIES )
- check_function_exists( dlopen HAVE_DLOPEN )
- if( HAVE_DLOPEN )
- set( HAVE_LIBDL 1 )
- endif( HAVE_DLOPEN )
-endif( NOT HAVE_LIBDL )
-
-
# ALSA
if( WITH_ALSA )
pkg_check_modules( ALSA alsa>=0.5 )