aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/viewer_manifest.py
diff options
context:
space:
mode:
authorAleric Inglewood2010-11-07 18:38:46 +0100
committerAleric Inglewood2010-11-07 18:38:46 +0100
commit38d4ef2f26545c630fe80e7edc59b0a77641938a (patch)
tree9d2be8c4bd541e17c7ec83bcb5314b208c443715 /linden/indra/newview/viewer_manifest.py
parentIMP-692: SNOW-713: Global objects in libllcommon duplicated in plugins (diff)
downloadmeta-impy-38d4ef2f26545c630fe80e7edc59b0a77641938a.zip
meta-impy-38d4ef2f26545c630fe80e7edc59b0a77641938a.tar.gz
meta-impy-38d4ef2f26545c630fe80e7edc59b0a77641938a.tar.bz2
meta-impy-38d4ef2f26545c630fe80e7edc59b0a77641938a.tar.xz
IMP-692: SNOW-713: Fixed compile bug fixes.
Changes: * Added changes from snowglobe 1.5 to indra/llcommon/llstring.h (compile errors as a result of a missing include, but I copied everything else too). * Added #include "linden_common.h" to emeraldboobutils.cpp. Really it's one the header files that needed that, but that's how this header works: every source file should include it as first header anyway, then there is no need for other headers to do that. * Renamed LLPanelRegionOpenSettingsInfo::sendUpdate(void*) to LLPanelRegionOpenSettingsInfo::onClickOrs because it was hiding a virtual function (BOOL sendUpdate(void)). * Made cutToClipboard more equal to copyToClipboard (was also hiding a virtual function). * Install libllcommon.so in lib64 on Linux_x86_64, instead of lib.
Diffstat (limited to 'linden/indra/newview/viewer_manifest.py')
-rwxr-xr-xlinden/indra/newview/viewer_manifest.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py
index a93e058..f631d1f 100755
--- a/linden/indra/newview/viewer_manifest.py
+++ b/linden/indra/newview/viewer_manifest.py
@@ -228,7 +228,7 @@ class WindowsManifest(ViewerManifest):
228 self.path("LICENSE-libraries.txt") 228 self.path("LICENSE-libraries.txt")
229 self.end_prefix("../..") 229 self.end_prefix("../..")
230 230
231 231
232 self.path("imprudence.url") 232 self.path("imprudence.url")
233 233
234 # Plugin host application 234 # Plugin host application
@@ -741,7 +741,7 @@ class DarwinManifest(ViewerManifest):
741 #self.path("vivox-runtime/universal-darwin/SLVoiceAgent.app", "SLVoiceAgent.app") 741 #self.path("vivox-runtime/universal-darwin/SLVoiceAgent.app", "SLVoiceAgent.app")
742 742
743 libdir = "../../libraries/universal-darwin/lib_release" 743 libdir = "../../libraries/universal-darwin/lib_release"
744 dylibs = {} 744 dylibs = {}
745 745
746 #for lib in "llkdu", "llcommon": 746 #for lib in "llkdu", "llcommon":
747 for lib in "llcommon": 747 for lib in "llcommon":
@@ -940,8 +940,6 @@ class LinuxManifest(ViewerManifest):
940 # Per platform MIME config on the cheap. See SNOW-307 / DEV-41388 940 # Per platform MIME config on the cheap. See SNOW-307 / DEV-41388
941 self.path("skins/default/xui/en-us/mime_types_linux.xml", "skins/default/xui/en-us/mime_types.xml") 941 self.path("skins/default/xui/en-us/mime_types_linux.xml", "skins/default/xui/en-us/mime_types.xml")
942 942
943 self.path("../llcommon/libllcommon.so", "lib/libllcommon.so")
944
945 self.path("featuretable_linux.txt") 943 self.path("featuretable_linux.txt")
946 944
947 945
@@ -997,6 +995,8 @@ class Linux_i686Manifest(LinuxManifest):
997 super(Linux_i686Manifest, self).construct() 995 super(Linux_i686Manifest, self).construct()
998 self.path("imprudence-stripped","bin/do-not-directly-run-imprudence-bin") 996 self.path("imprudence-stripped","bin/do-not-directly-run-imprudence-bin")
999 997
998 self.path("../llcommon/libllcommon.so", "lib/libllcommon.so")
999
1000 if (not self.standalone()) and self.prefix("../../libraries/i686-linux/lib_release_client", dst="lib"): 1000 if (not self.standalone()) and self.prefix("../../libraries/i686-linux/lib_release_client", dst="lib"):
1001 self.path("libapr-1.so.0") 1001 self.path("libapr-1.so.0")
1002 self.path("libaprutil-1.so.0") 1002 self.path("libaprutil-1.so.0")
@@ -1114,6 +1114,8 @@ class Linux_x86_64Manifest(LinuxManifest):
1114 self.path("imprudence-stripped","bin/do-not-directly-run-imprudence-bin") 1114 self.path("imprudence-stripped","bin/do-not-directly-run-imprudence-bin")
1115# self.path("../linux_crash_logger/linux-crash-logger-stripped","linux-crash-logger.bin") 1115# self.path("../linux_crash_logger/linux-crash-logger-stripped","linux-crash-logger.bin")
1116 1116
1117 self.path("../llcommon/libllcommon.so", "lib64/libllcommon.so")
1118
1117 self.path("linux_tools/launch_url.sh","launch_url.sh") 1119 self.path("linux_tools/launch_url.sh","launch_url.sh")
1118 if self.prefix("res-sdl"): 1120 if self.prefix("res-sdl"):
1119 self.path("*") 1121 self.path("*")