Return-Path: Delivered-To: apmail-ws-axis-c-dev-archive@www.apache.org Received: (qmail 37597 invoked from network); 2 Mar 2006 13:10:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 2 Mar 2006 13:10:23 -0000 Received: (qmail 80712 invoked by uid 500); 2 Mar 2006 13:11:02 -0000 Delivered-To: apmail-ws-axis-c-dev-archive@ws.apache.org Received: (qmail 80698 invoked by uid 500); 2 Mar 2006 13:11:01 -0000 Mailing-List: contact axis-c-dev-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: "Apache AXIS C Developers List" Reply-To: "Apache AXIS C Developers List" Delivered-To: mailing list axis-c-dev@ws.apache.org Received: (qmail 80687 invoked by uid 99); 2 Mar 2006 13:11:01 -0000 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=SPF_FAIL X-Spam-Check-By: apache.org Received: from [192.87.106.226] (HELO ajax.apache.org) (192.87.106.226) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Mar 2006 05:11:00 -0800 Received: from ajax.apache.org (ajax.apache.org [127.0.0.1]) by ajax.apache.org (Postfix) with ESMTP id 416EEDC for ; Thu, 2 Mar 2006 14:10:39 +0100 (CET) Message-ID: <957178920.1141305039254.JavaMail.jira@ajax.apache.org> Date: Thu, 2 Mar 2006 14:10:39 +0100 (CET) From: "John Hawkins (JIRA)" To: axis-c-dev@ws.apache.org Subject: [jira] Created: (AXISCPP-944) ipv6 files not required on vc7 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ipv6 files not required on vc7 ------------------------------ Key: AXISCPP-944 URL: http://issues.apache.org/jira/browse/AXISCPP-944 Project: Axis-C++ Type: Bug Components: Build - ANT Versions: 1.6 Beta Environment: Windows Reporter: John Hawkins Hi, I am now switching to build the latest svn checkout from the 1.5 release on windows. However, another error jumps out: buildVersionResource: [delete] Deleting 2 files from C:\opt\work\simdesk\axisc++\build [copy] Copying 1 file to C:\opt\work\simdesk\axisc++\build [cc] 5 total files to be compiled. [cc] URL.cpp [cc] PlatformSpecificWindows.cpp [cc] HTTPTransportException.cpp [cc] HTTPChannelInstantiator.cpp [cc] c:\opt\work\simdesk\axisc++\src\transport\axis3\HTTPChannel\HTTPChannel.hpp(31) : fat error C1083: Cannot open include file: 'tpipv6.h': No such file or directory [cc] HTTPChannel.cpp [cc] c:\opt\work\simdesk\axisc++\src\transport\axis3\HTTPChannel\HTTPChannel.hpp(31) : fat error C1083: Cannot open include file: 'tpipv6.h': No such file or directory [cc] Generating Code... I think the tpipv6 is only needed for VC6. All the ipv6 stuff is in later winsock2.h. I am using VC7... So I made a small change to accommodate this, pleae see the attached patch.txt for detail. cheers, Tao Index: C:/opt/work/simdesk/axisc++/src/transport/axis3/HTTPChannel/HTTPChannel.hpp =================================================================== --- C:/opt/work/simdesk/axisc++/src/transport/axis3/HTTPChannel/HTTPChannel.hpp (revision 381684) +++ C:/opt/work/simdesk/axisc++/src/transport/axis3/HTTPChannel/HTTPChannel.hpp (working copy) @@ -28,8 +28,10 @@ #ifdef IPV6 #include +#if P_HAS_IPV6 && !defined IPPROTO_IPV6 #include // For IPv6 Tech Preview. #endif +#endif // What version of WinSock is required const int WS_VERSION_REQD = 0x0101; Index: C:/opt/work/simdesk/axisc++/src/transport/axis3/HTTPSSLChannel/HTTPSSLChannel.hpp =================================================================== --- C:/opt/work/simdesk/axisc++/src/transport/axis3/HTTPSSLChannel/HTTPSSLChannel.hpp (revision 381684) +++ C:/opt/work/simdesk/axisc++/src/transport/axis3/HTTPSSLChannel/HTTPSSLChannel.hpp (working copy) @@ -30,8 +30,10 @@ #ifdef IPV6 #include +#if P_HAS_IPV6 && !defined IPPROTO_IPV6 #include // For IPv6 Tech Preview. #endif +#endif // What version of WinSock is required const int WS_VERSION_REQD = 0x0101; -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira