diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-05-17 10:17:35 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-05-17 10:24:47 +0200 |
commit | 21aae1ec8681d477a78772e5f0dd589a923f5d4a (patch) | |
tree | 44771cff7d31319772e3d3c2ea14a54be571d69c /configure.ac | |
parent | c9ea1d341ae824d9ac40b505138b31ebd60172a9 (diff) | |
download | curl-21aae1ec8681d477a78772e5f0dd589a923f5d4a.tar.gz |
configure: add SPNEGO to supported features
Bug: http://curl.haxx.se/bug/view.cgi?id=1343
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 5c387ccba..6b2a4985e 100644 --- a/configure.ac +++ b/configure.ac @@ -3403,6 +3403,9 @@ fi if test "x$USE_NGHTTP2" = "x1"; then SUPPORT_FEATURES="$SUPPORT_FEATURES HTTP2" fi +if test "x$curl_spnego_msg" = "xenabled"; then + SUPPORT_FEATURES="$SUPPORT_FEATURES SPNEGO" +fi AC_SUBST(SUPPORT_FEATURES) |