35 lines
1.1 KiB
Diff
35 lines
1.1 KiB
Diff
--- a/source/modules/juce_core/native/juce_linux_SystemStats.cpp
|
|
+++ b/source/modules/juce_core/native/juce_linux_SystemStats.cpp
|
|
@@ -198,7 +198,7 @@
|
|
|
|
String SystemStats::getUserLanguage()
|
|
{
|
|
- #if JUCE_BSD
|
|
+ #if JUCE_BSD || !defined(__GLIBC__)
|
|
if (auto langEnv = getenv ("LANG"))
|
|
return String::fromUTF8 (langEnv).upToLastOccurrenceOf (".UTF-8", false, true);
|
|
|
|
@@ -210,7 +210,7 @@
|
|
|
|
String SystemStats::getUserRegion()
|
|
{
|
|
- #if JUCE_BSD
|
|
+ #if JUCE_BSD || !defined(__GLIBC__)
|
|
return {};
|
|
#else
|
|
return getLocaleValue (_NL_IDENTIFICATION_TERRITORY);
|
|
diff --git a/source/modules/juce_core/system/juce_SystemStats.cpp b/source/modules/juce_core/system/juce_SystemStats.cpp
|
|
index 847127162..815ead97c 100644
|
|
--- a/source/modules/juce_core/system/juce_SystemStats.cpp
|
|
+++ b/source/modules/juce_core/system/juce_SystemStats.cpp
|
|
@@ -138,7 +138,8 @@ String SystemStats::getStackBacktrace()
|
|
{
|
|
String result;
|
|
|
|
- #if JUCE_ANDROID || JUCE_MINGW || JUCE_WASM
|
|
+// #if JUCE_ANDROID || JUCE_MINGW || JUCE_WASM
|
|
+ #if 1
|
|
jassertfalse; // sorry, not implemented yet!
|
|
|
|
#elif JUCE_WINDOWS
|