Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 24298 invoked from network); 4 Aug 2010 02:26:09 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 4 Aug 2010 02:26:09 -0000 Received: (qmail 66713 invoked by uid 500); 4 Aug 2010 02:26:09 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 66669 invoked by uid 500); 4 Aug 2010 02:26:09 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 66662 invoked by uid 99); 4 Aug 2010 02:26:09 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Aug 2010 02:26:09 +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; Wed, 04 Aug 2010 02:26:07 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B76092388906; Wed, 4 Aug 2010 02:24:49 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r982100 - in /apr/apr/trunk/include: apr.hnw arch/netware/apr_private.h Date: Wed, 04 Aug 2010 02:24:49 -0000 To: commits@apr.apache.org From: fuankg@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100804022449.B76092388906@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: fuankg Date: Wed Aug 4 02:24:49 2010 New Revision: 982100 URL: http://svn.apache.org/viewvc?rev=982100&view=rev Log: Fixed two other NetWare compiler warnings. Modified: apr/apr/trunk/include/apr.hnw apr/apr/trunk/include/arch/netware/apr_private.h Modified: apr/apr/trunk/include/apr.hnw URL: http://svn.apache.org/viewvc/apr/apr/trunk/include/apr.hnw?rev=982100&r1=982099&r2=982100&view=diff ============================================================================== --- apr/apr/trunk/include/apr.hnw (original) +++ apr/apr/trunk/include/apr.hnw Wed Aug 4 02:24:49 2010 @@ -114,7 +114,7 @@ extern "C" { #ifdef USE_WINSOCK #define APR_HAVE_SYS_SOCKET_H 0 #define APR_HAVE_SYS_SOCKIO_H 0 -#define APR_HAVE_SYS_TIME_H 0 +#define APR_HAVE_SYS_TIME_H 1 #define APR_HAVE_SYS_UN_H 0 #else #define APR_HAVE_SYS_SOCKET_H 1 Modified: apr/apr/trunk/include/arch/netware/apr_private.h URL: http://svn.apache.org/viewvc/apr/apr/trunk/include/arch/netware/apr_private.h?rev=982100&r1=982099&r2=982100&view=diff ============================================================================== --- apr/apr/trunk/include/arch/netware/apr_private.h (original) +++ apr/apr/trunk/include/arch/netware/apr_private.h Wed Aug 4 02:24:49 2010 @@ -163,6 +163,7 @@ void* getStatCache(); and can be shared by the library. */ #undef malloc #define malloc(x) library_malloc(gLibHandle,x) +#define _alloca alloca #if APR_HAS_LARGE_FILES #define APR_OFF_T_STRFN strtoll