Skip to content
Snippets Groups Projects
Commit 35cfd291 authored by Tom Tromey's avatar Tom Tromey Committed by Tom Tromey
Browse files

win32.h: Fixed typo in "DISABLE_JAVA_NET".

	* include/win32.h: Fixed typo in "DISABLE_JAVA_NET".
	From Laurent Bardet <l.bardet@magic.fr>.

From-SVN: r60013
parent 40d81ee4
No related branches found
No related tags found
No related merge requests found
2002-12-10 Tom Tromey <tromey@redhat.com>
* include/win32.h: Fixed typo in "DISABLE_JAVA_NET".
From Laurent Bardet <l.bardet@magic.fr>.
2002-12-09 Tom Tromey <tromey@redhat.com> 2002-12-09 Tom Tromey <tromey@redhat.com>
* include/win32.h (_Jv_platform_solib_prefix): New define. * include/win32.h (_Jv_platform_solib_prefix): New define.
......
...@@ -26,7 +26,7 @@ details. */ ...@@ -26,7 +26,7 @@ details. */
#define _Jv_platform_solib_prefix "" #define _Jv_platform_solib_prefix ""
#define _Jv_platform_solib_suffix ".dll" #define _Jv_platform_solib_suffix ".dll"
#ifndef DISBALE_JAVA_NET #ifndef DISABLE_JAVA_NET
// these errors cannot occur on Win32 // these errors cannot occur on Win32
#define ENOTCONN 0 #define ENOTCONN 0
...@@ -36,7 +36,7 @@ details. */ ...@@ -36,7 +36,7 @@ details. */
#define ENOPROTOOPT 109 #define ENOPROTOOPT 109
#endif #endif
#endif // DISBALE_JAVA_NET #endif // DISABLE_JAVA_NET
extern void _Jv_platform_initialize (void); extern void _Jv_platform_initialize (void);
extern void _Jv_platform_initProperties (java::util::Properties*); extern void _Jv_platform_initProperties (java::util::Properties*);
...@@ -48,7 +48,7 @@ _Jv_platform_close_on_exec (jint) ...@@ -48,7 +48,7 @@ _Jv_platform_close_on_exec (jint)
// Ignore. // Ignore.
} }
#ifndef DISBALE_JAVA_NET #ifndef DISABLE_JAVA_NET
static inline int static inline int
_Jv_socket (int domain, int type, int protocol) _Jv_socket (int domain, int type, int protocol)
...@@ -98,7 +98,7 @@ _Jv_read(int s, void *buf, int len) ...@@ -98,7 +98,7 @@ _Jv_read(int s, void *buf, int len)
return ::recv (s, (char*) buf, len, 0); return ::recv (s, (char*) buf, len, 0);
} }
#endif /* DISBALE_JAVA_NET */ #endif /* DISABLE_JAVA_NET */
#define HAVE_BACKTRACE #define HAVE_BACKTRACE
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment