summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2019-10-22 09:30:50 +0100
committerEdward Thomson <ethomson@edwardthomson.com>2020-01-24 09:54:28 -0600
commit89d1fc2ab900c2e7724533927bd7fa72a9ca89e3 (patch)
tree323dd98c0424b43c90c248d8e6af36ea5d5f562a
parent5625892b2c0e3767eccda6cb5ad38fabce3647e0 (diff)
downloadlibgit2-89d1fc2ab900c2e7724533927bd7fa72a9ca89e3.tar.gz
gssapi: show information about disabled GSSAPI
When USE_GSSAPI=OFF, still show information about what SPNEGO is, even though it's disabled. This is for parity with other disabled features like SSH and debugpool that still show details about what is disabled.
-rw-r--r--cmake/Modules/SelectGSSAPI.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/Modules/SelectGSSAPI.cmake b/cmake/Modules/SelectGSSAPI.cmake
index 41f837587..857c449e7 100644
--- a/cmake/Modules/SelectGSSAPI.cmake
+++ b/cmake/Modules/SelectGSSAPI.cmake
@@ -49,5 +49,5 @@ IF(GSS_BACKEND)
ENDIF()
ELSE()
SET(GIT_GSSAPI 0)
- ADD_FEATURE_INFO(SPNEGO NO "")
+ ADD_FEATURE_INFO(SPNEGO NO "SPNEGO authentication support")
ENDIF()