summaryrefslogtreecommitdiff
path: root/indra
AgeCommit message (Collapse)Author
2024-09-03Merge branch 'develop'Erik Kundiman
2024-09-02Stream notification channel doesn't disable localErik Kundiman
chat notification, and change the default channel to 751751.
2024-09-01Merge branch 'main' into freebsdHiroo Ono
2024-09-01Build and link collada-dom v2.3-r7 taken from Linden Lab's 3rd party softwareHiroo Ono
repository.
2024-09-01Build private static collada-dom library for Linux and FreeBSD.Hiroo Ono
Clone the repository by git and make it a cmake submodule.
2024-08-31Revert GNU/Linux to use system Collada DOM for nowErik Kundiman
2024-08-31Remove Collada DOM dependency on FreeBSDErik Kundiman
and replace it with direct dependencies on Minizip and PCRE.
2024-08-31Fix Error: Dae parsing issue on FreeBSDErik Kundiman
by managing to compile LL's ColladaDOM 2.3 on-the-fly.
2024-08-31Make sure webrtc gets emptied before refilling itErik Kundiman
on macOS arm64, the header directory.
2024-08-31Make sure ColladaDOM gets built nowErik Kundiman
Spaces are really just troublesome in argument passing. They can't really be escaped, quoting from -D would even replace spaces with semicolons. Hence making use of every variable that can be used in Collada DOM's CMakeLists.txt.
2024-08-31Revert "macOS uses prebuilt Collada DOM binaries"Erik Kundiman
This reverts commit 3bba39cf3e4d56da5aba883479539ed89fa578b9.
2024-08-31macOS uses prebuilt Collada DOM binariesErik Kundiman
2024-08-31Fix logics in deciding to build ColladaDOM or notErik Kundiman
So that colladadom_installed won't throw USESYSTEMLIBS to the next scope. Also libpcrecpp_LIBRARIES doesn't take spaces (might work by escaping the quotes, but only 1 pcrecpp needed anyway).
2024-08-31Revert Linux/BSD to use system Collada DOM for nowErik Kundiman
Turns out getting 2.3 compiled on those platforms need a lot more attention. Apart from that, the compilation result variable name got fixed, the prebuilt include directory got fixed, and pkg-config-ing minizip, libpcrecpp and libxml-2.0 so we can make have generic variable arguments to pass to Collada DOM's CMake settings.
2024-08-30Fix Error: Dae parsing issue - see log for detailsErik Kundiman
https://megapahit.com/show_bug.cgi?id=76 It seems like we have to use LL's Collada DOM 2.3. Make sure minizip is installed on macOS. It should be safe to uninstall your system Collada DOM package now. The CMake arguments might have to be completed for non-Darwin platforms in a next commit.
2024-08-30Custom channel stream notif sent as if from viewerErik Kundiman
As if it was the user typing "/157157 Now playing blabla".
2024-08-30Stream notification channel setting in preferencesErik Kundiman
Not in effect yet.
2024-08-29Fix left out & minimise diff of disabling WebRTCErik Kundiman
2024-08-28Make sure DullahanHelper.app gets codesignedErik Kundiman
Somehow it wouldn't get signed using the previous way even though that's pretty much how it was done in my script all this time, which would work. So I just had to move it to the next execute_process, and problem solved.
2024-08-28Automatic codesigning on macOSErik Kundiman
CMAKE_OSX_DEPLOYMENT_TARGET here, even though reset in Variables.cmake with mmacosx-version-min, will be used as the hardened runtime version when codesigning. Instructions use 11 as that version, as the builder is assumed to be building for arm64. When building for x86-64, you can replace all 11 here with 10.15. The sudo in codesigning is required for builders on Apple Silicon whose SIP is enabled, which is assumed to be the most likely case. Credits to Cate (32a).
2024-08-28Fix left out & error-causing from previous commitErik Kundiman
2024-08-28Disable WebRTC on Fedora and openSUSE TumbleweedErik Kundiman
It breaks CEF on these platforms.
2024-08-28Remove alut dependency on UbuntuErik Kundiman
2024-08-28lipo -thin every dylib in Frameworks automaticallyErik Kundiman
foreach, and execute_process' OUTPUT_VARIABLE just don't work in installation phase SCRIPT.
2024-08-28Unmount VLC volume on macOS after installationErik Kundiman
2024-08-28Fix WebRTC include dirs extracted to wrong pathErik Kundiman
for macOS arm64.
2024-08-28Fix FLTK dependency package name on UbuntuErik Kundiman
Must have missed when I was replacing the word "gtk" (on gtk2.0-0) with the word "fltk".
2024-08-28Fix order of checking lib64 & lib/x86_64-linux-gnuErik Kundiman
Ubuntu, unlike Debian, has /lib64 and /usr/lib64 in their system, so it misled CMake. This is a quick fix, ideally it's the distro name that is checked.
2024-08-26Don't create links to non-existent dependenciesErik Kundiman
JsonCpp isn't used any more and Boost is linked statically now, so SLPlugin doesn't need to link to any Boost dynamic libraries upwards (which are of an older version and are there because they're still needed by Collada DOM). I suspect links to non-existent files have been the cause of why Gatekeeper just wouldn't identify the developer despite the fact that Apple notarisation service would still accept the bundle and various Apple's integrity (command-line) tools would still validate the bundle too. This commit also removes unnecessary linkage changes for the media plugins.
2024-08-26Merge branch 'main' into 2024.06-atlasaurusErik Kundiman
2024-08-26No need to create link for libbrotlidec.1.1.0.dylibErik Kundiman
Only libbrotlidec.1.dylib that is linked by some other library there (libfreetype.6.dylib). This commit also reindented 8 spaces to only 4 spaces.
2024-08-25Merge branch 'main' into 2024.06-atlasaurusErik Kundiman
2024-08-25Put media plugins install commands correspondinglyErik Kundiman
2024-08-25red-sdl cursor tweakssecretfoxtail
Try to improve visual consistency
2024-08-25Merge branch 'main' into 2024.06-atlasaurusErik Kundiman
2024-08-25Darwin prebuilt OpenSSL binaryErik Kundiman
2024-08-25Fix macOS architecture comparison operatorErik Kundiman
cause they're not like 0 valued ${_binary}_installed that it would run lipo -thin on already thinned binaries.
2024-08-25Darwin prebuilt libcurl binaryErik Kundiman
2024-08-25Darwin & Tumbleweed use prebuilt XMLRPC-EPIErik Kundiman
Refer to this commit if you need to recover the steps in compiling XMLRPC-EPI. The prebuilt binary for Darwin is distributed as universal, and will be thinned accordingly. It also makes use of autobuild.xml, but only partially (the sha1sum isn't used yet in the Prebuilt.cmake reimplementation).
2024-08-25use_prebuilt_binary(nanosvg) uses reimplementationErik Kundiman
also to minimise ViewerMisc.cmake diff from upstream.
2024-08-25Make Prebuilt.cmake reimplementation more genericErik Kundiman
Anticipate the possibility that an archive isn't suffixed with a 64. Parentheses need to be escaped by quotes (backslashing would work too), otherwise they would be parsed as part of CMake commands syntax. Regex subexpressions shouldn't contain regex themselves (only verbatim or preprocessed strings are used within the parentheses).
2024-08-24Linden_Dollar_Alert tweaksecretfoxtail
Just playing with gimp filters :3
2024-08-23Merge branch 'main' into 2024.06-atlasaurusErik Kundiman
2024-08-23Prevent arrival/departure notifs with empty namesErik Kundiman
2024-08-23Arrival/departure notifications body text are greyErik Kundiman
2024-08-23Stream notification header uses title metadataErik Kundiman
2024-08-23Window_NoTitle_Foreground brightness adjustmentsecretfoxtail
Tinting it a touch darker.
2024-08-23Merge remote-tracking branch 'secretfoxtail/main'Erik Kundiman
2024-08-23Nearby tab quickfix IIIsecretfoxtail
Play around with various values in attempt to get cleaner, more consistent display of information
2024-08-23Merge remote-tracking branch 'secretfoxtail/main'Erik Kundiman