1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371
|
' $Id: configure.vbs $
'' @file
' The purpose of this script is to check for all external tools, headers, and
' libraries VBox OSE depends on.
'
' The script generates the build configuration file 'AutoConfig.kmk' and the
' environment setup script 'env.bat'. A log of what has been done is
' written to 'configure.log'.
'
'
' Copyright (C) 2006-2011 Oracle Corporation
'
' This file is part of VirtualBox Open Source Edition (OSE), as
' available from http://www.virtualbox.org. This file is free software;
' you can redistribute it and/or modify it under the terms of the GNU
' General Public License (GPL) as published by the Free Software
' Foundation, in version 2 as it comes in the "COPYING" file of the
' VirtualBox OSE distribution. VirtualBox OSE is distributed in the
' hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
'
'*****************************************************************************
'* Global Variables *
'*****************************************************************************
dim g_strPath, g_strEnvFile, g_strLogFile, g_strCfgFile, g_strShellOutput
g_strPath = Left(Wscript.ScriptFullName, Len(Wscript.ScriptFullName) - Len("\configure.vbs"))
g_strEnvFile = g_strPath & "\env.bat"
g_strCfgFile = g_strPath & "\AutoConfig.kmk"
g_strLogFile = g_strPath & "\configure.log"
'g_strTmpFile = g_strPath & "\configure.tmp"
dim g_objShell, g_objFileSys
Set g_objShell = WScript.CreateObject("WScript.Shell")
Set g_objFileSys = WScript.CreateObject("Scripting.FileSystemObject")
dim g_strPathkBuild, g_strPathkBuildBin, g_strPathDev, g_strPathVCC, g_strPathPSDK, g_strPathDDK, g_strSubOutput
g_strPathkBuild = ""
g_strPathDev = ""
g_strPathVCC = ""
g_strPathPSDK = ""
g_strPathDDK = ""
dim g_blnDisableCOM, g_strDisableCOM
g_blnDisableCOM = False
g_strDisableCOM = ""
' The internal mode is primarily for skipping some large libraries.
dim g_blnInternalMode
g_blnInternalMode = False
' Whether to try the internal stuff first or last.
dim g_blnInternalFirst
g_blnInternalFirst = True
' Whether to try the new tools: Visual Studio 10.0, Windows 7 SDK and WDK.
dim g_blnNewTools
g_blnNewTools = False 'True
''
' Converts to unix slashes
function UnixSlashes(str)
UnixSlashes = replace(str, "\", "/")
end function
''
' Converts to dos slashes
function DosSlashes(str)
DosSlashes = replace(str, "/", "\")
end function
''
' Read a file (typically the tmp file) into a string.
function FileToString(strFilename)
const ForReading = 1, TristateFalse = 0
dim objLogFile, str
set objFile = g_objFileSys.OpenTextFile(DosSlashes(strFilename), ForReading, False, TristateFalse)
str = objFile.ReadAll()
objFile.Close()
FileToString = str
end function
''
' Deletes a file
sub FileDelete(strFilename)
if g_objFileSys.FileExists(DosSlashes(strFilename)) then
g_objFileSys.DeleteFile(DosSlashes(strFilename))
end if
end sub
''
' Appends a line to an ascii file.
sub FileAppendLine(strFilename, str)
const ForAppending = 8, TristateFalse = 0
dim objFile
set objFile = g_objFileSys.OpenTextFile(DosSlashes(strFilename), ForAppending, True, TristateFalse)
objFile.WriteLine(str)
objFile.Close()
end sub
''
' Checks if the file exists.
function FileExists(strFilename)
FileExists = g_objFileSys.FileExists(DosSlashes(strFilename))
end function
''
' Checks if the directory exists.
function DirExists(strDirectory)
DirExists = g_objFileSys.FolderExists(DosSlashes(strDirectory))
end function
''
' Checks if this is a WOW64 process.
function IsWow64()
if g_objShell.Environment("PROCESS")("PROCESSOR_ARCHITEW6432") <> "" then
IsWow64 = 1
else
IsWow64 = 0
end if
end function
''
' Returns a reverse sorted array (strings).
function ArraySortStrings(arrStrings)
for i = LBound(arrStrings) to UBound(arrStrings)
str1 = arrStrings(i)
for j = i + 1 to UBound(arrStrings)
str2 = arrStrings(j)
if StrComp(str2, str1) < 0 then
arrStrings(j) = str1
str1 = str2
end if
next
arrStrings(i) = str1
next
ArraySortStrings = arrStrings
end function
''
' Prints a string array.
sub ArrayPrintStrings(arrStrings, strPrefix)
for i = LBound(arrStrings) to UBound(arrStrings)
Print strPrefix & "arrStrings(" & i & ") = '" & arrStrings(i) & "'"
next
end sub
''
' Returns a reverse sorted array (strings).
function ArrayRSortStrings(arrStrings)
' Sort it.
arrStrings = ArraySortStrings(arrStrings)
' Reverse the array.
cnt = UBound(arrStrings) - LBound(arrStrings) + 1
if cnt > 0 then
j = UBound(arrStrings)
iHalf = Fix(LBound(arrStrings) + cnt / 2)
for i = LBound(arrStrings) to iHalf - 1
strTmp = arrStrings(i)
arrStrings(i) = arrStrings(j)
arrStrings(j) = strTmp
j = j - 1
next
end if
ArrayRSortStrings = arrStrings
end function
''
' Returns the input array with the string appended.
' Note! There must be some better way of doing this...
function ArrayAppend(arr, str)
dim i, cnt
cnt = UBound(arr) - LBound(arr) + 1
redim arrRet(cnt)
for i = LBound(arr) to UBound(arr)
arrRet(i) = arr(i)
next
arrRet(UBound(arr) + 1) = str
ArrayAppend = arrRet
end function
''
' Translates a register root name to a value
function RegTransRoot(strRoot)
const HKEY_LOCAL_MACHINE = &H80000002
const HKEY_CURRENT_USER = &H80000001
select case strRoot
case "HKLM"
RegTransRoot = HKEY_LOCAL_MACHINE
case "HKCU"
RegTransRoot = HKEY_CURRENT_USER
case else
MsgFatal "RegTransRoot: Unknown root: '" & strRoot & "'"
RegTransRoot = 0
end select
end function
'' The registry globals
dim g_objReg, g_objRegCtx
dim g_blnRegistry
g_blnRegistry = false
''
' Init the register provider globals.
function RegInit()
RegInit = false
On Error Resume Next
if g_blnRegistry = false then
set g_objRegCtx = CreateObject("WbemScripting.SWbemNamedValueSet")
' Comment out the following for lines if the cause trouble on your windows version.
if IsWow64() then
g_objRegCtx.Add "__ProviderArchitecture", 64
g_objRegCtx.Add "__RequiredArchitecture", true
end if
set objLocator = CreateObject("Wbemscripting.SWbemLocator")
set objServices = objLocator.ConnectServer("", "root\default", "", "", , , , g_objRegCtx)
set g_objReg = objServices.Get("StdRegProv")
g_blnRegistry = true
end if
RegInit = true
end function
''
' Gets a value from the registry. Returns "" if string wasn't found / valid.
function RegGetString(strName)
RegGetString = ""
if RegInit() then
dim strRoot, strKey, strValue
dim iRoot
' split up into root, key and value parts.
strRoot = left(strName, instr(strName, "\") - 1)
strKey = mid(strName, instr(strName, "\") + 1, instrrev(strName, "\") - instr(strName, "\"))
strValue = mid(strName, instrrev(strName, "\") + 1)
' Must use ExecMethod to call the GetStringValue method because of the context.
Set InParms = g_objReg.Methods_("GetStringValue").Inparameters
InParms.hDefKey = RegTransRoot(strRoot)
InParms.sSubKeyName = strKey
InParms.sValueName = strValue
On Error Resume Next
set OutParms = g_objReg.ExecMethod_("GetStringValue", InParms, , g_objRegCtx)
if OutParms.ReturnValue = 0 then
RegGetString = OutParms.sValue
end if
else
' fallback mode
On Error Resume Next
RegGetString = g_objShell.RegRead(strName)
end if
end function
''
' Returns an array of subkey strings.
function RegEnumSubKeys(strRoot, strKeyPath)
dim iRoot
iRoot = RegTransRoot(strRoot)
RegEnumSubKeys = Array()
if RegInit() then
' Must use ExecMethod to call the EnumKey method because of the context.
Set InParms = g_objReg.Methods_("EnumKey").Inparameters
InParms.hDefKey = RegTransRoot(strRoot)
InParms.sSubKeyName = strKeyPath
On Error Resume Next
set OutParms = g_objReg.ExecMethod_("EnumKey", InParms, , g_objRegCtx)
if OutParms.ReturnValue = 0 then
RegEnumSubKeys = OutParms.sNames
end if
else
' fallback mode
dim objReg, rc, arrSubKeys
set objReg = GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\default:StdRegProv")
On Error Resume Next
rc = objReg.EnumKey(iRoot, strKeyPath, arrSubKeys)
if rc = 0 then
RegEnumSubKeys = arrSubKeys
end if
end if
end function
''
' Returns an array of full path subkey strings.
function RegEnumSubKeysFull(strRoot, strKeyPath)
dim arrTmp
arrTmp = RegEnumSubKeys(strRoot, strKeyPath)
for i = LBound(arrTmp) to UBound(arrTmp)
arrTmp(i) = strKeyPath & "\" & arrTmp(i)
next
RegEnumSubKeysFull = arrTmp
end function
''
' Returns an rsorted array of subkey strings.
function RegEnumSubKeysRSort(strRoot, strKeyPath)
RegEnumSubKeysRSort = ArrayRSortStrings(RegEnumSubKeys(strRoot, strKeyPath))
end function
''
' Returns an rsorted array of subkey strings.
function RegEnumSubKeysFullRSort(strRoot, strKeyPath)
RegEnumSubKeysFullRSort = ArrayRSortStrings(RegEnumSubKeysFull(strRoot, strKeyPath))
end function
''
' Gets the commandline used to invoke the script.
function GetCommandline()
dim str, i
'' @todo find an api for querying it instead of reconstructing it like this...
GetCommandline = "cscript configure.vbs"
for i = 1 to WScript.Arguments.Count
str = WScript.Arguments.Item(i - 1)
if str = "" then
str = """"""
elseif (InStr(1, str, " ")) then
str = """" & str & """"
end if
GetCommandline = GetCommandline & " " & str
next
end function
''
' Gets an environment variable.
function EnvGet(strName)
EnvGet = g_objShell.Environment("PROCESS")(strName)
end function
''
' Sets an environment variable.
sub EnvSet(strName, strValue)
g_objShell.Environment("PROCESS")(strName) = strValue
LogPrint "EnvSet: " & strName & "=" & strValue
end sub
''
' Appends a string to an environment variable
sub EnvAppend(strName, strValue)
dim str
str = g_objShell.Environment("PROCESS")(strName)
g_objShell.Environment("PROCESS")(strName) = str & strValue
LogPrint "EnvAppend: " & strName & "=" & str & strValue
end sub
''
' Prepends a string to an environment variable
sub EnvPrepend(strName, strValue)
dim str
str = g_objShell.Environment("PROCESS")(strName)
g_objShell.Environment("PROCESS")(strName) = strValue & str
LogPrint "EnvPrepend: " & strName & "=" & strValue & str
end sub
''
' Get the path of the parent directory. Returns root if root was specified.
' Expects abs path.
function PathParent(str)
PathParent = g_objFileSys.GetParentFolderName(DosSlashes(str))
end function
''
' Strips the filename from at path.
function PathStripFilename(str)
PathStripFilename = g_objFileSys.GetParentFolderName(DosSlashes(str))
end function
''
' Get the abs path, use the short version if necessary.
function PathAbs(str)
strAbs = g_objFileSys.GetAbsolutePathName(DosSlashes(str))
strParent = g_objFileSys.GetParentFolderName(strAbs)
if strParent = "" then
PathAbs = strAbs
else
strParent = PathAbs(strParent) ' Recurse to resolve parent paths.
PathAbs = g_objFileSys.BuildPath(strParent, g_objFileSys.GetFileName(strAbs))
dim obj
set obj = Nothing
if FileExists(PathAbs) then
set obj = g_objFileSys.GetFile(PathAbs)
elseif DirExists(PathAbs) then
set obj = g_objFileSys.GetFolder(PathAbs)
end if
if not (obj is nothing) then
for each objSub in obj.ParentFolder.SubFolders
if obj.Name = objSub.Name or obj.ShortName = objSub.ShortName then
if InStr(1, objSub.Name, " ") > 0 _
Or InStr(1, objSub.Name, "&") > 0 _
Or InStr(1, objSub.Name, "$") > 0 _
then
PathAbs = g_objFileSys.BuildPath(strParent, objSub.ShortName)
if InStr(1, PathAbs, " ") > 0 _
Or InStr(1, PathAbs, "&") > 0 _
Or InStr(1, PathAbs, "$") > 0 _
then
MsgFatal "PathAbs(" & str & ") attempted to return filename with problematic " _
& "characters in it (" & PathAbs & "). The tool/sdk referenced will probably " _
& "need to be copied or reinstalled to a location without 'spaces', '$', ';' " _
& "or '&' in the path name. (Unless it's a problem with this script of course...)"
end if
else
PathAbs = g_objFileSys.BuildPath(strParent, objSub.Name)
end if
exit for
end if
next
end if
end if
end function
''
' Get the abs path, use the long version.
function PathAbsLong(str)
strAbs = g_objFileSys.GetAbsolutePathName(DosSlashes(str))
strParent = g_objFileSys.GetParentFolderName(strAbs)
if strParent = "" then
PathAbsLong = strAbs
else
strParent = PathAbsLong(strParent) ' Recurse to resolve parent paths.
PathAbsLong = g_objFileSys.BuildPath(strParent, g_objFileSys.GetFileName(strAbs))
dim obj
set obj = Nothing
if FileExists(PathAbsLong) then
set obj = g_objFileSys.GetFile(PathAbsLong)
elseif DirExists(PathAbsLong) then
set obj = g_objFileSys.GetFolder(PathAbsLong)
end if
if not (obj is nothing) then
for each objSub in obj.ParentFolder.SubFolders
if obj.Name = objSub.Name or obj.ShortName = objSub.ShortName then
PathAbsLong = g_objFileSys.BuildPath(strParent, objSub.Name)
exit for
end if
next
end if
end if
end function
''
' Executes a command in the shell catching output in g_strShellOutput
function Shell(strCommand, blnBoth)
dim strShell, strCmdline, objExec, str
strShell = g_objShell.ExpandEnvironmentStrings("%ComSpec%")
if blnBoth = true then
strCmdline = strShell & " /c " & strCommand & " 2>&1"
else
strCmdline = strShell & " /c " & strCommand & " 2>nul"
end if
LogPrint "# Shell: " & strCmdline
Set objExec = g_objShell.Exec(strCmdLine)
g_strShellOutput = objExec.StdOut.ReadAll()
objExec.StdErr.ReadAll()
do while objExec.Status = 0
Wscript.Sleep 20
g_strShellOutput = g_strShellOutput & objExec.StdOut.ReadAll()
objExec.StdErr.ReadAll()
loop
LogPrint "# Status: " & objExec.ExitCode
LogPrint "# Start of Output"
LogPrint g_strShellOutput
LogPrint "# End of Output"
Shell = objExec.ExitCode
end function
''
' Try find the specified file in the path.
function Which(strFile)
dim strPath, iStart, iEnd, str
' the path
strPath = EnvGet("Path")
iStart = 1
do while iStart <= Len(strPath)
iEnd = InStr(iStart, strPath, ";")
if iEnd <= 0 then iEnd = Len(strPath) + 1
if iEnd > iStart then
str = Mid(strPath, iStart, iEnd - iStart) & "/" & strFile
if FileExists(str) then
Which = str
exit function
end if
end if
iStart = iEnd + 1
loop
' registry or somewhere?
Which = ""
end function
''
' Append text to the log file and echo it to stdout
sub Print(str)
LogPrint str
Wscript.Echo str
end sub
''
' Prints a test header
sub PrintHdr(strTest)
LogPrint "***** Checking for " & strTest & " *****"
Wscript.Echo "Checking for " & StrTest & "..."
end sub
''
' Prints a success message
sub PrintResultMsg(strTest, strResult)
LogPrint "** " & strTest & ": " & strResult
Wscript.Echo " Found "& strTest & ": " & strResult
end sub
''
' Prints a successfully detected path
sub PrintResult(strTest, strPath)
strLongPath = PathAbsLong(strPath)
if PathAbs(strPath) <> strLongPath then
LogPrint "** " & strTest & ": " & strPath & " (" & UnixSlashes(strLongPath) & ")"
Wscript.Echo " Found " & strTest & ": " & strPath & " (" & UnixSlashes(strLongPath) & ")"
else
LogPrint "** " & strTest & ": " & strPath
Wscript.Echo " Found " & strTest & ": " & strPath
end if
end sub
''
' Warning message.
sub MsgWarning(strMsg)
Print "warning: " & strMsg
end sub
''
' Fatal error.
sub MsgFatal(strMsg)
Print "fatal error: " & strMsg
Wscript.Quit
end sub
''
' Error message, fatal unless flag to ignore errors is given.
sub MsgError(strMsg)
Print "error: " & strMsg
if g_blnInternalMode = False then
Wscript.Quit
end if
end sub
''
' Write a log header with some basic info.
sub LogInit
FileDelete g_strLogFile
LogPrint "# Log file generated by " & Wscript.ScriptFullName
for i = 1 to WScript.Arguments.Count
LogPrint "# Arg #" & i & ": " & WScript.Arguments.Item(i - 1)
next
if Wscript.Arguments.Count = 0 then
LogPrint "# No arguments given"
end if
LogPrint "# Reconstructed command line: " & GetCommandline()
' some Wscript stuff
LogPrint "# Wscript properties:"
LogPrint "# ScriptName: " & Wscript.ScriptName
LogPrint "# Version: " & Wscript.Version
LogPrint "# Build: " & Wscript.BuildVersion
LogPrint "# Name: " & Wscript.Name
LogPrint "# Full Name: " & Wscript.FullName
LogPrint "# Path: " & Wscript.Path
LogPrint "#"
' the environment
LogPrint "# Environment:"
dim objEnv
for each strVar in g_objShell.Environment("PROCESS")
LogPrint "# " & strVar
next
LogPrint "#"
end sub
''
' Append text to the log file.
sub LogPrint(str)
FileAppendLine g_strLogFile, str
'Wscript.Echo "dbg: " & str
end sub
''
' Checks if the file exists and logs failures.
function LogFileExists(strPath, strFilename)
LogFileExists = FileExists(strPath & "/" & strFilename)
if LogFileExists = False then
LogPrint "Testing '" & strPath & "': " & strFilename & " not found"
end if
end function
''
' Finds the first file matching the pattern.
' If no file is found, log the failure.
function LogFindFile(strPath, strPattern)
dim str
'
' Yes, there are some facy database kinda interface to the filesystem
' however, breaking down the path and constructing a usable query is
' too much hassle. So, we'll do it the unix way...
'
if Shell("dir /B """ & DosSlashes(strPath) & "\" & DosSlashes(strPattern) & """", True) = 0 _
And InStr(1, g_strShellOutput, Chr(13)) > 1 _
then
' return the first word.
LogFindFile = Left(g_strShellOutput, InStr(1, g_strShellOutput, Chr(13)) - 1)
else
LogPrint "Testing '" & strPath & "': " & strPattern & " not found"
LogFindFile = ""
end if
end function
''
' Finds the first directory matching the pattern.
' If no directory is found, log the failure,
' else return the complete path to the found directory.
function LogFindDir(strPath, strPattern)
dim str
'
' Yes, there are some facy database kinda interface to the filesystem
' however, breaking down the path and constructing a usable query is
' too much hassle. So, we'll do it the unix way...
'
' List the alphabetically last names as first entries (with /O-N).
if Shell("dir /B /AD /O-N """ & DosSlashes(strPath) & "\" & DosSlashes(strPattern) & """", True) = 0 _
And InStr(1, g_strShellOutput, Chr(13)) > 1 _
then
' return the first word.
LogFindDir = strPath & "/" & Left(g_strShellOutput, InStr(1, g_strShellOutput, Chr(13)) - 1)
else
LogPrint "Testing '" & strPath & "': " & strPattern & " not found"
LogFindDir = ""
end if
end function
''
' Initializes the config file.
sub CfgInit
FileDelete g_strCfgFile
CfgPrint "# -*- Makefile -*-"
CfgPrint "#"
CfgPrint "# Build configuration generated by " & GetCommandline()
CfgPrint "#"
if g_blnInternalMode = False then
CfgPrint "VBOX_OSE := 1"
end if
end sub
''
' Prints a string to the config file.
sub CfgPrint(str)
FileAppendLine g_strCfgFile, str
end sub
''
' Initializes the environment batch script.
sub EnvInit
FileDelete g_strEnvFile
EnvPrint "@echo off"
EnvPrint "rem"
EnvPrint "rem Environment setup script generated by " & GetCommandline()
EnvPrint "rem"
end sub
''
' Prints a string to the environment batch script.
sub EnvPrint(str)
FileAppendLine g_strEnvFile, str
end sub
''
' No COM
sub DisableCOM(strReason)
if g_blnDisableCOM = False then
LogPrint "Disabled COM components: " & strReason
g_blnDisableCOM = True
g_strDisableCOM = strReason
CfgPrint "VBOX_WITH_MAIN="
CfgPrint "VBOX_WITH_QTGUI="
CfgPrint "VBOX_WITH_VBOXSDL="
CfgPrint "VBOX_WITH_DEBUGGER_GUI="
CfgPrint "VBOX_WITHOUT_COM=1"
end if
end sub
''
' No UDPTunnel
sub DisableUDPTunnel(strReason)
if g_blnDisableUDPTunnel = False then
LogPrint "Disabled UDPTunnel network transport: " & strReason
g_blnDisableUDPTunnel = True
g_strDisableUDPTunnel = strReason
CfgPrint "VBOX_WITH_UDPTUNNEL="
end if
end sub
''
' Checks the the path doesn't contain characters the tools cannot deal with.
sub CheckSourcePath
dim sPwd
sPwd = PathAbs(g_strPath)
if InStr(1, sPwd, " ") > 0 then
MsgError "Source path contains spaces! Please move it. (" & sPwd & ")"
end if
if InStr(1, sPwd, "$") > 0 then
MsgError "Source path contains the '$' char! Please move it. (" & sPwd & ")"
end if
if InStr(1, sPwd, "%") > 0 then
MsgError "Source path contains the '%' char! Please move it. (" & sPwd & ")"
end if
if InStr(1, sPwd, Chr(10)) > 0 _
Or InStr(1, sPwd, Chr(13)) > 0 _
Or InStr(1, sPwd, Chr(9)) > 0 _
then
MsgError "Source path contains control characters! Please move it. (" & sPwd & ")"
end if
Print "Source path: OK"
end sub
''
' Checks for kBuild - very simple :)
sub CheckForkBuild(strOptkBuild)
PrintHdr "kBuild"
'
' Check if there is a 'kmk' in the path somewhere without
' any PATH_KBUILD* stuff around.
'
blnNeedEnvVars = True
g_strPathkBuild = strOptkBuild
g_strPathkBuildBin = ""
if (g_strPathkBuild = "") _
And (EnvGet("PATH_KBUILD") = "") _
And (EnvGet("PATH_KBUILD_BIN") = "") _
And (Shell("kmk.exe --version", True) = 0) _
And (InStr(1,g_strShellOutput, "kBuild Make 0.1") > 0) _
And (InStr(1,g_strShellOutput, "PATH_KBUILD") > 0) _
And (InStr(1,g_strShellOutput, "PATH_KBUILD_BIN") > 0) then
'' @todo Need to parse out the PATH_KBUILD and PATH_KBUILD_BIN values to complete the other tests.
'blnNeedEnvVars = False
MsgWarning "You've installed kBuild it seems. configure.vbs hasn't been updated to " _
& "deal with that yet and will use the one it ships with. Sorry."
end if
'
' Check for the PATH_KBUILD env.var. and fall back on root/kBuild otherwise.
'
if g_strPathkBuild = "" then
g_strPathkBuild = EnvGet("PATH_KBUILD")
if (g_strPathkBuild <> "") and (FileExists(g_strPathkBuild & "/footer.kmk") = False) then
MsgWarning "Ignoring incorrect kBuild path (PATH_KBUILD=" & g_strPathkBuild & ")"
g_strPathkBuild = ""
end if
if g_strPathkBuild = "" then
g_strPathkBuild = g_strPath & "/kBuild"
end if
end if
g_strPathkBuild = UnixSlashes(PathAbs(g_strPathkBuild))
'
' Determin the location of the kBuild binaries.
'
if g_strPathkBuildBin = "" then
dim str2
if EnvGet("PROCESSOR_ARCHITECTURE") = "x86" then
g_strPathkBuildBin = g_strPathkBuild & "/bin/win.x86"
else ' boldly assumes there is only x86 and amd64.
g_strPathkBuildBin = g_strPathkBuild & "/bin/win.amd64"
if FileExists(g_strPathkBuild & "/kmk.exe") = False then
g_strPathkBuildBin = g_strPathkBuild & "/bin/win.x86"
end if
end if
if FileExists(g_strPathkBuild & "/kmk.exe") = False then
g_strPathkBuildBin = g_strPathkBuild & "/bin/win.x86"
end if
end if
'
' Perform basic validations of the kBuild installation.
'
if (FileExists(g_strPathkBuild & "/footer.kmk") = False) _
Or (FileExists(g_strPathkBuild & "/header.kmk") = False) _
Or (FileExists(g_strPathkBuild & "/rules.kmk") = False) then
MsgFatal "Can't find valid kBuild at '" & g_strPathkBuild & "'. Either there is an " _
& "incorrect PATH_KBUILD in the environment or the checkout didn't succeed."
exit sub
end if
if (FileExists(g_strPathkBuildBin & "/kmk.exe") = False) _
Or (FileExists(g_strPathkBuildBin & "/kmk_ash.exe") = False) then
MsgFatal "Can't find valid kBuild binaries at '" & g_strPathkBuildBin & "'. Either there is an " _
& "incorrect PATH_KBUILD in the environment or the checkout didn't succeed."
exit sub
end if
if (Shell(DosSlashes(g_strPathkBuildBin & "/kmk.exe") & " --version", True) <> 0) Then
MsgFatal "Can't execute '" & g_strPathkBuildBin & "/kmk.exe --version'. check configure.log for the out."
exit sub
end if
'
' Check for env.vars that kBuild uses.
'
str = EnvGet("BUILD_TYPE")
if (str <> "") _
And (InStr(1, "|release|debug|profile|kprofile", str) <= 0) then
EnvPrint "set BUILD_TYPE=release"
EnvSet "BUILD_TYPE", "release"
MsgWarning "Found unknown BUILD_TYPE value '" & str &"' in your environment. Setting it to 'release'."
end if
str = EnvGet("BUILD_TARGET")
if (str <> "") _
And (InStr(1, "win|win32|win64", str) <= 0) then '' @todo later only 'win' will be valid. remember to fix this check!
EnvPrint "set BUILD_TARGET=win"
EnvSet "BUILD_TARGET", "win"
MsgWarning "Found unknown BUILD_TARGET value '" & str &"' in your environment. Setting it to 'win32'."
end if
str = EnvGet("BUILD_TARGET_ARCH")
if (str <> "") _
And (InStr(1, "x86|amd64", str) <= 0) then
EnvPrint "set BUILD_TARGET_ARCH=x86"
EnvSet "BUILD_TARGET_ARCH", "x86"
MsgWarning "Found unknown BUILD_TARGET_ARCH value '" & str &"' in your environment. Setting it to 'x86'."
end if
str = EnvGet("BUILD_TARGET_CPU")
' perhaps a bit pedantic this since this isn't clearly define nor used much...
if (str <> "") _
And (InStr(1, "i386|i486|i686|i786|i868|k5|k6|k7|k8", str) <= 0) then
EnvPrint "set BUILD_TARGET_CPU=i386"
EnvSet "BUILD_TARGET_CPU", "i386"
MsgWarning "Found unknown BUILD_TARGET_CPU value '" & str &"' in your environment. Setting it to 'i386'."
end if
str = EnvGet("BUILD_PLATFORM")
if (str <> "") _
And (InStr(1, "win|win32|win64", str) <= 0) then '' @todo later only 'win' will be valid. remember to fix this check!
EnvPrint "set BUILD_PLATFORM=win"
EnvSet "BUILD_PLATFORM", "win"
MsgWarning "Found unknown BUILD_PLATFORM value '" & str &"' in your environment. Setting it to 'win32'."
end if
str = EnvGet("BUILD_PLATFORM_ARCH")
if (str <> "") _
And (InStr(1, "x86|amd64", str) <= 0) then
EnvPrint "set BUILD_PLATFORM_ARCH=x86"
EnvSet "BUILD_PLATFORM_ARCH", "x86"
MsgWarning "Found unknown BUILD_PLATFORM_ARCH value '" & str &"' in your environment. Setting it to 'x86'."
end if
str = EnvGet("BUILD_PLATFORM_CPU")
' perhaps a bit pedantic this since this isn't clearly define nor used much...
if (str <> "") _
And (InStr(1, "i386|i486|i686|i786|i868|k5|k6|k7|k8", str) <= 0) then
EnvPrint "set BUILD_PLATFORM_CPU=i386"
EnvSet "BUILD_PLATFORM_CPU", "i386"
MsgWarning "Found unknown BUILD_PLATFORM_CPU value '" & str &"' in your environment. Setting it to 'i386'."
end if
'
' If PATH_DEV is set, check that it's pointing to something useful.
'
str = EnvGet("PATH_DEV")
g_strPathDev = str
if (str <> "") _
And False then '' @todo add some proper tests here.
strNew = UnixSlashes(g_strPath & "/tools")
EnvPrint "set PATH_DEV=" & strNew
EnvSet "PATH_DEV", strNew
MsgWarning "Found PATH_DEV='" & str &"' in your environment. Setting it to '" & strNew & "'."
g_strPathDev = strNew
end if
if g_strPathDev = "" then g_strPathDev = UnixSlashes(g_strPath & "/tools")
'
' Write PATH_KBUILD to the environment script if necessary.
'
if blnNeedEnvVars = True then
EnvPrint "set PATH_KBUILD=" & g_strPathkBuild
EnvSet "PATH_KBUILD", g_strPathkBuild
EnvPrint "set PATH=" & g_strPathkBuildBin & ";%PATH%"
EnvPrepend "PATH", g_strPathkBuildBin & ";"
end if
PrintResult "kBuild", g_strPathkBuild
PrintResult "kBuild binaries", g_strPathkBuildBin
end sub
''
' Checks for Visual C++ version 7.1, 8 or 10.
sub CheckForVisualCPP(strOptVC, strOptVCCommon, blnOptVCExpressEdition)
dim strPathVC, strPathVCCommon, str, str2, blnNeedMsPDB
PrintHdr "Visual C++"
'
' Try find it...
'
strPathVC = ""
strPathVCCommon = ""
if (strPathVC = "") And (strOptVC <> "") then
if CheckForVisualCPPSub(strOptVC, strOptVCCommon, blnOptVCExpressEdition) then
strPathVC = strOptVC
strPathVCCommon = strOptVCCommon
end if
end if
if (strPathVC = "") And (g_blnInternalFirst = True) Then
if g_blnNewTools Then
strPathVC = g_strPathDev & "/win.x86/vcc/v10"
if CheckForVisualCPPSub(strPathVC, "", blnOptVCExpressEdition) = False then
strPathVC = ""
end if
end if
if strPathVC = "" then
strPathVC = g_strPathDev & "/win.x86/vcc/v8"
if CheckForVisualCPPSub(strPathVC, "", blnOptVCExpressEdition) = False then
strPathVC = g_strPathDev & "/win.x86/vcc/v7"
if CheckForVisualCPPSub(strPathVC, "", blnOptVCExpressEdition) = False then
strPathVC = ""
end if
end if
end if
end if
if (strPathVC = "") _
And (Shell("cl.exe", True) = 0) then
str = Which("cl.exe")
if FileExists(PathStripFilename(strClExe) & "/build.exe") then
' don't know how to deal with this cl.
Warning "Ignoring DDK cl.exe (" & str & ")."
else
strPathVC = PathParent(PathStripFilename(str))
strPathVCCommon = PathParent(strPathVC) & "/Common7"
end if
end if
if (strPathVC = "") And g_blnNewTools then
str = RegGetString("HKLM\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\10.0\Setup\VS\ProductDir")
if str <> "" Then
str2 = str & "Common7"
str = str & "VC"
if CheckForVisualCPPSub(str, str2, blnOptVCExpressEdition) then
strPathVC = str
strPathVCCommon = str2
end if
end if
end if
if (strPathVC = "") And g_blnNewTools then
str = RegGetString("HKLM\SOFTWARE\Microsoft\VisualStudio\10.0\Setup\VS\ProductDir")
if str <> "" Then
str2 = str & "Common7"
str = str & "VC"
if CheckForVisualCPPSub(str, str2, blnOptVCExpressEdition) then
strPathVC = str
strPathVCCommon = str2
end if
end if
end if
if strPathVC = "" then
str = RegGetString("HKLM\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\8.0\Setup\VS\ProductDir")
str2 = RegGetString("HKLM\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\8.0\Setup\VS\EnvironmentDirectory")
if str <> "" And str2 <> "" Then
str = str & "VC"
str2 = PathParent(str2)
if CheckForVisualCPPSub(str, str2, blnOptVCExpressEdition) then
strPathVC = str
strPathVCCommon = str2
end if
end if
end if
if strPathVC = "" then
str = RegGetString("HKLM\SOFTWARE\Microsoft\VisualStudio\8.0\Setup\VS\ProductDir")
str2 = RegGetString("HKLM\SOFTWARE\Microsoft\VisualStudio\8.0\Setup\VS\EnvironmentDirectory")
if str <> "" And str2 <> "" Then
str = str & "VC"
str2 = PathParent(str2)
if CheckForVisualCPPSub(str, str2, blnOptVCExpressEdition) then
strPathVC = str
strPathVCCommon = str2
end if
end if
end if
if strPathVC = "" then
'' @todo check what this really looks like on 7.1
str = RegGetString("HKLM\SOFTWARE\Microsoft\VisualStudio\7.1\Setup\VS\ProductDir")
str2 = RegGetString("HKLM\SOFTWARE\Microsoft\VisualStudio\7.1\Setup\VS\EnvironmentDirectory")
if str <> "" And str2 <> "" Then
str = str & "VC7"
str2 = PathParent(str2)
if CheckForVisualCPPSub(str, str2, blnOptVCExpressEdition) then
strPathVC = str
strPathVCCommon = str2
end if
end if
end if
if strPathVC = "" then
str = RegGetString("HKLM\SOFTWARE\Microsoft\VisualStudio\7.0\Setup\VS\ProductDir")
str2 = RegGetString("HKLM\SOFTWARE\Microsoft\VisualStudio\7.0\Setup\VS\EnvironmentDirectory")
if str <> "" And str2 <> "" Then
str = str & "VC7"
str2 = PathParent(str2)
if CheckForVisualCPPSub(str, str2, blnOptVCExpressEdition) then
strPathVC = str
strPathVCCommon = str2
end if
end if
end if
if strPathVC = "" then
str = RegGetString("HKLM\SOFTWARE\Microsoft\Wow6432Node\VisualStudio\SxS\VC7\8.0")
if str <> "" then
str2 = PathParent(str) & "/Common7"
if CheckForVisualCPPSub(str, str2, blnOptVCExpressEdition) then
strPathVC = str
strPathVCCommon = str2
end if
end if
end if
if strPathVC = "" then
str = RegGetString("HKLM\SOFTWARE\Microsoft\VisualStudio\SxS\VC7\8.0")
if str <> "" then
str2 = PathParent(str) & "/Common7"
if CheckForVisualCPPSub(str, str2, blnOptVCExpressEdition) then
strPathVC = str
strPathVCCommon = str2
end if
end if
end if
' finally check for the express edition.
if strPathVC = "" then
str = RegGetString("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Visual C++ 2005 Express Edition - ENU\InstallLocation")
if str <> "" then
str2 = str & "Common7"
str = str & "VC/"
if CheckForVisualCPPSub(str, str2, blnOptVCExpressEdition) then
strPathVC = str
strPathVCCommon = str2
end if
end if
end if
if (strPathVC = "") And (g_blnInternalFirst = False) Then
strPathVC = g_strPathDev & "/win.x86/vcc/v8"
if CheckForVisualCPPSub(strPathVC, "", blnOptVCExpressEdition) = False then
strPathVC = g_strPathDev & "/win.x86/vcc/v7"
if CheckForVisualCPPSub(strPathVC, "", blnOptVCExpressEdition) = False then
strPathVC = ""
end if
end if
end if
if strPathVC = "" then
MsgError "Cannot find cl.exe (Visual C++) anywhere on your system. Check the build requirements."
exit sub
end if
'
' Clean up the path and determin the VC directory.
'
strPathVC = UnixSlashes(PathAbs(strPathVC))
g_strPathVCC = strPathVC
'
' Check the version.
' We'll have to make sure mspdbXX.dll is somewhere in the PATH.
'
if (strPathVCCommon <> "") Then
EnvAppend "PATH", ";" & strPathVCCommon & "/IDE"
end if
if Shell(DosSlashes(strPathVC & "/bin/cl.exe"), True) <> 0 then
MsgError "Executing '" & strClExe & "' (which we believe to be the Visual C++ compiler driver) failed."
exit sub
end if
if (InStr(1, g_strShellOutput, "Version 13.10") <= 0) _
And (InStr(1, g_strShellOutput, "Version 14.") <= 0) _
And (InStr(1, g_strShellOutput, "Version 16.") <= 0) then
MsgError "The Visual C++ compiler we found ('" & strPathVC & "') isn't 7.1, 8.0 or 10.0. Check the build requirements."
exit sub
end if
'
' Ok, emit build config variables.
'
if InStr(1, g_strShellOutput, "Version 16.") > 0 then
CfgPrint "VBOX_USE_VCC100 := 1"
CfgPrint "PATH_TOOL_VCC100 := " & g_strPathVCC
CfgPrint "PATH_TOOL_VCC100X86 = $(PATH_TOOL_VCC100)"
CfgPrint "PATH_TOOL_VCC100AMD64 = $(PATH_TOOL_VCC100)"
if LogFileExists(strPathVC, "atlmfc/include/atlbase.h") then
PrintResult "Visual C++ v10 with ATL", g_strPathVCC
elseif LogFileExists(g_strPathDDK, "inc/atl71/atlbase.h") _
And LogFileExists(g_strPathDDK, "lib/ATL/i386/atls.lib") then
CfgPrint "TOOL_VCC100X86_MT = $(PATH_SDK_WINPSDK)/Bin/mt.exe"
CfgPrint "TOOL_VCC100AMD64_MT = $(TOOL_VCC100X86_MT)"
CfgPrint "VBOX_WITHOUT_COMPILER_REDIST=1"
CfgPrint "PATH_TOOL_VCC100_ATLMFC_INC = " & g_strPathDDK & "/inc/atl71"
CfgPrint "PATH_TOOL_VCC100_ATLMFC_LIB.amd64 = " & g_strPathDDK & "/lib/ATL/amd64"
CfgPrint "PATH_TOOL_VCC100_ATLMFC_LIB.x86 = " & g_strPathDDK & "/lib/ATL/i386"
CfgPrint "PATH_TOOL_VCC100AMD64_ATLMFC_INC = " & g_strPathDDK & "/inc/atl71"
CfgPrint "PATH_TOOL_VCC100AMD64_ATLMFC_LIB = " & g_strPathDDK & "/lib/ATL/amd64"
CfgPrint "PATH_TOOL_VCC100X86_ATLMFC_INC = " & g_strPathDDK & "/inc/atl71"
CfgPrint "PATH_TOOL_VCC100X86_ATLMFC_LIB = " & g_strPathDDK & "/lib/ATL/i386"
PrintResult "Visual C++ v10 with DDK ATL", g_strPathVCC
else
CfgPrint "TOOL_VCC100X86_MT = $(PATH_SDK_WINPSDK)/Bin/mt.exe"
CfgPrint "TOOL_VCC100AMD64_MT = $(TOOL_VCC100X86_MT)"
CfgPrint "VBOX_WITHOUT_COMPILER_REDIST=1"
DisableCOM "No ATL"
PrintResult "Visual C++ v10 (or later) without ATL", g_strPathVCC
end if
elseif InStr(1, g_strShellOutput, "Version 14.") > 0 then
CfgPrint "VBOX_USE_VCC80 := 1"
CfgPrint "PATH_TOOL_VCC80 := " & g_strPathVCC
CfgPrint "PATH_TOOL_VCC80X86 = $(PATH_TOOL_VCC80)"
CfgPrint "PATH_TOOL_VCC80AMD64 = $(PATH_TOOL_VCC80)"
if blnOptVCExpressEdition _
And LogFileExists(strPathVC, "atlmfc/include/atlbase.h") = False _
then
CfgPrint "TOOL_VCC80X86_MT = $(PATH_SDK_WINPSDK)/Bin/mt.exe"
CfgPrint "TOOL_VCC80AMD64_MT = $(TOOL_VCC80X86_MT)"
CfgPrint "VBOX_WITHOUT_COMPILER_REDIST=1"
DisableCOM "No ATL"
PrintResult "Visual C++ v8 (or later) without ATL", g_strPathVCC
else
PrintResult "Visual C++ v8 (or later)", g_strPathVCC
end if
else
CfgPrint "PATH_TOOL_VCC70 := " & g_strPathVCC
if blnOptVCExpressEdition _
And LogFileExists(strPathVC, "atlmfc/include/atlbase.h") = False _
then
CfgPrint "VBOX_WITHOUT_COMPILER_REDIST=1"
DisableCOM "No ATL"
PrintResult "Visual C++ v7.1 without ATL", g_strPathVCC
else
PrintResult "Visual C++ v7.1", g_strPathVCC
end if
end if
' and the env.bat path fix.
if strPathVCCommon <> "" then
EnvPrint "set PATH=%PATH%;" & strPathVCCommon & "/IDE;"
end if
end sub
''
' Checks if the specified path points to a usable PSDK.
function CheckForVisualCPPSub(strPathVC, strPathVCCommon, blnOptVCExpressEdition)
strPathVC = UnixSlashes(PathAbs(strPathVC))
CheckForVisualCPPSub = False
LogPrint "trying: strPathVC=" & strPathVC & " strPathVCCommon=" & strPathVCCommon & " blnOptVCExpressEdition=" & blnOptVCExpressEdition
if LogFileExists(strPathVC, "bin/cl.exe") _
And LogFileExists(strPathVC, "bin/link.exe") _
And LogFileExists(strPathVC, "include/string.h") _
And LogFileExists(strPathVC, "lib/libcmt.lib") _
And LogFileExists(strPathVC, "lib/msvcrt.lib") _
then
if blnOptVCExpressEdition _
Or ( LogFileExists(strPathVC, "atlmfc/include/atlbase.h") _
And LogFileExists(strPathVC, "atlmfc/lib/atls.lib")) _
Or ( LogFileExists(g_strPathDDK, "inc/atl71/atlbase.h") _
And LogFileExists(g_strPathDDK, "lib/ATL/i386/atls.lib")) _
Then
'' @todo figure out a way we can verify the version/build!
CheckForVisualCPPSub = True
end if
end if
end function
''
' Checks for a platform SDK that works with the compiler
sub CheckForPlatformSDK(strOptSDK)
dim strPathPSDK, str
PrintHdr "Windows Platform SDK (recent)"
strPathPSDK = ""
' Check the supplied argument first.
str = strOptSDK
if str <> "" then
if CheckForPlatformSDKSub(str) then strPathPSDK = str
end if
' The tools location (first).
if strPathPSDK = "" And g_blnInternalFirst then
str = g_strPathDev & "/win.x86/sdk/200604"
if CheckForPlatformSDKSub(str) then strPathPSDK = str
end if
if strPathPSDK = "" And g_blnInternalFirst then
str = g_strPathDev & "/win.x86/sdk/200504"
if CheckForPlatformSDKSub(str) then strPathPSDK = str
end if
if strPathPSDK = "" And g_blnInternalFirst then
str = g_strPathDev & "/win.x86/sdk/200209"
if CheckForPlatformSDKSub(str) then strPathPSDK = str
end if
' Look for it in the environment
str = EnvGet("MSSdk")
if strPathPSDK = "" And str <> "" then
if CheckForPlatformSDKSub(str) then strPathPSDK = str
end if
str = EnvGet("Mstools")
if strPathPSDK = "" And str <> "" then
if CheckForPlatformSDKSub(str) then strPathPSDK = str
end if
' Check if there is one installed with the compiler.
if strPathPSDK = "" And str <> "" then
str = g_strPathVCC & "/PlatformSDK"
if CheckForPlatformSDKSub(str) then strPathPSDK = str
end if
' Check the registry next (ASSUMES sorting). (first pair is vista, second is pre-vista)
arrSubKeys = RegEnumSubKeysRSort("HKLM", "SOFTWARE\Microsoft\Microsoft SDKs\Windows")
for each strSubKey in arrSubKeys
str = RegGetString("HKLM\SOFTWARE\Microsoft\Microsoft SDKs\Windows\" & strSubKey & "\InstallationFolder")
if strPathPSDK = "" And str <> "" then
if CheckForPlatformSDKSub(str) then strPathPSDK = str
end if
Next
arrSubKeys = RegEnumSubKeysRSort("HKCU", "SOFTWARE\Microsoft\Microsoft SDKs\Windows")
for each strSubKey in arrSubKeys
str = RegGetString("HKCU\SOFTWARE\Microsoft\Microsoft SDKs\Windows\" & strSubKey & "\InstallationFolder")
if strPathPSDK = "" And str <> "" then
if CheckForPlatformSDKSub(str) then strPathPSDK = str
end if
Next
arrSubKeys = RegEnumSubKeysRSort("HKLM", "SOFTWARE\Microsoft\MicrosoftSDK\InstalledSDKs")
for each strSubKey in arrSubKeys
str = RegGetString("HKLM\SOFTWARE\Microsoft\MicrosoftSDK\InstalledSDKs\" & strSubKey & "\Install Dir")
if strPathPSDK = "" And str <> "" then
if CheckForPlatformSDKSub(str) then strPathPSDK = str
end if
Next
arrSubKeys = RegEnumSubKeysRSort("HKCU", "SOFTWARE\Microsoft\MicrosoftSDK\InstalledSDKs")
for each strSubKey in arrSubKeys
str = RegGetString("HKCU\SOFTWARE\Microsoft\MicrosoftSDK\InstalledSDKs\" & strSubKey & "\Install Dir")
if strPathPSDK = "" And str <> "" then
if CheckForPlatformSDKSub(str) then strPathPSDK = str
end if
Next
' The tools location (post).
if (strPathPSDK = "") And (g_blnInternalFirst = False) then
str = g_strPathDev & "/win.x86/sdk/200604"
if CheckForPlatformSDKSub(str) then strPathPSDK = str
end if
if (strPathPSDK = "") And (g_blnInternalFirst = False) then
str = g_strPathDev & "/win.x86/sdk/200504"
if CheckForPlatformSDKSub(str) then strPathPSDK = str
end if
if (strPathPSDK = "") And (g_blnInternalFirst = False) then
str = g_strPathDev & "/win.x86/sdk/200209"
if CheckForPlatformSDKSub(str) then strPathPSDK = str
end if
' Give up.
if strPathPSDK = "" then
MsgError "Cannot find a suitable Platform SDK. Check configure.log and the build requirements."
exit sub
end if
'
' Emit the config.
'
strPathPSDK = UnixSlashes(PathAbs(strPathPSDK))
CfgPrint "PATH_SDK_WINPSDK := " & strPathPSDK
CfgPrint "PATH_SDK_WINPSDKINCS = $(PATH_SDK_WINPSDK)"
CfgPrint "PATH_SDK_WIN32SDK = $(PATH_SDK_WINPSDK)"
CfgPrint "PATH_SDK_WIN64SDK = $(PATH_SDK_WINPSDK)"
PrintResult "Windows Platform SDK", strPathPSDK
g_strPathPSDK = strPathPSDK
end sub
''
' Checks if the specified path points to a usable PSDK.
function CheckForPlatformSDKSub(strPathPSDK)
CheckForPlatformSDKSub = False
LogPrint "trying: strPathPSDK=" & strPathPSDK
if LogFileExists(strPathPSDK, "include/Windows.h") _
And LogFileExists(strPathPSDK, "lib/Kernel32.Lib") _
And LogFileExists(strPathPSDK, "lib/User32.Lib") _
then
CheckForPlatformSDKSub = True
end if
end function
''
' Checks for a Windows 2003 DDK or Windows 7 Driver Kit.
sub CheckForWin2k3DDK(strOptDDK)
dim strPathDDK, str, strSubKeys
PrintHdr "Windows 2003 DDK, build 3790 or later"
'
' Find the DDK.
'
strPathDDK = ""
' The specified path.
if strPathDDK = "" And strOptDDK <> "" then
if CheckForWin2k3DDKSub(strOptDDK, True) then strPathDDK = strOptDDK
end if
' The tools location (first).
if strPathDDK = "" And g_blnInternalFirst then
str = g_strPathDev & "/win.x86/ddkwin2k3/200503"
if CheckForWin2k3DDKSub(str, False) then strPathDDK = str
end if
if strPathDDK = "" And g_blnInternalFirst then
str = g_strPathDev & "/win.x86/ddkwin2k3/2004"
if CheckForWin2k3DDKSub(str, False) then strPathDDK = str
end if
' Check the environment
str = EnvGet("DDK_INC_PATH")
if strPathDDK = "" And str <> "" then
str = PathParent(PathParent(str))
if CheckForWin2k3DDKSub(str, True) then strPathDDK = str
end if
str = EnvGet("BASEDIR")
if strPathDDK = "" And str <> "" then
if CheckForWin2k3DDKSub(str, True) then strPathDDK = str
end if
' Some array constants to ease the work.
arrSoftwareKeys = array("SOFTWARE", "SOFTWARE\Wow6432Node")
arrRoots = array("HKLM", "HKCU")
' Windows 7 WDK.
arrLocations = array()
for each strSoftwareKey in arrSoftwareKeys
for each strSubKey in RegEnumSubKeysFull("HKLM", strSoftwareKey & "\Microsoft\KitSetup\configured-kits")
for each strSubKey2 in RegEnumSubKeysFull("HKLM", strSubKey)
str = RegGetString("HKLM\" & strSubKey2 & "\setup-install-location")
if str <> "" then
arrLocations = ArrayAppend(arrLocations, PathAbsLong(str))
end if
next
next
next
arrLocations = ArrayRSortStrings(arrLocations)
' Vista WDK.
for each strRoot in arrRoots
for each strSubKey in RegEnumSubKeysFullRSort(strRoot, "SOFTWARE\Microsoft\WINDDK")
str = RegGetString(strRoot & "\" & strSubKey & "\Setup\BUILD")
if str <> "" then arrLocations = ArrayAppend(arrLocations, PathAbsLong(str))
Next
next
' Pre-Vista WDK?
for each strRoot in arrRoots
for each strSubKey in RegEnumSubKeysFullRSort(strRoot, "SOFTWARE\Microsoft\WINDDK")
str = RegGetString(strRoot & "\" & strSubKey & "\SFNDirectory")
if str <> "" then arrLocations = ArrayAppend(arrLocations, PathAbsLong(str))
Next
next
' Check the locations we've gathered.
for each str in arrLocations
if strPathDDK = "" then
if CheckForWin2k3DDKSub(str, True) then strPathDDK = str
end if
next
' The tools location (post).
if (strPathDDK = "") And (g_blnInternalFirst = False) then
str = g_strPathDev & "/win.x86/ddkwin2k3/200503"
if CheckForWin2k3DDKSub(str, False) then strPathDDK = str
end if
if (strPathDDK = "") And (g_blnInternalFirst = False) then
str = g_strPathDev & "/win.x86/ddkwin2k3/2004"
if CheckForWin2k3DDKSub(str, False) then strPathDDK = str
end if
' Give up.
if strPathDDK = "" then
MsgError "Cannot find a suitable Windows 2003 DDK. Check configure.log and the build requirements."
exit sub
end if
'
' Emit the config.
'
strPathDDK = UnixSlashes(PathAbs(strPathDDK))
if LogFileExists(strPathDDK, "inc/api/ntdef.h") then
CfgPrint "VBOX_USE_WINDDK := 1"
CfgPrint "PATH_SDK_WINDDK := " & strPathDDK
else
CfgPrint "PATH_SDK_W2K3DDK := " & strPathDDK
CfgPrint "PATH_SDK_W2K3DDKX86 = $(PATH_SDK_W2K3DDK)"
CfgPrint "PATH_SDK_W2K3DDKAMD64 = $(PATH_SDK_W2K3DDK)"
end if
PrintResult "Windows 2003 DDK", strPathDDK
g_strPathDDK = strPathDDK
end sub
'' Quick check if the DDK is in the specified directory or not.
function CheckForWin2k3DDKSub(strPathDDK, blnCheckBuild)
CheckForWin2k3DDKSub = False
LogPrint "trying: strPathDDK=" & strPathDDK & " blnCheckBuild=" & blnCheckBuild
if g_blnNewTools _
And LogFileExists(strPathDDK, "inc/api/ntdef.h") _
And LogFileExists(strPathDDK, "lib/wnet/i386/int64.lib") _
then
'' @todo figure out a way we can verify the version/build!
CheckForWin2k3DDKSub = True
end if
if LogFileExists(strPathDDK, "inc/ddk/wnet/ntdef.h") _
And LogFileExists(strPathDDK, "lib/wnet/i386/int64.lib") _
then
'' @todo figure out a way we can verify the version/build!
CheckForWin2k3DDKSub = True
end if
end function
''
' Finds midl.exe
sub CheckForMidl()
dim strMidl
PrintHdr "Midl.exe"
' Skip if no COM/ATL.
if g_blnDisableCOM then
PrintResultMsg "Midl", "Skipped (" & g_strDisableCOM & ")"
exit sub
end if
if LogFileExists(g_strPathPSDK, "bin/Midl.exe") then
strMidl = g_strPathPSDK & "/bin/Midl.exe"
elseif LogFileExists(g_strPathVCC, "Common7/Tools/Bin/Midl.exe") then
strMidl = g_strPathVCC & "/Common7/Tools/Bin/Midl.exe"
elseif LogFileExists(g_strPathDDK, "bin/x86/Midl.exe") then
strMidl = g_strPathDDK & "/bin/x86/Midl.exe"
elseif LogFileExists(g_strPathDDK, "bin/Midl.exe") then
strMidl = g_strPathDDK & "/bin/Midl.exe"
elseif LogFileExists(g_strPathDev, "win.x86/bin/Midl.exe") then
strMidl = g_strPathDev & "/win.x86/bin/Midl.exe"
else
MsgWarning "Midl.exe not found!"
exit sub
end if
CfgPrint "VBOX_MAIN_IDL = " & strMidl
PrintResult "Midl.exe", strMidl
end sub
''
' Checks for a recent DirectX SDK.
sub CheckForDirectXSDK(strOptDXSDK)
dim strPathDXSDK, str, arrSubKeys, arrSubKeys2, strKey, strKey2
PrintHdr "Direct X SDK"
'
' Find the DX SDK.
'
strPathDXSDK = ""
' The specified path.
if (strPathDXSDK = "") And (strOptDXSDK <> "") then
if CheckForDirectXSDKSub(strOptDXSDK) then strPathDXSDK = strOptDXSDK
end if
' The tools location (first).
if (strPathDXSDK = "") And (g_blnInternalFirst = True) then
str = g_strPathDev & "/win.x86/dxsdk/200610"
if CheckForDirectXSDKSub(str) then strPathDXSDK = str
end if
' Check the installer registry (sucks a bit).
arrSubKeys = RegEnumSubKeys("HKLM", "SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData")
for Each strSubKey In arrSubKeys
strKey = "SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\" & strSubKey & "\Products"
arrSubKeys2 = RegEnumSubKeys("HKLM", strKey)
for Each strSubKey2 In arrSubKeys2
strKey2 = "HKLM\" & strKey & "\" & strSubKey2 & "\InstallProperties"
str = RegGetString(strKey2 & "\DisplayName")
if InStr(1, str, "Microsoft DirectX SDK") > 0 then
str = RegGetString(strKey2 & "\InstallLocation")
if (str <> "") And (strPathDXSDK = "") then
if CheckForDirectXSDKSub(str) then
strPathDXSDK = str
Exit For
end if
end if
end if
Next
Next
' The tools location (post).
if (strPathDXSDK = "") And (g_blnInternalFirst = False) then
str = g_strPathDev & "/win.x86/dxsdk/200610"
if CheckForDirectXSDKSub(str) then strPathDXSDK = str
end if
' Give up.
if strPathDXSDK = "" then
MsgError "Cannot find a suitable Direct X SDK. Check configure.log and the build requirements."
exit sub
end if
'
' Emit the config.
'
strPathDXSDK = UnixSlashes(PathAbs(strPathDXSDK))
CfgPrint "PATH_SDK_DXSDK := " & strPathDXSDK
CfgPrint "PATH_SDK_DXSDKX86 = $(PATH_SDK_DXSDK)"
CfgPrint "PATH_SDK_DXSDKAMD64 = $(PATH_SDK_DXSDK)"
PrintResult "Direct X SDK", strPathDXSDK
end sub
'' Quick check if the DXSDK is in the specified directory or not.
function CheckForDirectXSDKSub(strPathDXSDK)
CheckForDirectXSDKSub = False
LogPrint "trying: strPathDXSDK=" & strPathDXSDK
if LogFileExists(strPathDXSDK, "Lib/x86/dxguid.lib") _
then
'' @todo figure out a way we can verify the version/build!
CheckForDirectXSDKSub = True
end if
end function
''
' Checks for a MingW32 suitable for building the recompiler.
'
' strOptW32API is currently ignored.
'
sub CheckForMingW(strOptMingw, strOptW32API)
dim strPathMingW, strPathW32API, str
PrintHdr "MinGW GCC v3.3.x + Binutils + Runtime + W32API"
'
' Find the MinGW and W32API tools.
'
strPathMingW = ""
strPathW32API = ""
' The specified path.
if (strPathMingW = "") And (strOptMingW <> "") then
if CheckForMingWSub(strOptMingW, strOptW32API) then
strPathMingW = strOptMingW
strPathW32API = strOptW32API
end if
end if
' The tools location (first).
if (strPathMingW = "") And (g_blnInternalFirst = True) then
str = g_strPathDev & "/win.x86/mingw32/v3.3.3"
str2 = g_strPathDev & "/win.x86/w32api/v2.5"
if CheckForMingWSub(str, str2) then
strPathMingW = str
strPathW32API = str2
end if
end if
' See if there is any gcc around.
if strPathMingW = "" then
str = Which("mingw32-gcc.exe")
if (str <> "") then
str = PathParent(PathStripFilename(str))
if CheckForMingWSub(str, str) then strPathMingW = str
end if
end if
if strPathMingW = "" then
str = Which("gcc.exe")
if (str <> "") then
str = PathParent(PathStripFilename(str))
if CheckForMingWSub(str, str) then strPathMingW = str
end if
end if
' The tools location (post).
if (strPathMingW = "") And (g_blnInternalFirst = False) then
str = g_strPathDev & "/win.x86/mingw32/v3.3.3"
str2 = g_strPathDev & "/win.x86/w32api/v2.5"
if CheckForMingWSub(str, str2) then
strPathMingW = str
strPathW32API = str2
end if
end if
' Success?
if strPathMingW = "" then
if strOptMingw = "" then
MsgError "Can't locate a suitable MinGW installation. Try specify the path with " _
& "the --with-MinGW=<path> argument. If still no luck, consult the configure.log and the build requirements."
else
MsgError "Can't locate a suitable MinGW installation. Please consult the configure.log and the build requirements."
end if
exit sub
end if
'
' Emit the config.
'
strPathMingW = UnixSlashes(PathAbs(strPathMingW))
CfgPrint "PATH_TOOL_MINGW32 := " & strPathMingW
PrintResult "MinGW (GCC v" & g_strSubOutput & ")", strPathMingW
if (strPathMingW = strPathW32API) Or strPathW32API = "" then
CfgPrint "PATH_SDK_W32API = $(PATH_TOOL_MINGW32)"
else
CfgPrint "PATH_SDK_W32API = " & strPathW32API
PrintResult "W32API", strPathW32API
end if
end sub
''
' Checks if the specified path points to an usable MinGW or not.
function CheckForMingWSub(strPathMingW, strPathW32API)
g_strSubOutput = ""
if strPathW32API = "" then strPathW32API = strPathMingW
LogPrint "trying: strPathMingW=" &strPathMingW & " strPathW32API=" & strPathW32API
if LogFileExists(strPathMingW, "bin/mingw32-gcc.exe") _
And LogFileExists(strPathMingW, "bin/ld.exe") _
And LogFileExists(strPathMingW, "bin/objdump.exe") _
And LogFileExists(strPathMingW, "bin/dllwrap.exe") _
And LogFileExists(strPathMingW, "bin/as.exe") _
And LogFileExists(strPathMingW, "include/string.h") _
And LogFileExists(strPathMingW, "include/_mingw.h") _
And LogFileExists(strPathMingW, "lib/dllcrt1.o") _
And LogFileExists(strPathMingW, "lib/dllcrt2.o") _
And LogFileExists(strPathMingW, "lib/libmsvcrt.a") _
_
And LogFileExists(strPathW32API, "lib/libkernel32.a") _
And LogFileExists(strPathW32API, "include/windows.h") _
then
if Shell(DosSlashes(strPathMingW & "/bin/gcc.exe") & " --version", True) = 0 then
dim offVer, iMajor, iMinor, iPatch, strVer
' extract the version.
strVer = ""
offVer = InStr(1, g_strShellOutput, "(GCC) ")
if offVer > 0 then
strVer = LTrim(Mid(g_strShellOutput, offVer + Len("(GCC) ")))
strVer = RTrim(Left(strVer, InStr(1, strVer, " ")))
if (Mid(strVer, 2, 1) = ".") _
And (Mid(strVer, 4, 1) = ".") then
iMajor = Int(Left(strVer, 1)) ' Is Int() the right thing here? I want atoi()!!!
iMinor = Int(Mid(strVer, 3, 1))
iPatch = Int(Mid(strVer, 5))
else
LogPrint "Malformed version: '" & strVer & "'"
strVer = ""
end if
end if
if strVer <> "" then
if (iMajor = 3) And (iMinor = 3) then
CheckForMingWSub = True
g_strSubOutput = strVer
else
LogPrint "MinGW version '" & iMajor & "." & iMinor & "." & iPatch & "' is not supported (or configure.vbs failed to parse it correctly)."
end if
else
LogPrint "Couldn't locate the GCC version in the output!"
end if
else
LogPrint "Failed to run gcc.exe!"
end if
end if
end function
''
' Checks for any libSDL binaries.
sub CheckForlibSDL(strOptlibSDL)
dim strPathlibSDL, str
PrintHdr "libSDL"
'
' Try find some SDL library.
'
' First, the specific location.
strPathlibSDL = ""
if (strPathlibSDL = "") And (strOptlibSDL <> "") then
if CheckForlibSDLSub(strOptlibSDL) then strPathlibSDL = strOptlibSDL
end if
' The tools location (first).
if (strPathlibSDL = "") And (g_blnInternalFirst = True) Then
str = g_strPathDev & "/win.x86/libsdl/v1.2.11"
if CheckForlibSDLSub(str) then strPathlibSDL = str
end if
if (strPathlibSDL = "") And (g_blnInternalFirst = True) Then
str = g_strPathDev & "/win.x86/libsdl/v1.2.7-InnoTek"
if CheckForlibSDLSub(str) then strPathlibSDL = str
end if
' Poke about in the path.
str = Which("SDLmain.lib")
if (strPathlibSDL = "") And (str <> "") Then
str = PathParent(PathStripFilename(str))
if CheckForlibSDLSub(str) then strPathlibSDL = str
end if
str = Which("SDL.dll")
if (strPathlibSDL = "") And (str <> "") Then
str = PathParent(PathStripFilename(str))
if CheckForlibSDLSub(str) then strPathlibSDL = str
end if
' The tools location (post).
if (strPathlibSDL = "") And (g_blnInternalFirst = False) Then
str = g_strPathDev & "/win.x86/libsdl/v1.2.11"
if CheckForlibSDLSub(str) then strPathlibSDL = str
end if
if (strPathlibSDL = "") And (g_blnInternalFirst = False) Then
str = g_strPathDev & "/win.x86/libsdl/v1.2.7-InnoTek"
if CheckForlibSDLSub(str) then strPathlibSDL = str
end if
' Success?
if strPathlibSDL = "" then
if strOptlibSDL = "" then
MsgError "Can't locate libSDL. Try specify the path with the --with-libSDL=<path> argument. " _
& "If still no luck, consult the configure.log and the build requirements."
else
MsgError "Can't locate libSDL. Please consult the configure.log and the build requirements."
end if
exit sub
end if
strPathLibSDL = UnixSlashes(PathAbs(strPathLibSDL))
CfgPrint "PATH_SDK_LIBSDL := " & strPathlibSDL
PrintResult "libSDL", strPathlibSDL
end sub
''
' Checks if the specified path points to an usable libSDL or not.
function CheckForlibSDLSub(strPathlibSDL)
CheckForlibSDLSub = False
LogPrint "trying: strPathlibSDL=" & strPathlibSDL
if LogFileExists(strPathlibSDL, "lib/SDL.lib") _
And LogFileExists(strPathlibSDL, "lib/SDLmain.lib") _
And LogFileExists(strPathlibSDL, "lib/SDL.dll") _
And LogFileExists(strPathlibSDL, "include/SDL.h") _
And LogFileExists(strPathlibSDL, "include/SDL_syswm.h") _
And LogFileExists(strPathlibSDL, "include/SDL_version.h") _
then
CheckForlibSDLSub = True
end if
end function
''
' Checks for libxml2.
sub CheckForXml2(strOptXml2)
dim strPathXml2, str
PrintHdr "libxml2"
' Skip if no COM/ATL.
if g_blnDisableCOM then
PrintResultMsg "libxml2", "Skipped (" & g_strDisableCOM & ")"
exit sub
end if
'
' Try find some xml2 dll/lib.
'
strPathXml2 = ""
if (strPathXml2 = "") And (strOptXml2 <> "") then
if CheckForXml2Sub(strOptXml2) then strPathXml2 = strOptXml2
end if
if strPathXml2 = "" Then
str = Which("libxml2.lib")
if str <> "" Then
str = PathParent(PathStripFilename(str))
if CheckForXml2Sub(str) then strPathXml2 = str
end if
end if
' Ignore failure if we're in 'internal' mode.
if (strPathXml2 = "") and g_blnInternalMode then
PrintResultMsg "libxml2", "ignored (internal mode)"
exit sub
end if
' Success?
if strPathXml2 = "" then
if strOptXml2 = "" then
MsgError "Can't locate libxml2. Try specify the path with the --with-libxml2=<path> argument. " _
& "If still no luck, consult the configure.log and the build requirements."
else
MsgError "Can't locate libxml2. Please consult the configure.log and the build requirements."
end if
exit sub
end if
strPathXml2 = UnixSlashes(PathAbs(strPathXml2))
CfgPrint "SDK_VBOX_LIBXML2_INCS := " & strPathXml2 & "/include"
CfgPrint "SDK_VBOX_LIBXML2_LIBS := " & strPathXml2 & "/lib/libxml2.lib"
PrintResult "libxml2", strPathXml2
end sub
''
' Checks if the specified path points to an usable libxml2 or not.
function CheckForXml2Sub(strPathXml2)
dim str
CheckForXml2Sub = False
LogPrint "trying: strPathXml2=" & strPathXml2
if LogFileExists(strPathXml2, "include/libxml/xmlexports.h") _
And LogFileExists(strPathXml2, "include/libxml/xmlreader.h") _
then
str = LogFindFile(strPathXml2, "bin/libxml2.dll")
if str <> "" then
if LogFindFile(strPathXml2, "lib/libxml2.lib") <> "" then
CheckForXml2Sub = True
end if
end if
end if
end function
''
' Checks for libxslt.
sub CheckForXslt(strOptXslt)
dim strPathXslt, str
PrintHdr "libxslt"
' Skip if no COM/ATL.
if g_blnDisableCOM then
PrintResultMsg "libxslt", "Skipped (" & g_strDisableCOM & ")"
exit sub
end if
'
' Try find some libxslt dll/lib.
'
strPathXslt = ""
if (strPathXslt = "") And (strOptXslt <> "") then
if CheckForXsltSub(strOptXslt) then strPathXslt = strOptXslt
end if
if strPathXslt = "" Then
str = Which("libxslt.lib")
if str <> "" Then
str = PathParent(PathStripFilename(str))
if CheckForXsltSub(str) then strPathXslt = str
end if
end if
if strPathXslt = "" Then
str = Which("libxslt.dll")
if str <> "" Then
str = PathParent(PathStripFilename(str))
if CheckForXsltSub(str) then strPathXslt = str
end if
end if
' Ignore failure if we're in 'internal' mode.
if (strPathXslt = "") and g_blnInternalMode then
PrintResultMsg "libxslt", "ignored (internal mode)"
exit sub
end if
' Success?
if strPathXslt = "" then
if strOptXslt = "" then
MsgError "Can't locate libxslt. Try specify the path with the --with-libxslt=<path> argument. " _
& "If still no luck, consult the configure.log and the build requirements."
else
MsgError "Can't locate libxslt. Please consult the configure.log and the build requirements."
end if
exit sub
end if
strPathXslt = UnixSlashes(PathAbs(strPathXslt))
CfgPrint "SDK_VBOX_LIBXSLT_INCS := " & strPathXslt & "/include"
CfgPrint "SDK_VBOX_LIBXSLT_LIBS := " & strPathXslt & "/lib/libxslt.lib"
PrintResult "libxslt", strPathXslt
end sub
''
' Checks if the specified path points to an usable libxslt or not.
function CheckForXsltSub(strPathXslt)
dim str
CheckForXsltSub = False
LogPrint "trying: strPathXslt=" & strPathXslt
if LogFileExists(strPathXslt, "include/libxslt/namespaces.h") _
And LogFileExists(strPathXslt, "include/libxslt/xsltutils.h") _
then
str = LogFindFile(strPathXslt, "lib/libxslt.dll")
if str <> "" then
if LogFileExists(strPathXslt, "lib/libxslt.lib") _
then
CheckForXsltSub = True
end if
end if
end if
end function
''
' Checks for openssl
sub CheckForSsl(strOptSsl)
dim strPathSsl, str
PrintHdr "openssl"
'
' Try find some openssl dll/lib.
'
strPathSsl = ""
if (strPathSsl = "") And (strOptSsl <> "") then
if CheckForSslSub(strOptSsl) then strPathSsl = strOptSsl
end if
if strPathSsl = "" Then
str = Which("ssleay32.lib")
if str <> "" Then
str = PathParent(PathStripFilename(str))
if CheckForSslSub(str) then strPathSsl = str
end if
end if
' Ignore failure if we're in 'internal' mode.
if (strPathSsl = "") and g_blnInternalMode then
PrintResultMsg "openssl", "ignored (internal mode)"
exit sub
end if
' Success?
if strPathSsl = "" then
if strOptSsl = "" then
MsgError "Can't locate openssl. Try specify the path with the --with-openssl=<path> argument. " _
& "If still no luck, consult the configure.log and the build requirements."
else
MsgError "Can't locate openssl. Please consult the configure.log and the build requirements."
end if
exit sub
end if
strPathSsl = UnixSlashes(PathAbs(strPathSsl))
CfgPrint "SDK_VBOX_OPENSSL_INCS := " & strPathSsl & "/include"
CfgPrint "SDK_VBOX_OPENSSL_LIBS := " & strPathSsl & "/lib/ssleay32.lib" & " " & strPathSsl & "/lib/libeay32.lib"
CfgPrint "SDK_VBOX_BLD_OPENSSL_LIBS := " & strPathSsl & "/lib/ssleay32.lib" & " " & strPathSsl & "/lib/libeay32.lib"
PrintResult "openssl", strPathSsl
end sub
''
' Checks if the specified path points to an usable openssl or not.
function CheckForSslSub(strPathSsl)
CheckForSslSub = False
LogPrint "trying: strPathSsl=" & strPathSsl
if LogFileExists(strPathSsl, "include/openssl/md5.h") _
And LogFindFile(strPathSsl, "bin/ssleay32.dll") <> "" _
And LogFindFile(strPathSsl, "lib/ssleay32.lib") <> "" _
And LogFindFile(strPathSsl, "bin/libeay32.dll") <> "" _
And LogFindFile(strPathSsl, "lib/libeay32.lib") <> "" _
then
CheckForSslSub = True
end if
end function
''
''
' Checks for any Qt4 binaries.
sub CheckForQt4(strOptQt4)
dim strPathQt4
PrintHdr "Qt4"
'
' Try to find the Qt4 installation (user specified path with --with-qt4)
'
strPathQt4 = ""
LogPrint "Checking for user specified path of Qt4 ... "
if (strPathQt4 = "") And (strOptQt4 <> "") then
strOptQt4 = UnixSlashes(strOptQt4)
if CheckForQt4Sub(strOptQt4) then strPathQt4 = strOptQt4
end if
if strPathQt4 = "" then
CfgPrint "VBOX_WITH_QT4GUI="
PrintResultMsg "Qt4", "not found"
else
CfgPrint "PATH_SDK_QT4 := " & strPathQt4
CfgPrint "PATH_TOOL_QT4 = $(PATH_SDK_QT4)"
CfgPrint "VBOX_PATH_QT4 = $(PATH_SDK_QT4)"
PrintResult "Qt4 ", strPathQt4
end if
end sub
'
'
function CheckForQt4Sub(strPathQt4)
CheckForQt4Sub = False
LogPrint "trying: strPathQt4=" & strPathQt4
if LogFileExists(strPathQt4, "bin/moc.exe") _
And LogFileExists(strPathQt4, "bin/uic.exe") _
And LogFileExists(strPathQt4, "include/Qt/qwidget.h") _
And LogFileExists(strPathQt4, "include/QtGui/QApplication") _
And LogFileExists(strPathQt4, "include/QtNetwork/QHostAddress") _
And ( LogFileExists(strPathQt4, "lib/QtCore4.lib") _
Or LogFileExists(strPathQt4, "lib/VBoxQtCore4.lib") _
Or LogFileExists(strPathQt4, "lib/QtCoreVBox4.lib")) _
And ( LogFileExists(strPathQt4, "lib/QtNetwork4.lib") _
Or LogFileExists(strPathQt4, "lib/VBoxQtNetwork4.lib") _
Or LogFileExists(strPathQt4, "lib/QtNetworkVBox4.lib")) _
then
CheckForQt4Sub = True
end if
end function
'
'
function CheckForPython(strPathPython)
PrintHdr "Python"
CheckForPython = False
LogPrint "trying: strPathPython=" & strPathPython
if LogFileExists(strPathPython, "python.exe") then
CfgPrint "VBOX_BLD_PYTHON := " & strPathPython & "\python.exe"
CheckForPython = True
end if
PrintResult "Python ", strPathPython
end function
'
'
function CheckForMkisofs(strFnameMkisofs)
PrintHdr "mkisofs"
CheckForMkisofs = False
LogPrint "trying: strFnameMkisofs=" & strFnameMkisofs
if FileExists(strFnameMkisofs) = false then
LogPrint "Testing '" & strFnameMkisofs & " not found"
else
CfgPrint "VBOX_MKISOFS := " & strFnameMkisofs
CheckForMkisofs = True
end if
PrintResult "mkisofs ", strFnameMkisofs
end function
''
' Show usage.
sub usage
Print "Usage: cscript configure.vbs [options]"
Print ""
Print "Configuration:"
Print " -h, --help"
Print " --internal"
Print " --internal-last"
Print ""
Print "Components:"
Print " --disable-COM"
Print " --disable-UDPTunnel"
Print ""
Print "Locations:"
Print " --with-DDK=PATH "
Print " --with-DXSDK=PATH "
Print " --with-kBuild=PATH "
Print " --with-libSDL=PATH "
Print " --with-MinGW=PATH "
Print " --with-Qt4=PATH "
Print " --with-SDK=PATH "
Print " --with-VC=PATH "
Print " --with-VC-Common=PATH "
Print " --with-VC-Express-Edition"
Print " --with-W32API=PATH "
Print " --with-libxml2=PATH "
Print " --with-libxslt=PATH "
Print " --with-openssl=PATH "
Print " --with-python=PATH "
end sub
''
' The main() like function.
'
Sub Main
'
' Write the log header and check that we're not using wscript.
'
LogInit
If UCase(Right(Wscript.FullName, 11)) = "WSCRIPT.EXE" Then
Wscript.Echo "This script must be run under CScript."
Wscript.Quit(1)
End If
'
' Parse arguments.
'
strOptDDK = ""
strOptDXDDK = ""
strOptkBuild = ""
strOptlibSDL = ""
strOptMingW = ""
strOptQt4 = ""
strOptSDK = ""
strOptVC = ""
strOptVCCommon = ""
blnOptVCExpressEdition = False
strOptW32API = ""
strOptXml2 = ""
strOptXslt = ""
strOptSsl = ""
strOptPython = ""
strOptMkisofs = ""
blnOptDisableCOM = False
blnOptDisableUDPTunnel = False
for i = 1 to Wscript.Arguments.Count
dim str, strArg, strPath
' Separate argument and path value
str = Wscript.Arguments.item(i - 1)
if InStr(1, str, "=") > 0 then
strArg = Mid(str, 1, InStr(1, str, "=") - 1)
strPath = Mid(str, InStr(1, str, "=") + 1)
if strPath = "" then MsgFatal "Syntax error! Argument #" & i & " is missing the path."
else
strArg = str
strPath = ""
end if
' Process the argument
select case LCase(strArg)
case "--with-ddk"
strOptDDK = strPath
case "--with-dxsdk"
strOptDXSDK = strPath
case "--with-kbuild"
strOptkBuild = strPath
case "--with-libsdl"
strOptlibSDL = strPath
case "--with-mingw"
strOptMingW = strPath
case "--with-qt4"
strOptQt4 = strPath
case "--with-sdk"
strOptSDK = strPath
case "--with-vc"
strOptVC = strPath
case "--with-vc-common"
strOptVCCommon = strPath
case "--with-vc-express-edition"
blnOptVCExpressEdition = True
case "--with-w32api"
strOptW32API = strPath
case "--with-libxml2"
strOptXml2 = strPath
case "--with-libxslt"
strOptXslt = strPath
case "--with-openssl"
strOptSsl = strPath
case "--with-python"
strOptPython = strPath
case "--with-mkisofs"
strOptMkisofs = strPath
case "--disable-com"
blnOptDisableCOM = True
case "--enable-com"
blnOptDisableCOM = False
case "--disable-udptunnel"
blnOptDisableUDPTunnel = True
case "--internal"
g_blnInternalMode = True
case "--internal-last"
g_blnInternalFirst = False
case "-h", "--help", "-?"
usage
Wscript.Quit(0)
case else
Wscript.echo "syntax error: Unknown option '" & str &"'."
usage
Wscript.Quit(1)
end select
next
'
' Initialize output files.
'
CfgInit
EnvInit
'
' Check that the Shell function is sane.
'
g_objShell.Environment("PROCESS")("TESTING_ENVIRONMENT_INHERITANCE") = "This works"
if Shell("set TESTING_ENVIRONMENT_INHERITANC", False) <> 0 then ' The 'E' is missing on purpose (4nt).
MsgFatal "shell execution test failed!"
end if
if g_strShellOutput <> "TESTING_ENVIRONMENT_INHERITANCE=This works" & CHR(13) & CHR(10) then
MsgFatal "shell inheritance or shell execution isn't working right."
end if
g_objShell.Environment("PROCESS")("TESTING_ENVIRONMENT_INHERITANCE") = ""
Print "Shell inheritance test: OK"
'
' Do the checks.
'
if blnOptDisableCOM = True then
DisableCOM "--disable-com"
end if
if blnOptDisableUDPTunnel = True then
DisableUDPTunnel "--disable-udptunnel"
end if
CheckSourcePath
CheckForkBuild strOptkBuild
CheckForWin2k3DDK strOptDDK
CheckForVisualCPP strOptVC, strOptVCCommon, blnOptVCExpressEdition
CheckForPlatformSDK strOptSDK
CheckForMidl
CheckForDirectXSDK strOptDXSDK
CheckForMingW strOptMingw, strOptW32API
CheckForlibSDL strOptlibSDL
' Don't check for these libraries by default as they are part of OSE
' Using external libs can add a dependency to iconv
if (strOptXml2 <> "") then
CheckForXml2 strOptXml2
end if
if (strOptXslt <> "") then
CheckForXslt strOptXslt
end if
CheckForSsl strOptSsl
CheckForQt4 strOptQt4
if (strOptPython <> "") then
CheckForPython strOptPython
end if
if (strOptMkisofs <> "") then
CheckForMkisofs strOptMkisofs
end if
if g_blnInternalMode then
EnvPrint "call " & g_strPathDev & "/env.cmd %1 %2 %3 %4 %5 %6 %7 %8 %9"
end if
Print ""
Print "Execute env.bat once before you start to build VBox:"
Print ""
Print " env.bat"
Print " kmk"
Print ""
End Sub
Main
|