diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2005-10-31 01:58:12 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2005-10-31 01:58:12 +0000 |
commit | 1df5be59818066b89936b245e6974efee78529aa (patch) | |
tree | 60478b8c9ef20c4329054f305da7920b5d4bfb6e /makefile.w32 | |
parent | svn merge -r 672:731 $SO/trunk/openvpn (diff) | |
download | openvpn-1df5be59818066b89936b245e6974efee78529aa.tar.xz |
Changes to Windows build configuration to
support lzo2 and openssl-0.9.7i.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@738 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'makefile.w32')
-rwxr-xr-x | makefile.w32 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/makefile.w32 b/makefile.w32 index 48cc3f1..4184504 100755 --- a/makefile.w32 +++ b/makefile.w32 @@ -35,8 +35,8 @@ # Change these to point to your OpenSSL, LZO, and # (optionally) dmalloc top-level directories. -OPENSSL = /c/src/openssl-0.9.7g -LZO = /c/src/lzo-1.08 +OPENSSL = /c/src/openssl-0.9.7i +LZO = /c/src/lzo-2.02 DMALLOC = /c/src/dmalloc-5.4.2 ######################################################### @@ -49,7 +49,7 @@ INCLUDE_DIRS = -I${OPENSSL}/include -I${LZO}/include INCLUDE_DIRS_DMALLOC = ${INCLUDE_DIRS} -I${DMALLOC} -LIBS = -llzo -lcrypt32 -lws2_32 -lgdi32 -liphlpapi -lwinmm +LIBS = -llzo2 -lcrypt32 -lws2_32 -lgdi32 -liphlpapi -lwinmm LIBS_DMALLOC = ${LIBS} -ldmalloc |