summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake19
1 files changed, 17 insertions, 2 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index e8b007b..3aa03f9 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -39,10 +39,10 @@ endif( NOT HAVE_LIBLDAP )
##### check for krb5
-pkg_search_module( KRB5 krb5 )
+pkg_search_module( KRB5 heimdal-krb5 krb5 )
if( NOT KRB5_FOUND)
if( NOT DEFINED KRB5_CONFIG_EXECUTABLE )
- find_program( KRB5_CONFIG_EXECUTABLE NAMES krb5-config )
+ find_program( KRB5_CONFIG_EXECUTABLE NAMES krb5-config.heimdal krb5-config )
if( NOT KRB5_CONFIG_EXECUTABLE )
tde_message_fatal( "krb5 library is required but not found on your system" )
endif( )
@@ -62,3 +62,18 @@ if( NOT KRB5_FOUND)
set( KRB5_FOUND 1 )
endif( )
endif( )
+
+find_file( KRB5_ASN1_H
+ NAMES krb5_asn1.h
+ HINTS ${KRB5_INCLUDE_DIRS}
+)
+if( "${KRB5_ASN1_H}" STREQUAL "KRB5_ASN1_H-NOTFOUND" )
+ tde_message_fatal( "Heimdal Kerberos is required, but was not found on our system" )
+endif( )
+
+
+# check compiler permissive flag
+check_cxx_compiler_flag( -fpermissive HAVE_PERMISSIVE_SUPPORT )
+if( HAVE_PERMISSIVE_SUPPORT )
+ set( ENABLE_PERMISSIVE_FLAG "-fpermissive" )
+endif( )