From: Ruben Kerkhof Date: Sun, 5 Oct 2014 12:51:05 +0000 (+0200) Subject: Link all files with -pthread X-Git-Tag: rec-3.7.0-rc1~221^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8a1f83aaf42cde1533a3fc973e2f4cbc55b1b1d;p=thirdparty%2Fpdns.git Link all files with -pthread --- diff --git a/modules/remotebackend/Makefile.am b/modules/remotebackend/Makefile.am index 71d80db094..b830fc3963 100644 --- a/modules/remotebackend/Makefile.am +++ b/modules/remotebackend/Makefile.am @@ -1,4 +1,5 @@ AM_CPPFLAGS += $(THREADFLAGS) -I../../pdns/ext/rapidjson/include -I../../pdns/ext/yahttp $(BOOST_CPPFLAGS) $(POLARSSL_CFLAGS) $(LIBZMQ_CFLAGS) +AM_LDFLAGS = $(THREADFLAGS) SUBDIRS = ../../pdns/ext/yahttp EXTRA_DIST = OBJECTFILES OBJECTLIBS testrunner.sh unittest_http.rb unittest_json.rb unittest_pipe.rb unittest_zeromq.rb unittest_post.rb unittest.rb Gemfile Gemfile.lock @@ -53,25 +54,19 @@ endif test_remotebackend_http_SOURCES = test-remotebackend.cc test-remotebackend-http.cc test-remotebackend-keys.hh test_remotebackend_http_LDADD = libtestremotebackend.la -test_remotebackend_http_LDFLAGS = $(AM_LDFLAGS) $(THREADFLAGS) test_remotebackend_json_SOURCES = test-remotebackend.cc test-remotebackend-json.cc test-remotebackend-keys.hh test_remotebackend_json_LDADD = libtestremotebackend.la -test_remotebackend_json_LDFLAGS = $(AM_LDFLAGS) $(THREADFLAGS) test_remotebackend_pipe_SOURCES = test-remotebackend.cc test-remotebackend-pipe.cc test-remotebackend-keys.hh test_remotebackend_pipe_LDADD = libtestremotebackend.la -test_remotebackend_pipe_LDFLAGS = $(AM_LDFLAGS) $(THREADFLAGS) test_remotebackend_post_SOURCES = test-remotebackend.cc test-remotebackend-post.cc test-remotebackend-keys.hh test_remotebackend_post_LDADD = libtestremotebackend.la -test_remotebackend_post_LDFLAGS = $(AM_LDFLAGS) $(THREADFLAGS) test_remotebackend_unix_SOURCES = test-remotebackend.cc test-remotebackend-unix.cc test-remotebackend-keys.hh test_remotebackend_unix_LDADD = libtestremotebackend.la -test_remotebackend_unix_LDFLAGS = $(AM_LDFLAGS) $(THREADFLAGS) test_remotebackend_zeromq_SOURCES = test-remotebackend.cc test-remotebackend-zeromq.cc test-remotebackend-keys.hh test_remotebackend_zeromq_LDADD = libtestremotebackend.la -test_remotebackend_zeromq_LDFLAGS = $(AM_LDFLAGS) $(THREADFLAGS)