Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 14 Apr 2021 13:14:12 -1000
From:      bruce@hawaii-pacific.com
To:        freebsd-questions@freebsd.org
Subject:   Seamonkey build
Message-ID:  <f7deb7f3-75a6-c975-6a0f-d7b1aabe5278@hawaii-pacific.com>

next in thread | raw e-mail | index | archive | help
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






Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?f7deb7f3-75a6-c975-6a0f-d7b1aabe5278>