Skip to content

Commit

Permalink
Add additional MacOS Tcl search path
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelortmann authored Aug 20, 2024
1 parent a688fdd commit 54f7ab9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion doc/COMPILE-GUIDE
Original file line number Diff line number Diff line change
Expand Up @@ -219,10 +219,12 @@ Last revised: May 14, 2023
brew update
brew install openssl

Tell configure where to find tcl and openssl:
Tell configure where to find tcl and / or openssl in case it could not
autodetect:

./configure --with-tcl=/System/Volumes/Data/Library/Developer/CommandLineTools/SDKs/MacOSX12.1.sdk/System/Library/Frameworks/Tcl.framework/tclConfig.sh -with-sslinc=/usr/local/Cellar/openssl@3/3.0.7/include --with-ssllib=/usr/local/Cellar/openssl@3/3.0.7/lib


E. AIX
Follow the standard compile process in Section A. To compile dynamically
(with module support), use 'make eggdrop' instead of 'make'.
Expand Down
1 change: 1 addition & 0 deletions m4/tcl.m4
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ AC_DEFUN([TEA_PATH_TCLCONFIG], [
`ls -d /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Frameworks/Tcl.framework 2>/dev/null` \
`ls -d /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Network/Library/Frameworks/Tcl.framework 2>/dev/null` \
`ls -d /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Tcl.framework 2>/dev/null` \
`ls -d /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks 2>/dev/null` \
; do
if test -f "$i/Tcl.framework/tclConfig.sh" ; then
ac_cv_c_tclconfig="`(cd $i/Tcl.framework; pwd)`"
Expand Down

0 comments on commit 54f7ab9

Please sign in to comment.