<feed xmlns='http://www.w3.org/2005/Atom'>
<title>viewer.git/indra/cmake/CEFPlugin.cmake, branch 26.1.1</title>
<subtitle>Megapahit's fork of the Second Life viewer.
</subtitle>
<id>https://megapahit.org/viewer.git/atom?h=26.1.1</id>
<link rel='self' href='https://megapahit.org/viewer.git/atom?h=26.1.1'/>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/'/>
<updated>2025-10-05T08:16:49Z</updated>
<entry>
<title>lipo thin SLv macOS universal libraries</title>
<updated>2025-10-05T08:16:49Z</updated>
<author>
<name>Erik Kundiman</name>
<email>erik@megapahit.org</email>
</author>
<published>2025-10-05T08:11:19Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=cee509bcb5a6045369237c0667d17f85f52b808a'/>
<id>urn:sha1:cee509bcb5a6045369237c0667d17f85f52b808a</id>
<content type='text'>
The fatal errors when lipo thinning something that's already thin,
can be safely ignored.
</content>
</entry>
<entry>
<title>Merge tag 'Second_Life_Release#a6d4c1d3-2025.07' into 2025.07</title>
<updated>2025-10-01T08:56:56Z</updated>
<author>
<name>Erik Kundiman</name>
<email>erik@megapahit.org</email>
</author>
<published>2025-09-29T08:29:19Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=a954d290674db08ecaf3c1e6484a0cb6647b88b5'/>
<id>urn:sha1:a954d290674db08ecaf3c1e6484a0cb6647b88b5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>MacOS companion changes for dullahan 1.21 including package structure and linkage fixes</title>
<updated>2025-08-28T03:05:40Z</updated>
<author>
<name>Rye</name>
<email>rye@alchemyviewer.org</email>
</author>
<published>2025-08-28T03:05:40Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=536c821c091be7020c614857e1fd220203f6ab23'/>
<id>urn:sha1:536c821c091be7020c614857e1fd220203f6ab23</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove ../lib rpath from dullahan_host for all</title>
<updated>2025-06-13T09:51:59Z</updated>
<author>
<name>Erik Kundiman</name>
<email>erik@megapahit.org</email>
</author>
<published>2025-06-13T09:51:59Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=358260af531dd617195cc373ed4504048689b3ef'/>
<id>urn:sha1:358260af531dd617195cc373ed4504048689b3ef</id>
<content type='text'>
It's irrelevant on any distro anyway.
</content>
</entry>
<entry>
<title>Build Dullahan in Linux aarch64 config stage</title>
<updated>2025-05-08T09:42:54Z</updated>
<author>
<name>Erik Kundiman</name>
<email>erik@megapahit.org</email>
</author>
<published>2025-05-08T09:42:54Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=390ba2f4fdc8520192182f97d934c9f20367c6a1'/>
<id>urn:sha1:390ba2f4fdc8520192182f97d934c9f20367c6a1</id>
<content type='text'>
GCC needs cstdint header inclusion for it to compile.
include/cef needs to exist first otherwise configuration would fail.
INSTALL_RPATH is needed in try_compile-ing.
PROJECT_ARCH needs to be set on aarch64 to avoid -m64 and
-march(=x86-64) settings which aren't recognised (and wouldn't be
correct) on aarch64.
ENABLE_CXX11_ABI needs to be set ON, otherwise it would use C++ 03's ABI
and cause a linking failure.
Dullahan headers don't seem to be included in the installation upstream,
and dullahan_version.h gets generated only at least after Dullahan
configuration, hence the 2 files copying.
dullahan_host rpath removal is taken out of scope because the Fedora we
support isn't only x86-64 now.
The reindentations are just to make the uniform with the rest in the
file.
</content>
</entry>
<entry>
<title>Only download when there aren't the files yet</title>
<updated>2024-08-13T14:51:01Z</updated>
<author>
<name>Erik Kundiman</name>
<email>erik@megapahit.org</email>
</author>
<published>2024-08-13T14:51:01Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=712b4d935dad7cab52a482994b9e999cc3675d40'/>
<id>urn:sha1:712b4d935dad7cab52a482994b9e999cc3675d40</id>
<content type='text'>
</content>
</entry>
<entry>
<title>CMake file &amp; try_compile replacing execute_process</title>
<updated>2024-08-13T04:18:37Z</updated>
<author>
<name>Erik Kundiman</name>
<email>erik@megapahit.org</email>
</author>
<published>2024-08-13T03:29:14Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=3d2c32c80562106169b78305315e2bd5945fdf09'/>
<id>urn:sha1:3d2c32c80562106169b78305315e2bd5945fdf09</id>
<content type='text'>
file(DOWNLOAD) replacing execute_process(COMMAND curl),
file(ARCHIVE_EXTRACT) replacing execute_process(COMMAND tar xf),
file(MAKE_DIRECTORY) replacing execute_process(COMMAND mkdir -p),
file(COPY) replacing execute_process(COMMAND cp),
file(RENAME) replacing execute_process(COMMAND mv),
try_compile replacing execute_process(COMMAND cmake/make),
LIBS_PREBUILT_DIR replacing AUTOBUILD_INSTALL_DIR,
0 replacing ${${_binary}_installed} where appropriate,
no FMOD reinstallation when it's already installed,
and archives &amp; unarchived source/build directories are in CMake
root binary directory, instead of /tmp.
SHOW_PROGRESS is on for downloading Dullahan from the Megapahit
website cause it can be slow.
</content>
</entry>
<entry>
<title>Right WORKING_DIRECTORY values to shorten paths</title>
<updated>2024-08-12T07:36:30Z</updated>
<author>
<name>Erik Kundiman</name>
<email>erik@megapahit.org</email>
</author>
<published>2024-08-12T07:36:30Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=a350a4a26070a621fcfab58548f7993d158c1cd6'/>
<id>urn:sha1:a350a4a26070a621fcfab58548f7993d158c1cd6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove unnecessary LINUX condition in Fedora test</title>
<updated>2024-08-12T07:28:13Z</updated>
<author>
<name>Erik Kundiman</name>
<email>erik@megapahit.org</email>
</author>
<published>2024-08-12T07:28:13Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=19d47a44d97a3b4fdd84cef9732e79d2708e4c12'/>
<id>urn:sha1:19d47a44d97a3b4fdd84cef9732e79d2708e4c12</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Download &amp; install aren't redone when installed</title>
<updated>2024-08-12T07:22:41Z</updated>
<author>
<name>Erik Kundiman</name>
<email>erik@megapahit.org</email>
</author>
<published>2024-08-12T07:22:41Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=199d71b2baa76f1719cd074b60051db40886f7c0'/>
<id>urn:sha1:199d71b2baa76f1719cd074b60051db40886f7c0</id>
<content type='text'>
by making sure we *write* the _installed files (containing the value 0).
</content>
</entry>
</feed>
