One change to add (a by-hand "diff") to common/autoconf/toolchain_windows.m4 :
AC_MSG_CHECKING([for DirectX SDK lib dir]) if test "x$with_dxsdk_lib" != x; then DXSDK_LIB_PATH="$with_dxsdk_lib" elif test "x$OPENJDK_TARGET_CPU" = "xx86_64"; then DXSDK_LIB_PATH="$dxsdk_path/Lib/x64" + elif test -d "$dxsdk_path/Lib/x86"; then + DXSDK_LIB_PATH="$dxsdk_path/Lib/x86" else DXSDK_LIB_PATH="$dxsdk_path/Lib" fi This allows 32-bit configure with DirectX SDK 2010. This assumes that DXSDK 2004 lacks any subdirectory Lib/x86; I haven't seen it yet. It built, I ran an applet demo, so some minor success there, too. I'm keeping notes on what works. More later. David