Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 71794 invoked from network); 15 Jul 2006 09:47:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 15 Jul 2006 09:47:33 -0000 Received: (qmail 93056 invoked by uid 500); 15 Jul 2006 09:47:33 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 93004 invoked by uid 500); 15 Jul 2006 09:47:33 -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 92989 invoked by uid 99); 15 Jul 2006 09:47:33 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 15 Jul 2006 02:47:33 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 15 Jul 2006 02:47:32 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 6F8A51A981A; Sat, 15 Jul 2006 02:47:12 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r422197 - in /httpd/httpd/trunk: configure.in include/ap_config.h Date: Sat, 15 Jul 2006 09:47:11 -0000 To: cvs@httpd.apache.org From: pquerna@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060715094712.6F8A51A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: pquerna Date: Sat Jul 15 02:47:11 2006 New Revision: 422197 URL: http://svn.apache.org/viewvc?rev=422197&view=rev Log: include/ap_config.h: Include the autoconf generated header that defines what is available. configure.in: The times function is not really available on mingw32. Disable em. Modified: httpd/httpd/trunk/configure.in httpd/httpd/trunk/include/ap_config.h Modified: httpd/httpd/trunk/configure.in URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/configure.in?rev=422197&r1=422196&r2=422197&view=diff ============================================================================== --- httpd/httpd/trunk/configure.in (original) +++ httpd/httpd/trunk/configure.in Sat Jul 15 02:47:11 2006 @@ -296,6 +296,7 @@ *mingw32*) APR_SETVAR(APACHE_MPM, [winnt]) APR_ADDTO(CPPFLAGS, [-DAP_DECLARE_EXPORT]) + APR_SETIFNULL(ac_cv_func_times, [no]) ;; *aix*) aixver=`echo $host | sed 's/^[[^0-9]]*//' | sed 's/\.//g'` Modified: httpd/httpd/trunk/include/ap_config.h URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/ap_config.h?rev=422197&r1=422196&r2=422197&view=diff ============================================================================== --- httpd/httpd/trunk/include/ap_config.h (original) +++ httpd/httpd/trunk/include/ap_config.h Sat Jul 15 02:47:11 2006 @@ -230,7 +230,7 @@ APR_OPTIONAL_HOOK(ap,name,fn,pre,succ,order) #include "os.h" -#if !defined(WIN32) && !defined(NETWARE) +#if (!defined(WIN32) && !defined(NETWARE)) || defined(__MINGW32__) #include "ap_config_auto.h" #include "ap_config_layout.h" #endif