summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2022-07-11 17:12:39 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2022-07-11 22:06:00 +0900
commit38d735962dc18ce299f1cc47b2d02314ef623f24 (patch)
tree37f38b2e478a9d6f1c46bab97eff45ff536d6d32 /ConfigureChecks.cmake
parent9dfcf38a3e4fbd14f15a6bb687fc85fd5ca34fd4 (diff)
downloadkgtk-qt3-r14.0.x.tar.gz
kgtk-qt3-r14.0.x.zip
Fixed support for building with glibc >= 2.34.r14.0.13r14.0.x
This resolves issue #3. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit b7e7bb99e1c85325ff55866434f797dfb5c91187)
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake4
1 files changed, 3 insertions, 1 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index cfd9cd0..2a90541 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -53,7 +53,9 @@ if( BUILD_KGTK_GTK2 )
check_library_exists( "${CMAKE_DL_LIBS}" _dl_sym "" HAVE_DL_SYM )
if( NOT HAVE_DL_SYM )
- tde_message_fatal( "The DL library seems no longer contains _dl_sym function" )
+ message( WARNING, "_dl_sym is requested but not found on your system.\n"
+ "Some functionality may not be available unless your\n"
+ "system has glibc 2.34 or greater." )
endif()
endif()