Git Push Summary

2013-08-11 Thread igalic
Updated Branches: refs/heads/consistent-gzip-error-msgs [deleted] fda89b48d

[1/5] git commit: TS-2106 steal api from gzip plugin

2013-08-11 Thread igalic
Updated Branches: refs/heads/consistent-errors [created] 42306ff72 TS-2106 steal api from gzip plugin because we really, really like the logging API in gzip plugin because it's very detailed. Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit:

[2/5] TS-2106: transform all plugins to new logging non-API

2013-08-11 Thread igalic
http://git-wip-us.apache.org/repos/asf/trafficserver/blob/42306ff7/plugins/header_rewrite/resources.cc -- diff --git a/plugins/header_rewrite/resources.cc b/plugins/header_rewrite/resources.cc index c33dfbf..41b1498 100644 ---

[3/3] git commit: TS-2111 Reduce Boost requirement to v1.33 or later

2013-08-11 Thread zwoop
TS-2111 Reduce Boost requirement to v1.33 or later Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/56d74dee Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/56d74dee Diff:

[2/3] git commit: TS-2112: make libloader compile by default

2013-08-11 Thread zwoop
TS-2112: make libloader compile by default libloader has been considered as stable since it's donation, but it wasn't put into the build by default. We change this now, and we add a convention for how to add plugins in the future. Project:

[1/3] git commit: TS-2129 Check for existence of ExtUtils::MakeMaker

2013-08-11 Thread zwoop
Updated Branches: refs/heads/3.4.x d5046b6cc - 56d74dee0 TS-2129 Check for existence of ExtUtils::MakeMaker Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/35d6c792 Tree:

git commit: TS-2130: pthread_setname_np() detection fails on various platforms

2013-08-11 Thread jpeach
Updated Branches: refs/heads/master ca7b063d0 - f390a8e41 TS-2130: pthread_setname_np() detection fails on various platforms Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/f390a8e4 Tree:

[3/3] git commit: TS-2130: pthread_setname_np() detection fails on various platforms

2013-08-11 Thread zwoop
TS-2130: pthread_setname_np() detection fails on various platforms Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/b7d9570f Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/b7d9570f Diff:

[1/3] git commit: TS-2128: Don't link libGeoIP.so.1 into binaries

2013-08-11 Thread zwoop
Updated Branches: refs/heads/3.4.x 56d74dee0 - b7d9570fc TS-2128: Don't link libGeoIP.so.1 into binaries AC_SEARCH_LIBS always updates $LIBS, but AC_CHECK_LIB doesn't search properly. So we have to introduce a wrapper around AC_SEARCH_LIBS that preserves $LIBS so that we can properly test for

[2/3] git commit: TS-2128: Fix TS_SEARCH_LIBRARY for RHEL5

2013-08-11 Thread zwoop
TS-2128: Fix TS_SEARCH_LIBRARY for RHEL5 Looks like m4_ifval isn't present in older versions of m4, however m4_default is probably a better choice anyway. Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit:

git commit: TS-2126: Avoid unnecessary memory copy in LogHost::write()

2013-08-11 Thread yunkai
Updated Branches: refs/heads/master f390a8e41 - c3a14aafa TS-2126: Avoid unnecessary memory copy in LogHost::write() Now, in LogHost::write (LogBuffer *lb), Another new LogBuffer object will be allocated to copy the content of *lb* parameter. But *lb* will be deleted by the upper function,