Page 13 of 14
Re: SeaLion - A web browser for 32-bit PowerPC Linux (Void / Debian 11)
Posted: Tue Jul 01, 2025 11:44 am
by xeno74
Hi All,
I created a new build environment for SeaLion last week.
With this new build environment, I compiled the latest SeaLion with the new UXP version UXP-RB_20250602.
Download:
github.com
.mozconfig:
Code: Select all
export CC="gcc -m32"
export CXX="g++ -m32"
mk_add_options PYTHON=/usr/bin/python2
mk_add_options AUTOCONF=/usr/bin/autoconf-2.13
# Set GTK Version to 2 or 3
_GTK_VERSION=2
ac_add_options --target=powerpc-linux-gnu
ac_add_options --host=powerpc-linux-gnu
ac_add_options --with-system-jpeg
ac_add_options --enable-application=navigator
ac_add_options --enable-optimize
ac_add_options --enable-jxl
ac_add_options --enable-strip
ac_add_options --enable-default-toolkit=cairo-gtk2
ac_add_options --disable-tests
ac_add_options --disable-debug
ac_add_options --disable-crashreporter
ac_add_options --disable-webrtc
ac_add_options --disable-necko-wifi
ac_add_options --disable-safe-browsing
ac_add_options --disable-devtools
ac_add_options --disable-pulseaudio
ac_add_options --disable-jemalloc
ac_add_options --disable-updater
ac_add_options --disable-gconf
ac_add_options --disable-gamepad
ac_add_options --disable-precompiled-startupcache
ac_add_options --disable-gold
export MOZ_TELEMETRY_REPORTING=0
export MOZ_ADDON_SIGNING=0
export MOZ_REQUIRE_SIGNING=0
Cheers,
Christian
Re: SeaLion - A web browser for 32-bit PowerPC Linux (Void / Debian 11)
Posted: Mon Jul 07, 2025 8:10 am
by mintppc
Do you guys want this latest SeaLion version (33.7.2) be included in the MintPPC32 repository ?
Re: SeaLion - A web browser for 32-bit PowerPC Linux (Void / Debian 11)
Posted: Mon Jul 07, 2025 10:34 am
by xeno74
mintppc wrote: Mon Jul 07, 2025 8:10 am
Do you guys want this latest SeaLion version (33.7.2) be included in the MintPPC32 repository ?
It isn’t an official release. Maybe Wicknix releases it as an official release.
Re: SeaLion - A web browser for 32-bit PowerPC Linux (Void / Debian 11)
Posted: Mon Jul 07, 2025 10:40 am
by mintppc
I already added it and I am writing from within Sealion 33.7.2 in MintPPC32. Everyone in MintPPC32 can upgrade now.
Re: SeaLion - A web browser for 32-bit PowerPC Linux (Void / Debian 11)
Posted: Mon Jul 07, 2025 2:04 pm
by xeno74
mintppc wrote: Mon Jul 07, 2025 10:40 am
I already added it and I am writing from within Sealion 33.7.2 in MintPPC32. Everyone in MintPPC32 can upgrade now.
Great! Thank you!

Re: SeaLion - A web browser for 32-bit PowerPC Linux (Void / Debian 11)
Posted: Tue Jul 15, 2025 8:33 pm
by xeno74
I have compiled an x86_64 package as well.
Download:
github.com

