Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 84650 invoked from network); 8 Sep 2007 20:38:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 8 Sep 2007 20:38:22 -0000 Received: (qmail 5907 invoked by uid 500); 8 Sep 2007 20:38:16 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 5898 invoked by uid 500); 8 Sep 2007 20:38:16 -0000 Mailing-List: contact stdcxx-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-commits@incubator.apache.org Received: (qmail 5887 invoked by uid 99); 8 Sep 2007 20:38:16 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 08 Sep 2007 13:38:16 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 08 Sep 2007 20:38:22 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id EED9A1A9832; Sat, 8 Sep 2007 13:38:01 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r573904 - in /incubator/stdcxx/trunk/include/ansi: climits limits.h Date: Sat, 08 Sep 2007 20:38:01 -0000 To: stdcxx-commits@incubator.apache.org From: sebor@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20070908203801.EED9A1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebor Date: Sat Sep 8 13:38:00 2007 New Revision: 573904 URL: http://svn.apache.org/viewvc?rev=573904&view=rev Log: 2007-09-07 Travis Vitek STDCXX-436 * limits.h (MB_LEN_MAX): Redefine MB_LEN_MAX if the current value is different from the configured value. * climits (MB_LEN_MAX): Ditto. Modified: incubator/stdcxx/trunk/include/ansi/climits incubator/stdcxx/trunk/include/ansi/limits.h Modified: incubator/stdcxx/trunk/include/ansi/climits URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/include/ansi/climits?rev=573904&r1=573903&r2=573904&view=diff ============================================================================== --- incubator/stdcxx/trunk/include/ansi/climits (original) +++ incubator/stdcxx/trunk/include/ansi/climits Sat Sep 8 13:38:00 2007 @@ -107,4 +107,9 @@ #endif // _RWSTD_NO_PURE_C_HEADERS +#if (MB_LEN_MAX != _RWSTD_MB_LEN_MAX) +# undef MB_LEN_MAX +# define MB_LEN_MAX _RWSTD_MB_LEN_MAX +#endif // MB_LEN_MAX + #endif // _RWSTD_CLIMITS_INCLUDED Modified: incubator/stdcxx/trunk/include/ansi/limits.h URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/include/ansi/limits.h?rev=573904&r1=573903&r2=573904&view=diff ============================================================================== --- incubator/stdcxx/trunk/include/ansi/limits.h (original) +++ incubator/stdcxx/trunk/include/ansi/limits.h Sat Sep 8 13:38:00 2007 @@ -115,4 +115,9 @@ # endif // _POSIX_PATH_MAX #endif // HP-UX +#if (MB_LEN_MAX != _RWSTD_MB_LEN_MAX) +# undef MB_LEN_MAX +# define MB_LEN_MAX _RWSTD_MB_LEN_MAX +#endif // MB_LEN_MAX + #endif // _RWSTD_LIMITS_H_INCLUDED