Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9A56218A9D for ; Tue, 15 Sep 2015 16:12:36 +0000 (UTC) Received: (qmail 37863 invoked by uid 500); 15 Sep 2015 16:12:27 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 37831 invoked by uid 500); 15 Sep 2015 16:12:27 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 37821 invoked by uid 99); 15 Sep 2015 16:12:27 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Sep 2015 16:12:26 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id AE111AC0111 for ; Tue, 15 Sep 2015 16:12:26 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1703243 - /subversion/trunk/subversion/libsvn_subr/utf8proc/utf8proc.h Date: Tue, 15 Sep 2015 16:12:26 -0000 To: commits@subversion.apache.org From: rhuijben@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150915161226.AE111AC0111@hades.apache.org> Author: rhuijben Date: Tue Sep 15 16:12:26 2015 New Revision: 1703243 URL: http://svn.apache.org/r1703243 Log: Following up on r1703239, reintroduce a bit of MSVC ugliness to support old compiler versions. * subversion/libsvn_subr/utf8proc/utf8proc.h (u?int*_t): Define in case they weren't defined. Modified: subversion/trunk/subversion/libsvn_subr/utf8proc/utf8proc.h Modified: subversion/trunk/subversion/libsvn_subr/utf8proc/utf8proc.h URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/utf8proc/utf8proc.h?rev=1703243&r1=1703242&r2=1703243&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_subr/utf8proc/utf8proc.h (original) +++ subversion/trunk/subversion/libsvn_subr/utf8proc/utf8proc.h Tue Sep 15 16:12:26 2015 @@ -96,6 +96,14 @@ #include #else #include +#ifdef _MSC_VER +typedef apr_int8_t int8_t; +typedef apr_uint8_t uint8_t; +typedef apr_int16_t int16_t; +typedef apr_uint16_t uint16_t; +typedef apr_int32_t int32_t; +typedef apr_uint32_t uint32_t; +#endif #endif #ifdef HAVE_STDBOOL_H