From 5dc74ecf0e6f2c804ddd408b0c73a0d6a7610337 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Tue, 3 Jul 2012 10:00:44 +0200 Subject: [PATCH] Build fixes for *NIX. --- cib/Makefile.am | 2 ++ components/checker/Makefile.am | 2 ++ components/cibsync/Makefile.am | 2 ++ components/compat/Makefile.am | 2 ++ components/configfile/Makefile.am | 2 ++ components/delegation/Makefile.am | 2 ++ components/demo/Makefile.am | 2 ++ components/discovery/Makefile.am | 2 ++ icinga-app/Makefile.am | 2 ++ 9 files changed, 18 insertions(+) diff --git a/cib/Makefile.am b/cib/Makefile.am index f88026113..bd47083c2 100644 --- a/cib/Makefile.am +++ b/cib/Makefile.am @@ -41,6 +41,8 @@ libcib_la_LDFLAGS = \ @VERSION_INFO@ libcib_la_LIBADD = \ + $(BOOST_SIGNALS_LIB) \ + $(BOOST_THREAD_LIB) \ ${top_builddir}/base/libbase.la \ ${top_builddir}/jsonrpc/libjsonrpc.la \ ${top_builddir}/icinga/libicinga.la \ diff --git a/components/checker/Makefile.am b/components/checker/Makefile.am index d1d9cf63b..fddd0dce5 100644 --- a/components/checker/Makefile.am +++ b/components/checker/Makefile.am @@ -23,6 +23,8 @@ checker_la_LDFLAGS = \ @VERSION_INFO@ checker_la_LIBADD = \ + $(BOOST_SIGNALS_LIB) \ + $(BOOST_THREAD_LIB) \ ${top_builddir}/base/libbase.la \ ${top_builddir}/jsonrpc/libjsonrpc.la \ ${top_builddir}/icinga/libicinga.la \ diff --git a/components/cibsync/Makefile.am b/components/cibsync/Makefile.am index 7f677c27f..df926a9b7 100644 --- a/components/cibsync/Makefile.am +++ b/components/cibsync/Makefile.am @@ -23,6 +23,8 @@ cibsync_la_LDFLAGS = \ @VERSION_INFO@ cibsync_la_LIBADD = \ + $(BOOST_SIGNALS_LIB) \ + $(BOOST_THREAD_LIB) \ ${top_builddir}/base/libbase.la \ ${top_builddir}/jsonrpc/libjsonrpc.la \ ${top_builddir}/icinga/libicinga.la \ diff --git a/components/compat/Makefile.am b/components/compat/Makefile.am index 9a464f003..8d868d1fd 100644 --- a/components/compat/Makefile.am +++ b/components/compat/Makefile.am @@ -23,6 +23,8 @@ compat_la_LDFLAGS = \ @VERSION_INFO@ compat_la_LIBADD = \ + $(BOOST_SIGNALS_LIB) \ + $(BOOST_THREAD_LIB) \ ${top_builddir}/base/libbase.la \ ${top_builddir}/jsonrpc/libjsonrpc.la \ ${top_builddir}/icinga/libicinga.la \ diff --git a/components/configfile/Makefile.am b/components/configfile/Makefile.am index 57ba90013..7beee1d89 100644 --- a/components/configfile/Makefile.am +++ b/components/configfile/Makefile.am @@ -21,5 +21,7 @@ configfile_la_LDFLAGS = \ @VERSION_INFO@ configfile_la_LIBADD = \ + $(BOOST_SIGNALS_LIB) \ + $(BOOST_THREAD_LIB) \ $(top_builddir)/base/libbase.la \ $(top_builddir)/dyn/libdyn.la diff --git a/components/delegation/Makefile.am b/components/delegation/Makefile.am index d05bc903f..5e9f41f8c 100644 --- a/components/delegation/Makefile.am +++ b/components/delegation/Makefile.am @@ -23,6 +23,8 @@ delegation_la_LDFLAGS = \ @VERSION_INFO@ delegation_la_LIBADD = \ + $(BOOST_SIGNALS_LIB) \ + $(BOOST_THREAD_LIB) \ ${top_builddir}/base/libbase.la \ ${top_builddir}/jsonrpc/libjsonrpc.la \ ${top_builddir}/icinga/libicinga.la \ diff --git a/components/demo/Makefile.am b/components/demo/Makefile.am index d9d4b0794..3fd22751f 100644 --- a/components/demo/Makefile.am +++ b/components/demo/Makefile.am @@ -22,6 +22,8 @@ demo_la_LDFLAGS = \ @VERSION_INFO@ demo_la_LIBADD = \ + $(BOOST_SIGNALS_LIB) \ + $(BOOST_THREAD_LIB) \ ${top_builddir}/base/libbase.la \ ${top_builddir}/jsonrpc/libjsonrpc.la \ ${top_builddir}/icinga/libicinga.la diff --git a/components/discovery/Makefile.am b/components/discovery/Makefile.am index 37a9220d4..9dd6ebd1e 100644 --- a/components/discovery/Makefile.am +++ b/components/discovery/Makefile.am @@ -25,6 +25,8 @@ discovery_la_LDFLAGS = \ @VERSION_INFO@ discovery_la_LIBADD = \ + $(BOOST_SIGNALS_LIB) \ + $(BOOST_THREAD_LIB) \ ${top_builddir}/base/libbase.la \ ${top_builddir}/jsonrpc/libjsonrpc.la \ ${top_builddir}/icinga/libicinga.la \ diff --git a/icinga-app/Makefile.am b/icinga-app/Makefile.am index 50969ebd7..39ea3a41b 100644 --- a/icinga-app/Makefile.am +++ b/icinga-app/Makefile.am @@ -19,6 +19,8 @@ icinga_LDFLAGS = \ $(BOOST_LDFLAGS) icinga_LDADD = \ + $(BOOST_SIGNALS_LIB) \ + $(BOOST_THREAD_LIB) \ ${top_builddir}/base/libbase.la \ ${top_builddir}/icinga/libicinga.la \ -dlopen ${top_builddir}/components/checker/checker.la \