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 2012/12/11 07:09:16 UTC

git commit: TS-1617: Build cacheurl when experimental plugins are enabled

Updated Branches:
  refs/heads/master 043815e7a -> 09beedb83


TS-1617: Build cacheurl when experimental plugins are enabled


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/09beedb8
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/09beedb8
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/09beedb8

Branch: refs/heads/master
Commit: 09beedb836004dec7dbf91a6ec0aa2b4ec2bf6a4
Parents: 043815e
Author: Aron Xu <ha...@gmail.com>
Authored: Mon Dec 10 22:05:53 2012 -0800
Committer: James Peach <jp...@apache.org>
Committed: Mon Dec 10 22:06:24 2012 -0800

----------------------------------------------------------------------
 CHANGES                                   |    3 +++
 configure.ac                              |    1 +
 plugins/experimental/Makefile.am          |    3 ++-
 plugins/experimental/cacheurl/Makefile.am |   22 ++++++++++++++++++++++
 4 files changed, 28 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/09beedb8/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 39d0ffb..e41e8a8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache Traffic Server 3.3.1
 
+  *) [TS-1617] Build cacheurl when experimental plugins are enabled
+    Author: Aron Xu.
+
   *) [TS-1307] [TS-1422] Changed HostDB handling of IPv4 and
    IPv6. Address resolution preferences can be configured globally and
    per HTTP proxy port. Transparent connections can now fail over even

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/09beedb8/configure.ac
----------------------------------------------------------------------
diff --git a/configure.ac b/configure.ac
index f91bb50..6732ce9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1616,6 +1616,7 @@ AC_CONFIG_FILES([plugins/experimental/gzip/Makefile])
 AC_CONFIG_FILES([plugins/experimental/spdy/Makefile])
 AC_CONFIG_FILES([plugins/experimental/channel_stats/Makefile])
 AC_CONFIG_FILES([plugins/experimental/authproxy/Makefile])
+AC_CONFIG_FILES([plugins/experimental/cacheurl/Makefile])
 # various tools
 AC_CONFIG_FILES([tools/Makefile])
 # example plugins

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/09beedb8/plugins/experimental/Makefile.am
----------------------------------------------------------------------
diff --git a/plugins/experimental/Makefile.am b/plugins/experimental/Makefile.am
index 929efb6..072aa25 100644
--- a/plugins/experimental/Makefile.am
+++ b/plugins/experimental/Makefile.am
@@ -26,5 +26,6 @@ SUBDIRS = \
  gzip \
  spdy \
  channel_stats \
- authproxy
+ authproxy \
+ cacheurl
 endif

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/09beedb8/plugins/experimental/cacheurl/Makefile.am
----------------------------------------------------------------------
diff --git a/plugins/experimental/cacheurl/Makefile.am b/plugins/experimental/cacheurl/Makefile.am
new file mode 100644
index 0000000..e270718
--- /dev/null
+++ b/plugins/experimental/cacheurl/Makefile.am
@@ -0,0 +1,22 @@
+#  Licensed to the Apache Software Foundation (ASF) under one
+#  or more contributor license agreements.  See the NOTICE file
+#  distributed with this work for additional information
+#  regarding copyright ownership.  The ASF licenses this file
+#  to you under the Apache License, Version 2.0 (the
+#  "License"); you may not use this file except in compliance
+#  with the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+#  Unless required by applicable law or agreed to in writing, software
+#  distributed under the License is distributed on an "AS IS" BASIS,
+#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#  See the License for the specific language governing permissions and
+#  limitations under the License.
+
+AM_CPPFLAGS = -I$(top_builddir)/proxy/api -I$(top_srcdir)/proxy/api
+pkglibdir = ${pkglibexecdir}
+
+pkglib_LTLIBRARIES = cacheurl.la
+cacheurl_la_SOURCES = cacheurl.c
+cacheurl_la_LDFLAGS = -avoid-version -module -shared