Re: SeaLion - A web browser for 32-bit PowerPC Linux (Void / Debian 11)
Posted: Wed Aug 13, 2025 5:13 pm
by xeno74
Hi All,
A new ViewTube add-on is available.
Installation instructions:
- Download the SeaLion-Extras.zip package.
- Unpack it and install the addon greasemonkey-3.10.0.1rc3pre-sw.xpi
- Download the new ViewTube SeaLion and Brassmonkey package
- Delete the old folder gm_scripts
rm -rf /home/<your user directory>/.wicknix/sealion/<profile directory>/gm_scripts
- Unpack the package and copy the folder gm_scripts to /home/<your user directory>/.wicknix/sealion/<profile directory>/
For example: Code: Select all
cp -R Downloads/gm_scripts /home/amigaone/.wicknix/sealion/iykmgak4.default/
- Restart SeaLion
Cheers,
Christian
Re: SeaLion - A web browser for 32-bit PowerPC Linux (Void / Debian 11)
Posted: Fri Aug 22, 2025 5:54 pm
by xeno74
SeaLion
33.8.1.2 is available.
Download and further information:
github.com
Re: SeaLion - A web browser for 32-bit PowerPC Linux (Void / Debian 11)
Posted: Sun Aug 24, 2025 5:49 pm
by xeno74
Here is the Linux PPC64 version of SeaLion
33.8.1.2:
github.com
Re: SeaLion - A web browser for 32-bit PowerPC Linux (Void / Debian 11)
Posted: Tue Aug 26, 2025 6:07 pm
by xeno74
Patches for Arctic Fox/Musl. Also for SeaLion.
git.adelielinux.org
I use the following patches for SeaLion/musl for Adélie Linux.
hunspell.patch:
Code: Select all
On musl libc, #define free is dangerous.
Upstream-URL: https://github.com/rmottola/Arctic-Fox/issues/100
--- Arctic-Fox-45.1/extensions/spellcheck/hunspell/glue/hunspell_alloc_hooks.h.old 2024-09-30 19:54:44.000000000 +0000
+++ Arctic-Fox-45.1/extensions/spellcheck/hunspell/glue/hunspell_alloc_hooks.h 2024-10-22 21:46:00.494798524 +0000
@@ -47,6 +47,8 @@
* allocated using C memory allocation functions.
*/
+#include <sched.h>
+#include "mozilla/Logging.h"
#include "mozilla/mozalloc.h"
#include "mozHunspellAllocator.h"
stackwalk-x86-ppc.patch:
Code: Select all
--- Arctic-Fox-45.1/mozglue/misc/StackWalk.cpp.old 2024-09-30 19:54:44.000000000 +0000
+++ Arctic-Fox-45.1/mozglue/misc/StackWalk.cpp 2024-10-21 11:28:48.295293788 +0000
@@ -42,10 +42,7 @@
(defined(XP_DARWIN) && \
(defined(__i386) || defined(__ppc__) || defined(HAVE__UNWIND_BACKTRACE)))
-#define MOZ_STACKWALK_SUPPORTS_LINUX \
- (defined(linux) && \
- ((defined(__GNUC__) && (defined(__i386) || defined(PPC))) || \
- defined(HAVE__UNWIND_BACKTRACE)))
+#define MOZ_STACKWALK_SUPPORTS_LINUX 0
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1)
#define HAVE___LIBC_STACK_END 1
In addition, I had to compile Python2 for Adélie Linux.
.mozconfig
Code: Select all
export CC="gcc -m32"
export CXX="g++ -m32"
mk_add_options PYTHON=/usr/local/bin/python2
mk_add_options AUTOCONF=/usr/bin/autoconf-2.13
# Set GTK Version to 2 or 3
_GTK_VERSION=2
ac_add_options --target=powerpc-linux-gnu
ac_add_options --host=powerpc-linux-gnu
ac_add_options --with-system-jpeg
ac_add_options --enable-application=navigator
ac_add_options --enable-optimize
ac_add_options --enable-jxl
ac_add_options --enable-strip
ac_add_options --enable-default-toolkit=cairo-gtk2
ac_add_options --disable-tests
ac_add_options --disable-debug
ac_add_options --disable-crashreporter
ac_add_options --disable-webrtc
ac_add_options --disable-necko-wifi
ac_add_options --disable-safe-browsing
ac_add_options --disable-devtools
ac_add_options --disable-pulseaudio
ac_add_options --disable-jemalloc
ac_add_options --disable-updater
ac_add_options --disable-gconf
ac_add_options --disable-gamepad
ac_add_options --disable-precompiled-startupcache
ac_add_options --disable-gold
export MOZ_TELEMETRY_REPORTING=0
export MOZ_ADDON_SIGNING=0
export MOZ_REQUIRE_SIGNING=0