summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2014-05-17 10:19:46 +0200
committerDaniel Stenberg <daniel@haxx.se>2014-05-17 10:24:47 +0200
commit121bcfee5d1bce27181f9914c007883e1782df0f (patch)
tree3587e664bad926078ad5d8e606f25d4e1aa60eea
parent21aae1ec8681d477a78772e5f0dd589a923f5d4a (diff)
downloadcurl-121bcfee5d1bce27181f9914c007883e1782df0f.tar.gz
configure: add GSS-API to supported features
Bug: http://curl.haxx.se/bug/view.cgi?id=1344 Reported-by: Michael Osipov
-rw-r--r--configure.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 6b2a4985e..ae5f1ffbb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3406,6 +3406,9 @@ fi
if test "x$curl_spnego_msg" = "xenabled"; then
SUPPORT_FEATURES="$SUPPORT_FEATURES SPNEGO"
fi
+if test "x$want_gss" = "xyes"; then
+ SUPPORT_FEATURES="$SUPPORT_FEATURES GSS-API"
+fi
AC_SUBST(SUPPORT_FEATURES)