diff options
| author | Jacob Champion | 2025-12-17 19:46:01 +0000 |
|---|---|---|
| committer | Jacob Champion | 2025-12-17 19:46:01 +0000 |
| commit | 781ca72139d6f7d91629d09f55fb9c94822aa404 (patch) | |
| tree | a64674b40d6d8aab402459e31c5178d09aec4b62 /src | |
| parent | 8b217c96ea2d0cf5046092aef03612f46bb136e4 (diff) | |
libpq-oauth: use correct c_args in meson.build
Copy-paste bug from b0635bfda: libpq-oauth.so was being built with
libpq_so_c_args, rather than libpq_oauth_so_c_args. (At the moment, the
two lists are identical, but that won't be true forever.)
Reviewed-by: Chao Li <[email protected]>
Discussion: https://postgr.es/m/CAOYmi%2BmrGg%2Bn_X2MOLgeWcj3v_M00gR8uz_D7mM8z%3DdX1JYVbg%40mail.gmail.com
Backpatch-through: 18
Diffstat (limited to 'src')
| -rw-r--r-- | src/interfaces/libpq-oauth/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/libpq-oauth/meson.build b/src/interfaces/libpq-oauth/meson.build index 505e1671b86..881e3f24f10 100644 --- a/src/interfaces/libpq-oauth/meson.build +++ b/src/interfaces/libpq-oauth/meson.build @@ -40,7 +40,7 @@ libpq_oauth_name = 'libpq-oauth-@0@'.format(pg_version_major) libpq_oauth_so = shared_module(libpq_oauth_name, libpq_oauth_sources + libpq_oauth_so_sources, include_directories: [libpq_oauth_inc, postgres_inc], - c_args: libpq_so_c_args, + c_args: libpq_oauth_so_c_args, c_pch: pch_postgres_fe_h, dependencies: [frontend_shlib_code, libpq, libpq_oauth_deps], link_depends: export_file, |
