summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2023-11-27 20:16:09 +0100
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2023-11-27 20:17:52 +0100
commit0655fd9637dbb764f6904041bf3b1b210698e09c (patch)
treec003245f74d7112ecc31912865a9173b7aa5b016
parentc45cb650fc194c4c16880174807a8146a4fd560d (diff)
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.
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index 27005fe..799973b 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`