2003-03-24 Michael Koch <konqueror@gmx.de>
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 24 Mar 2003 13:40:44 +0000 (13:40 +0000)
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 24 Mar 2003 13:40:44 +0000 (13:40 +0000)
* java/net/natInetAddressNoNet.cc:
Include stddef.h.
* java/net/natPlainDatagramSocketImplNoNet.cc:
Fixed inlcude of java/net/DatagramPacket.h.
* java/net/natPlainSocketImplNoNet.cc:
Include some missing classes.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@64795 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/java/net/natInetAddressNoNet.cc
libjava/java/net/natPlainDatagramSocketImplNoNet.cc
libjava/java/net/natPlainSocketImplNoNet.cc

index 18400da..dd1e461 100644 (file)
@@ -1,5 +1,14 @@
 2003-03-24  Michael Koch  <konqueror@gmx.de>
 
+       * java/net/natInetAddressNoNet.cc:
+       Include stddef.h.
+       * java/net/natPlainDatagramSocketImplNoNet.cc:
+       Fixed inlcude of java/net/DatagramPacket.h.
+       * java/net/natPlainSocketImplNoNet.cc:
+       Include some missing classes.
+
+2003-03-24  Michael Koch  <konqueror@gmx.de>
+
        * java/awt/dnd/DropTarget.java
        (DropTargetAutoScroller): According to the online documentation, this
        is protected, but in reality it is public.
index d28e6b3..0374af1 100644 (file)
@@ -7,6 +7,7 @@ Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
 details.  */
 
 #include <config.h>
+#include <stddef.h>
 
 #include <java/net/InetAddress.h>
 
index 7c05ee9..a2a08d7 100644 (file)
@@ -12,7 +12,7 @@ details.  */
 #include <java/io/IOException.h>
 #include <java/lang/Object.h>
 #include <java/net/BindException.h>
-#include <java/net/DatagramPacketInetAddress.h>
+#include <java/net/DatagramPacket.h>
 #include <java/net/InetAddress.h>
 #include <java/net/NetworkInterface.h>
 #include <java/net/PlainDatagramSocketImpl.h>
index 67270df..e65438e 100644 (file)
@@ -9,7 +9,11 @@ details.  */
 #include <config.h>
 #include <platform.h>
 
+#include <java/io/IOException.h>
+#include <java/net/BindException.h>
+#include <java/net/ConnectException.h>
 #include <java/net/PlainSocketImpl.h>
+#include <java/net/SocketException.h>
 
 void
 java::net::PlainSocketImpl::create (jboolean)