From a0040da1d70a254fc7ffab2862b5326f0b0bea4d Mon Sep 17 00:00:00 2001 From: Jonathan Rosser Date: Tue, 31 Jul 2012 09:44:27 +0100 Subject: [PATCH] add another missing linkage against pthreads --- examples/fuzzing_client/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/fuzzing_client/Makefile b/examples/fuzzing_client/Makefile index f62538d8dd..c757815aeb 100644 --- a/examples/fuzzing_client/Makefile +++ b/examples/fuzzing_client/Makefile @@ -2,6 +2,8 @@ BOOST_LIBS=boost_system boost_date_time boost_thread boost_regex boost_random include ../common.mk +LDFLAGS := $(LDFLAGS) -lpthread + fuzzing_client: fuzzing_client.o $(CXX) $(CFLAGS) $^ -o $@ $(LDFLAGS)