From owner-svn-ports-head@FreeBSD.ORG Sat Sep 20 14:23:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 172D87A1; Sat, 20 Sep 2014 14:23:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 024AB9A; Sat, 20 Sep 2014 14:23:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8KENZh2027807; Sat, 20 Sep 2014 14:23:35 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8KENZLm027805; Sat, 20 Sep 2014 14:23:35 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201409201423.s8KENZLm027805@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sat, 20 Sep 2014 14:23:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r368643 - in head/www/mod_amazon_proxy: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Sep 2014 14:23:36 -0000 Author: tota Date: Sat Sep 20 14:23:35 2014 New Revision: 368643 URL: http://svnweb.freebsd.org/changeset/ports/368643 QAT: https://qat.redports.org/buildarchive/r368643/ Log: - Work with Apache 2.4 too - Bump PORTREVISION Added: head/www/mod_amazon_proxy/files/ head/www/mod_amazon_proxy/files/patch-mod_amazon_proxy.c (contents, props changed) Modified: head/www/mod_amazon_proxy/Makefile Modified: head/www/mod_amazon_proxy/Makefile ============================================================================== --- head/www/mod_amazon_proxy/Makefile Sat Sep 20 14:13:41 2014 (r368642) +++ head/www/mod_amazon_proxy/Makefile Sat Sep 20 14:23:35 2014 (r368643) @@ -3,6 +3,7 @@ PORTNAME= mod_amazon_proxy PORTVERSION= 20100913 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= LOCAL MASTER_SITE_SUBDIR= tota/${PORTNAME} @@ -12,8 +13,9 @@ COMMENT= Amazon Auth Proxy for Product A LIB_DEPENDS= libapreq2.so:${PORTSDIR}/www/libapreq2 -USE_APACHE= 22 +USE_APACHE= 22+ AP_FAST_BUILD= yes +AP_LIB= ${LOCALBASE}/lib -lcrypto CONFFILE= httpd-amazon-proxy.conf CONFDIR= ${PREFIX}/${APACHEETCDIR}/Includes Added: head/www/mod_amazon_proxy/files/patch-mod_amazon_proxy.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/mod_amazon_proxy/files/patch-mod_amazon_proxy.c Sat Sep 20 14:23:35 2014 (r368643) @@ -0,0 +1,12 @@ +--- mod_amazon_proxy.c.orig 2010-09-13 22:34:13.000000000 +0900 ++++ mod_amazon_proxy.c 2014-09-20 20:09:28.000000000 +0900 +@@ -25,7 +25,9 @@ + #include "http_protocol.h" + #include "http_log.h" + #include "ap_config.h" ++#include "apr_base64.h" + #include ++#include + + typedef struct { + const char *access_key;