Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 6541 invoked from network); 27 Aug 2009 01:41:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 27 Aug 2009 01:41:30 -0000 Received: (qmail 50637 invoked by uid 500); 27 Aug 2009 01:41:30 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 50535 invoked by uid 500); 27 Aug 2009 01:41:30 -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 50520 invoked by uid 99); 27 Aug 2009 01:41:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Aug 2009 01:41:30 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Thu, 27 Aug 2009 01:41:28 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6F44A23888AD; Thu, 27 Aug 2009 01:41:08 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r808249 - in /httpd/mod_fcgid/trunk/modules/fcgid: fcgid_pm_main.c mod_fcgid.c Date: Thu, 27 Aug 2009 01:41:08 -0000 To: cvs@httpd.apache.org From: wrowe@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090827014108.6F44A23888AD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: wrowe Date: Thu Aug 27 01:41:07 2009 New Revision: 808249 URL: http://svn.apache.org/viewvc?rev=808249&view=rev Log: Moving CORE_PRIVATE to fcgid_pm_main changes our header requirements Modified: httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_main.c httpd/mod_fcgid/trunk/modules/fcgid/mod_fcgid.c Modified: httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_main.c URL: http://svn.apache.org/viewvc/httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_main.c?rev=808249&r1=808248&r2=808249&view=diff ============================================================================== --- httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_main.c (original) +++ httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_main.c Thu Aug 27 01:41:07 2009 @@ -15,12 +15,18 @@ * limitations under the License. */ +/* For DEFAULT_PATH */ +#define CORE_PRIVATE +#include "httpd.h" +#include "http_config.h" + #include "fcgid_pm.h" #include "fcgid_pm_main.h" #include "fcgid_conf.h" #include "fcgid_proctbl.h" #include "fcgid_proc.h" #include "fcgid_spawn_ctl.h" + #define HAS_GRACEFUL_KILL "Gracefulkill" static int g_idle_timeout; Modified: httpd/mod_fcgid/trunk/modules/fcgid/mod_fcgid.c URL: http://svn.apache.org/viewvc/httpd/mod_fcgid/trunk/modules/fcgid/mod_fcgid.c?rev=808249&r1=808248&r2=808249&view=diff ============================================================================== --- httpd/mod_fcgid/trunk/modules/fcgid/mod_fcgid.c (original) +++ httpd/mod_fcgid/trunk/modules/fcgid/mod_fcgid.c Thu Aug 27 01:41:07 2009 @@ -15,10 +15,7 @@ * limitations under the License. */ -#define CORE_PRIVATE - #include "httpd.h" -#include "http_config.h" #include "http_request.h" #include "http_protocol.h" #include "ap_mmn.h"