Repository: trafficserver Updated Branches: refs/heads/master 69381bb0a -> f06708f5b
TS-4095: Fix the dependency check for the webp_transform plugin This closes #494. Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/f06708f5 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/f06708f5 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/f06708f5 Branch: refs/heads/master Commit: f06708f5b502fd1eef69257a7d0a66081c749e1f Parents: 69381bb Author: John J. Rushford <[email protected]> Authored: Mon Feb 22 17:36:17 2016 +0000 Committer: James Peach <[email protected]> Committed: Mon Feb 22 20:44:26 2016 -0800 ---------------------------------------------------------------------- plugins/experimental/Makefile.am | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/f06708f5/plugins/experimental/Makefile.am ---------------------------------------------------------------------- diff --git a/plugins/experimental/Makefile.am b/plugins/experimental/Makefile.am index 6aa03fc..b4b92aa 100644 --- a/plugins/experimental/Makefile.am +++ b/plugins/experimental/Makefile.am @@ -45,8 +45,11 @@ SUBDIRS = \ url_sig \ xdebug \ mp4 \ - stream_editor \ - webp_transform + stream_editor + +if BUILD_HAS_IMAGEMAGICKCPP + SUBDIRS += webp_transform +endif if HAS_MYSQL SUBDIRS += mysql_remap
