diff options
author | Steven Bennetts <steve@lindenlab.com> | 2009-10-05 21:16:35 +0000 |
---|---|---|
committer | Steven Bennetts <steve@lindenlab.com> | 2009-10-05 21:16:35 +0000 |
commit | 62f3daf588324278094110d466c4f2f1b8cc9ae8 (patch) | |
tree | 69d7ff8c974c550987af8f960b736f27675d35f9 /indra/newview | |
parent | 8f4df3a68f9446b8a0c65e49170522e14e0dc703 (diff) |
Back out revisions 135028,134955,134953,134939
* Revert Vivox SDK update
(transplanted from 2e9e33886f348cb9f2c682c2dbfdf7a48371f12c)
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 036fa4923f..d3b0a2e47e 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -249,12 +249,10 @@ class WindowsManifest(ViewerManifest): # Vivox runtimes if self.prefix(src="vivox-runtime/i686-win32", dst=""): self.path("SLVoice.exe") - self.path("libsndfile-1.dll") - self.path("zlib1.dll") + self.path("alut.dll") self.path("vivoxsdk.dll") - self.path("vivoxplatform.dll") self.path("ortp.dll") - self.path("vivoxoal.dll") + self.path("wrap_oal.dll") self.end_prefix() # pull in the crash logger and updater from other projects @@ -464,11 +462,10 @@ class DarwinManifest(ViewerManifest): self.path("zh-Hans.lproj") # SLVoice and vivox lols - self.path("vivox-runtime/universal-darwin/libsndfile.dylib", "libsndfile.dylib") - self.path("vivox-runtime/universal-darwin/libvivoxoal.dylib", "libvivoxoal.dylib") + self.path("vivox-runtime/universal-darwin/libalut.dylib", "libalut.dylib") + self.path("vivox-runtime/universal-darwin/libopenal.dylib", "libopenal.dylib") self.path("vivox-runtime/universal-darwin/libortp.dylib", "libortp.dylib") self.path("vivox-runtime/universal-darwin/libvivoxsdk.dylib", "libvivoxsdk.dylib") - self.path("vivox-runtime/universal-darwin/libvivoxplatform.dylib", "libvivoxplatform.dylib") self.path("vivox-runtime/universal-darwin/SLVoice", "SLVoice") # need to get the kdu dll from any of the build directories as well @@ -721,10 +718,7 @@ class Linux_i686Manifest(LinuxManifest): self.end_prefix() if self.prefix(src="vivox-runtime/i686-linux", dst="lib"): self.path("libortp.so") - self.path("libsndfile.so.1") - self.path("libvivoxoal.so.1") self.path("libvivoxsdk.so") - self.path("libvivoxplatform.so") self.end_prefix("lib") class Linux_x86_64Manifest(LinuxManifest): |