2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 09:57:41 +00:00

[#3732] Meson: Fix postgresql fallback

This commit is contained in:
Andrei Pavel 2025-04-24 13:08:02 +03:00
parent 6cc2e1fbc7
commit 2b9efcd908
No known key found for this signature in database
GPG Key ID: D4E804481939CB21

View File

@ -20,7 +20,7 @@ if pg_config.found()
pgsql_link_args = libs.stdout().split()
pgsql_version = version.stdout().strip()
link_args = [pgsql_libdir] + pgsql_ldflags + pgsql_link_args
link_args = [f'-L@pgsql_libdir@'] + pgsql_ldflags + pgsql_link_args
if libpq.found()
link_args += ['-lpq']
endif