configure: add GSS to libcurl.pc Depends:

GSS was the last (known) missing dependency missing from `libcurl.pc`.

Closes #15177
This commit is contained in:
Viktor Szakats 2024-10-07 16:13:04 +02:00
parent 9e19a577eb
commit 3e7a6fbb8e
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -2072,6 +2072,13 @@ if test x"$want_gss" = xyes; then
;;
esac
fi
if test -n "$gnu_gss"; then
LIBCURL_PC_REQUIRES_PRIVATE="$LIBCURL_PC_REQUIRES_PRIVATE gss"
elif test "x$not_mit" = "x1"; then
LIBCURL_PC_REQUIRES_PRIVATE="$LIBCURL_PC_REQUIRES_PRIVATE heimdal-gssapi"
else
LIBCURL_PC_REQUIRES_PRIVATE="$LIBCURL_PC_REQUIRES_PRIVATE mit-krb5-gssapi"
fi
else
CPPFLAGS="$save_CPPFLAGS"
fi