6261640a92
We were previously using an old version of the Mozilla updater before they added Mozilla signature verification, but it's Intel-only, so we need to build our own version of the current updater with signature verification disabled.
30 lines
927 B
Text
30 lines
927 B
Text
if [ "$Z_ARCH" == "x64" ]; then
|
|
ac_add_options --target=x86_64-apple-darwin
|
|
elif [ "$Z_ARCH" == "aarch64" ]; then
|
|
ac_add_options --target=aarch64-apple-darwin
|
|
fi
|
|
ac_add_options --enable-bootstrap
|
|
ac_add_options --with-macos-sdk=$HOME/tmp/MacOSX11.0.sdk
|
|
|
|
mk_add_options AUTOCLOBBER=1
|
|
|
|
# These don't all affect the stub, but they can't hurt, and we'll want them if
|
|
# we switch to custom XUL builds
|
|
ac_add_options MOZ_ENABLE_JS_DUMP=1
|
|
ac_add_options MOZ_ENABLE_FORKSERVER=
|
|
ac_add_options MOZ_TELEMETRY_REPORTING=
|
|
ac_add_options MOZ_DATA_REPORTING=
|
|
ac_add_options --disable-tests
|
|
ac_add_options --disable-debug
|
|
ac_add_options --disable-debug-symbols
|
|
ac_add_options --disable-webrtc
|
|
ac_add_options --disable-eme
|
|
|
|
export MOZILLA_OFFICIAL=1
|
|
export RELEASE_OR_BETA=1
|
|
MOZ_REQUIRE_SIGNING=
|
|
|
|
ac_add_options --enable-official-branding
|
|
|
|
# Build updater without MAR signature verification
|
|
ac_add_options --disable-verify-mar
|