VirtualBox

Changeset 31871 in vbox


Ignore:
Timestamp:
Aug 23, 2010 3:48:47 PM (14 years ago)
Author:
vboxsync
Message:

configure.vbs: added check for mkisofs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.vbs

    r30227 r31871  
    21932193   PrintResult "Python ", strPathPython
    21942194end function
     2195
     2196
     2197'
     2198'
     2199function CheckForMkisofs(strFnameMkisofs)
     2200
     2201   PrintHdr "mkisofs"
     2202
     2203   CheckForMkisofs = False
     2204   LogPrint "trying: strPathMkisofs=" & strPathMkisofs
     2205
     2206   if FileExists(strFnameMkisofs)
     2207      LogPrint "Testing '" & strFnameMkisofs & " not found"
     2208   else
     2209      CfgPrint "VBOX_MKISOFS          := " & strPathMkisofs & "\mkisofs.exe"
     2210      CheckForMkisofs = True
     2211   end if
     2212
     2213   PrintResult "mkisofs ", strFnameMkisofs
     2214end function
     2215
    21952216
    21962217''
     
    22592280   strOptCurl = ""
    22602281   strOptPython = ""
     2282   strOptMkisofs = ""
    22612283   blnOptDisableCOM = False
    22622284   for i = 1 to Wscript.Arguments.Count
     
    23082330         case "--with-python"
    23092331            strOptPython = strPath
     2332         case "--with-mkisofs"
     2333            strOptMkisofs = strPath
    23102334         case "--disable-com"
    23112335            blnOptDisableCOM = True
     
    23742398     CheckForPython strOptPython
    23752399   end if
     2400   if (strOptMkisofs <> "") then
     2401     CheckForMkisofs strOptMkisofs
     2402   end if
    23762403   if g_blnInternalMode then
    23772404      EnvPrint "call " & g_strPathDev & "/env.cmd %1 %2 %3 %4 %5 %6 %7 %8 %9"
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette