Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 60652D2BF for ; Sun, 7 Oct 2012 06:52:39 +0000 (UTC) Received: (qmail 78869 invoked by uid 500); 7 Oct 2012 06:52:39 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 78669 invoked by uid 500); 7 Oct 2012 06:52:38 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 78660 invoked by uid 99); 7 Oct 2012 06:52:38 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 07 Oct 2012 06:52:38 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 07 Oct 2012 06:52:35 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id A343E23888FE; Sun, 7 Oct 2012 06:51:51 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn propchange: r1390518 - svn:log Date: Sun, 07 Oct 2012 06:51:51 -0000 To: cvs@httpd.apache.org From: kbrand@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121007065151.A343E23888FE@eris.apache.org> Author: kbrand Revision: 1390518 Modified property: svn:log Modified: svn:log at Sun Oct 7 06:51:51 2012 ------------------------------------------------------------------------------ --- svn:log (original) +++ svn:log Sun Oct 7 06:51:51 2012 @@ -1 +1,23 @@ -build: introduce per-module-directory compile/link flags (MOD_CFLAGS etc.) +backport r1385216, r1387610 from trunk: + +Spin off module-specific build options into separate build vars. +[second try, supersedes r1385214] + +Add MOD_CFLAGS, MOD_LDFLAGS variables etc. to the build commands, +which are available to modules for customization on a per-subdir +basis (by adding definitions to modules.mk). Reduces the risk +of side-effects when a module needs to add CFLAGS, LDFLAGS etc. +and these would be added to the global settings (ALL_CFLAGS etc.). + +Adapt build settings for mod_ssl, mod_socache_dc, mod_deflate, +mod_xml2enc, mod_proxy_html, and mod_lua to use the new MOD_xxx +build variables. + +Change PICFLAGS, SHLTCFLAGS and LTCFLAGS into config vars, instead +of AC_SUBSTing them in build/rules.mk.in. For support/ab, introduce +ab_CFLAGS and ab_LDFLAGS, and define explicit make targets where +they appear at the proper position in the build commands. + +Consistently use "--with-xxx=PATH" in configure help strings which +are used to specify a path to the installation directory of an +auxiliary package.