Merge pull request #171 from akv-platform/v-sdolin/issue-402

Explicitly link brew tcl/tk
This commit is contained in:
Marko Zivic
2022-06-27 09:18:28 +02:00
committed by GitHub
3 changed files with 20 additions and 0 deletions

View File

@ -59,6 +59,9 @@ class macOSPythonBuilder : NixPythonBuilder {
$env:CFLAGS = "-I/usr/local/opt/openssl@1.1/include -I/usr/local/opt/zlib/include"
} else {
$configureString += " --with-openssl=/usr/local/opt/openssl@1.1"
if ($this.Version -gt "3.7.12") {
$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'"
}
}
### Compile with support of loadable sqlite extensions. Unavailable for Python 2.*