We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf3c64f commit 0f97bcdCopy full SHA for 0f97bcd
1 file changed
builders/macos-python-builder.psm1
@@ -59,6 +59,9 @@ class macOSPythonBuilder : NixPythonBuilder {
59
$env:CFLAGS = "-I/usr/local/opt/openssl@1.1/include -I/usr/local/opt/zlib/include"
60
} else {
61
$configureString += " --with-openssl=/usr/local/opt/openssl@1.1"
62
+ if ($this.Version -gt "3.7.12") {
63
+ $configureString += " --with-tcltk-includes='-I /usr/local/opt/tcl-tk/include' --with-tcltk-libs='-L/usr/local/opt/tcl-tk/lib -ltcl8.6 -ltk8.6'"
64
+ }
65
}
66
67
### Compile with support of loadable sqlite extensions. Unavailable for Python 2.*
0 commit comments