X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=BUILD.Windows;h=ea931ebb2f9dfc5268d23db4b4db915796da90a5;hb=5de43a606c949dbb74272d5b09627ddd5f64b06b;hp=45a3c0a5c9830c0eff3063cd897d792cd5676012;hpb=20bd44f83bab5afb2d552f5ed877e91da598e65c;p=sliver-openvswitch.git diff --git a/BUILD.Windows b/BUILD.Windows index 45a3c0a5c..ea931ebb2 100644 --- a/BUILD.Windows +++ b/BUILD.Windows @@ -54,3 +54,25 @@ or from a distribution tar ball. * Run make for the ported executables in the top source directory, e.g.: % make utilities/ovs-vsctl.exe ovsdb/ovsdb-server.exe + +OpenSSL, Open vSwitch and Visual C++ +------------------------------------ +To get SSL support for Open vSwitch on Windows, do the following: + +* Install OpenSSL for Windows as suggested at +http://www.openssl.org/related/binaries.html. +The link as of this writing suggests to download it from +http://slproweb.com/products/Win32OpenSSL.html and the latest version is +"Win32 OpenSSL v1.0.1f". + +Note down the directory where OpenSSL is installed (e.g.: C:/OpenSSL-Win32). + +* While configuring the package, specify the OpenSSL directory path. +For example, + + % ./configure CC=./build-aux/cccl LD="`which link`" LIBS="-lws2_32 ..." \ + --prefix="C:/openvswitch/usr" --localstatedir="C:/openvswitch/var" \ + --sysconfdir="C:/openvswitch/etc" --enable-ssl \ + --with-openssl="C:/OpenSSL-Win32" + +* Run make for the ported executables.