diff --git a/doc/COMPILE-GUIDE b/doc/COMPILE-GUIDE index 05173bb8f..85f6419d6 100644 --- a/doc/COMPILE-GUIDE +++ b/doc/COMPILE-GUIDE @@ -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'. diff --git a/m4/tcl.m4 b/m4/tcl.m4 index 7dcf43822..60a05c37e 100644 --- a/m4/tcl.m4 +++ b/m4/tcl.m4 @@ -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)`"