diff options
| author | Erik Kundiman <erik@megapahit.org> | 2023-10-14 07:32:03 +0800 |
|---|---|---|
| committer | Erik Kundiman <erik@megapahit.org> | 2023-10-14 07:32:03 +0800 |
| commit | 46273f40e8116a06bf7460903a1451e88ca2fad4 (patch) | |
| tree | 9b3fdc6b3884c23dc993168cbd991998f28e5fb7 /indra/newview/llappviewer.cpp | |
| parent | 82391adeb81656b6b23559c52bf4a3db2c932673 (diff) | |
Not build libvlc on macOS for now
At runtime it hasn't worked anyway. And now we can get an ARM build
without having to build libvlc for ARM first.
Diffstat (limited to 'indra/newview/llappviewer.cpp')
| -rw-r--r-- | indra/newview/llappviewer.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 3991b069e6..e897edaf48 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -131,12 +131,12 @@ #include "stringize.h" #include "llcoros.h" #include "llexception.h" -//#if !LL_LINUX +#if !LL_DARWIN #ifndef LL_USESYSTEMLIBS #include "cef/dullahan_version.h" #endif #include "vlc/libvlc_version.h" -//#endif // LL_LINUX +#endif // LL_DARWIN #if LL_DARWIN #include "llwindowsdl.h" @@ -3376,7 +3376,7 @@ LLSD LLAppViewer::getViewerInfo() const info["LIBCEF_VERSION"] = "Undefined"; #endif -//#if !LL_LINUX +#if !LL_DARWIN std::ostringstream vlc_ver_codec; vlc_ver_codec << LIBVLC_VERSION_MAJOR; vlc_ver_codec << "."; @@ -3384,11 +3384,9 @@ LLSD LLAppViewer::getViewerInfo() const vlc_ver_codec << "."; vlc_ver_codec << LIBVLC_VERSION_REVISION; info["LIBVLC_VERSION"] = vlc_ver_codec.str(); -/* #else info["LIBVLC_VERSION"] = "Undefined"; #endif -*/ S32 packets_in = LLViewerStats::instance().getRecording().getSum(LLStatViewer::PACKETS_IN); if (packets_in > 0) |
