diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-05-17 10:19:46 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-05-17 10:24:47 +0200 |
commit | 121bcfee5d1bce27181f9914c007883e1782df0f (patch) | |
tree | 3587e664bad926078ad5d8e606f25d4e1aa60eea /configure.ac | |
parent | 21aae1ec8681d477a78772e5f0dd589a923f5d4a (diff) | |
download | curl-121bcfee5d1bce27181f9914c007883e1782df0f.tar.gz |
configure: add GSS-API to supported features
Bug: http://curl.haxx.se/bug/view.cgi?id=1344
Reported-by: Michael Osipov
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
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) |