After upgrading macOS 12.6.6 to 12.6.7, the ST4’s Package Control seems to have stopped working correctly.
I reinstalled the package and ST4 itself. However, the problem remains unchanged.
My ST4 version is 4150.
Thank you very much.
After upgrading macOS 12.6.6 to 12.6.7, the ST4’s Package Control seems to have stopped working correctly.
I reinstalled the package and ST4 itself. However, the problem remains unchanged.
My ST4 version is 4150.
Thank you very much.
Thank you for pointing out the exact clue.
It took I upgraded Homebrew’s OpenSSL four days after the OS upgrade.
With the following changes, Package Control restarted working correctly.
(base) MacBookPro2{Kazzz-S} lib (1)% cd /usr/local/lib
(base) MacBookPro2{Kazzz-S} lib (2)% ll | grep crypto
lrwxr-xr-x … 6 28 06:45 libcrypto.3.dylib -> …/Cellar/openssl@3/3.1.1_1/lib/libcrypto.3.dylib
lrwxr-xr-x … 6 28 06:45 libcrypto.a -> …/Cellar/openssl@3/3.1.1_1/lib/libcrypto.a
lrwxr-xr-x … 6 28 06:45 libcrypto.dylib -> …/Cellar/openssl@3/3.1.1_1/lib/libcrypto.dylib <=== !!!(base) MacBookPro2{Kazzz-S} lib (3)% mv libcrypto.dylib xxx-libcrypto.dylib
(base) MacBookPro2{Kazzz-S} lib (4)% ll | grep crypto
lrwxr-xr-x … 6 28 06:45 libcrypto.3.dylib -> …/Cellar/openssl@3/3.1.1_1/lib/libcrypto.3.dylib
lrwxr-xr-x … 6 28 06:45 libcrypto.a -> …/Cellar/openssl@3/3.1.1_1/lib/libcrypto.a
lrwxr-xr-x … 6 28 06:45 xxx-libcrypto.dylib -> …/Cellar/openssl@3/3.1.1_1/lib/libcrypto.dylib(base) MacBookPro2{Kazzz-S} lib (5)% ln -s …/Cellar/openssl@1.1/1.1.1u/lib/libcrypto.dylib .
(base) MacBookPro2{Kazzz-S} lib (6)% ll | grep crypto
lrwxr-xr-x … 6 28 06:45 libcrypto.3.dylib -> …/Cellar/openssl@3/3.1.1_1/lib/libcrypto.3.dylib
lrwxr-xr-x … 6 28 06:45 libcrypto.a -> …/Cellar/openssl@3/3.1.1_1/lib/libcrypto.a
lrwxr-xr-x … 7 1 07:56 libcrypto.dylib -> …/Cellar/openssl@1.1/1.1.1u/lib/libcrypto.dylib <=== !!!
lrwxr-xr-x … 6 28 06:45 xxx-libcrypto.dylib -> …/Cellar/openssl@3/3.1.1_1/lib/libcrypto.dylib
Thanks again