Skip to content

Commit

Permalink
Avoid soname versions for plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
opoplawski committed Dec 17, 2022
1 parent 0fc2c81 commit d73830f
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions plugins/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,7 @@
# Put Together AM_CPPFLAGS and AM_LDFLAGS
include $(top_srcdir)/lib_flags.am

# This linker flag specifies libtool version info.
# See http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning
# for information regarding incrementing `-version-info`.
plugin_version_info = -version-info 0:0:0

AM_LDFLAGS += -module -shared -export-dynamic $(NOUNDEFINED)

if ISMINGW
AM_LDFLAGS += -avoid-version
else !ISMINGW
if ISCYGWIN
AM_LDFLAGS += -avoid-version
else !ISCYGWIN
AM_LDFLAGS += $(plugin_version_info)
endif !ISCYGWIN
endif !ISMINGW
AM_LDFLAGS += -module -avoid-version -shared -export-dynamic $(NOUNDEFINED)

# Create an alternate directory if not installing or for noinst installs.
ALTPLUGINDIR = ${abs_top_builddir}/plugins/plugindir
Expand Down

0 comments on commit d73830f

Please sign in to comment.