summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-26 19:15:40 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-26 20:13:18 +0900
commit3a837ecf257dc334d65818d456d5a6bd6a8b98ef (patch)
tree795d56bfb18f29dff8931174b627f149c969d482
parent9fc074fcb2225e6303bf7cec6dc4cc85d6b5edb7 (diff)
downloadtdelibs-3a837ecf.tar.gz
tdelibs-3a837ecf.zip
Fix FTBFS caused by detection of libr version after recent update
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 7a00e005dd5806a1056488e3a1199bf382a42623)
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 7226a1359..e3fd6f294 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1195,9 +1195,9 @@ if( WITH_ELFICON )
if( NOT LIBR_FOUND )
message(FATAL_ERROR "\nelficon support was requested, but libr was not found on your system" )
endif( NOT LIBR_FOUND )
- if( NOT "${LIBR_VERSION}" STREQUAL "0.6.0" )
+ if( "${LIBR_VERSION}" VERSION_LESS "0.6" )
message(FATAL_ERROR "\nelficon support was requested, but the libr version on your system may not be compatible with TDE" )
- endif( NOT "${LIBR_VERSION}" STREQUAL "0.6.0" )
+ endif( "${LIBR_VERSION}" VERSION_LESS "0.6" )
set( HAVE_ELFICON 1 )
endif( )