From 0655fd9637dbb764f6904041bf3b1b210698e09c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reimar=20D=C3=B6ffinger?= Date: Mon, 27 Nov 2023 20:16:09 +0100 Subject: [PATCH] configure: enable codesign by default on macOS. It is useful for the default configuration to just work out of the box and pass tests instead of crashing in unexplained ways. --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 27005fe3..799973b1 100755 --- a/configure +++ b/configure @@ -191,7 +191,7 @@ Advanced options (experts only): --config-bcheck=no disable bounds checker (-b) --config-predefs=no do not compile tccdefs.h, instead just include --config-new_macho=no|yes Force apple object format (autodetect osx <= 10) - --config-codesign Use codesign on apple to sign executables + --config-codesign=no do not use codesign on apple to sign executables --dwarf=x Use dwarf debug info instead of stabs (x=2..5) Cross build options (experimental): @@ -320,6 +320,7 @@ case $targetos in Darwin) dwarf=4 confvars="$confvars OSX" + default_conf "codesign" DLLSUF=".dylib" if test -z "$build_cross"; then cc=`command -v cc`