diff options
author | Slávek Banko <[email protected]> | 2024-04-15 02:56:07 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2024-04-15 03:17:42 +0200 |
commit | c2268515a1c7a3107286d0a56f3ccda60527e4d0 (patch) | |
tree | f22c35f81dde85194ce78de2b415143f5ea40ed4 /tdm/ConfigureChecks.cmake | |
parent | b151ca953f1282dc59b83a42a4e010643458cf61 (diff) | |
download | tdebase-c2268515a1c7a3107286d0a56f3ccda60527e4d0.tar.gz tdebase-c2268515a1c7a3107286d0a56f3ccda60527e4d0.zip |
tdm: Allow to detect pthread_setname_np. Add linking pthread.
This relates to issue #473.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 28a2ef7c5f28dea8ce9b5d2f14b366ada0353e0c)
Diffstat (limited to 'tdm/ConfigureChecks.cmake')
-rw-r--r-- | tdm/ConfigureChecks.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tdm/ConfigureChecks.cmake b/tdm/ConfigureChecks.cmake index 8ebba8e6d..d0080f4f1 100644 --- a/tdm/ConfigureChecks.cmake +++ b/tdm/ConfigureChecks.cmake @@ -18,7 +18,11 @@ check_function_exists( getdomainname HAVE_GETDOMAINNAME ) check_function_exists( initgroups HAVE_INITGROUPS ) check_function_exists( mkstemp HAVE_MKSTEMP ) check_function_exists( setproctitle HAVE_SETPROCTITLE ) +tde_save_and_set( CMAKE_REQUIRED_DEFINITIONS "-D_GNU_SOURCE" "-D__BSD_VISIBLE=1" ) +tde_save_and_set( CMAKE_REQUIRED_LIBRARIES "pthread" ) check_function_exists( pthread_setname_np HAVE_PTHREAD_SETNAME_NP ) +tde_restore( CMAKE_REQUIRED_DEFINITIONS ) +tde_restore( CMAKE_REQUIRED_LIBRARIES ) check_function_exists( sysinfo HAVE_SYSINFO ) check_function_exists( strnlen HAVE_STRNLEN ) check_function_exists( getifaddrs HAVE_GETIFADDRS ) |