Actually the tclconfig.sh in system headers contains bogus paths. You just need homebrew

This commit is contained in:
Ben Jackson 2019-04-27 13:24:09 +01:00
commit 5cb6f9cea2

View file

@ -187,8 +187,7 @@ def InstallTclProDebug( name, root ):
# '/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System'
# '/Library/Frameworks/Tcl.framework/Versions'
# '/Current',
for p in [ '/System/Library/Frameworks/Tcl.framework/',
'/usr/local/opt/tcl-tk/lib' ]:
for p in [ '/usr/local/opt/tcl-tk/lib' ]:
if os.path.exists( os.path.join( p, 'tclConfig.sh' ) ):
configure.append( '--with-tcl=' + p )
break