You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by jp...@apache.org on 2016/06/29 03:15:21 UTC

[trafficserver] branch fix/cppapi-build created (now 248bbf6)

This is an automated email from the ASF dual-hosted git repository.

jpeach pushed a change to branch fix/cppapi-build
in repository https://git-dual.apache.org/repos/asf/trafficserver.git.

        at  248bbf6   TS-4611: Fix the CPP API plugins to liba against libatscppapi.

This branch includes the following new commits:

       new  248bbf6   TS-4611: Fix the CPP API plugins to liba against libatscppapi.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


-- 
To stop receiving notification emails like this one, please contact
['"commits@trafficserver.apache.org" <co...@trafficserver.apache.org>'].

[trafficserver] 01/01: TS-4611: Fix the CPP API plugins to liba against libatscppapi.

Posted by jp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jpeach pushed a commit to branch fix/cppapi-build
in repository https://git-dual.apache.org/repos/asf/trafficserver.git

commit 248bbf64a488d8bda3507816f788556f210edaf5
Author: James Peach <jp...@apache.org>
AuthorDate: Tue Jun 28 20:03:05 2016 -0700

    TS-4611: Fix the CPP API plugins to liba against libatscppapi.
---
 lib/atscppapi/examples/Makefile.am | 33 +++++++++++++++++++++++++++++----
 1 file changed, 29 insertions(+), 4 deletions(-)

diff --git a/lib/atscppapi/examples/Makefile.am b/lib/atscppapi/examples/Makefile.am
index 33e12ea..f520f47 100644
--- a/lib/atscppapi/examples/Makefile.am
+++ b/lib/atscppapi/examples/Makefile.am
@@ -17,10 +17,6 @@
 
 include $(top_srcdir)/build/plugins.mk
 
-AM_CXXFLAGS += -Wno-unused-variable
-AM_CPPFLAGS += -I$(top_srcdir)/$(subdir)/src/include
-AM_LDFLAGS = $(TS_PLUGIN_LDFLAGS)
-
 plugins = \
 	AsyncHttpFetch.la \
 	AsyncHttpFetchStreaming.la \
@@ -51,6 +47,12 @@ else
 noinst_LTLIBRARIES = $(plugins)
 endif
 
+AM_CXXFLAGS += -Wno-unused-variable
+AM_CPPFLAGS += -I$(top_srcdir)/$(subdir)/src/include
+AM_LDFLAGS = $(TS_PLUGIN_LDFLAGS)
+
+libatscppai = $(top_builddir)/lib/atscppapi/src/libatscppapi.la
+
 AsyncHttpFetchStreaming_la_SOURCES = async_http_fetch_streaming/AsyncHttpFetchStreaming.cc
 AsyncHttpFetch_la_SOURCES = async_http_fetch/AsyncHttpFetch.cc
 AsyncTimer_la_SOURCES = async_timer/AsyncTimer.cc
@@ -73,3 +75,26 @@ TimeoutExamplePlugin_la_SOURCES = timeout_example/TimeoutExamplePlugin.cc
 TransactionHookPlugin_la_SOURCES = transactionhook/TransactionHookPlugin.cc
 boom_la_SOURCES = boom/boom.cc
 intercept_la_SOURCES = intercept/intercept.cc
+
+AsyncHttpFetchStreaming_la_LIBADD = $(libatscppai)
+AsyncHttpFetch_la_LIBADD = $(libatscppai)
+AsyncTimer_la_LIBADD = $(libatscppai)
+ClientRedirect_la_LIBADD = $(libatscppai)
+ClientRequest_la_LIBADD = $(libatscppai)
+CustomErrorRemapPlugin_la_LIBADD = $(libatscppai)
+CustomResponse_la_LIBADD = $(libatscppai)
+GlobalHookPlugin_la_LIBADD = $(libatscppai)
+GzipTransformationPlugin_la_LIBADD = $(libatscppai)
+HelloWorldPlugin_la_LIBADD = $(libatscppai)
+InternalTransactionHandling_la_LIBADD = $(libatscppai)
+LoggerExample_la_LIBADD = $(libatscppai)
+MultipleTransactionHookPlugins_la_LIBADD = $(libatscppai)
+NullTransformationPlugin_la_LIBADD = $(libatscppai)
+PostBuffer_la_LIBADD = $(libatscppai)
+RemapPlugin_la_LIBADD = $(libatscppai)
+ServerResponse_la_LIBADD = $(libatscppai)
+StatExample_la_LIBADD = $(libatscppai)
+TimeoutExamplePlugin_la_LIBADD = $(libatscppai)
+TransactionHookPlugin_la_LIBADD = $(libatscppai)
+boom_la_LIBADD = $(libatscppai)
+intercept_la_LIBADD = $(libatscppai)

-- 
To stop receiving notification emails like this one, please contact
"commits@trafficserver.apache.org" <co...@trafficserver.apache.org>.