]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
don't fallback if krb5-config fails
authorMark Andrews <marka@isc.org>
Fri, 30 Apr 2021 08:13:30 +0000 (18:13 +1000)
committerMark Andrews <marka@isc.org>
Wed, 30 Jun 2021 02:14:08 +0000 (12:14 +1000)
configure.ac

index f1cf3373be4671485f8a3d9815479e1d10935005..c7038b8a55ed26c9957007eebe529bebd5be1874 100644 (file)
@@ -949,15 +949,14 @@ case "$use_gssapi" in
                    gssapi_linked=yes, gssapi_linked=no)
                case $gssapi_linked in
                    yes) AC_MSG_RESULT([krb5-config: linked]);;
-                   no)  AC_MSG_RESULT([krb5-config: could not determine proper GSSAPI linkage])
-                       use_gssapi="yes"
+                   no)  AC_MSG_ERROR([krb5-config: could not determine proper GSSAPI linkage])
                        ;;
                esac
                LIBS=$saved_libs
            fi
         fi
     else
-        use_gssapi="yes"
+        AC_MSG_ERROR([krb5-config not found])
     fi
     if test "yes" = "$use_gssapi"; then
        AC_MSG_CHECKING([for GSSAPI library, non krb5-config method])