diff options
author | Erik Kundiman <erik@megapahit.org> | 2023-12-14 15:43:27 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2023-12-14 15:43:27 +0800 |
commit | 0cce0b8149e049161ab17f1c608ded2d6cc12b0e (patch) | |
tree | 98ae022753514ec29c263f7ec04cf491b6fa0f1c /indra/llplugin | |
parent | 118ee38f9a0406af5d800ee05fdc5cf87e78081b (diff) |
macOS internal web browser
Just untar Dullahan package manually in prebuilt libs dir.
Diffstat (limited to 'indra/llplugin')
-rw-r--r-- | indra/llplugin/llpluginclassmedia.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/indra/llplugin/llpluginclassmedia.cpp b/indra/llplugin/llpluginclassmedia.cpp index e0b3f6ef56..14d0ea18cf 100644 --- a/indra/llplugin/llpluginclassmedia.cpp +++ b/indra/llplugin/llpluginclassmedia.cpp @@ -33,10 +33,8 @@ #include "llpluginmessageclasses.h" #include "llcontrol.h" -#ifndef LL_USESYSTEMLIBS -extern LLControlGroup gSavedSettings; -#endif #if LL_DARWIN +extern LLControlGroup gSavedSettings; extern BOOL gHiDPISupport; #endif @@ -936,7 +934,7 @@ void LLPluginClassMedia::setUserDataPath(const std::string &user_data_path_cache message.setValue("username", username); // cef shares cache between users but creates user-based contexts message.setValue("cef_log_file", user_data_path_cef_log); -#ifndef LL_USESYSTEMLIBS +#if LL_DARWIN bool cef_verbose_log = gSavedSettings.getBOOL("CefVerboseLog"); message.setValueBoolean("cef_verbose_log", cef_verbose_log); #endif |