Date: 13 Feb 2002 14:34:51 -0800 From: Joe Kelsey <joe@zircon.seattle.wa.us> To: java@freebsd.org Subject: Missing piece for native threads Message-ID: <1013639692.98911.3.camel@zircon.zircon.seattle.wa.us>
index | next in thread | raw e-mail
[-- Attachment #1 --] I discovered this problem after testing Greg's patchset and the port patches. If you want to actually compile native threads, then the setting of the variable HPIS in j2sdk1.3.1/make/common/Defs-bsd.gmk has to be done with the ?= operator. The attached patch shows the change. /Joe [-- Attachment #2 --] Index: Defs-bsd.gmk =================================================================== RCS file: /data/java/JDK2/javasrc_1_3_scsl/j2sdk1.3.1/make/common/Defs-bsd.gmk,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- Defs-bsd.gmk 7 Feb 2002 05:23:42 -0000 1.11 +++ Defs-bsd.gmk 13 Feb 2002 22:21:20 -0000 1.12 @@ -6,7 +6,7 @@ # Use is subject to license terms. # -# $Id: Defs-bsd.gmk,v 1.11 2002/02/07 05:23:42 glewis Exp $ +# $Id: Defs-bsd.gmk,v 1.12 2002/02/13 22:21:20 joe Exp $ # # Makefile to specify compiler flags for programs and libraries # targeted to BSD. Should not contain any rules. @@ -184,7 +184,7 @@ # directory here, and say "gnumake HPIS=posix" at the top # level. # -HPIS = green +HPIS ?= green # # As part of the fix for 4251347, sunwjit is turned off by default.help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1013639692.98911.3.camel>
