summaryrefslogtreecommitdiff
path: root/old-configure.in
diff options
context:
space:
mode:
authorBrian Smith <brian@dbsoft.org>2023-03-14 15:28:51 -0500
committerBrian Smith <brian@dbsoft.org>2023-03-14 15:28:51 -0500
commit26b3d4c15157c7c3e7bae66b2d6534176f27c243 (patch)
tree034cd220507fd41d57df73345281f8922688c797 /old-configure.in
parent9f009467d86fec76c9d909b5283121a35d220f19 (diff)
downloaduxp-26b3d4c15157c7c3e7bae66b2d6534176f27c243.tar.gz
Issue #2160 - Initial support for notarizing during DMG package.
Added --with-macbundle-idenity configure option to set a codesign identity. If no identity is set or cross-compiling from Linux no codesigning will be done. Currently doing a full deep bundle v2 sign, instead of limited v1.
Diffstat (limited to 'old-configure.in')
-rw-r--r--old-configure.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/old-configure.in b/old-configure.in
index c541b4641e..4d997ba560 100644
--- a/old-configure.in
+++ b/old-configure.in
@@ -4743,6 +4743,16 @@ AC_DEFINE_UNQUOTED(MOZ_MACBUNDLE_ID,$MOZ_MACBUNDLE_ID)
AC_SUBST(MOZ_MACBUNDLE_ID)
dnl ========================================================
+dnl = Mac bundle codesign identity
+dnl ========================================================
+MOZ_ARG_WITH_STRING(macbundle-identity,
+[ --with-macbundle-identity=identity
+ Identity to codesign the Mac application bundle],
+[ MOZ_MACBUNDLE_IDENTITY="$withval"])
+
+AC_SUBST(MOZ_MACBUNDLE_IDENTITY)
+
+dnl ========================================================
dnl = Child Process Name for IPC
dnl ========================================================
MOZ_CHILD_PROCESS_NAME="plugin-container${BIN_SUFFIX}"