aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorArmin Weatherwax2010-08-27 20:27:05 +0200
committerJacek Antonelli2010-08-27 16:30:43 -0500
commitca0a90ca9a0fdfc97efd8f4ccfa2776482b5eed6 (patch)
treed0b482cb3e1b5566d1c5bb7f56701836b3800e0b
parentFinished up ability to ignore group chat from specific groups. (diff)
downloadmeta-impy-ca0a90ca9a0fdfc97efd8f4ccfa2776482b5eed6.zip
meta-impy-ca0a90ca9a0fdfc97efd8f4ccfa2776482b5eed6.tar.gz
meta-impy-ca0a90ca9a0fdfc97efd8f4ccfa2776482b5eed6.tar.bz2
meta-impy-ca0a90ca9a0fdfc97efd8f4ccfa2776482b5eed6.tar.xz
Added Vivox files to Linux64 manifest.
-rwxr-xr-xlinden/indra/newview/viewer_manifest.py16
1 files changed, 11 insertions, 5 deletions
diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py
index ec3b95c..2f509b6 100755
--- a/linden/indra/newview/viewer_manifest.py
+++ b/linden/indra/newview/viewer_manifest.py
@@ -1127,11 +1127,17 @@ class Linux_x86_64Manifest(LinuxManifest):
1127# self.path("libuuid.so.1") 1127# self.path("libuuid.so.1")
1128# self.end_prefix("lib32") 1128# self.end_prefix("lib32")
1129 1129
1130 # Vivox runtimes 1130
1131# if self.prefix(src="vivox-runtime/i686-linux", dst="bin"): 1131 # Vivox runtimes and libs
1132# self.path("SLVoice") 1132 if self.prefix(src="vivox-runtime/i686-linux", dst="bin"):
1133# self.end_prefix() 1133 self.path("SLVoice")
1134# 1134 self.end_prefix("bin")
1135
1136 if self.prefix(src="vivox-runtime/i686-linux", dst="lib32"):
1137 self.path("libalut.so")
1138 self.path("libortp.so")
1139 self.path("libvivoxsdk.so")
1140 self.end_prefix("lib32")
1135 1141
1136if __name__ == "__main__": 1142if __name__ == "__main__":
1137 main() 1143 main()