summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2025-11-16 14:17:35 +0800
committerErik Kundiman <erik@megapahit.org>2025-11-16 14:17:35 +0800
commit077720c843eb8bc7ed1009997c50416591875287 (patch)
tree33d6bfe2e1f6ff4344726ac73d72c082e942a4ac
parenta89c854219e8444c7c94146b2833b3fbc42e0c79 (diff)
Get streaming to work again on FreeBSDHEADmain
There's libpthread.so and no libpthread.so.0 on FBSD and it's the other way around on GNU/Linux.
-rw-r--r--indra/newview/llappviewerlinux.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llappviewerlinux.cpp b/indra/newview/llappviewerlinux.cpp
index ae7ed17359..5bbaed750c 100644
--- a/indra/newview/llappviewerlinux.cpp
+++ b/indra/newview/llappviewerlinux.cpp
@@ -134,7 +134,11 @@ int main( int argc, char **argv )
#ifdef __aarch64__
setenv("LD_PRELOAD", APP_PLUGIN_DIR"/libcef.so", 1);
#else
+# if LL_LINUX
setenv("LD_PRELOAD", "libpthread.so.0 libGL.so.1", 1);
+# else
+ setenv("LD_PRELOAD", "libpthread.so libGL.so.1", 1);
+# endif
setenv("__GL_THREADED_OPTIMIZATIONS", "1", 0);
#endif