From: Marcin Siodelski Date: Tue, 20 Nov 2018 14:21:57 +0000 (+0100) Subject: [#260,!120] As it didn't compile for me, I fixed dependencies in Makefile.am X-Git-Tag: 204-move-models-base~4^2^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb78643e42d0cd43ebfde173e70df09ebd72df56;p=thirdparty%2Fkea.git [#260,!120] As it didn't compile for me, I fixed dependencies in Makefile.am --- diff --git a/src/lib/util/Makefile.am b/src/lib/util/Makefile.am index 6dd26dd00c..611fe1fe15 100644 --- a/src/lib/util/Makefile.am +++ b/src/lib/util/Makefile.am @@ -97,4 +97,5 @@ libkea_util_random_include_HEADERS = \ libkea_util_threads_includedir = $(pkgincludedir)/util/threads libkea_util_threads_include_HEADERS = \ threads/sync.h \ - threads/thread.h + threads/thread.h \ + threads/watched_thread.h diff --git a/src/lib/util/threads/Makefile.am b/src/lib/util/threads/Makefile.am index b3e6c20e47..1a883c59af 100644 --- a/src/lib/util/threads/Makefile.am +++ b/src/lib/util/threads/Makefile.am @@ -8,7 +8,8 @@ lib_LTLIBRARIES = libkea-threads.la libkea_threads_la_SOURCES = sync.h sync.cc libkea_threads_la_SOURCES += thread.h thread.cc libkea_threads_la_SOURCES += watched_thread.h watched_thread.cc -libkea_threads_la_LIBADD = $(top_builddir)/src/lib/exceptions/libkea-exceptions.la +libkea_threads_la_LIBADD = $(top_builddir)/src/lib/util/libkea-util.la +libkea_threads_la_LIBADD += $(top_builddir)/src/lib/exceptions/libkea-exceptions.la libkea_threads_la_LDFLAGS = -no-undefined -version-info 1:0:0