diff options
author | Jacek Antonelli | 2008-08-15 23:45:27 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:27 -0500 |
commit | a8a62201ba762e98dff92cf49033e577fc34d8d4 (patch) | |
tree | 11f8513c5cdc222f2fac0c93eb724c089803c200 /linden/indra/newview/viewer_manifest.py | |
parent | Second Life viewer sources 1.18.6.4-RC (diff) | |
download | meta-impy-a8a62201ba762e98dff92cf49033e577fc34d8d4.zip meta-impy-a8a62201ba762e98dff92cf49033e577fc34d8d4.tar.gz meta-impy-a8a62201ba762e98dff92cf49033e577fc34d8d4.tar.bz2 meta-impy-a8a62201ba762e98dff92cf49033e577fc34d8d4.tar.xz |
Second Life viewer sources 1.19.0.0
Diffstat (limited to 'linden/indra/newview/viewer_manifest.py')
-rwxr-xr-x | linden/indra/newview/viewer_manifest.py | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py index 1b416b9..bf5bb63 100755 --- a/linden/indra/newview/viewer_manifest.py +++ b/linden/indra/newview/viewer_manifest.py | |||
@@ -14,12 +14,12 @@ | |||
14 | # ("GPL"), unless you have obtained a separate licensing agreement | 14 | # ("GPL"), unless you have obtained a separate licensing agreement |
15 | # ("Other License"), formally executed by you and Linden Lab. Terms of | 15 | # ("Other License"), formally executed by you and Linden Lab. Terms of |
16 | # the GPL can be found in doc/GPL-license.txt in this distribution, or | 16 | # the GPL can be found in doc/GPL-license.txt in this distribution, or |
17 | # online at http://secondlife.com/developers/opensource/gplv2 | 17 | # online at http://secondlifegrid.net/programs/open_source/licensing/gplv2 |
18 | # | 18 | # |
19 | # There are special exceptions to the terms and conditions of the GPL as | 19 | # There are special exceptions to the terms and conditions of the GPL as |
20 | # it is applied to this Source Code. View the full text of the exception | 20 | # it is applied to this Source Code. View the full text of the exception |
21 | # in the file doc/FLOSS-exception.txt in this software distribution, or | 21 | # in the file doc/FLOSS-exception.txt in this software distribution, or |
22 | # online at http://secondlife.com/developers/opensource/flossexception | 22 | # online at http://secondlifegrid.net/programs/open_source/licensing/flossexception |
23 | # | 23 | # |
24 | # By copying, modifying or distributing this software, you acknowledge | 24 | # By copying, modifying or distributing this software, you acknowledge |
25 | # that you have read and understood your obligations described above, | 25 | # that you have read and understood your obligations described above, |
@@ -448,6 +448,7 @@ class LinuxManifest(ViewerManifest): | |||
448 | self.path("res/ll_icon.ico","secondlife.ico") | 448 | self.path("res/ll_icon.ico","secondlife.ico") |
449 | if self.prefix("linux_tools", ""): | 449 | if self.prefix("linux_tools", ""): |
450 | self.path("client-readme.txt","README-linux.txt") | 450 | self.path("client-readme.txt","README-linux.txt") |
451 | self.path("client-readme-voice.txt","README-linux-voice.txt") | ||
451 | self.path("wrapper.sh","secondlife") | 452 | self.path("wrapper.sh","secondlife") |
452 | self.path("handle_secondlifeprotocol.sh") | 453 | self.path("handle_secondlifeprotocol.sh") |
453 | self.path("register_secondlifeprotocol.sh") | 454 | self.path("register_secondlifeprotocol.sh") |
@@ -517,6 +518,16 @@ class Linux_i686Manifest(LinuxManifest): | |||
517 | # self.path("libllkdu.so", "../bin/libllkdu.so") # llkdu goes in bin for some reason | 518 | # self.path("libllkdu.so", "../bin/libllkdu.so") # llkdu goes in bin for some reason |
518 | self.end_prefix("lib") | 519 | self.end_prefix("lib") |
519 | 520 | ||
521 | # Vivox runtimes | ||
522 | if self.prefix(src="vivox-runtime/i686-linux", dst=""): | ||
523 | self.path("SLVoice") | ||
524 | self.end_prefix() | ||
525 | if self.prefix(src="vivox-runtime/i686-linux", dst="lib"): | ||
526 | self.path("libopenal.so.1") | ||
527 | self.path("libortp.so") | ||
528 | self.path("libvivoxsdk.so") | ||
529 | self.path("libalut.so") | ||
530 | self.end_prefix("lib") | ||
520 | 531 | ||
521 | class Linux_x86_64Manifest(LinuxManifest): | 532 | class Linux_x86_64Manifest(LinuxManifest): |
522 | def construct(self): | 533 | def construct(self): |