A kind reminder we would like all registered users to weigh in on one of our forum's security policies.
Please take a moment to read this thread and place a vote.
https://forum.palemoon.org/viewtopic.php?f=17&t=32935

SeaLion (SeaMonkey / Borealis fork)

Discussions about applications built on our platform code that do not have a dedicated board.

Moderators: trava90, athenian200

User avatar
wicknix
Fanatic
Fanatic
Posts: 179
Joined: 2018-03-26, 04:47
Location: Wisconsin, USA

Re: SeaLion (SeaMonkey / Borealis fork)

Post by wicknix » 2024-11-13, 01:22

New builds are now available for Intel Mac, PowerPC Linux, and x86_64 Linux.
Silence is golden, but duct tape is silver...

User avatar
fatboy
Astronaut
Astronaut
Posts: 577
Joined: 2017-12-19, 08:03
Location: Canada

Re: SeaLion (SeaMonkey / Borealis fork)

Post by fatboy » 2024-11-17, 06:31

awesome! Thank You!
Systemd Free - MX Linux, Antix Linux & Artix Linux

User avatar
wicknix
Fanatic
Fanatic
Posts: 179
Joined: 2018-03-26, 04:47
Location: Wisconsin, USA

Re: SeaLion (SeaMonkey / Borealis fork)

Post by wicknix » 2025-01-28, 18:00

33.5.1 builds are now available for Intel Mac, PowerPC Linux, and x86_64 Linux.
Silence is golden, but duct tape is silver...

User avatar
wicknix
Fanatic
Fanatic
Posts: 179
Joined: 2018-03-26, 04:47
Location: Wisconsin, USA

Re: SeaLion (SeaMonkey / Borealis fork)

Post by wicknix » 2025-11-13, 08:01

Sorry for slacking. Been a busy year. New builds are up.

Linux build is here

Intel Mac build is here
Silence is golden, but duct tape is silver...

jarsealer
Apollo supporter
Apollo supporter
Posts: 43
Joined: 2025-08-03, 23:56

Re: SeaLion (SeaMonkey / Borealis fork)

Post by jarsealer » 2025-11-13, 18:38

Hello, I just discovered this thread and your web browser,

I'm curious if It's possible to build SeaLion for linux ARM (aarch64) architecture. What would be the system and build requirements to do this?
Pale Moon and Basilisk aarch64 user, on Raspberry Pi 5 (8 GB RAM)

User avatar
wicknix
Fanatic
Fanatic
Posts: 179
Joined: 2018-03-26, 04:47
Location: Wisconsin, USA

Re: SeaLion (SeaMonkey / Borealis fork)

Post by wicknix » 2025-11-13, 23:52

The build system / requirements are the same as Pale Moon’s. You can find that info here:
https://developer.palemoon.org/build/linux/

My build process is a bit crude compared to theirs.
1) Download SeaLion’s source code: https://github.com/wicknix/SeaLion/releases , then extract it.
2) Download the latest UXP: https://repo.palemoon.org/MoonchildProd ... P/releases
3) Extract UXP source.
4) Rename the extracted UXP directory to “platform” (without the quotes).
5) Move the platform directory in to SeaLions source directory.
6) Now you can follow the build instructions for Pale Moon. Also you’ll need to edit the included .mozconfig as needed for Linux.

Cheers
Silence is golden, but duct tape is silver...

User avatar
fatboy
Astronaut
Astronaut
Posts: 577
Joined: 2017-12-19, 08:03
Location: Canada

Re: SeaLion (SeaMonkey / Borealis fork)

Post by fatboy » 2025-11-19, 23:59

Great to see this browser still going strong :)
Systemd Free - MX Linux, Antix Linux & Artix Linux

User avatar
frostknight
Keeps coming back
Keeps coming back
Posts: 773
Joined: 2022-08-10, 02:25

Re: SeaLion (SeaMonkey / Borealis fork)

Post by frostknight » 2025-11-20, 01:31

wicknix wrote:
2025-11-13, 08:01
Sorry for slacking. Been a busy year. New builds are up.
Off-topic:
Does this mean you are now doing slackware builds?


Get it slacking? :P
Freedom is never more than one generation away from extinction. Feelings are not facts
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!

jarsealer
Apollo supporter
Apollo supporter
Posts: 43
Joined: 2025-08-03, 23:56

Re: SeaLion (SeaMonkey / Borealis fork)

Post by jarsealer » 2025-12-11, 08:42

The build fails with error:

Code: Select all

DEBUG: configure: error: * * * Could not find gconf-2.0
ERROR: old-configure failed
It needs gconf, which is deprecated and not available in Debian 13 repos. I guess I'll have to compile in a Debian 9 system.

Also, I'm not sure if I configured the mozconfig correctly here, since I'm a complete newbie. Are these correct configurations for Linux arm64?

Code: Select all

# These must be set for cross builds, and don't hurt straight builds.
RANLIB="${TOOLCHAIN_PREFIX}ranlib"
AR="${TOOLCHAIN_PREFIX}ar"
AS=$CC
LD=ld
STRIP="${TOOLCHAIN_PREFIX}strip"
OTOOL="${TOOLCHAIN_PREFIX}otool"
export CC CXX HOST_CC HOST_CXX RANLIB AR AS LD STRIP OTOOL

# Clear this if not a 64bit build
_BUILD_64=1

# Set GTK Version to 2 or 3
_GTK_VERSION=3

#CROSS_COMPILE=1
ac_add_options --enable-application=navigator
ac_add_options --enable-default-toolkit=cairo-gtk$_GTK_VERSION
ac_add_options --enable-jemalloc
ac_add_options --enable-strip
ac_add_options --disable-tests
ac_add_options --enable-optimize=-O2
ac_add_options --enable-av1
ac_add_options --enable-jxl
ac_add_options --disable-debug
ac_add_options --disable-crashreporter
ac_add_options --disable-webrtc
ac_add_options --disable-precompiled-startupcache
ac_add_options --disable-necko-wifi
ac_add_options --disable-safe-browsing
ac_add_options --disable-devtools

export MOZ_TELEMETRY_REPORTING=0
export MOZ_ADDON_SIGNING=0
export MOZ_REQUIRE_SIGNING=0

# Processor architecture specific build options
if [ -n "$_BUILD_64" ]; then
  ac_add_options --x-libraries=/usr/lib64
else
  ac_add_options --x-libraries=/usr/lib
fi

export MOZ_PKG_SPECIAL=gtk$_GTK_VERSION
Pale Moon and Basilisk aarch64 user, on Raspberry Pi 5 (8 GB RAM)