|
Relates :
|
This changeset in hs14 baseline is causing a build failure :-
changeset: 527:2f91f071f4dd
date: Tue Mar 24 14:58:57 2009 -0700
files: src/os/windows/vm/os_windows.cpp
description:
6821003: Update hotspot windows os_win32 for windows 7
The fix is to change the following line from:-
1517 if (productType == VER_NT_WORKSTATION) {
to:-
1517 if (osvi.wProductType == VER_NT_WORKSTATION) {
|