summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera2021-11-26 20:00:29 +0000
committerAlvaro Herrera2021-11-26 20:00:29 +0000
commitf744519326e1ce4774d0966f7848601a8327eeaa (patch)
tree5d7eed6633bbda62ab4f586780fe3e56cc505838
parent1a6f5a0e876306293fda697e7820b404d5b93693 (diff)
Harden be-gssapi-common.h for headerscheck
Surround the contents with a test that the feature is enabled by configure, to silence header checking tools on systems without GSSAPI installed. Backpatch to 12, where the file appeared. Discussion: https://postgr.es/m/[email protected]
-rw-r--r--src/include/libpq/be-gssapi-common.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/libpq/be-gssapi-common.h b/src/include/libpq/be-gssapi-common.h
index c07d7e7c5ae..c2215f6ce7c 100644
--- a/src/include/libpq/be-gssapi-common.h
+++ b/src/include/libpq/be-gssapi-common.h
@@ -14,6 +14,8 @@
#ifndef BE_GSSAPI_COMMON_H
#define BE_GSSAPI_COMMON_H
+#ifdef ENABLE_GSS
+
#if defined(HAVE_GSSAPI_H)
#include <gssapi.h>
#else
@@ -23,4 +25,6 @@
extern void pg_GSS_error(const char *errmsg,
OM_uint32 maj_stat, OM_uint32 min_stat);
+#endif /* ENABLE_GSS */
+
#endif /* BE_GSSAPI_COMMON_H */