diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-07-11 17:12:39 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-07-11 22:06:00 +0900 |
commit | 38d735962dc18ce299f1cc47b2d02314ef623f24 (patch) | |
tree | 37f38b2e478a9d6f1c46bab97eff45ff536d6d32 /ConfigureChecks.cmake | |
parent | 9dfcf38a3e4fbd14f15a6bb687fc85fd5ca34fd4 (diff) | |
download | kgtk-qt3-r14.0.x.tar.gz kgtk-qt3-r14.0.x.zip |
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.cmake | 4 |
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() |