From: Dave Watson Date: Thu, 1 May 2014 01:26:56 +0000 (-0700) Subject: Add missing files to Makefile.am X-Git-Tag: v0.22.0~572 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=30be8ac1ced8cb583ed9ac1d894506341e7c77d1;p=folly.git Add missing files to Makefile.am Summary: As title, add newly added files. fbthrift's jenkins build is failing due to missing futex and lifosem. Added other ones that looked new http://ci-builds.fb.com/job/fbthrift/ Test Plan: Built folly on ubuntu. Builds. Reviewed By: pgriess@fb.com FB internal diff: D1306401 --- diff --git a/folly/Makefile.am b/folly/Makefile.am index eac45836..706f659c 100644 --- a/folly/Makefile.am +++ b/folly/Makefile.am @@ -29,6 +29,7 @@ nobase_follyinclude_HEADERS = \ Baton.h \ Benchmark.h \ Bits.h \ + Checksum.h \ Chrono.h \ ConcurrentSkipList.h \ ConcurrentSkipList-inl.h \ @@ -55,10 +56,12 @@ nobase_follyinclude_HEADERS = \ detail/Stats.h \ detail/ThreadLocalDetail.h \ detail/UncaughtExceptionCounter.h \ + Demangle.h \ DiscriminatedPtr.h \ DynamicConverter.h \ dynamic.h \ dynamic-inl.h \ + Exception.h \ FBString.h \ FBVector.h \ File.h \ @@ -73,6 +76,10 @@ nobase_follyinclude_HEADERS = \ Format-inl.h \ GroupVarint.h \ Hash.h \ + IPAddress.h \ + IPAddressV4.h \ + IPAddressV6.h \ + IPAddressException.h \ IndexedMemPool.h \ IntrusiveList.h \ io/Cursor.h \ @@ -91,8 +98,10 @@ nobase_follyinclude_HEADERS = \ io/async/TimeoutManager.h \ json.h \ Lazy.h \ + LifoSem.h \ Likely.h \ Logging.h \ + MacAddress.h \ Malloc.h \ MapUtil.h \ Memory.h \ @@ -179,8 +188,13 @@ libfolly_la_SOURCES = \ FileUtil.cpp \ Format.cpp \ FormatTables.cpp \ + detail/Futex.cpp \ GroupVarint.cpp \ GroupVarintTables.cpp \ + IPAddress.cpp \ + IPAddressV4.cpp \ + IPAddressV6.cpp \ + LifoSem.cpp \ io/IOBuf.cpp \ io/IOBufQueue.cpp \ io/RecordIO.cpp \ @@ -189,11 +203,14 @@ libfolly_la_SOURCES = \ io/async/EventHandler.cpp \ io/async/Request.cpp \ json.cpp \ + detail/MallocImpl.cpp \ detail/MemoryIdler.cpp \ + MacAddress.cpp \ Malloc.cpp \ MemoryMapping.cpp \ Random.cpp \ Range.cpp \ + SafeAssert.cpp \ SpookyHashV1.cpp \ SpookyHashV2.cpp \ stats/Instantiations.cpp \