Module: wine Branch: master Commit: 4559c06032586f6a809db4cf06a3a2b41d1f27f8 URL: https://source.winehq.org/git/wine.git/?a=commit;h=4559c06032586f6a809db4cf0... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Tue Mar 6 09:26:23 2018 -0600 configure; Also disable gssapi when krb5 is disabled. Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- configure | 2 ++ configure.ac | 2 ++ 2 files changed, 4 insertions(+) diff --git a/configure b/configure index 397677e..b4cfc38 100755 --- a/configure +++ b/configure @@ -13654,6 +13654,8 @@ CPPFLAGS=$ac_save_CPPFLAGS test -z "$KRB5_CFLAGS" || KRB5_CFLAGS=`echo " $KRB5_CFLAGS" | sed 's/ -I\([^/]\)/ -I\$(top_builddir)\/\1/g'` test -z "$KRB5_LIBS" || KRB5_LIBS=`echo " $KRB5_LIBS" | sed 's/ -L\([^/]\)/ -L\$(top_builddir)\/\1/g'` +else + with_gssapi=${with_gssapi:-no} fi if test "x$ac_cv_lib_soname_krb5" = "x"; then : case "x$with_krb5" in diff --git a/configure.ac b/configure.ac index cfc2080..702267e 100644 --- a/configure.ac +++ b/configure.ac @@ -1673,6 +1673,8 @@ then else KRB5_CFLAGS="" fi]) +else + with_gssapi=${with_gssapi:-no} fi WINE_NOTICE_WITH(krb5,[test "x$ac_cv_lib_soname_krb5" = "x"], [libkrb5 ${notice_platform}development files not found, Kerberos won't be supported.])