From d611f6b7411bf6af52a2fef70ca4ad209a44db37 Mon Sep 17 00:00:00 2001 From: Siana Gearz Date: Wed, 4 May 2011 00:07:32 +0200 Subject: [PATCH] Adding hunspell dll/so/dylib --- indra/newview/viewer_manifest.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index e560b7b46..22ed21392 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -56,7 +56,6 @@ class ViewerManifest(LLManifest): # include the entire shaders directory recursively self.path("shaders") - self.path("dictionaries") # ... and the entire windlight directory self.path("windlight") self.end_prefix("app_settings") @@ -199,6 +198,11 @@ class WindowsManifest(ViewerManifest): self.path("featuretable.txt") + # For spellchecking + if self.prefix(src=self.args['configuration'], dst=""): + self.path("libhunspell.dll") + self.end_prefix() + # For use in crash reporting (generates minidumps) self.path("dbghelp.dll") @@ -439,6 +443,7 @@ class DarwinManifest(ViewerManifest): self.path(self.info_plist_name(), dst="Info.plist") # copy additional libs in /Contents/MacOS/ + self.path("../../libraries/universal-darwin/lib_release/libhunspell-1.2.dylib", dst="MacOS/libhunspell-1.2.dylib") self.path("../../libraries/universal-darwin/lib_release/libndofdev.dylib", dst="MacOS/libndofdev.dylib") self.path("../../libraries/universal-darwin/lib_release/libvorbisenc.2.dylib", dst="MacOS/libvorbisenc.2.dylib") self.path("../../libraries/universal-darwin/lib_release/libvorbisfile.3.dylib", dst="MacOS/libvorbisfile.3.dylib") @@ -785,6 +790,7 @@ class Linux_i686Manifest(LinuxManifest): self.path("libdb-4.2.so") self.path("libcrypto.so.0.9.7") self.path("libexpat.so.1") + self.path("libhunspell-1.2.so.0.0.0", "libhunspell-1.2.so.0") self.path("libssl.so.0.9.7") #self.path("libuuid.so.1") self.path("libSDL-1.2.so.0")