diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2009-02-12 23:57:17 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2009-02-12 23:57:17 +0000 |
commit | 9ddc7ad038b9e003596e61de1b1352798fb10dbd (patch) | |
tree | 90e9eca6d73575174a79b45922f2167cec392256 | |
parent | 9a4c887c4a7279acc4cae66b11540746244e9cc3 (diff) |
Fixed NTLM on curl-config --features with GnuTLS
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 779e0e8b0..4a383ffea 100644 --- a/configure.ac +++ b/configure.ac @@ -2508,7 +2508,7 @@ fi if test "x$USE_WINDOWS_SSPI" = "x1"; then SUPPORT_FEATURES="$SUPPORT_FEATURES SSPI" fi -if test "x$USE_SSLEAY" = "x1" -o "x$USE_WINDOWS_SSPI" = "x1" -o "x$USE_GNUTLS" = "x1"; then +if test "x$USE_SSLEAY" = "x1" -o "x$USE_WINDOWS_SSPI" = "x1" -o "x$GNUTLS_ENABLED" = "x1"; then SUPPORT_FEATURES="$SUPPORT_FEATURES NTLM" fi |