aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/viewer_manifest.py
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/viewer_manifest.py')
-rwxr-xr-xlinden/indra/newview/viewer_manifest.py16
1 files changed, 13 insertions, 3 deletions
diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py
index 39df657..35957a5 100755
--- a/linden/indra/newview/viewer_manifest.py
+++ b/linden/indra/newview/viewer_manifest.py
@@ -235,6 +235,18 @@ class WindowsManifest(ViewerManifest):
235 self.path("Microsoft.VC80.CRT.manifest") 235 self.path("Microsoft.VC80.CRT.manifest")
236 self.end_prefix() 236 self.end_prefix()
237 237
238 # The config file name needs to match the exe's name.
239 self.path(src="%s/secondlife-bin.exe.config" % self.args['configuration'], dst=self.final_exe() + ".config")
240
241 # We need this one too, so that llkdu loads at runtime - DEV-41194
242 self.path(src="%s/secondlife-bin.exe.config" % self.args['configuration'], dst="llkdu.dll.2.config")
243
244 # We need this one too, so that win_crash_logger.exe loads at runtime - DEV-19004
245 self.path(src="%s/secondlife-bin.exe.config" % self.args['configuration'], dst="win_crash_logger.exe.config")
246
247 # same thing for auto-updater.
248 self.path(src="%s/secondlife-bin.exe.config" % self.args['configuration'], dst="updater.exe.config")
249
238 # Mozilla runtime DLLs (CP) 250 # Mozilla runtime DLLs (CP)
239 if self.prefix(src="../../libraries/i686-win32/lib/release", dst=""): 251 if self.prefix(src="../../libraries/i686-win32/lib/release", dst=""):
240 self.path("freebl3.dll") 252 self.path("freebl3.dll")
@@ -263,9 +275,6 @@ class WindowsManifest(ViewerManifest):
263 275
264 # Mozilla hack to get it to accept newer versions of msvc*80.dll than are listed in manifest 276 # Mozilla hack to get it to accept newer versions of msvc*80.dll than are listed in manifest
265 # necessary as llmozlib2-vc80.lib refers to an old version of msvc*80.dll - can be removed when new version of llmozlib is built - Nyx 277 # necessary as llmozlib2-vc80.lib refers to an old version of msvc*80.dll - can be removed when new version of llmozlib is built - Nyx
266 # The config file name needs to match the exe's name.
267 self.path("SecondLife.exe.config", dst=self.final_exe() + ".config")
268
269 # Vivox runtimes 278 # Vivox runtimes
270 if self.prefix(src="vivox-runtime/i686-win32", dst=""): 279 if self.prefix(src="vivox-runtime/i686-win32", dst=""):
271 # self.path("alut.dll") 280 # self.path("alut.dll")
@@ -802,6 +811,7 @@ class Linux_i686Manifest(LinuxManifest):
802 super(Linux_i686Manifest, self).construct() 811 super(Linux_i686Manifest, self).construct()
803 self.path("imprudence-stripped","bin/do-not-directly-run-imprudence-bin") 812 self.path("imprudence-stripped","bin/do-not-directly-run-imprudence-bin")
804# self.path("../linux_crash_logger/linux-crash-logger-stripped","linux-crash-logger.bin") 813# self.path("../linux_crash_logger/linux-crash-logger-stripped","linux-crash-logger.bin")
814
805 self.path("linux_tools/launch_url.sh","launch_url.sh") 815 self.path("linux_tools/launch_url.sh","launch_url.sh")
806 if self.prefix("res-sdl"): 816 if self.prefix("res-sdl"):
807 self.path("*") 817 self.path("*")