summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrançois Andriot <francois.andriot@free.fr>2016-10-01 11:14:02 +0200
committerSlávek Banko <slavek.banko@axis.cz>2016-10-01 11:14:12 +0200
commitf5b34166c17f365186f178014d59191a2f73955d (patch)
tree1406c410d4739b6225753b15c74032515ee27ed9
parent8a399e245082520e3bb2ea7452ca9f5714df002b (diff)
downloadtellico-f5b34166c17f365186f178014d59191a2f73955d.tar.gz
tellico-f5b34166c17f365186f178014d59191a2f73955d.zip
Fix detection of libexslt/libxslt
Signed-off-by: François Andriot <francois.andriot@free.fr> (cherry picked from commit 0377f1c1952c952fb6dde5afbc3bff940e482815)
-rw-r--r--ConfigureChecks.cmake7
1 files changed, 5 insertions, 2 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index aabc1a9..6176f72 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -53,9 +53,12 @@ if( NOT LIBXML_FOUND )
tde_message_fatal( "libxml at least 2.6.0 is required, but not found on your system" )
endif( NOT LIBXML_FOUND )
-pkg_search_module( LIBXSLT libxslt>=1.0.19 )
+pkg_search_module( LIBXSLT libexslt>=0.8.0 )
if( NOT LIBXSLT_FOUND )
- tde_message_fatal( "libxslt at least 1.0.19 is required, but not found on your system" )
+ pkg_search_module( LIBXSLT libxslt>=1.0.19 )
+ if( NOT LIBXSLT_FOUND )
+ tde_message_fatal( "libxslt at least 1.0.19 is required, but not found on your system" )
+ endif( )
endif( NOT LIBXSLT_FOUND )
pkg_search_module( TAGLIB taglib )