Mutex was missing from libthrift build
authorMark Slee <mcslee@apache.org>
Sat, 28 Oct 2006 00:51:14 +0000 (00:51 +0000)
committerMark Slee <mcslee@apache.org>
Sat, 28 Oct 2006 00:51:14 +0000 (00:51 +0000)
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664858 13f79535-47bb-0310-9956-ffa450edef68

lib/cpp/Makefile.am

index 0844048..67ab098 100644 (file)
@@ -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 \