Skip to content

Commit

Permalink
potential fix for #65
Browse files Browse the repository at this point in the history
  • Loading branch information
gillesdegottex committed May 21, 2018
1 parent 87a926a commit 295808c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions distrib/FMIT_MSVC2012_Win32bit.iss
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,6 @@ begin
// this statement, the following won't install your VC redist only when
// the Visual C++ 2010 Redist (x86) and Visual C++ 2010 SP1 Redist(x86)
// are installed for the current user
Result := not (VCVersionInstalled(VC_2013_REDIST_X86_MIN) or
VCVersionInstalled(VC_2013_REDIST_X86_ADD));
Result := not (VCVersionInstalled(VC_2015_REDIST_X86_MIN) or
VCVersionInstalled(VC_2015_REDIST_X86_ADD));
end;
4 changes: 2 additions & 2 deletions distrib/FMIT_MSVC2012_Win64bit.iss
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,6 @@ begin
// this statement, the following won't install your VC redist only when
// the Visual C++ 2010 Redist (x86) and Visual C++ 2010 SP1 Redist(x86)
// are installed for the current user
Result := not (VCVersionInstalled(VC_2013_REDIST_X64_MIN) or
VCVersionInstalled(VC_2013_REDIST_X64_ADD));
Result := not (VCVersionInstalled(VC_2015_REDIST_X64_MIN) or
VCVersionInstalled(VC_2015_REDIST_X64_ADD));
end;

0 comments on commit 295808c

Please sign in to comment.