diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2020-02-09 19:16:54 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2020-02-09 19:16:54 +0100 |
commit | a0c4be8ea852195a7b5337003b0c6e4354126b64 (patch) | |
tree | 26880d355ed995e44696e7b17892dab2d2dda11a /kopete/ConfigureChecks.cmake | |
parent | 947688b6e6b80d9e8a18bb5bbe3c889984726b5c (diff) | |
download | tdenetwork-a0c4be8ea852195a7b5337003b0c6e4354126b64.tar.gz tdenetwork-a0c4be8ea852195a7b5337003b0c6e4354126b64.zip |
Add missing option and detection for libxslt.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'kopete/ConfigureChecks.cmake')
-rw-r--r-- | kopete/ConfigureChecks.cmake | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/kopete/ConfigureChecks.cmake b/kopete/ConfigureChecks.cmake index 4001bb5a..6603eed5 100644 --- a/kopete/ConfigureChecks.cmake +++ b/kopete/ConfigureChecks.cmake @@ -29,6 +29,22 @@ if( BUILD_KOPETE_PROTOCOL_GROUPWISE OR BUILD_KOPETE_PROTOCOL_JABBER ) endif( ) +# libxslt (plugins/webpresence) + +if( BUILD_KOPETE_PLUGIN_WEBPRESENCE AND WITH_LIBXSLT ) + pkg_search_module( LIBXML libxml-2.0 ) + if( NOT LIBXML_FOUND ) + tde_message_fatal( "libxml is required, but not found on your system" ) + endif( ) + pkg_search_module( LIBXSLT libxslt ) + if( NOT LIBXSLT_FOUND ) + tde_message_fatal( "libxslt is required, but not found on your system" ) + else( ) + set( HAVE_XSLT 1 CACHE INTERNAL "" ) + endif( ) +endif( ) + + ### Check for videodev header check_include_file( "libv4l1-videodev.h" HAVE_LIBV4L1_VIDEODEV_H ) if( HAVE_LIBV4L1_VIDEODEV_H ) |