1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-09 06:21:09 +03:00

meson: Fix import library name in Windows

This changes the import library name from 'postgres.exe.lib' to
'postgres.lib', which is what it was with the old MSVC build system.
Extension builds use that name.

Bug: #18513
Reported-by: Muralikrishna Bandaru <muralikrishna.bandaru@enterprisedb.com>
This commit is contained in:
Peter Eisentraut
2024-06-20 08:09:28 +02:00
parent 832dc19ea6
commit c61c0cb3a9
2 changed files with 4 additions and 4 deletions

View File

@@ -133,7 +133,7 @@ postgres = executable('postgres',
link_with: backend_link_with,
link_depends: backend_link_depends,
export_dynamic: true,
implib: true,
implib: 'postgres',
dependencies: backend_build_deps,
kwargs: default_bin_args,
)