Changeset 80421 in vbox
- Timestamp:
- Aug 26, 2019 9:40:49 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 132895
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r79836 r80421 115 115 IASL="iasl" 116 116 XSLTPROC="xsltproc" 117 GENISOIMAGE="genisoimage"118 117 INCCRYPTO="" 119 118 LIBCRYPTO="-lssl -lcrypto" -
trunk/configure.vbs
r76553 r80421 2075 2075 2076 2076 PrintResult "Python ", strPathPython 2077 end function2078 2079 2080 '2081 '2082 function CheckForMkisofs(strFnameMkisofs)2083 2084 PrintHdr "mkisofs"2085 2086 CheckForMkisofs = False2087 LogPrint "trying: strFnameMkisofs=" & strFnameMkisofs2088 2089 if FileExists(strFnameMkisofs) = false then2090 LogPrint "Testing '" & strFnameMkisofs & " not found"2091 else2092 CfgPrint "VBOX_MKISOFS := " & strFnameMkisofs2093 CheckForMkisofs = True2094 end if2095 2096 PrintResult "mkisofs ", strFnameMkisofs2097 2077 end function 2098 2078 … … 2132 2112 Print " --with-libcurl32=PATH (only for 64-bit targets)" 2133 2113 Print " --with-python=PATH " 2134 Print " --with-mkisofs=PATH "2135 2114 end sub 2136 2115 … … 2170 2149 strOptCurl32 = "" 2171 2150 strOptPython = "" 2172 strOptMkisofs = ""2173 2151 blnOptDisableCOM = False 2174 2152 blnOptDisableUDPTunnel = False … … 2226 2204 case "--with-python" 2227 2205 strOptPython = strPath 2228 case "--with-mkisofs"2229 strOptMkisofs = strPath2230 2206 case "--disable-com" 2231 2207 blnOptDisableCOM = True … … 2317 2293 CheckForPython strOptPython 2318 2294 end if 2319 if (strOptMkisofs <> "") then2320 CheckForMkisofs strOptMkisofs2321 end if2322 2295 if g_blnInternalMode then 2323 2296 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.