ports/java/jdk15/files/patch-deploy::native::msgString.c
Greg Lewis 03fdfe46e6 . Fix javaws.
Approved by:	phantom (maintainer)
2005-10-13 15:12:26 +00:00

13 lines
455 B
C

$FreeBSD$
--- ../../deploy/src/javaws/share/native/msgString.c 19 May 2005 19:55:19 -0000 1.2
+++ ../../deploy/src/javaws/share/native/msgString.c 5 Oct 2005 17:59:39 -0000
@@ -146,7 +146,7 @@
if (value == NULL) {
value = defaultMessage;
}
-#ifdef __OpenBSD__ /* XXXBSD: DISABLE_LOCALE */
+#if defined(__OpenBSD__) || defined(__FreeBSD__) /* XXXBSD: DISABLE_LOCALE */
v2 = strdup(value);
#else
len2 = DecodeMessage(value, wArray);