diff options
author | Andrew Lewman <andrew@torproject.org> | 2007-09-22 20:26:06 +0000 |
---|---|---|
committer | Andrew Lewman <andrew@torproject.org> | 2007-09-22 20:26:06 +0000 |
commit | 011941853cc7f7211b1d57b0b43b6bbbfb013ad1 (patch) | |
tree | 134828ca11851546dda723f19301070903dc752d /contrib | |
parent | 3a3c1d1d1c06f3e6b119d248bbce5cc225bbf506 (diff) | |
download | tor-011941853cc7f7211b1d57b0b43b6bbbfb013ad1.tar.gz tor-011941853cc7f7211b1d57b0b43b6bbbfb013ad1.zip |
Remove openssl static libs from the win32 distrubution. They are statically
compiled into the exe. Add some, take some, remove some TODO items.
svn:r11583
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/package_nsis-mingw.sh | 2 | ||||
-rw-r--r-- | contrib/tor-mingw.nsi.in | 7 |
2 files changed, 0 insertions, 9 deletions
diff --git a/contrib/package_nsis-mingw.sh b/contrib/package_nsis-mingw.sh index 439c6352b8..c15ba9a432 100644 --- a/contrib/package_nsis-mingw.sh +++ b/contrib/package_nsis-mingw.sh @@ -21,8 +21,6 @@ mkdir win_tmp/tmp cp src/or/tor.exe win_tmp/bin/ cp src/tools/tor-resolve.exe win_tmp/bin/ -cp /usr/local/ssl/lib/libcrypto.a win_tmp/bin/ -cp /usr/local/ssl/lib/libssl.a win_tmp/bin/ cp contrib/tor.ico win_tmp/bin/ # YOU must copy torbutton xpi into the contrib dir diff --git a/contrib/tor-mingw.nsi.in b/contrib/tor-mingw.nsi.in index dd89b22963..e6acbe0b92 100644 --- a/contrib/tor-mingw.nsi.in +++ b/contrib/tor-mingw.nsi.in @@ -91,12 +91,6 @@ Section "Tor" Tor File /oname=$configfile "..\src\config\torrc.sample" SectionEnd -Section "OpenSSL 0.9.8d" OpenSSL - SetOutPath $INSTDIR - File "${BIN}\libcrypto.a" - File "${BIN}\libssl.a" -SectionEnd - Section "Documents" Docs SetOutPath "$INSTDIR\Documents" ;File "doc\FAQ" @@ -200,7 +194,6 @@ SectionEnd !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN !insertmacro MUI_DESCRIPTION_TEXT ${Tor} "The core executable and config files needed for Tor to run." - !insertmacro MUI_DESCRIPTION_TEXT ${OpenSSL} "OpenSSL libraries required by Tor." !insertmacro MUI_DESCRIPTION_TEXT ${Docs} "Documentation about Tor." !insertmacro MUI_DESCRIPTION_TEXT ${ShortCuts} "Shortcuts to easily start Tor" !insertmacro MUI_DESCRIPTION_TEXT ${StartMenu} "Shortcuts to access Tor and it's documentation from the Start Menu" |