Github user hegdean commented on a diff in the pull request: https://github.com/apache/incubator-trafodion/pull/763#discussion_r83725920 --- Diff: win-odbc64/Install/win64_installer/installer.iss --- @@ -152,6 +141,40 @@ begin Result := (GetUninstallString() <> ''); end; +procedure CurStepChanged(CurStep: TSetupStep); +var + bRedistNeedsInstall: Boolean; + sDefaultBrowserName: String; + sDefaultBrowserReg: String; + sDefaultBrowserValue: String; + iQuotePos: Integer; + lLength: Longint; + iRetCode: Integer; +begin + if CurStep=ssPostInstall then + begin + bRedistNeedsInstall := VCRedistNeedsInstall(); + if bRedistNeedsInstall=True then + begin + MsgBox('Install of Visual C++ Redistributable Packages for Visual Studio 2013 is not dectected.'+ #13#10#13#10 + 'Please download vcredist_x64.exe from Microsoft Download Centre and install it.', mbInformation, MB_OK); --- End diff -- Can we change the message to be as follows: Run-time dependency needed by the driver is not found. Proceeding to download and install run-time dependency from Microsoft.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---