This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug libgcj/12388] mingw32 target fails to build libjava
- From: "bryce at mckinlay dot net dot nz" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 25 Sep 2003 03:02:51 -0000
- Subject: [Bug libgcj/12388] mingw32 target fails to build libjava
- References: <20030924093520.12388.brawer@dandelis.ch>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12388
bryce at mckinlay dot net dot nz changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |WAITING
------- Additional Comments From bryce at mckinlay dot net dot nz 2003-09-25 03:02 -------
Sorry about that. My changes to natPlainSocketImplWin32.cc missed a couple of includes. I'm
checking in the fix below, let me know if it works.
Index: natPlainSocketImplWin32.cc
============================================================
=======
RCS file: /cvs/gcc/gcc/libjava/gnu/java/net/natPlainSocketImplWin32.cc,v
retrieving revision 1.3
diff -u -r1.3 natPlainSocketImplWin32.cc
--- natPlainSocketImplWin32.cc 24 Sep 2003 05:38:36 -0000 1.3
+++ natPlainSocketImplWin32.cc 25 Sep 2003 03:00:51 -0000
@@ -14,6 +14,8 @@
#undef MIN_PRIORITY
#include <gnu/java/net/PlainSocketImpl.h>
+#include <gnu/java/net/PlainSocketImpl$SocketInputStream.h>
+#include <gnu/java/net/PlainSocketImpl$SocketOutputStream.h>
#include <java/io/IOException.h>
#include <java/io/InterruptedIOException.h>
#include <java/net/BindException.h>