From 0f70d773338a108997c9ea6c8e5800a80a18d34a Mon Sep 17 00:00:00 2001 From: Mark Slee Date: Sat, 28 Oct 2006 00:51:14 +0000 Subject: [PATCH] Mutex was missing from libthrift build git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664858 13f79535-47bb-0310-9956-ffa450edef68 --- lib/cpp/Makefile.am | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/cpp/Makefile.am b/lib/cpp/Makefile.am index 08440489..67ab0987 100644 --- a/lib/cpp/Makefile.am +++ b/lib/cpp/Makefile.am @@ -5,7 +5,8 @@ common_ldflags = -Wall $(BOOST_LDFLAGS) -levent # Define the source file for the module -libthrift_sources = src/concurrency/Monitor.cpp \ +libthrift_sources = src/concurrency/Mutex.cpp \ + src/concurrency/Monitor.cpp \ src/concurrency/PosixThreadFactory.cpp \ src/concurrency/ThreadManager.cpp \ src/concurrency/TimerManager.cpp \ @@ -36,6 +37,7 @@ include_thrift_HEADERS = \ include_concurrencydir = $(include_thriftdir)/concurrency include_concurrency_HEADERS = \ src/concurrency/Exception.h \ + src/concurrency/Mutex.h \ src/concurrency/Monitor.h \ src/concurrency/PosixThreadFactory.h \ src/concurrency/Thread.h \ -- 2.17.1