diff options
author | Michael Stahl <michael.stahl@allotropia.de> | 2024-07-19 13:10:51 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2024-08-23 11:17:12 +0200 |
commit | a201afd913473df832beb2175f846236a7313d4d (patch) | |
tree | 4e2c89bb090c8817259ea57ab2da3a817aaf4cfe /bin | |
parent | 24291153ce7004bb1dcfe9fb4467a89b0367932c (diff) |
configure,curl: enable GSSAPI on Linux/MacOS/etc.
This will link libgssapi_krb5.so.2 which is in krb5-libs (ABI CL1 in
RHEL8, ABI CL2 in RHEL9).
Change-Id: I2dbaa64e70f4502c5a47c6c85123c94b9ad41277
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/170758
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
(cherry picked from commit 46e21942bf412eda1750f850c328cb41f1ff70ca)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171212
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/check-elf-dynamic-objects | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/bin/check-elf-dynamic-objects b/bin/check-elf-dynamic-objects index 415dea8f46ee..ba47ea591c5d 100755 --- a/bin/check-elf-dynamic-objects +++ b/bin/check-elf-dynamic-objects @@ -189,8 +189,15 @@ local file="$1" */libofficebean.so) allowlist="${allowlist} libjawt.so" ;; + */libcurl.so.4) + if [ "$WITH_GSSAPI" = TRUE ]; then + allowlist="${allowlist} ${kerberosallowlist}" + fi + ;; */libpostgresql-sdbc-impllo.so) - allowlist="${allowlist} ${kerberosallowlist}" + if [ "$WITH_GSSAPI" = TRUE ]; then + allowlist="${allowlist} ${kerberosallowlist}" + fi ;; */libconfigmgrlo.so) if [ "$ENABLE_DCONF" = TRUE ]; then |