From 77e50caaf2ef81cd91075cf836fed0e75718ffb4 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 13 Apr 2024 23:12:02 +0200 Subject: Adding debian version 1.8.3-2. Signed-off-by: Daniel Baumann --- debian/vendor-h2o/deps/picotls/WindowsPort.md | 34 +++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 debian/vendor-h2o/deps/picotls/WindowsPort.md (limited to 'debian/vendor-h2o/deps/picotls/WindowsPort.md') diff --git a/debian/vendor-h2o/deps/picotls/WindowsPort.md b/debian/vendor-h2o/deps/picotls/WindowsPort.md new file mode 100644 index 0000000..b2989e3 --- /dev/null +++ b/debian/vendor-h2o/deps/picotls/WindowsPort.md @@ -0,0 +1,34 @@ +Compiling PicoTLS with Visual Studio 2017 + +The source contains a Visual Studio 2017 solution (picotls/picotlsvs/picotlsvs.sln) +which itself contains 5 projects: + +* Three libraries, picotls.lib and its dependencies cifra.lib and uecc.lib; + +* A test project, testopenssl.exe, which will run on a console and + execute the OpenSSL tests; + +* And, an example project, picotlsvs.exe, which will perform a TLS exchange + in memory, and demonstrate how to use PicoTLS in windows. + +The code has a dependency on OpenSSL. When building the 32 bit projects (WIN32) it +expects to find: + +* OpenSSL header files under $(OPENSSLDIR)\include + +* OpenSSL library libcrypto.lib under $(OPENSSLDIR) + +When building the 64 bits projects (X64), it expects to find: + +* OpenSSL header files under $(OPENSSL64DIR)\include + +* OpenSSL library libcrypto.lib under $(OPENSSL64DIR) + +You will need also to copy libcrypto.dll to the library that contains your +executable, or to otherwise register that library. Be sure to copy the 32 bit +library or 64 bit library, depending on which type of project you build. + +Only two configurations are tested: "X86 Debug" and "X86 Release". The X64 configurations +will compile, but are not tested yet. + +Feel free to provide feedback and contribute. -- cgit v1.2.3