configure: Rebuilt.

* configure: Rebuilt.
	* configure.in: Set classpath when invoking gcj.  Use changequote
	around sed invocation.

	* java/net/natPlainSocketImpl.cc: Stub native functions if
	DISABLE_JAVA_NET is defined.
	* java/net/natPlainDatagramSocketImpl.cc (setTimeToLive): Fixed
	typo in exception string.
	(getTimeToLive): Likewise.
	Stub native functions if DISABLE_JAVA_NET is defined.
	* java/net/natInetAddress.cc: Stub native functions if
	DISABLE_JAVA_NET is defined.
	* configure.host: Disable java.net for mips-tx39.
	* configure, include/config.h.in: Rebuilt.
	* acconfig.h (DISABLE_JAVA_NET): Undefine.
	* configure.in: Added --disable-java-net and new define
	`DISABLE_JAVA_NET'.

From-SVN: r29759
This commit is contained in:
Tom Tromey 1999-10-02 00:19:01 +00:00 committed by Tom Tromey
parent 95f1a0447f
commit 4b68fe8a36
9 changed files with 414 additions and 210 deletions

View file

@ -41,6 +41,52 @@ details. */
#include <java/lang/Class.h>
#include <java/lang/Integer.h>
#ifdef DISABLE_JAVA_NET
void
java::net::PlainSocketImpl::create (jboolean)
{
JvThrow (new java::io::IOException (JvNewStringLatin1 ("SocketImpl.create: unimplemented")));
}
void
java::net::PlainSocketImpl::bind (java::net::InetAddress *, jint)
{
JvThrow (new BindException (JvNewStringLatin1 ("SocketImpl.bind: unimplemented")));
}
void
java::net::PlainSocketImpl::connect (java::net::InetAddress *, jint)
{
JvThrow (new ConnectException (JvNewStringLatin1 ("SocketImpl.connect: unimplemented")));
}
void
java::net::PlainSocketImpl::listen (jint)
{
JvThrow (new java::io::IOException (JvNewStringLatin1 ("SocketImpl.listen: unimplemented")));
}
void
java::net::PlainSocketImpl::accept (java::net::PlainSocketImpl *)
{
JvThrow (new java::io::IOException (JvNewStringLatin1 ("SocketImpl.accept: unimplemented")));
}
void
java::net::PlainSocketImpl::setOption (jint, java::lang::Object *)
{
JvThrow (new SocketException (JvNewStringLatin1 ("SocketImpl.setOption: unimplemented")));
}
java::lang::Object *
java::net::PlainSocketImpl::getOption (jint)
{
JvThrow (new SocketException (JvNewStringLatin1 ("SocketImpl.create: unimplemented")));
}
#else /* DISABLE_JAVA_NET */
#ifndef HAVE_SOCKLEN_T
typedef int socklen_t;
#endif
@ -422,3 +468,5 @@ java::net::PlainSocketImpl::getOption (jint optID)
sprintf (msg, "SocketImpl.getOption: %.*s", 80, strerr);
JvThrow (new java::net::SocketException (JvNewStringUTF (msg)));
}
#endif /* DISABLE_JAVA_NET */