From: bert hubert Date: Fri, 16 Jan 2015 15:17:59 +0000 (+0100) Subject: missed pthread in 2 places X-Git-Tag: rec-3.7.0-rc1~16 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cf142a036a1a590a3d4a3adb608352db69a65691;p=thirdparty%2Fpdns.git missed pthread in 2 places --- diff --git a/pdns/Makefile.am b/pdns/Makefile.am index c53c09cd15..06b30a449a 100644 --- a/pdns/Makefile.am +++ b/pdns/Makefile.am @@ -850,7 +850,7 @@ dnsdemog_SOURCES = \ unix_utility.cc \ utility.hh -dnsdemog_LDADD = $(POLARSSL_LIBS) +dnsdemog_LDADD = $(POLARSSL_LIBS) $(THREADFLAGS) rec_control_SOURCES = \ arguments.cc arguments.hh \ @@ -862,6 +862,8 @@ rec_control_SOURCES = \ statbag.cc \ unix_utility.cc +rec_control_LDADD = $(THREADFLAGS) + testrunner_SOURCES = \ arguments.cc \ base32.cc \