aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/linux_tools
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:07 -0500
committerJacek Antonelli2008-08-15 23:45:07 -0500
commit8465910c79b8e746e04fd581cca2d60399e569b9 (patch)
treef43fec3e83c46e0d6190dca923d6fb268b52ffdd /linden/indra/newview/linux_tools
parentSecond Life viewer sources 1.18.2.1 (diff)
downloadmeta-impy-8465910c79b8e746e04fd581cca2d60399e569b9.zip
meta-impy-8465910c79b8e746e04fd581cca2d60399e569b9.tar.gz
meta-impy-8465910c79b8e746e04fd581cca2d60399e569b9.tar.bz2
meta-impy-8465910c79b8e746e04fd581cca2d60399e569b9.tar.xz
Second Life viewer sources 1.18.3.2-RC
Diffstat (limited to 'linden/indra/newview/linux_tools')
-rw-r--r--linden/indra/newview/linux_tools/client-readme.txt4
-rwxr-xr-xlinden/indra/newview/linux_tools/wrapper.sh10
2 files changed, 13 insertions, 1 deletions
diff --git a/linden/indra/newview/linux_tools/client-readme.txt b/linden/indra/newview/linux_tools/client-readme.txt
index e07384c..59ebf67 100644
--- a/linden/indra/newview/linux_tools/client-readme.txt
+++ b/linden/indra/newview/linux_tools/client-readme.txt
@@ -97,6 +97,10 @@ you wish.
97These are the most commonly-encountered known issues which are specific to 97These are the most commonly-encountered known issues which are specific to
98the Alpha release of the Linux client. 98the Alpha release of the Linux client.
99 99
100* VOICE COMMUNICATION - this is not yet available in the Linux client.
101
102* STREAMING MOVIES - these are currently disabled while we work on some issues.
103
100* VISUAL EFFECTS AND PERFORMANCE - many Linux graphics drivers are not as 104* VISUAL EFFECTS AND PERFORMANCE - many Linux graphics drivers are not as
101 robust as their counterparts for other operating systems, so some advanced 105 robust as their counterparts for other operating systems, so some advanced
102 Second Life graphical features have been DISABLED by default to aid 106 Second Life graphical features have been DISABLED by default to aid
diff --git a/linden/indra/newview/linux_tools/wrapper.sh b/linden/indra/newview/linux_tools/wrapper.sh
index d39fc3a..9adc4d3 100755
--- a/linden/indra/newview/linux_tools/wrapper.sh
+++ b/linden/indra/newview/linux_tools/wrapper.sh
@@ -43,6 +43,9 @@ export LL_GL_BASICEXT=x
43## - Avoids an often-buggy X feature that doesn't really benefit us anyway. 43## - Avoids an often-buggy X feature that doesn't really benefit us anyway.
44export SDL_VIDEO_X11_DGAMOUSE=0 44export SDL_VIDEO_X11_DGAMOUSE=0
45 45
46## - Works around a problem with misconfigured 64-bit systems not finding GL
47export LIBGL_DRIVERS_PATH="${LIBGL_DRIVERS_PATH}":/usr/lib64/dri:/usr/lib32/dri:/usr/lib/dri
48
46## Nothing worth editing below this line. 49## Nothing worth editing below this line.
47##------------------------------------------------------------------- 50##-------------------------------------------------------------------
48 51
@@ -65,7 +68,12 @@ if [ -n "$LL_TCMALLOC" ]; then
65 fi 68 fi
66 fi 69 fi
67fi 70fi
68LD_LIBRARY_PATH="`pwd`"/lib:"`pwd`"/app_settings/mozilla-runtime-linux-i686:"${LD_LIBRARY_PATH}" $LL_WRAPPER bin/do-not-directly-run-secondlife-bin `cat gridargs.dat` $@ | cat 71
72export SL_ENV='LD_LIBRARY_PATH="`pwd`"/lib:"`pwd`"/app_settings/mozilla-runtime-linux-i686:"${LD_LIBRARY_PATH}"'
73export SL_CMD='$LL_WRAPPER bin/do-not-directly-run-secondlife-bin'
74export SL_OPT="`cat gridargs.dat` $@"
75
76eval ${SL_ENV} ${SL_CMD} ${SL_OPT} || echo Unclean shutdown.
69 77
70echo 78echo
71echo '*********************************************************' 79echo '*********************************************************'