From: Mark Slee Date: Sat, 28 Oct 2006 00:51:14 +0000 (+0000) Subject: Mutex was missing from libthrift build X-Git-Tag: 0.2.0~1614 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=0f70d773338a108997c9ea6c8e5800a80a18d34a;p=common%2Fthrift.git Mutex was missing from libthrift build git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664858 13f79535-47bb-0310-9956-ffa450edef68 --- 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 \