2015-02-24 15:53:49 +00:00
|
|
|
From: Jan Engelhardt <jengelh@inai.de>
|
|
|
|
Date: 2015-02-13 15:29:13.225224047 +0100
|
|
|
|
|
|
|
|
build: use unique SONAME for libsgutils
|
|
|
|
|
|
|
|
sg3_utils has added functions between (for example) 1.36 and 1.39
|
|
|
|
without tracking them (either by using a different SONAME,
|
|
|
|
or using ELF symbol versions).
|
|
|
|
---
|
|
|
|
lib/Makefile.am | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
2015-07-08 11:00:19 +00:00
|
|
|
--- a/lib/Makefile.am
|
|
|
|
+++ b/lib/Makefile.am
|
|
|
|
@@ -48,7 +48,7 @@ AM_CFLAGS = -Wall -W
|
2015-02-24 15:53:49 +00:00
|
|
|
|
|
|
|
lib_LTLIBRARIES = libsgutils2.la
|
|
|
|
|
2015-07-08 11:00:19 +00:00
|
|
|
-libsgutils2_la_LDFLAGS = -version-info 2:0:0 -no-undefined
|
|
|
|
+libsgutils2_la_LDFLAGS = -version-info 2:0:0 -no-undefined -release ${PACKAGE_VERSION}
|
2015-02-24 15:53:49 +00:00
|
|
|
|
|
|
|
libsgutils2_la_LIBADD = @GETOPT_O_FILES@ @os_libs@
|
|
|
|
libsgutils2_la_DEPENDENCIES = @GETOPT_O_FILES@
|