Seamonkey build

bruce at hawaii-pacific.com bruce at hawaii-pacific.com
Wed Apr 14 23:14:16 UTC 2021


download the source file unzip.

cd to directory where you want to download and build seamonkey

fetch 
https://archive.mozilla.org/pub/seamonkey/releases/2.53.7/source/seamonkey-2.53.7.source.tar.xz

tar xvzf ./seamonkey-2.53.7.source.tar.xz

add the below mozconfig file to the root folder.

cd seamonkey-2.53.7/build/unix

../../configure

gmake

sudo gmake install

# You can also go to 
https://www.seamonkey-project.org/dev/code-development and follow the 
directions there.  The dependencies are listed there, but for linux.

The executable location is: seamonkey-2.53.7/build/unix/dist/bin/

#change "/path/to" to where you put your download

mozconfig:

export CC=clang
export CXX=clang++
ac_add_options --enable-application=comm/suite
ac_add_options --enable-calendar
ac_add_options --enable-irc
ac_add_options --enable-dominspector
mk_add_options MOZ_OBJDIR=/path/to/mozilla-253/build/unix
ac_add_options --enable-optimize
ac_add_options --enable-js-shell
#ac_add_options --enable-elf-hack
ac_add_options --disable-debug-symbols
ac_add_options --disable-tests

# Disable checking that add-ons are signed by the trusted root
MOZ_ADDON_SIGNING=0
# Disable enforcing that add-ons are signed by the trusted root
MOZ_REQUIRE_SIGNING=0

# Package js shell
export MOZ_PACKAGE_JSSHELL=1





More information about the freebsd-questions mailing list