-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #87 from takluyver/applocal-msvcrt
Applocal msvcrt
- Loading branch information
Showing
91 changed files
with
77 additions
and
198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,71 +1,14 @@ | ||
[% extends "pyapp.nsi" %] | ||
|
||
[% block sections %] | ||
!addplugindir [[ pynsist_pkg_dir ]] | ||
!include windowsversion.nsh | ||
!include x64.nsh | ||
|
||
Section "-msvcrt" | ||
${GetWindowsVersion} $R0 | ||
|
||
StrCpy $0 "--" | ||
|
||
${If} ${RunningX64} | ||
${If} $R0 == "8.1" | ||
StrCpy $0 "https://cdn.rawgit.com/takluyver/pynsist/msvcrt-tag1/x64/Windows8.1-KB2999226-x64.msu" | ||
${ElseIf} $R0 == "8" | ||
StrCpy $0 "https://cdn.rawgit.com/takluyver/pynsist/msvcrt-tag1/x64/Windows8-RT-KB2999226-x64.msu" | ||
${ElseIf} $R0 == "7" | ||
StrCpy $0 "https://cdn.rawgit.com/takluyver/pynsist/msvcrt-tag1/x64/Windows6.1-KB2999226-x64.msu" | ||
${ElseIf} $R0 == "Vista" | ||
StrCpy $0 "https://cdn.rawgit.com/takluyver/pynsist/msvcrt-tag1/x64/Windows6.0-KB2999226-x64.msu" | ||
${EndIf} | ||
${Else} | ||
${If} $R0 == "8.1" | ||
StrCpy $0 "https://cdn.rawgit.com/takluyver/pynsist/msvcrt-tag1/x86/Windows8.1-KB2999226-x86.msu" | ||
${ElseIf} $R0 == "8" | ||
StrCpy $0 "https://cdn.rawgit.com/takluyver/pynsist/msvcrt-tag1/x86/Windows8-RT-KB2999226-x86.msu" | ||
${ElseIf} $R0 == "7" | ||
StrCpy $0 "https://cdn.rawgit.com/takluyver/pynsist/msvcrt-tag1/x86/Windows6.1-KB2999226-x86.msu" | ||
${ElseIf} $R0 == "Vista" | ||
StrCpy $0 "https://cdn.rawgit.com/takluyver/pynsist/msvcrt-tag1/x86/Windows6.0-KB2999226-x86.msu" | ||
${EndIf} | ||
${EndIf} | ||
|
||
IfFileExists "$SYSDIR\ucrtbase.dll" skip_msvcrt | ||
StrCmp $0 "--" skip_msvcrt | ||
|
||
DetailPrint "Need to install MSVCRT 2015. This may take a few minutes." | ||
DetailPrint "Downloading $0" | ||
inetc::get /RESUME "" "$0" "$INSTDIR\msvcrt.msu" | ||
Pop $2 | ||
DetailPrint "Download finished ($2)" | ||
${If} $2 == "OK" | ||
DetailPrint "Running wusa to install update package" | ||
ExecWait 'wusa "$INSTDIR\msvcrt.msu" /quiet /norestart' $1 | ||
Delete "$INSTDIR\msvcrt.msu" | ||
${Else} | ||
MessageBox MB_OK "Failed to download important update! \ | ||
${PRODUCT_NAME} will not run until you install the Visual C++ \ | ||
redistributable for Visual Studio 2015.\ | ||
$\n$\nhttp://www.microsoft.com/en-us/download/details.aspx?id=48145" | ||
${EndIf} | ||
|
||
# This WUSA exit code means a reboot is needed. | ||
${If} $1 = 0x00240005 | ||
SetRebootFlag true | ||
${Else} | ||
IntOp $0 $1 & 0x80000000 | ||
${If} $0 <> 0 | ||
MessageBox MB_OK "Failed to install important update! \ | ||
${PRODUCT_NAME} will not run until you install the Visual C++ \ | ||
redistributable for Visual Studio 2015.\ | ||
$\n$\nhttp://www.microsoft.com/en-us/download/details.aspx?id=48145" | ||
${EndIf} | ||
${EndIf} | ||
|
||
skip_msvcrt: | ||
SectionEnd | ||
|
||
[[ super() ]] | ||
[% endblock sections %] | ||
[% block install_files %] | ||
[[ super() ]] | ||
|
||
; Install MSVCRT if it's not already on the system | ||
IfFileExists "$SYSDIR\ucrtbase.dll" skip_msvcrt | ||
SetOutPath $INSTDIR\Python | ||
[% for file in ib.msvcrt_files %] | ||
File msvcrt\[[file]] | ||
[% endfor %] | ||
skip_msvcrt: | ||
|
||
[% endblock %] |
Oops, something went wrong.