Re: [Wireshark-dev] INET6_ADDRSTRLEN redefinition

2008-07-09 Thread John Sullivan
On Wednesday, July 9, 2008, 5:47:45 PM, Yunfan (Andy) Ying wrote: > #ifndef _WIN32 > #define INET6_ADDRSTRLEN 46 > #endif It's probably better to directly #ifndef INET6_ADDRSTRLEN rather than assume that symbol will always be available alongside _WIN32. (The VS6 built-in headers have all the oth

Re: [Wireshark-dev] INET6_ADDRSTRLEN redefinition

2008-07-09 Thread Jeff Morriss
Yunfan (Andy) Ying wrote: > Anyone else run into this issue while compiling Wireshark 1.0.1 on > Windows XP with VS2005? > > The INET6_ADDRSTRLEN defined in packet-ipv6.h seems to conflict with the > INET6_ADDRSTRLEN of ws2tcpip.h in the Platform SDK. A simple #ifndef > _WIN32 block around th

Re: [Wireshark-dev] INET6_ADDRSTRLEN redefinition

2008-07-09 Thread Martin Corraine (mcorrain)
sday, July 09, 2008 12:25 PM To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] INET6_ADDRSTRLEN redefinition ok, I got that error now. I wasn't using the 1.0.1 before. Did you find a work around? -martin From: [EMAIL PROTECTED] [mailto:[

Re: [Wireshark-dev] INET6_ADDRSTRLEN redefinition

2008-07-09 Thread Yunfan (Andy) Ying
gt; *To:* Developer support list for Wireshark > *Subject:* Re: [Wireshark-dev] INET6_ADDRSTRLEN redefinition > > Nope, I'm running on a 32bit version of Windows XP. The svn sources can > build without problems. It's only 1.0.1 that errors out with this > INET6_ADDRSTRLEN

Re: [Wireshark-dev] INET6_ADDRSTRLEN redefinition

2008-07-09 Thread Martin Corraine (mcorrain)
shark Subject: Re: [Wireshark-dev] INET6_ADDRSTRLEN redefinition Nope, I'm running on a 32bit version of Windows XP. The svn sources can build without problems. It's only 1.0.1 that errors out with this INET6_ADDRSTRLEN macro redefinition error. --Andy On Tue, Jul 8, 2008 at 2:25 PM,

Re: [Wireshark-dev] INET6_ADDRSTRLEN redefinition

2008-07-08 Thread Yunfan (Andy) Ying
*To:* wireshark-dev@wireshark.org > *Subject:* [Wireshark-dev] INET6_ADDRSTRLEN redefinition > > Anyone else run into this issue while compiling Wireshark 1.0.1 on Windows > XP with VS2005? > > The INET6_ADDRSTRLEN defined in packet-ipv6.h seems to conflict with the > INET6_ADD

Re: [Wireshark-dev] INET6_ADDRSTRLEN redefinition

2008-07-08 Thread Martin Corraine (mcorrain)
bject: [Wireshark-dev] INET6_ADDRSTRLEN redefinition Anyone else run into this issue while compiling Wireshark 1.0.1 on Windows XP with VS2005? The INET6_ADDRSTRLEN defined in packet-ipv6.h seems to conflict with the INET6_ADDRSTRLEN of ws2tcpip.h in the Platform SDK. A simple #ifndef _WIN32 block a

[Wireshark-dev] INET6_ADDRSTRLEN redefinition

2008-07-08 Thread Yunfan (Andy) Ying
Anyone else run into this issue while compiling Wireshark 1.0.1 on Windows XP with VS2005? The INET6_ADDRSTRLEN defined in packet-ipv6.h seems to conflict with the INET6_ADDRSTRLEN of ws2tcpip.h in the Platform SDK. A simple #ifndef _WIN32 block around that definition seems to fix the issue. --An