From 3b7573d6553b94f1c0263b3e482bf8ad316520f7 Mon Sep 17 00:00:00 2001 From: Marcin Siodelski Date: Tue, 20 Nov 2018 15:21:57 +0100 Subject: [PATCH] [#260,!120] As it didn't compile for me, I fixed dependencies in Makefile.am --- src/lib/util/Makefile.am | 3 ++- src/lib/util/threads/Makefile.am | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/lib/util/Makefile.am b/src/lib/util/Makefile.am index 833ce43f81..4f5d8b0dbd 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 -- 2.47.2