Skip to content

Commit 790dfd6

Browse files
Merge branch 'master' of github.com:highperformancecoder/minsky
2 parents 5eb4d76 + 8846f38 commit 790dfd6

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

githubdocs/MacRelease.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ NB unfortunately, the XCode command line tools package is out of date, so you wi
1717

1818
- Currently, Mac builds are done on a High Sierra virtual machine, and the binary packages for High Sierra are used, so that is the mininum OS version for the MacOSX Minsky release. Arm64 builds are done on Ventura for the same reason.
1919
- Ports installs of Python do not create a python3 package for pkg-config, rather they are a more specific name like python-3.12.pc. Use find to find the location of the specific .pc file, and link it to python3.pc in the same place, which will allow python builds to work.
20+
- If you have HomeBrew installed, its utilities may conflict with that of MacPorts. To avoid problems in that case, it is useful to add the MacPorts bin directory to the front of the PATH variable:
21+
~~~~
22+
export PATH=/opt/local/bin:$PATH
23+
~~~~
2024

2125
# Enabling MacPorts to support earlier versions of MacOSX to the current system
2226
- edit the file /opt/local/etc/macports/macports.conf, and add the following

mkMacRESTService.sh

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,6 @@
77
# ensure ~/usr/bin overrides every other TCL installation
88
PATH=~/usr/bin:$PATH
99

10-
# check that EcoLab and Tk has been built for extracting a quartz context
11-
if ! nm ecolab/lib/libecolab.a|c++filt|grep NSContext::NSContext|grep T; then
12-
echo "Rebuild EcoLab with MAC_OSX_TK=1"
13-
exit 1
14-
fi
15-
1610
# check that the keychain has been unlocked
1711
if security show-keychain-info|grep "User interaction is not allowed."; then
1812
echo "Unlock the keychain with security unlock-keychain"

0 commit comments

Comments
 (0)