diff options
author | Andrew Lewman <andrew@torproject.org> | 2010-02-17 13:43:33 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2010-02-17 23:08:39 -0500 |
commit | 0bd6cb31edbd33764c8d24dc3e79b8a7ca9eba84 (patch) | |
tree | 826a8506aa618570d2b7e00932257b088688a87c /doc | |
parent | 7f3b85d1df5120f7e60b94ac54525a7252333d43 (diff) | |
download | tor-0bd6cb31edbd33764c8d24dc3e79b8a7ca9eba84.tar.gz tor-0bd6cb31edbd33764c8d24dc3e79b8a7ca9eba84.zip |
add in the apple incantations to get tls renegotiation to work.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/tor-osx-dmg-creation.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/tor-osx-dmg-creation.txt b/doc/tor-osx-dmg-creation.txt index ef77a55b7b..94eb16176d 100644 --- a/doc/tor-osx-dmg-creation.txt +++ b/doc/tor-osx-dmg-creation.txt @@ -34,7 +34,9 @@ tarball. 5) In the top level, this means /path/to/tor/, not tor/contrib/osx, do a configure with these parameters: -CONFDIR=/Library/Tor ./configure --prefix=/Library/Tor --bindir=/Library/Tor --sysconfdir=/Library +CPPFLAGS='-DSSL3_FLAGS_ALLOW_UNSAFE_LEGACY_RENEGOTIATION=0x0010' \ +CONFDIR=/Library/Tor ./configure --prefix=/Library/Tor \ +--bindir=/Library/Tor --sysconfdir=/Library 6) In same top level dir, do a "make dist-osx". There now exists a .dmg file in the same directory. Install from this dmg. @@ -78,6 +80,7 @@ Extract the tarball. 7) In the top level, this means /path/to/tor/, not tor/contrib/osx, do a configure with these parameters: +CPPFLAGS='-DSSL3_FLAGS_ALLOW_UNSAFE_LEGACY_RENEGOTIATION=0x0010' \ CFLAGS="-O -g -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch i386" \ LDFLAGS="-Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk" \ CONFDIR=/Library/Tor \ @@ -136,6 +139,7 @@ Extract the tarball. 7) In the top level, this means /path/to/tor/, not tor/contrib/osx, do a configure with these parameters: +CPPFLAGS='-DSSL3_FLAGS_ALLOW_UNSAFE_LEGACY_RENEGOTIATION=0x0010' \ CFLAGS="-O -g -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc" \ LDFLAGS="-Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk" \ CONFDIR=/Library/Tor \ |