diff options
author | AndreyL ProductEngine <andreylproductengine@lindenlab.com> | 2015-06-12 11:11:38 +0300 |
---|---|---|
committer | AndreyL ProductEngine <andreylproductengine@lindenlab.com> | 2015-06-12 11:11:38 +0300 |
commit | fd45c728b24896a7438ba18ca3b38e32d2faf67c (patch) | |
tree | b8103571c34ebd51c6ba956f9de95b0c6fe76db7 /indra/newview/viewer_manifest.py | |
parent | f3c58f765c0168f25bb13c4427e34b4bdad2f671 (diff) |
MAINT-5277 FIXED Viewer is missing MSVCP100.DLL and MSVCR100.DLL
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 32cf9d3df6..cae6bded9f 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -387,9 +387,13 @@ class Windows_i686_Manifest(ViewerManifest): if self.args['configuration'].lower() == 'debug': self.path("msvcr120d.dll") self.path("msvcp120d.dll") + self.path("msvcr100d.dll") + self.path("msvcp100d.dll") else: self.path("msvcr120.dll") self.path("msvcp120.dll") + self.path("msvcr100.dll") + self.path("msvcp100.dll") # Vivox runtimes self.path("SLVoice.exe") |