Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit161355e

Browse files
committed
Change shared library installation naming on macOS
It is not customary to install a shared library with a minor versionnumber (libpq.5.16.dylib) on macOS. We just need the file with themajor version number (libpq.5.dylib) and the one without versionnumber (libpq.dylib). This also matches the installation layout usedby Meson.Discussion:https://www.postgresql.org/message-id/e0c44fb2-8b66-a4b9-b274-7ed3a1a0ab74@enterprisedb.com
1 parentd951052 commit161355e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/Makefile.shlib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ ifeq ($(PORTNAME), darwin)
122122
version_link= -compatibility_version $(SO_MAJOR_VERSION) -current_version $(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
123123
endif
124124
LINK.shared= $(COMPILER) -dynamiclib -install_name '$(libdir)/lib$(NAME).$(SO_MAJOR_VERSION)$(DLSUFFIX)' $(version_link) $(exported_symbols_list) -multiply_defined suppress
125-
shlib= lib$(NAME).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)$(DLSUFFIX)
125+
shlib= lib$(NAME).$(SO_MAJOR_VERSION)$(DLSUFFIX)
126126
shlib_major= lib$(NAME).$(SO_MAJOR_VERSION)$(DLSUFFIX)
127127
else
128128
# loadable module

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp