From: Michael Orlitzky Date: Fri, 4 Aug 2023 20:52:40 +0000 (-0400) Subject: Makefile.am: don't version the shared library. X-Git-Tag: 0.0.1~37 X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=839bb62e58be5b20f39631bee2248d079c0d42a5;p=libsvgtiny-pixbuf.git Makefile.am: don't version the shared library. --- diff --git a/Makefile.am b/Makefile.am index 3c9ce42..705c46b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -12,6 +12,11 @@ libpixbufloader_svg_la_LIBADD = $(CAIRO_LIBS) \ $(GDKPIXBUF_LIBS) \ $(GTK4_LIBS) \ $(LIBSVGTINY_LIBS) + +# Create foo.so instead of foo.so.x.y.z, and allow it to be +# dlopen()ed. +libpixbufloader_svg_la_LDFLAGS = -avoid-version -module + noinst_PROGRAMS = svg2png svg2png_SOURCES = $(libpixbufloader_svg_la_SOURCES) svg2png_CPPFLAGS = $(libpixbufloader_svg_la_CPPFLAGS)