aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2024-06-20 08:09:28 +0200
committerPeter Eisentraut <peter@eisentraut.org>2024-06-20 09:08:36 +0200
commitc61c0cb3a99285db36806b592bd8c540c98757e5 (patch)
treec71061074a615c42fe76e54755836c3606adfc7d /src
parent832dc19ea681a54c153228a96112bea68dbff022 (diff)
downloadpostgresql-c61c0cb3a99285db36806b592bd8c540c98757e5.tar.gz
postgresql-c61c0cb3a99285db36806b592bd8c540c98757e5.zip
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>
Diffstat (limited to 'src')
-rw-r--r--src/backend/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/meson.build b/src/backend/meson.build
index 436c04af080..78c57268142 100644
--- a/src/backend/meson.build
+++ b/src/backend/meson.build
@@ -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,
)