From c7a474052955034db054bc2677e8185af8e224ef Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Wed, 26 Feb 2025 14:53:01 +1100 Subject: [PATCH] Tweaks for libevent --- desktop/scripts/get-tor.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/desktop/scripts/get-tor.py b/desktop/scripts/get-tor.py index af567aad..08a8669d 100644 --- a/desktop/scripts/get-tor.py +++ b/desktop/scripts/get-tor.py @@ -166,6 +166,13 @@ def get_tor_macos(gpg, torkey, macos_url, macos_filename, expected_macos_sig): os.path.join(dist_path, "tor"), ) os.chmod(os.path.join(dist_path, "tor"), 0o755) + # This is necessary for cx_freeze itself to work... + shutil.copyfile( + os.path.join(dmg_tor_path, "MacOS", "Tor", "libevent-2.1.7.dylib"), + os.path.join(dist_path, "libevent-2.1.7.dylib"), + ) + # ...but the libevent-2.1.7.dylib now seems to also need to be in a 'lib' + # subfolder of the tor/ folder to work on MacOS, so copy it there too. shutil.copyfile( os.path.join(dmg_tor_path, "MacOS", "Tor", "libevent-2.1.7.dylib"), os.path.join(tor_lib_dir, "libevent-2.1.7.dylib"),