From: Marcin Siodelski Date: Mon, 23 Oct 2017 12:56:04 +0000 (+0200) Subject: [5375] Added explicit version numbers to exceptions and io. X-Git-Tag: Kea-1.3.0~2^2~22^2~1^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b043c7c2877401f45984e4d70221f143fef8ef2;p=thirdparty%2Fkea.git [5375] Added explicit version numbers to exceptions and io. --- diff --git a/src/lib/exceptions/Makefile.am b/src/lib/exceptions/Makefile.am index 93abc44567..82b7b05e3d 100644 --- a/src/lib/exceptions/Makefile.am +++ b/src/lib/exceptions/Makefile.am @@ -4,7 +4,9 @@ AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib AM_CXXFLAGS=$(KEA_CXXFLAGS) lib_LTLIBRARIES = libkea-exceptions.la + libkea_exceptions_la_SOURCES = exceptions.h exceptions.cc +libkea_exceptions_la_LDFLAGS = -no-undefined -version-info 0:0:0 CLEANFILES = *.gcno *.gcda diff --git a/src/lib/util/io/Makefile.am b/src/lib/util/io/Makefile.am index c91f368bf7..6c046fe966 100644 --- a/src/lib/util/io/Makefile.am +++ b/src/lib/util/io/Makefile.am @@ -9,5 +9,6 @@ libkea_util_io_la_SOURCES = fd.h fd.cc fd_share.h fd_share.cc libkea_util_io_la_SOURCES += socketsession.h socketsession.cc sockaddr_util.h libkea_util_io_la_SOURCES += pktinfo_utilities.h libkea_util_io_la_LIBADD = $(top_builddir)/src/lib/exceptions/libkea-exceptions.la +libkea_util_io_la_LDFLAGS = -no-undefined -version-info 0:0:0 CLEANFILES = *.gcno *.gcda