diff options
author | McCabe Maxsted | 2011-03-19 14:13:21 -0700 |
---|---|---|
committer | McCabe Maxsted | 2011-03-19 14:13:21 -0700 |
commit | cb6f3e50bc2e99a439ca87177e49778aec7b9723 (patch) | |
tree | a8b7c0e630018985463933dba7d6a67c4b4eaa27 /linden/indra | |
parent | Added a null check for corrupt volume lists (diff) | |
parent | less misleading wording for linux script messages (diff) | |
download | meta-impy-cb6f3e50bc2e99a439ca87177e49778aec7b9723.zip meta-impy-cb6f3e50bc2e99a439ca87177e49778aec7b9723.tar.gz meta-impy-cb6f3e50bc2e99a439ca87177e49778aec7b9723.tar.bz2 meta-impy-cb6f3e50bc2e99a439ca87177e49778aec7b9723.tar.xz |
Merge remote-tracking branch 'armin/exp' into exp
Diffstat (limited to 'linden/indra')
7 files changed, 8 insertions, 8 deletions
diff --git a/linden/indra/newview/linux_tools/register_secondlifeprotocol.sh b/linden/indra/newview/linux_tools/register_secondlifeprotocol.sh index 4ab96f9..338fc26 100755 --- a/linden/indra/newview/linux_tools/register_secondlifeprotocol.sh +++ b/linden/indra/newview/linux_tools/register_secondlifeprotocol.sh | |||
@@ -18,7 +18,7 @@ LLGCONFTOOL2=gconftool-2 | |||
18 | if which ${LLGCONFTOOL2} >/dev/null; then | 18 | if which ${LLGCONFTOOL2} >/dev/null; then |
19 | (${LLGCONFTOOL2} -s -t string /desktop/gnome/url-handlers/secondlife/command "${HANDLER} \"%s\"" && ${LLGCONFTOOL2} -s -t bool /desktop/gnome/url-handlers/secondlife/enabled true) || echo Warning: Did not register secondlife:// handler with GNOME: ${LLGCONFTOOL2} failed. | 19 | (${LLGCONFTOOL2} -s -t string /desktop/gnome/url-handlers/secondlife/command "${HANDLER} \"%s\"" && ${LLGCONFTOOL2} -s -t bool /desktop/gnome/url-handlers/secondlife/enabled true) || echo Warning: Did not register secondlife:// handler with GNOME: ${LLGCONFTOOL2} failed. |
20 | else | 20 | else |
21 | echo Warning: Did not register secondlife:// handler with GNOME: ${LLGCONFTOOL2} not found. | 21 | echo Info: Did not register secondlife:// handler with GNOME: ${LLGCONFTOOL2} not found. You can safely ignore this if you are not using GNOME. |
22 | fi | 22 | fi |
23 | 23 | ||
24 | # Register handler for KDE-aware apps | 24 | # Register handler for KDE-aware apps |
@@ -42,5 +42,5 @@ makedir=false | |||
42 | deleting=false | 42 | deleting=false |
43 | EOF | 43 | EOF |
44 | else | 44 | else |
45 | echo Warning: Did not register secondlife:// handler with KDE: Directory $LLKDEPROTDIR does not exist. | 45 | echo Info: Did not register secondlife:// handler with KDE: Directory $LLKDEPROTDIR does not exist. You can safely ignore this if you are not using KDE. |
46 | fi | 46 | fi |
diff --git a/linden/indra/newview/linux_tools/wrapper.sh b/linden/indra/newview/linux_tools/wrapper.sh index a43ebd5..f6ce272 100755 --- a/linden/indra/newview/linux_tools/wrapper.sh +++ b/linden/indra/newview/linux_tools/wrapper.sh | |||
@@ -126,7 +126,7 @@ if [ -n "$LL_RUN_ERR" ]; then | |||
126 | LL_RUN_ERR_MSG="" | 126 | LL_RUN_ERR_MSG="" |
127 | if [ "$LL_RUN_ERR" = "runerr" ]; then | 127 | if [ "$LL_RUN_ERR" = "runerr" ]; then |
128 | # generic error running the binary | 128 | # generic error running the binary |
129 | echo '*** Bad shutdown. ***' | 129 | echo 'unexpected shutdown' |
130 | 130 | ||
131 | 131 | ||
132 | fi | 132 | fi |
diff --git a/linden/indra/newview/llviewerwindow.cpp b/linden/indra/newview/llviewerwindow.cpp index 8423f4b..57580cf 100644 --- a/linden/indra/newview/llviewerwindow.cpp +++ b/linden/indra/newview/llviewerwindow.cpp | |||
@@ -1309,7 +1309,7 @@ LLViewerWindow::LLViewerWindow( | |||
1309 | { | 1309 | { |
1310 | gSavedSettings.setBOOL("RenderVBOEnable", FALSE); | 1310 | gSavedSettings.setBOOL("RenderVBOEnable", FALSE); |
1311 | } | 1311 | } |
1312 | LLVertexBuffer::initClass(gSavedSettings.getBOOL("RenderVBOEnable")); | 1312 | LLVertexBuffer::initClass(gSavedSettings.getBOOL("RenderVBOEnable") && gGLManager.mHasVertexBufferObject); |
1313 | 1313 | ||
1314 | if (LLFeatureManager::getInstance()->isSafe() | 1314 | if (LLFeatureManager::getInstance()->isSafe() |
1315 | || (gSavedSettings.getS32("LastFeatureVersion") != LLFeatureManager::getInstance()->getVersion()) | 1315 | || (gSavedSettings.getS32("LastFeatureVersion") != LLFeatureManager::getInstance()->getVersion()) |
diff --git a/linden/indra/newview/pipeline.cpp b/linden/indra/newview/pipeline.cpp index 36ffb05..5458af5 100644 --- a/linden/indra/newview/pipeline.cpp +++ b/linden/indra/newview/pipeline.cpp | |||
@@ -4934,7 +4934,7 @@ void LLPipeline::setUseVBO(BOOL use_vbo) | |||
4934 | } | 4934 | } |
4935 | 4935 | ||
4936 | resetVertexBuffers(); | 4936 | resetVertexBuffers(); |
4937 | LLVertexBuffer::initClass(use_vbo); | 4937 | LLVertexBuffer::initClass(use_vbo && gGLManager.mHasVertexBufferObject); |
4938 | } | 4938 | } |
4939 | } | 4939 | } |
4940 | 4940 | ||
diff --git a/linden/indra/newview/skins/default/xui/de/floater_pay_object.xml b/linden/indra/newview/skins/default/xui/de/floater_pay_object.xml index 07dee37..fc7c204 100644 --- a/linden/indra/newview/skins/default/xui/de/floater_pay_object.xml +++ b/linden/indra/newview/skins/default/xui/de/floater_pay_object.xml | |||
@@ -1,5 +1,5 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="Give Money" title="[PAY TYPE] [FIRST] [LAST> | 2 | <floater name="Give Money" title="[PAY TYPE] [FIRST] [LAST]"> |
3 | 3 | ||
4 | <string name="pay group"> | 4 | <string name="pay group"> |
5 | Gruppe bezahlen: | 5 | Gruppe bezahlen: |
diff --git a/linden/indra/newview/skins/default/xui/de/panel_status_bar.xml b/linden/indra/newview/skins/default/xui/de/panel_status_bar.xml index 565e6b8..6c2da13 100644 --- a/linden/indra/newview/skins/default/xui/de/panel_status_bar.xml +++ b/linden/indra/newview/skins/default/xui/de/panel_status_bar.xml | |||
@@ -6,7 +6,7 @@ | |||
6 | <text length="1" name="BalanceText" tool_tip="Kontostand" type="string"> | 6 | <text length="1" name="BalanceText" tool_tip="Kontostand" type="string"> |
7 | Wird geladen... | 7 | Wird geladen... |
8 | </text> | 8 | </text> |
9 | <button label="" label_selected="" name="buycurrency" tool_tip="Geld kaufen"/> | 9 | <button label="[CURRENCY]" label_selected="" name="buycurrency" tool_tip="Geld kaufen"/> |
10 | <text length="12" name="TimeText" tool_tip="Aktuelle Zeit (Pazifik)" type="string"> | 10 | <text length="12" name="TimeText" tool_tip="Aktuelle Zeit (Pazifik)" type="string"> |
11 | 12:00 | 11 | 12:00 |
12 | </text> | 12 | </text> |
diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py index 3651bea..8225b4c 100755 --- a/linden/indra/newview/viewer_manifest.py +++ b/linden/indra/newview/viewer_manifest.py | |||
@@ -1018,7 +1018,7 @@ class Linux_i686Manifest(LinuxManifest): | |||
1018 | self.path("libELFIO.so") | 1018 | self.path("libELFIO.so") |
1019 | self.path("libopenjpeg.so.2") | 1019 | self.path("libopenjpeg.so.2") |
1020 | self.path("libxml2.so.2") | 1020 | self.path("libxml2.so.2") |
1021 | self.path("libz.so.1") | 1021 | self.path("libz.so.1","libz.so") |
1022 | 1022 | ||
1023 | # OpenAL | 1023 | # OpenAL |
1024 | self.path("libopenal.so.1.12.854", "libopenal.so.1") | 1024 | self.path("libopenal.so.1.12.854", "libopenal.so.1") |