mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
use vcredist_x64.exe for 64 bit Windows [#35973]
This commit is contained in:
parent
2c172a42b3
commit
761f60fc35
2 changed files with 9 additions and 0 deletions
4
CHANGES
4
CHANGES
|
|
@ -1,3 +1,7 @@
|
|||
3843. [bug] Use the x64 version of the Microsoft Visual C++
|
||||
Redistributable when built for 64 bit Windows.
|
||||
(Thanks to Giovanni Paterno.) [RT #35973]
|
||||
|
||||
3842. [bug] Adjust RRL log-only logging category. [RT #35945]
|
||||
|
||||
3841. [cleanup] Refactor zone.c:add_opt to use dns_message_buildopt.
|
||||
|
|
|
|||
|
|
@ -563,8 +563,13 @@ void CBINDInstallDlg::OnInstall() {
|
|||
* Enclose full path to Vcredist_x86.exe in quotes as
|
||||
* m_currentDir may contain spaces.
|
||||
*/
|
||||
#ifndef _WIN64
|
||||
sprintf(Vcredist_x86, "\"%s\\Vcredist_x86.exe\"",
|
||||
(LPCTSTR) m_currentDir);
|
||||
#else
|
||||
sprintf(Vcredist_x86, "\"%s\\Vcredist_x64.exe\"",
|
||||
(LPCTSTR) m_currentDir);
|
||||
#endif
|
||||
system(Vcredist_x86);
|
||||
#endif
|
||||
try {
|
||||
|
|
|
|||
Loading…
Reference in a new issue