From: Viktor Szakats Date: Mon, 7 Oct 2024 14:13:04 +0000 (+0200) Subject: configure: add GSS to `libcurl.pc` `Depends:` X-Git-Tag: curl-8_11_0~211 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e7a6fbb8e38f930970a5dcc7a3f27cf6fdc04e8;p=thirdparty%2Fcurl.git configure: add GSS to `libcurl.pc` `Depends:` GSS was the last (known) missing dependency missing from `libcurl.pc`. Closes #15177 --- diff --git a/configure.ac b/configure.ac index 56e2b2f1bd..4a9a7fc5f8 100644 --- a/configure.ac +++ b/configure.ac @@ -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