This commit is contained in:
j 2016-02-23 12:30:28 +05:30
parent d1b451971f
commit 55036426cd
4 changed files with 11 additions and 0 deletions

BIN
tor/libevent-2.0.5.dylib Executable file

Binary file not shown.

BIN
tor/libgmp.10.dylib Executable file

Binary file not shown.

11
tor/tor Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
# Compiled Python modules require a compatible Python, which means 32-bit 2.6.
export VERSIONER_PYTHON_VERSION=2.6
export DYLD_LIBRARY_PATH=.:$DYLD_LIBRARY_PATH
# Set the current working directory to the directory containing this executable,
# so that pluggable transport executables can be given with relative paths. This
# works around a change in OS X 10.9, where the current working directory is
# otherwise set to "/" when an application bundle is started from Finder.
# https://trac.torproject.org/projects/tor/ticket/10030
cd "$(dirname "$0")"
exec ./tor.real "$@"

BIN
tor/tor.real Executable file

Binary file not shown.