These builds have been compiled on: $ uname -a SunOS s11-build 5.11 11.4.42.111.0 i86pc i386 i86pc virtualbox $ cat /etc/release Oracle Solaris 11.4 X86 Copyright (c) 1983, 2021, Oracle and/or its affiliates. Assembled 03 December 2021 $ gcc --version gcc (GCC) 7.5.0 Copyright (C) 2017 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. $ cat .mozconfig # Clear this if not a 64bit build _BUILD_64=1 # Clear this to build for Solaris #_BUILD_ILLUMOS=1 # Standard build options for Pale Moon ac_add_options --enable-application=palemoon ac_add_options --enable-optimize="-O2 -w" ac_add_options --enable-default-toolkit=cairo-gtk3 ac_add_options --enable-jemalloc ac_add_options --enable-strip ac_add_options --enable-devtools ac_add_options --enable-av1 ac_add_options --enable-jxl ac_add_options --disable-webrtc ac_add_options --disable-gamepad ac_add_options --disable-tests ac_add_options --disable-debug ac_add_options --disable-necko-wifi ac_add_options --disable-updater ac_add_options --with-pthreads # SunOS requires this because the GNU toolchain is not the default ac_add_options --with-toolchain-prefix=g # Please see https://www.palemoon.org/redist.shtml for restrictions when using the official branding. ac_add_options --enable-official-branding export MOZILLA_OFFICIAL=1 export CONFIG_SHELL=/bin/bash if [ -n "$_BUILD_ILLUMOS" ]; then export MOZ_PKG_SPECIAL=illumos fi if [ -n "$_BUILD_64" ]; then ac_add_options --libdir=/usr/lib/amd64 ac_add_options --x-libraries=/usr/lib/amd64 export PKG_CONFIG_PATH=/usr/lib/amd64/pkgconfig else ac_add_options --target=i386-pc-solaris2.11 ac_add_options --host=i386-pc-solaris2.11 ac_add_options --libdir=/usr/lib ac_add_options --x-libraries=/usr/lib export PKG_CONFIG_PATH=/usr/lib/pkgconfig fi