Changeset 40720 in vbox
- Timestamp:
- Mar 30, 2012 9:33:11 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 77184
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditionsCommon.nsh
r40711 r40720 862 862 ; Note: Not finding a file (like *d3d8.dll) on Windows Vista/7 is fine; 863 863 ; it simply is not present there. 864 864 865 ; Note 2: On 64-bit systems there are no 64-bit *d3d8 DLLs, only 32-bit ones 866 ; in SysWOW64 (or in system32 on 32-bit systems). 867 868 !if $%BUILD_TARGET_ARCH% == "x86" 865 869 ${VerifyFileEx} "${un}" "$SYSDIR\d3d8.dll" "Microsoft Corporation" "$%BUILD_TARGET_ARCH%" 866 870 Pop $0 … … 868 872 Goto verify_msd3d 869 873 ${EndIf} 874 !endif 875 870 876 ${VerifyFileEx} "${un}" "$SYSDIR\d3d9.dll" "Microsoft Corporation" "$%BUILD_TARGET_ARCH%" 871 877 Pop $0 … … 875 881 876 882 ${If} $g_bCapDllCache == "true" 883 !if $%BUILD_TARGET_ARCH% == "x86" 877 884 ${VerifyFileEx} "${un}" "$SYSDIR\dllcache\d3d8.dll" "Microsoft Corporation" "$%BUILD_TARGET_ARCH%" 878 885 Pop $0 … … 880 887 Goto verify_msd3d 881 888 ${EndIf} 889 !endif 882 890 ${VerifyFileEx} "${un}" "$SYSDIR\dllcache\d3d9.dll" "Microsoft Corporation" "$%BUILD_TARGET_ARCH%" 883 891 Pop $0 … … 888 896 889 897 !if $%BUILD_TARGET_ARCH% == "amd64" 890 891 898 ${VerifyFileEx} "${un}" "$g_strSysWow64\d3d8.dll" "Microsoft Corporation" "x86" 892 899 Pop $0 … … 919 926 verify_msd3d: 920 927 928 !if $%BUILD_TARGET_ARCH% == "x86" 921 929 ${VerifyFileEx} "${un}" "$SYSDIR\msd3d8.dll" "Microsoft Corporation" "$%BUILD_TARGET_ARCH%" 922 930 Pop $0 … … 924 932 Goto invalid 925 933 ${EndIf} 934 !endif 926 935 ${VerifyFileEx} "${un}" "$SYSDIR\msd3d9.dll" "Microsoft Corporation" "$%BUILD_TARGET_ARCH%" 927 936 Pop $0 … … 931 940 932 941 ${If} $g_bCapDllCache == "true" 942 !if $%BUILD_TARGET_ARCH% == "x86" 933 943 ${VerifyFileEx} "${un}" "$SYSDIR\dllcache\msd3d8.dll" "Microsoft Corporation" "$%BUILD_TARGET_ARCH%" 934 944 Pop $0 … … 936 946 Goto invalid 937 947 ${EndIf} 948 !endif 938 949 ${VerifyFileEx} "${un}" "$SYSDIR\dllcache\msd3d9.dll" "Microsoft Corporation" "$%BUILD_TARGET_ARCH%" 939 950 Pop $0 … … 944 955 945 956 !if $%BUILD_TARGET_ARCH% == "amd64" 946 947 957 ${VerifyFileEx} "${un}" "$g_strSysWow64\msd3d8.dll" "Microsoft Corporation" "x86" 948 958 Pop $0 … … 968 978 ${EndIf} 969 979 ${EndIf} 970 971 980 !endif 972 981
Note:
See TracChangeset
for help on using the changeset viewer.