Return-Path: Delivered-To: apmail-xml-xalan-cvs-archive@www.apache.org Received: (qmail 21760 invoked from network); 29 Jul 2004 20:18:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 29 Jul 2004 20:18:15 -0000 Received: (qmail 24735 invoked by uid 500); 29 Jul 2004 20:18:15 -0000 Delivered-To: apmail-xml-xalan-cvs-archive@xml.apache.org Received: (qmail 24664 invoked by uid 500); 29 Jul 2004 20:18:14 -0000 Mailing-List: contact xalan-cvs-help@xml.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: Delivered-To: mailing list xalan-cvs@xml.apache.org Received: (qmail 24651 invoked by uid 99); 29 Jul 2004 20:18:14 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.27.1) with SMTP; Thu, 29 Jul 2004 13:18:13 -0700 Received: (qmail 21746 invoked by uid 1034); 29 Jul 2004 20:18:12 -0000 Date: 29 Jul 2004 20:18:12 -0000 Message-ID: <20040729201812.21745.qmail@minotaur.apache.org> From: dbertoni@apache.org To: xml-xalan-cvs@apache.org Subject: cvs commit: xml-xalan/c/src/xalanc/XalanEXSLT XalanEXSLTDateTime.cpp X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N dbertoni 2004/07/29 13:18:12 Modified: c/src/xalanc/XalanEXSLT XalanEXSLTDateTime.cpp Log: Fixed problem on Tru64. Revision Changes Path 1.8 +6 -2 xml-xalan/c/src/xalanc/XalanEXSLT/XalanEXSLTDateTime.cpp Index: XalanEXSLTDateTime.cpp =================================================================== RCS file: /home/cvs/xml-xalan/c/src/xalanc/XalanEXSLT/XalanEXSLTDateTime.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- XalanEXSLTDateTime.cpp 5 Jul 2004 23:35:07 -0000 1.7 +++ XalanEXSLTDateTime.cpp 29 Jul 2004 20:18:11 -0000 1.8 @@ -94,7 +94,9 @@ }; -#if defined(WIN32) + +#if defined(WIN32) || defined(__DECCXX) + static struct tm * localtime_r(const time_t *clock, struct tm *res) { @@ -135,7 +137,9 @@ } -#endif // WIN32 +#endif // defined(WIN32) || defined(__DECCXX) + + XObjectPtr XalanEXSLTFunctionDateTime::execute( --------------------------------------------------------------------- To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org For additional commands, e-mail: xalan-cvs-help@xml.apache.org