Commit 97cf151d by Tom Tromey Committed by Tom Tromey

natPlainSocketImpl.cc: Don't include headers if java.net is disabled.

	* java/net/natPlainSocketImpl.cc: Don't include headers if
	java.net is disabled.

From-SVN: r29812
parent 05a3dfc7
1999-10-04 Tom Tromey <tromey@cygnus.com>
* java/net/natPlainSocketImpl.cc: Don't include headers if
java.net is disabled.
* Makefile.in: Rebuilt.
* Makefile.am (ZINCS): Removed. This is defined in configure.in
when needed, and must be left empty when not needed.
......
......@@ -8,6 +8,7 @@ details. */
#include <config.h>
#ifndef DISABLE_JAVA_NET
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/time.h>
......@@ -19,6 +20,7 @@ details. */
#include <errno.h>
#include <stdio.h>
#include <string.h>
#endif /* DISABLE_JAVA_NET */
#if HAVE_BSTRING_H
// Needed for bzero, implicitly used by FD_ZERO on IRIX 5.2
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment