﻿id,summary,reporter,owner,description,type,status,component,version,resolution,keywords,cc,guest,host
147,Bug of configure.vbs,lifeengines,,"When i was try to structure the build environment,I found the line 930 of configure.vbs can not find the PlatformSDK's root directory when run the script without parameter ""--with-sdk=PATH"",
line 930:if (strPathPSDK = """") And (str <> """") then
I change the line to 
line 930:if (strPathPSDK = """") And (str = """") then
and it's work well.
another is in sub CheckForWin2k3DDK

   if strPathDDK = """" then
      MsgError ""Cannot find a suitable Windows 2003 DDK. Check configure.log and the build requirements.""
      exit sub
   end if

should put after 

   arrSubKeys = RegEnumSubKeys(""HKCU"", ""SOFTWARE\Microsoft\WINDDK"") '' @todo Need some sorting stuff here.
   for Each strSubKey In arrSubKeys
      str = RegGetString(""HKCU\SOFTWARE\Microsoft\WINDDK\"" & strSubKey & ""\SFNDirectory"")
      if (strPathDDK = """") And (str <> """") then
         if CheckForWin2k3DDKSub(str, False) then strPathDDK = str
      end if
   Next
",defect,closed,other,VirtualBox 1.3.6,duplicate,,,other,other
