diff options
author | Nicky <nicky.dasmijn@gmail.com> | 2022-04-23 18:36:49 +0200 |
---|---|---|
committer | Nicky <nicky.dasmijn@gmail.com> | 2022-04-23 18:36:49 +0200 |
commit | 4c34a0275192cea26d1d63f59639275d1cbeda20 (patch) | |
tree | 2a35797f5b64da08e7babae80078a70d6ee0b199 /indra | |
parent | d6b34d41afc1f77a28e60ae1f9e22b61323052fa (diff) |
Setting openal option in cache had gone poof.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/cmake/OPENAL.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/cmake/OPENAL.cmake b/indra/cmake/OPENAL.cmake index 84dad367b7..0b6a7c2853 100644 --- a/indra/cmake/OPENAL.cmake +++ b/indra/cmake/OPENAL.cmake @@ -4,6 +4,11 @@ include(Prebuilt) include_guard() +# ND: Turn this off by default, the openal code in the viewer isn't very well maintained, seems +# to have memory leaks, has no option to play music streams +# It probably makes sense to to completely remove it + +set(USE_OPENAL OFF CACHE BOOL "Enable OpenAL") # ND: To streamline arguments passed, switch from OPENAL to USE_OPENAL # To not break all old build scripts convert old arguments but warn about it if(OPENAL) |