From 08bef5bba042843cbfc41f1ed701243140dcf298 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Fri, 13 Feb 2009 13:02:23 +0100 Subject: s3:build: improve the check for a working krb5-config. Not only check if it exists and is executable, but also check whether it accepts the command line "krb5-config --libs gssapi". Chris Hoogendyk has reported configure failing on a Solaris machine due to krb5-config raising errors on these options. Michael --- source3/configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/configure.in') diff --git a/source3/configure.in b/source3/configure.in index 4a8d594dfa..691d0a80bc 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -3185,7 +3185,7 @@ if test x"$with_ads_support" != x"no"; then # check for krb5-config from recent MIT and Heimdal kerberos 5 AC_PATH_PROG(KRB5CONFIG, krb5-config) AC_MSG_CHECKING(for working krb5-config) - if test -x "$KRB5CONFIG"; then + if test -x "$KRB5CONFIG" && $KRB5CONFIG --libs gssapi > /dev/null ; then ac_save_CFLAGS=$CFLAGS CFLAGS="";export CFLAGS ac_save_LDFLAGS=$LDFLAGS -- cgit