mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-08 06:03:12 +02:00
Fixed a win32 installer problem with dbghelp.dll installation
This commit is contained in:
@@ -1477,3 +1477,5 @@ seen. gmtime warning still there
|
||||
and a missing return for normal users.
|
||||
- Fixed a win32 SSL installer problem
|
||||
- Fixed problem with DEBUG ERROR when SSL handshaking (reported by some people)
|
||||
- Fixed a bug where the win32 installer didn't install dbghelp.dll on systems that don't
|
||||
have any version of the dll.
|
||||
|
||||
@@ -63,7 +63,9 @@ begin
|
||||
output := ExpandConstant('{app}\DbgHelp.Dll');
|
||||
GetVersionNumbersString(dbghelp,m);
|
||||
if ((CurPage = wpReady) AND NOT FileExists(output)) then begin
|
||||
if StrToInt(m[1]) < 5 then begin
|
||||
if (NOT FileExists(dbghelp)) then
|
||||
m := StringOfChar('0',1);
|
||||
if (StrToInt(m[1]) < 5) then begin
|
||||
answer := MsgBox('DbgHelp.dll version 5.0 or higher is required to install Unreal, do you wish to install it now?', mbConfirmation, MB_YESNO);
|
||||
if answer = IDYES then begin
|
||||
tmp := ExpandConstant('{tmp}\dbghelp.dll');
|
||||
|
||||
@@ -70,7 +70,9 @@ begin
|
||||
output := ExpandConstant('{app}\DbgHelp.Dll');
|
||||
GetVersionNumbersString(dbghelp,m);
|
||||
if ((CurPage = wpReady) AND NOT FileExists(output)) then begin
|
||||
if StrToInt(m[1]) < 5 then begin
|
||||
if (NOT FileExists(dbghelp)) then
|
||||
m := StringOfChar('0',1);
|
||||
if (StrToInt(m[1]) < 5) then begin
|
||||
answer := MsgBox('DbgHelp.dll version 5.0 or higher is required to install Unreal, do you wish to install it now?', mbConfirmation, MB_YESNO);
|
||||
if answer = IDYES then begin
|
||||
tmp := ExpandConstant('{tmp}\dbghelp.dll');
|
||||
|
||||
Reference in New Issue
Block a user