This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: WIN-30: natInetAddress.cc fixlet
- From: Tom Tromey <tromey at redhat dot com>
- To: Adam Megacz <patches at lists dot megacz dot com>
- Cc: java-patches at gcc dot gnu dot org
- Date: 04 Mar 2002 14:10:02 -0700
- Subject: Re: WIN-30: natInetAddress.cc fixlet
- References: <86pu2qh15y.fsf@megacz.com>
- Reply-to: tromey at redhat dot com
>>>>> "Adam" == Adam Megacz <patches@lists.megacz.com> writes:
Adam> 2002-02-27 Adam Megacz <adam@xwt.org>
Adam> * java/net/natInetAddress.cc: Changed USE_WINSOCK to WIN32, added
Adam> '#undef STRICT'.
One more thing about this patch...
Adam> +#ifdef WIN32
Adam> #include <windows.h>
Adam> #include <winsock.h>
Adam> +#undef STRICT
Would it make sense for us to change all this to just use platform.h?
We could scoop out all the #ifdef crud from several files and then
segregate it according to the platform.
This kind of thing doesn't matter for the branch. I'm thinking about
the long-term maintenance on the trunk.
Tom