diff options
author | Andrew Lewman <andrew@torproject.org> | 2008-01-08 01:50:28 +0000 |
---|---|---|
committer | Andrew Lewman <andrew@torproject.org> | 2008-01-08 01:50:28 +0000 |
commit | 136c7482aa87457ef04725460eab73fec5131cad (patch) | |
tree | c75c3a4cfce97d50882a2613fc35eeb518319a1c /contrib/osx/Tor | |
parent | a0eb902277dd8b99bfa53f131149ec6aa6dd55ab (diff) | |
download | tor-136c7482aa87457ef04725460eab73fec5131cad.tar.gz tor-136c7482aa87457ef04725460eab73fec5131cad.zip |
Backport: the alpha installer for osx has been through four release,
consider it well tested.
svn:r13065
Diffstat (limited to 'contrib/osx/Tor')
-rwxr-xr-x | contrib/osx/Tor | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/contrib/osx/Tor b/contrib/osx/Tor index 901759c426..26697720fc 100755 --- a/contrib/osx/Tor +++ b/contrib/osx/Tor @@ -26,21 +26,20 @@ if [ -x /usr/bin/sw_vers ]; then OSVER=`/usr/bin/sw_vers | grep ProductVersion | cut -f2 | cut -d"." -f1,2` case "$OSVER" in "10.5") OS="leopard" ARCH="universal";; - "10.4") OS="tiger" ARCH="universal";; - "10.3") OS="panther" ARCH="ppc";; - "10.2") OS="jaguar" ARCH="ppc";; - "10.1") OS="puma" ARCH="ppc";; - "10.0") OS="cheetah" ARCH="ppc";; + "10.4") OS="tiger" ARCH="universal";; + "10.3") OS="panther" ARCH="ppc";; + "10.2") OS="jaguar" ARCH="ppc";; + "10.1") OS="puma" ARCH="ppc";; + "10.0") OS="cheetah" ARCH="ppc";; esac else OS="unknown" fi - + if [ $ARCH != "universal" ]; then export EVENT_NOKQUEUE=1 fi - ## # Tor Service ## |