Updated Branches: refs/heads/master ddfbd5954 -> 9335e5c24
TS-2339 Cleanup Makefile.am, fix wrong _SOURCES definitions Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/59013ca9 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/59013ca9 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/59013ca9 Branch: refs/heads/master Commit: 59013ca9225fcc2fb29fc8bfede1d1e1a36ae41d Parents: ddfbd59 Author: Leif Hedstrom <[email protected]> Authored: Sun Nov 10 16:37:53 2013 -0700 Committer: Leif Hedstrom <[email protected]> Committed: Tue Nov 12 15:17:42 2013 -0700 ---------------------------------------------------------------------- cop/Makefile.am | 2 + iocore/aio/Makefile.am | 7 ++- iocore/cache/Makefile.am | 7 +-- iocore/cluster/Makefile.am | 7 ++- iocore/dns/Makefile.am | 7 ++- iocore/eventsystem/Makefile.am | 35 ++++++++----- iocore/hostdb/Makefile.am | 8 ++- iocore/net/Makefile.am | 30 +++++++---- iocore/utils/Makefile.am | 1 - lib/ts/Makefile.am | 100 +++++++++++++++++++++--------------- lib/tsconfig/Makefile.am | 13 +++-- lib/wccp/Makefile.am | 10 ++-- mgmt/Makefile.am | 1 + mgmt/cli/Makefile.am | 1 - mgmt/preparse/Makefile.am | 1 + proxy/Makefile.am | 2 - proxy/hdrs/Makefile.am | 19 ++++--- proxy/http/Makefile.am | 15 ++++-- proxy/logging/Makefile.am | 4 ++ 19 files changed, 172 insertions(+), 98 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/59013ca9/cop/Makefile.am ---------------------------------------------------------------------- diff --git a/cop/Makefile.am b/cop/Makefile.am index f97416b..d89e8b0 100644 --- a/cop/Makefile.am +++ b/cop/Makefile.am @@ -32,7 +32,9 @@ bin_PROGRAMS = traffic_cop traffic_cop_SOURCES = \ TrafficCop.cc + traffic_cop_LDFLAGS = @EXTRA_CXX_LDFLAGS@ @LIBTOOL_LINK_FLAGS@ + traffic_cop_LDADD = \ $(top_builddir)/mgmt/api/libtsmgmt.la \ $(top_builddir)/lib/ts/libtsutil.la \ http://git-wip-us.apache.org/repos/asf/trafficserver/blob/59013ca9/iocore/aio/Makefile.am ---------------------------------------------------------------------- diff --git a/iocore/aio/Makefile.am b/iocore/aio/Makefile.am index 98f72c6..a19b04d 100644 --- a/iocore/aio/Makefile.am +++ b/iocore/aio/Makefile.am @@ -28,7 +28,12 @@ TESTS = test_AIO.sample noinst_LIBRARIES = libinkaio.a check_PROGRAMS = test_AIO -libinkaio_a_SOURCES = AIO.cc I_AIO.h P_AIO.h Inline.cc +libinkaio_a_SOURCES = \ + AIO.cc \ + I_AIO.h \ + Inline.cc \ + P_AIO.h + test_AIO_SOURCES = \ test_AIO.cc http://git-wip-us.apache.org/repos/asf/trafficserver/blob/59013ca9/iocore/cache/Makefile.am ---------------------------------------------------------------------- diff --git a/iocore/cache/Makefile.am b/iocore/cache/Makefile.am index 366baaf..c4faaa1 100644 --- a/iocore/cache/Makefile.am +++ b/iocore/cache/Makefile.am @@ -63,12 +63,13 @@ libinkcache_a_SOURCES = \ CacheLink.cc \ CachePages.cc \ CachePagesInternal.cc \ - CacheVol.cc \ CacheRead.cc \ + CacheVol.cc \ CacheWrite.cc \ I_Cache.h \ I_CacheDefs.h \ I_Store.h \ + Inline.cc \ P_Cache.h \ P_CacheArray.h \ P_CacheDir.h \ @@ -78,7 +79,7 @@ libinkcache_a_SOURCES = \ P_CacheInternal.h \ P_CacheVol.h \ P_RamCache.h \ - RamCacheLRU.cc \ RamCacheCLFUS.cc \ + RamCacheLRU.cc \ Store.cc \ - Inline.cc $(ADD_SRC) + $(ADD_SRC) http://git-wip-us.apache.org/repos/asf/trafficserver/blob/59013ca9/iocore/cluster/Makefile.am ---------------------------------------------------------------------- diff --git a/iocore/cluster/Makefile.am b/iocore/cluster/Makefile.am index 1d8266d..1ffe089 100644 --- a/iocore/cluster/Makefile.am +++ b/iocore/cluster/Makefile.am @@ -47,6 +47,7 @@ libinkcluster_a_SOURCES = \ ClusterProcessor.cc \ ClusterRPC.cc \ ClusterVConnection.cc \ + Inline.cc \ P_Cluster.h \ P_ClusterCache.h \ P_ClusterCacheInternal.h \ @@ -56,6 +57,8 @@ libinkcluster_a_SOURCES = \ P_ClusterLib.h \ P_ClusterLoadMonitor.h \ P_ClusterMachine.h \ - P_TimeTrace.h \ - Inline.cc + P_TimeTrace.h +#test_Cluster_SOURCES = \ +# test_I_Cluster.cc \ +# test_P_Cluster.cc http://git-wip-us.apache.org/repos/asf/trafficserver/blob/59013ca9/iocore/dns/Makefile.am ---------------------------------------------------------------------- diff --git a/iocore/dns/Makefile.am b/iocore/dns/Makefile.am index cf4c85a..3d5e59f 100644 --- a/iocore/dns/Makefile.am +++ b/iocore/dns/Makefile.am @@ -50,12 +50,15 @@ libinkdns_a_SOURCES = \ I_DNSProcessor.h \ I_SplitDNS.h \ I_SplitDNSProcessor.h \ + Inline.cc \ P_DNS.h \ P_DNSConnection.h \ P_DNSProcessor.h \ P_SplitDNS.h \ P_SplitDNSProcessor.h \ - SplitDNS.cc \ SRV.h \ - Inline.cc + SplitDNS.cc +#test_UNUSED_SOURCES = \ +# test_I_DNS.cc \ +# test_P_DNS.cc http://git-wip-us.apache.org/repos/asf/trafficserver/blob/59013ca9/iocore/eventsystem/Makefile.am ---------------------------------------------------------------------- diff --git a/iocore/eventsystem/Makefile.am b/iocore/eventsystem/Makefile.am index f19630a..c75f5f5 100644 --- a/iocore/eventsystem/Makefile.am +++ b/iocore/eventsystem/Makefile.am @@ -28,6 +28,7 @@ noinst_LIBRARIES = libinkevent.a libinkevent_a_SOURCES = \ EventSystem.cc \ + IOBuffer.cc \ I_Action.h \ I_Continuation.h \ I_EThread.h \ @@ -36,24 +37,22 @@ libinkevent_a_SOURCES = \ I_EventSystem.h \ I_IOBuffer.h \ I_Lock.h \ - IOBuffer.cc \ I_PriorityEventQueue.h \ I_Processor.h \ I_ProtectedQueue.h \ I_ProxyAllocator.h \ - ProxyAllocator.cc \ I_SocketManager.h \ + I_Tasks.h \ I_Thread.h \ I_VConnection.h \ I_VIO.h \ + Inline.cc \ Lock.cc \ + PQ-List.cc \ P_EventSystem.h \ P_Freer.h \ P_IOBuffer.h \ P_ProtectedQueue.h \ - PQ-List.cc \ - Processor.cc \ - ProtectedQueue.cc \ P_Thread.h \ P_UnixEThread.h \ P_UnixEvent.h \ @@ -61,14 +60,15 @@ libinkevent_a_SOURCES = \ P_UnixSocketManager.h \ P_VConnection.h \ P_VIO.h \ + Processor.cc \ + ProtectedQueue.cc \ + ProxyAllocator.cc \ SocketManager.cc \ + Tasks.cc \ Thread.cc \ UnixEThread.cc \ UnixEvent.cc \ - UnixEventProcessor.cc \ - Inline.cc \ - Tasks.cc \ - I_Tasks.h + UnixEventProcessor.cc check_PROGRAMS = test_Buffer test_Event @@ -94,11 +94,22 @@ test_LDADD = \ $(top_builddir)/proxy/shared/libUglyLogStubs.a \ @LIBTCL@ -test_Buffer_SOURCES = test_Buffer.cc -test_Event_SOURCES = test_Event.cc +test_Buffer_SOURCES = \ + test_Buffer.cc + +#test_UNUSED_SOURCES = \ +# test_I_Buffer.cc \ +# test_P_Buffer.cc + +test_Event_SOURCES = \ + test_Event.cc + +#test_UNUSED_SOURCES = \ +# test_I_Event.cc \ +# test_P_Event.cc + test_Buffer_CXXFLAGS = $(test_CXXFLAGS) test_Event_CXXFLAGS = $(test_CXXFLAGS) test_Buffer_LDADD = $(test_LDADD) test_Event_LDADD = $(test_LDADD) - http://git-wip-us.apache.org/repos/asf/trafficserver/blob/59013ca9/iocore/hostdb/Makefile.am ---------------------------------------------------------------------- diff --git a/iocore/hostdb/Makefile.am b/iocore/hostdb/Makefile.am index c48b230..90381d7 100644 --- a/iocore/hostdb/Makefile.am +++ b/iocore/hostdb/Makefile.am @@ -47,10 +47,14 @@ noinst_LIBRARIES = libinkhostdb.a libinkhostdb_a_SOURCES = \ HostDB.cc \ + I_HostDB.h \ I_HostDBProcessor.h \ + Inline.cc \ MultiCache.cc \ P_HostDB.h \ P_HostDBProcessor.h \ - P_MultiCache.h \ - Inline.cc + P_MultiCache.h +#test_UNUSED_SOURCES = \ +# test_I_HostDB.cc \ +# test_P_HostDB.cc http://git-wip-us.apache.org/repos/asf/trafficserver/blob/59013ca9/iocore/net/Makefile.am ---------------------------------------------------------------------- diff --git a/iocore/net/Makefile.am b/iocore/net/Makefile.am index f1cb2d1..b19c36b 100644 --- a/iocore/net/Makefile.am +++ b/iocore/net/Makefile.am @@ -56,7 +56,6 @@ test_certlookup_LDADD = \ libinknet_a_SOURCES = \ Connection.cc \ - I_NetErrno.h \ I_Net.h \ I_NetProcessor.h \ I_NetVConnection.h \ @@ -64,21 +63,25 @@ libinknet_a_SOURCES = \ I_UDPConnection.h \ I_UDPNet.h \ I_UDPPacket.h \ + Inline.cc \ Net.cc \ NetVConnection.cc \ P_CompletionUtil.h \ P_Connection.h \ P_InkBulkIO.h \ P_LibBulkIO.h \ - P_NetAccept.h \ P_Net.h \ + P_NetAccept.h \ P_NetVConnection.h \ - P_Socks.h \ P_SSLCertLookup.h \ P_SSLConfig.h \ P_SSLNetAccept.h \ P_SSLNetProcessor.h \ P_SSLNetVConnection.h \ + P_SSLNextProtocolAccept.h \ + P_SSLNextProtocolSet.h \ + P_SSLUtils.h \ + P_Socks.h \ P_UDPConnection.h \ P_UDPIOEvent.h \ P_UDPNet.h \ @@ -90,27 +93,34 @@ libinknet_a_SOURCES = \ P_UnixNetVConnection.h \ P_UnixPollDescriptor.h \ P_UnixUDPConnection.h \ - Socks.cc \ SSLCertLookup.cc \ SSLConfig.cc \ + SSLNetAccept.cc \ SSLNetProcessor.cc \ SSLNetVConnection.cc \ - SSLNetAccept.cc \ SSLNextProtocolAccept.cc \ SSLNextProtocolSet.cc \ SSLUtils.cc \ + Socks.cc \ UDPIOEvent.cc \ UnixConnection.cc \ - UnixNetAccept.cc \ UnixNet.cc \ + UnixNetAccept.cc \ UnixNetPages.cc \ UnixNetProcessor.cc \ UnixNetVConnection.cc \ UnixUDPConnection.cc \ - UnixUDPNet.cc \ - Inline.cc + UnixUDPNet.cc + +#test_UNUSED_SOURCES = \ +# NetTest-http-server.c \ +# test_I_Net.cc \ +# test_I_UDPNet.cc \ +# test_P_Net.cc \ +# test_P_UDPNet.cc if BUILD_TESTS - libinknet_a_SOURCES += NetVCTest.cc \ - P_NetVCTest.h + libinknet_a_SOURCES += \ + NetVCTest.cc \ + P_NetVCTest.h endif http://git-wip-us.apache.org/repos/asf/trafficserver/blob/59013ca9/iocore/utils/Makefile.am ---------------------------------------------------------------------- diff --git a/iocore/utils/Makefile.am b/iocore/utils/Makefile.am index ce57dfe..4d6fcac 100644 --- a/iocore/utils/Makefile.am +++ b/iocore/utils/Makefile.am @@ -33,4 +33,3 @@ libinkutils_a_SOURCES = \ Machine.cc \ OneWayMultiTunnel.cc \ OneWayTunnel.cc - http://git-wip-us.apache.org/repos/asf/trafficserver/blob/59013ca9/lib/ts/Makefile.am ---------------------------------------------------------------------- diff --git a/lib/ts/Makefile.am b/lib/ts/Makefile.am index 3fca2f8..18461b0 100644 --- a/lib/ts/Makefile.am +++ b/lib/ts/Makefile.am @@ -45,9 +45,52 @@ libtsutil_la_SOURCES = \ Diags.cc \ Diags.h \ DynArray.h \ + EventNotify.cc \ + EventNotify.h \ HostLookup.cc \ HostLookup.h \ + INK_MD5.h \ + I_Layout.h \ + I_Version.h \ + InkErrno.h \ + InkPool.h \ + IntrusiveDList.h \ + IpMap.cc \ + IpMap.h \ + IpMapConf.cc \ + IpMapConf.h \ + Layout.cc \ + List.h \ + Map.h \ + MatcherUtils.cc \ + MatcherUtils.h \ + MimeTable.cc \ + MimeTable.h \ + ParseRules.cc \ + ParseRules.h \ + Ptr.h \ + RawHashTable.cc \ + RawHashTable.h \ + Regex.cc \ + Regex.h \ + Regression.cc \ + Regression.h \ + Resource.cc \ + Resource.h \ + SimpleTokenizer.h \ + TestBox.h \ + TextBuffer.cc \ + TextBuffer.h \ + Tokenizer.cc \ + Tokenizer.h \ + Trie.h \ + TsBuffer.h \ + Vec.cc \ + Vec.h \ + Version.cc \ defalloc.h \ + fastlz.c \ + fastlz.h \ ink_aiocb.h \ ink_align.h \ ink_apidefs.h \ @@ -60,12 +103,12 @@ libtsutil_la_SOURCES = \ ink_auth_api.h \ ink_base64.cc \ ink_base64.h \ - ink_cap.cc ink_cap.h \ + ink_cap.cc \ + ink_cap.h \ ink_code.cc \ ink_code.h \ ink_defs.cc \ ink_defs.h \ - InkErrno.h \ ink_error.cc \ ink_error.h \ ink_exception.h \ @@ -80,13 +123,11 @@ libtsutil_la_SOURCES = \ ink_inout.h \ ink_llqueue.h \ ink_lockfile.h \ - INK_MD5.h \ ink_memory.cc \ ink_memory.h \ ink_mutex.cc \ ink_mutex.h \ ink_platform.h \ - InkPool.h \ ink_queue.cc \ ink_queue.h \ ink_queue_ext.cc \ @@ -107,55 +148,30 @@ libtsutil_la_SOURCES = \ ink_sprintf.h \ ink_stack_trace.cc \ ink_stack_trace.h \ - ink_string.cc \ ink_string++.cc \ - ink_string.h \ ink_string++.h \ + ink_string.cc \ + ink_string.h \ ink_sys_control.cc \ ink_sys_control.h \ ink_syslog.cc \ ink_syslog.h \ ink_thread.cc \ ink_thread.h \ - EventNotify.h \ - EventNotify.cc \ ink_time.cc \ ink_time.h \ - inktomi++.h \ - fastlz.h \ - fastlz.c \ - I_Version.h \ - List.h \ + libts.h \ llqueue.cc \ - lockfile.cc \ - I_Layout.h \ - IntrusiveDList.h \ - IpMap.h IpMap.cc IpMapConf.h IpMapConf.cc IpMapTest.cc \ - Layout.cc \ - MatcherUtils.cc \ - MatcherUtils.h \ - MimeTable.cc \ - MimeTable.h \ - ParseRules.h \ - ParseRules.cc \ - Ptr.h \ - RawHashTable.cc \ - RawHashTable.h \ - Regex.cc \ - Regex.h \ - Regression.cc \ - Regression.h \ - Resource.cc \ - Resource.h \ - SimpleTokenizer.h \ - TextBuffer.cc \ - TextBuffer.h \ - Tokenizer.cc \ - Tokenizer.h \ - Vec.h \ - Vec.cc \ - Map.h \ - Version.cc + lockfile.cc + + +#test_UNUSED_SOURCES = \ +# load_http_hdr.cc \ +# IntrusivePtrTest.cc \ +# IpMapTest.cc \ +# TestHttpHeader.cc \ +# test_memchr.cc \ +# test_strings.cc # Special hacks to generate the parser rules $(srcdir)/ParseRules.cc: ParseRulesCType http://git-wip-us.apache.org/repos/asf/trafficserver/blob/59013ca9/lib/tsconfig/Makefile.am ---------------------------------------------------------------------- diff --git a/lib/tsconfig/Makefile.am b/lib/tsconfig/Makefile.am index 4e33c6c..7625150 100644 --- a/lib/tsconfig/Makefile.am +++ b/lib/tsconfig/Makefile.am @@ -33,16 +33,19 @@ BUILT_SOURCES = \ CLEANFILES = $(BUILT_SOURCES) libtsconfig_la_SOURCES = \ - TsConfigGrammar.y \ - TsConfigSyntax.l \ Errata.cc \ Errata.h \ - TsErrataUtil.cc \ - TsBuffer.h \ - NumericType.h \ IntrusivePtr.h \ + NumericType.h \ TsBuilder.cc \ TsBuilder.h \ + TsConfigGrammar.y \ + TsConfigLexer.h \ + TsConfigParseEvents.h \ + TsConfigSyntax.l \ + TsConfigTypes.h \ + TsErrataUtil.cc \ + TsErrataUtil.h \ TsValue.cc \ TsValue.h http://git-wip-us.apache.org/repos/asf/trafficserver/blob/59013ca9/lib/wccp/Makefile.am ---------------------------------------------------------------------- diff --git a/lib/wccp/Makefile.am b/lib/wccp/Makefile.am index fafc304..7b01eec 100644 --- a/lib/wccp/Makefile.am +++ b/lib/wccp/Makefile.am @@ -31,11 +31,13 @@ noinst_LIBRARIES = libwccp.a libwccp_a_SOURCES = \ Wccp.h \ + WccpConfig.cc \ + WccpEndPoint.cc \ WccpLocal.h \ - WccpStatic.cc \ + WccpMeta.h \ WccpMsg.cc \ - WccpEndPoint.cc \ - WccpConfig.cc + WccpStatic.cc \ + WccpUtil.h #test_cache_SOURCES = \ -# wccp-test-cache.cc +# wccp-test-cache.cc wccp-test-router.cc http://git-wip-us.apache.org/repos/asf/trafficserver/blob/59013ca9/mgmt/Makefile.am ---------------------------------------------------------------------- diff --git a/mgmt/Makefile.am b/mgmt/Makefile.am index 3b29b21..78673ff 100644 --- a/mgmt/Makefile.am +++ b/mgmt/Makefile.am @@ -58,6 +58,7 @@ libmgmt_p_a_CPPFLAGS = \ -I$(top_srcdir)/lib/records \ -I$(top_srcdir)/lib/ts \ -I$(top_srcdir)/lib + libmgmt_p_a_SOURCES = \ BaseManager.cc \ BaseManager.h \ http://git-wip-us.apache.org/repos/asf/trafficserver/blob/59013ca9/mgmt/cli/Makefile.am ---------------------------------------------------------------------- diff --git a/mgmt/cli/Makefile.am b/mgmt/cli/Makefile.am index 722a9a2..14c893e 100644 --- a/mgmt/cli/Makefile.am +++ b/mgmt/cli/Makefile.am @@ -51,7 +51,6 @@ libtrafficshell_a_SOURCES = \ CliMgmtUtils.cc \ CliMgmtUtils.h \ cliParseArg.cc \ - cli_scriptpaths.h \ commandOptions.h \ ConfigCmd.cc \ ConfigCmd.h \ http://git-wip-us.apache.org/repos/asf/trafficserver/blob/59013ca9/mgmt/preparse/Makefile.am ---------------------------------------------------------------------- diff --git a/mgmt/preparse/Makefile.am b/mgmt/preparse/Makefile.am index ca1df1b..53055dd 100644 --- a/mgmt/preparse/Makefile.am +++ b/mgmt/preparse/Makefile.am @@ -25,6 +25,7 @@ DEFS += $(MGMT_DEFS) noinst_LIBRARIES = libpreparse.a libpreparse_a_SOURCES = \ + IPRange.h \ RemapReadConfig.cc \ SocksParser.cc \ StoreReadConfig.cc http://git-wip-us.apache.org/repos/asf/trafficserver/blob/59013ca9/proxy/Makefile.am ---------------------------------------------------------------------- diff --git a/proxy/Makefile.am b/proxy/Makefile.am index 7a595de..4c9929f 100644 --- a/proxy/Makefile.am +++ b/proxy/Makefile.am @@ -110,10 +110,8 @@ traffic_server_SOURCES = \ PluginVC.h \ Prefetch.cc \ Prefetch.h \ - Raf.h \ ReverseProxy.cc \ ReverseProxy.h \ - RniTransStats.h \ signals.cc \ signals.h \ SocksProxy.cc \ http://git-wip-us.apache.org/repos/asf/trafficserver/blob/59013ca9/proxy/hdrs/Makefile.am ---------------------------------------------------------------------- diff --git a/proxy/hdrs/Makefile.am b/proxy/hdrs/Makefile.am index 21b8ba9..a5be335 100644 --- a/proxy/hdrs/Makefile.am +++ b/proxy/hdrs/Makefile.am @@ -27,15 +27,15 @@ EXTRA_PROGRAMS = load_http_hdr # Http library source files. libhdrs_a_SOURCES = \ + HTTP.cc \ + HTTP.h \ HdrHeap.cc \ HdrHeap.h \ + HdrTSOnly.cc \ HdrToken.cc \ HdrToken.h \ - HdrTSOnly.cc \ HdrUtils.cc \ HdrUtils.h \ - HTTP.cc \ - HTTP.h \ HttpCompat.cc \ HttpCompat.h \ MIME.cc \ @@ -44,17 +44,22 @@ libhdrs_a_SOURCES = \ URL.h if BUILD_TESTS - libhdrs_a_SOURCES += HdrTest.cc \ + libhdrs_a_SOURCES += \ + HdrTest.cc \ HdrTest.h endif load_http_hdr_SOURCES = \ - HdrHeap.h \ HTTP.h \ - load_http_hdr.cc \ - MIME.h + HdrHeap.h \ + MIME.h \ + load_http_hdr.cc load_http_hdr_LDADD = -L. -lhdrs \ $(top_builddir)/lib/ts/libtsutil.la \ @LIBTCL@ load_http_hdr_LDFLAGS = @EXTRA_CXX_LDFLAGS@ @LIBTOOL_LINK_FLAGS@ + +#test_UNUSED_SOURCES = \ +# test_header.cc \ +# test_urlhash.cc http://git-wip-us.apache.org/repos/asf/trafficserver/blob/59013ca9/proxy/http/Makefile.am ---------------------------------------------------------------------- diff --git a/proxy/http/Makefile.am b/proxy/http/Makefile.am index 76b7c6b..2d559e7 100644 --- a/proxy/http/Makefile.am +++ b/proxy/http/Makefile.am @@ -55,16 +55,17 @@ libhttp_a_SOURCES = \ HttpPages.cc \ HttpPages.h \ HttpProxyServerMain.cc \ + HttpProxyServerMain.h \ + HttpSM.cc \ + HttpSM.h \ HttpServerSession.cc \ HttpServerSession.h \ HttpSessionManager.cc \ HttpSessionManager.h \ - HttpSM.cc \ - HttpSM.h \ - HttpTransactCache.cc \ - HttpTransactCache.h \ HttpTransact.cc \ HttpTransact.h \ + HttpTransactCache.cc \ + HttpTransactCache.h \ HttpTransactHeaders.cc \ HttpTransactHeaders.h \ HttpTunnel.cc \ @@ -75,3 +76,9 @@ libhttp_a_SOURCES = \ if BUILD_TESTS libhttp_a_SOURCES += HttpUpdateTester.cc endif + +#test_UNUSED_SOURCES = \ +# TestHttpTransact.cc \ +# TestUrl.cc \ +# test_socket_close.cc \ +# testheaders.cc http://git-wip-us.apache.org/repos/asf/trafficserver/blob/59013ca9/proxy/logging/Makefile.am ---------------------------------------------------------------------- diff --git a/proxy/logging/Makefile.am b/proxy/logging/Makefile.am index ad03909..6014bb4 100644 --- a/proxy/logging/Makefile.am +++ b/proxy/logging/Makefile.am @@ -80,3 +80,7 @@ liblogcollation_a_SOURCES = \ LogCollationClientSM.h \ LogCollationHostSM.cc \ LogCollationHostSM.h + +#test_UNUSED_SOURCES = \ +# LogAccessTest.cc \ +# LogAccessTest.h
