🌐 AI搜索 & 代理 主页
Skip to content

Commit 023a3c7

Browse files
committed
libpq-oauth: use correct c_args in meson.build
Copy-paste bug from b0635bf: 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 <li.evan.chao@gmail.com> Discussion: https://postgr.es/m/CAOYmi%2BmrGg%2Bn_X2MOLgeWcj3v_M00gR8uz_D7mM8z%3DdX1JYVbg%40mail.gmail.com Backpatch-through: 18
1 parent cc82448 commit 023a3c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interfaces/libpq-oauth/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ libpq_oauth_name = 'libpq-oauth-@0@'.format(pg_version_major)
4040
libpq_oauth_so = shared_module(libpq_oauth_name,
4141
libpq_oauth_sources + libpq_oauth_so_sources,
4242
include_directories: [libpq_oauth_inc, postgres_inc],
43-
c_args: libpq_so_c_args,
43+
c_args: libpq_oauth_so_c_args,
4444
c_pch: pch_postgres_fe_h,
4545
dependencies: [frontend_shlib_code, libpq, libpq_oauth_deps],
4646
link_depends: export_file,

0 commit comments

Comments
 (0)