diff options
author | Jacek Antonelli | 2008-08-15 23:45:07 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:07 -0500 |
commit | 8465910c79b8e746e04fd581cca2d60399e569b9 (patch) | |
tree | f43fec3e83c46e0d6190dca923d6fb268b52ffdd /linden/indra/newview/linux_tools/wrapper.sh | |
parent | Second Life viewer sources 1.18.2.1 (diff) | |
download | meta-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/wrapper.sh')
-rwxr-xr-x | linden/indra/newview/linux_tools/wrapper.sh | 10 |
1 files changed, 9 insertions, 1 deletions
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. |
44 | export SDL_VIDEO_X11_DGAMOUSE=0 | 44 | export SDL_VIDEO_X11_DGAMOUSE=0 |
45 | 45 | ||
46 | ## - Works around a problem with misconfigured 64-bit systems not finding GL | ||
47 | export 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 |
67 | fi | 70 | fi |
68 | LD_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 | |
72 | export SL_ENV='LD_LIBRARY_PATH="`pwd`"/lib:"`pwd`"/app_settings/mozilla-runtime-linux-i686:"${LD_LIBRARY_PATH}"' | ||
73 | export SL_CMD='$LL_WRAPPER bin/do-not-directly-run-secondlife-bin' | ||
74 | export SL_OPT="`cat gridargs.dat` $@" | ||
75 | |||
76 | eval ${SL_ENV} ${SL_CMD} ${SL_OPT} || echo Unclean shutdown. | ||
69 | 77 | ||
70 | echo | 78 | echo |
71 | echo '*********************************************************' | 79 | echo '*********************************************************' |