Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Side by Side Diff: openssl/ms/mw.bat

Issue 9254031: Upgrade chrome's OpenSSL to same version Android ships with. (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/openssl/
Patch Set: '' Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « openssl/ms/mingw32.bat ('k') | openssl/ms/segrenam.pl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 @rem OpenSSL with Mingw32 1 @rem OpenSSL with Mingw32
2 @rem -------------------- 2 @rem --------------------
3 3
4 @rem Makefile 4 @rem Makefile
5 perl util\mkfiles.pl >MINFO 5 perl util\mkfiles.pl >MINFO
6 perl util\mk1mf.pl Mingw32 >ms\mingw32.mak 6 perl util\mk1mf.pl Mingw32 >ms\mingw32.mak
7 @rem DLL definition files 7 @rem DLL definition files
8 perl util\mkdef.pl 32 libeay >ms\libeay32.def 8 perl util\mkdef.pl 32 libeay >ms\libeay32.def
9 if errorlevel 1 goto end 9 if errorlevel 1 goto end
10 perl util\mkdef.pl 32 ssleay >ms\ssleay32.def 10 perl util\mkdef.pl 32 ssleay >ms\ssleay32.def
11 if errorlevel 1 goto end 11 if errorlevel 1 goto end
12 12
13 @rem Build the libraries 13 @rem Build the libraries
14 make -f ms/mingw32.mak 14 make -f ms/mingw32.mak
15 if errorlevel 1 goto end 15 if errorlevel 1 goto end
16 16
17 @rem Generate the DLLs and input libraries 17 @rem Generate the DLLs and input libraries
18 dllwrap --dllname libeay32.dll --output-lib out/libeay32.a --def ms/libeay32.def out/libcrypto.a -lwsock32 -lgdi32 18 dllwrap --dllname libeay32.dll --output-lib out/libeay32.a --def ms/libeay32.def out/libcrypto.a -lws2_32 -lgdi32
19 if errorlevel 1 goto end 19 if errorlevel 1 goto end
20 dllwrap --dllname libssl32.dll --output-lib out/libssl32.a --def ms/ssleay32.def out/libssl.a out/libeay32.a 20 dllwrap --dllname libssl32.dll --output-lib out/libssl32.a --def ms/ssleay32.def out/libssl.a out/libeay32.a
21 if errorlevel 1 goto end 21 if errorlevel 1 goto end
22 22
23 echo Done compiling OpenSSL 23 echo Done compiling OpenSSL
24 24
25 :end 25 :end
26 26
OLDNEW
« no previous file with comments | « openssl/ms/mingw32.bat ('k') | openssl/ms/segrenam.pl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698