File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,11 @@ set(BROTLI_BUNDLED_MODE ON)
3030set (BROTLI_DISABLE_TESTS TRUE )
3131set (BUILD_SHARED_LIBS OFF )
3232mark_as_advanced (BUILD_SHARED_LIBS )
33- option (ZLIB_BUILD_EXAMPLES "Enable Zlib Examples" OFF )
34- option (RENAME_ZCONF "Rename the zconf when building out of source" OFF )
33+ option (ZLIB_INSTALL "Enable installation of zlib" OFF )
34+ option (ZLIB_BUILD_TESTING "Enable Zlib Examples as tests" OFF )
35+ option (ZLIB_BUILD_SHARED "Enable building zlib shared library" OFF )
36+ option (ZLIB_BUILD_STATIC "Enable building zlib static library" ON )
37+ option (ZLIB_BUILD_MINIZIP "Enable building libminizip contrib library" OFF )
3538
3639set (SKIP_INSTALL_ALL TRUE )
3740
@@ -48,6 +51,8 @@ add_subdirectory(FastCgi EXCLUDE_FROM_ALL)
4851add_subdirectory (SocketLib EXCLUDE_FROM_ALL )
4952add_subdirectory (SrvLib EXCLUDE_FROM_ALL )
5053add_subdirectory (zlib EXCLUDE_FROM_ALL )
54+ # zconf.h wieder herstellen
55+ file (RENAME ${CMAKE_CURRENT_SOURCE_DIR} /zlib/zconf.h.included ${CMAKE_CURRENT_SOURCE_DIR} /zlib/zconf.h)
5156
5257if (UA_ENABLE_ENCRYPTION_OPENSSL)
5358 link_directories (${OPENSSL_LIB_DIR} )
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ void HttpFetch::Connected(TcpSocket* const pTcpSocket)
129129 {
130130 const long nResult = reinterpret_cast <SslTcpSocket*>(m_pcClientCon)->CheckServerCertificate (m_strServer.c_str ());
131131 if (nResult != 0 )
132- OutputDebugString (L" Http2Fetch::Connected Zertifikat not verifyd \r\n " );
132+ OutputDebugString (L" Http2Fetch::Connected Zertifikat not verified \r\n " );
133133
134134 Protocoll = reinterpret_cast <SslTcpSocket*>(m_pcClientCon)->GetSelAlpnProtocol ();
135135 }
You can’t perform that action at this time.
0 commit comments