From ea1b35d76f1f51d37ebf94494cb7c77b6f82aa61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sat, 5 Jan 2019 19:03:43 +0100 Subject: cmake: Add krb5 library detection. Add krb5 include directories. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- ConfigureChecks.cmake | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'ConfigureChecks.cmake') diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 63df149..b4ba4da 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -35,5 +35,13 @@ find_library( HAVE_LIBTDELDAP tdeldap ) if( HAVE_LIBTDELDAP ) set( LIBTDELDAP_LIBRARIES "tdeldap" ) else() - tde_message_fatal( "libtdeldap is requested, but was not found on your system" ) + tde_message_fatal( "libtdeldap is required, but was not found on your system" ) +endif( ) + + +##### check for krb5 + +pkg_search_module( KRB5 krb5 ) +if( NOT KRB5_FOUND) + tde_message_fatal( "krb5 library is required but not found on your system" ) endif( ) -- cgit v1.2.1