diff options
author | Jacek Antonelli | 2009-02-12 02:06:41 -0600 |
---|---|---|
committer | Jacek Antonelli | 2009-02-12 02:06:45 -0600 |
commit | 61f97b33f9850d21965d397b947a298c16ba576d (patch) | |
tree | a2edff0a7fbc83e2259eda952511b0fbdbea290b /linden/indra/newview/viewer_manifest.py | |
parent | Second Life viewer sources 1.22.7-RC (diff) | |
download | meta-impy-61f97b33f9850d21965d397b947a298c16ba576d.zip meta-impy-61f97b33f9850d21965d397b947a298c16ba576d.tar.gz meta-impy-61f97b33f9850d21965d397b947a298c16ba576d.tar.bz2 meta-impy-61f97b33f9850d21965d397b947a298c16ba576d.tar.xz |
Second Life viewer sources 1.22.8-RC
Diffstat (limited to 'linden/indra/newview/viewer_manifest.py')
-rwxr-xr-x | linden/indra/newview/viewer_manifest.py | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py index 09c72bb..0a2d925 100755 --- a/linden/indra/newview/viewer_manifest.py +++ b/linden/indra/newview/viewer_manifest.py | |||
@@ -232,11 +232,6 @@ class WindowsManifest(ViewerManifest): | |||
232 | # Vivox runtimes | 232 | # Vivox runtimes |
233 | if self.prefix(src="vivox-runtime/i686-win32", dst=""): | 233 | if self.prefix(src="vivox-runtime/i686-win32", dst=""): |
234 | self.path("SLVoice.exe") | 234 | self.path("SLVoice.exe") |
235 | self.path("SLVoiceAgent.exe") | ||
236 | self.path("libeay32.dll") | ||
237 | self.path("srtp.dll") | ||
238 | self.path("ssleay32.dll") | ||
239 | self.path("tntk.dll") | ||
240 | self.path("alut.dll") | 235 | self.path("alut.dll") |
241 | self.path("vivoxsdk.dll") | 236 | self.path("vivoxsdk.dll") |
242 | self.path("ortp.dll") | 237 | self.path("ortp.dll") |
@@ -432,7 +427,6 @@ class DarwinManifest(ViewerManifest): | |||
432 | self.path("vivox-runtime/universal-darwin/libortp.dylib", "libortp.dylib") | 427 | self.path("vivox-runtime/universal-darwin/libortp.dylib", "libortp.dylib") |
433 | self.path("vivox-runtime/universal-darwin/libvivoxsdk.dylib", "libvivoxsdk.dylib") | 428 | self.path("vivox-runtime/universal-darwin/libvivoxsdk.dylib", "libvivoxsdk.dylib") |
434 | self.path("vivox-runtime/universal-darwin/SLVoice", "SLVoice") | 429 | self.path("vivox-runtime/universal-darwin/SLVoice", "SLVoice") |
435 | self.path("vivox-runtime/universal-darwin/SLVoiceAgent.app", "SLVoiceAgent.app") | ||
436 | 430 | ||
437 | # llkdu dynamic library | 431 | # llkdu dynamic library |
438 | # self.path("../../libraries/universal-darwin/lib_release/libllkdu.dylib", "libllkdu.dylib") | 432 | # self.path("../../libraries/universal-darwin/lib_release/libllkdu.dylib", "libllkdu.dylib") |
@@ -565,13 +559,6 @@ class LinuxManifest(ViewerManifest): | |||
565 | 559 | ||
566 | 560 | ||
567 | def package_finish(self): | 561 | def package_finish(self): |
568 | # stripping all the libs removes a few megabytes from the end-user package | ||
569 | for s,d in self.file_list: | ||
570 | if re.search("lib/lib.+\.so.*", d): | ||
571 | self.run_command('strip -S %s' % d) | ||
572 | if re.search("app_settings/mozilla-runtime-.*/lib.+\.so.*", d): | ||
573 | self.run_command('strip %s' % d) | ||
574 | |||
575 | if 'installer_name' in self.args: | 562 | if 'installer_name' in self.args: |
576 | installer_name = self.args['installer_name'] | 563 | installer_name = self.args['installer_name'] |
577 | else: | 564 | else: |
@@ -642,9 +629,9 @@ class Linux_i686Manifest(LinuxManifest): | |||
642 | self.path("libSDL-1.2.so.0") | 629 | self.path("libSDL-1.2.so.0") |
643 | self.path("libELFIO.so") | 630 | self.path("libELFIO.so") |
644 | self.path("libopenjpeg.so.2") | 631 | self.path("libopenjpeg.so.2") |
645 | #self.path("libtcmalloc.so.0") - bugged | ||
646 | #self.path("libstacktrace.so.0") - probably bugged | ||
647 | # self.path("libllkdu.so", "../bin/libllkdu.so") # llkdu goes in bin for some reason | 632 | # self.path("libllkdu.so", "../bin/libllkdu.so") # llkdu goes in bin for some reason |
633 | self.path("libalut.so") | ||
634 | self.path("libopenal.so", "libopenal.so.1") | ||
648 | self.end_prefix("lib") | 635 | self.end_prefix("lib") |
649 | 636 | ||
650 | # Vivox runtimes | 637 | # Vivox runtimes |
@@ -652,10 +639,8 @@ class Linux_i686Manifest(LinuxManifest): | |||
652 | self.path("SLVoice") | 639 | self.path("SLVoice") |
653 | self.end_prefix() | 640 | self.end_prefix() |
654 | if self.prefix(src="vivox-runtime/i686-linux", dst="lib"): | 641 | if self.prefix(src="vivox-runtime/i686-linux", dst="lib"): |
655 | self.path("libopenal.so.1") | ||
656 | self.path("libortp.so") | 642 | self.path("libortp.so") |
657 | self.path("libvivoxsdk.so") | 643 | self.path("libvivoxsdk.so") |
658 | self.path("libalut.so") | ||
659 | self.end_prefix("lib") | 644 | self.end_prefix("lib") |
660 | 645 | ||
661 | class Linux_x86_64Manifest(LinuxManifest): | 646 | class Linux_x86_64Manifest(LinuxManifest): |