diff --git a/.github/CMakeLists.txt b/.github/CMakeLists.txt index 4b6966e5..7566fd10 100644 --- a/.github/CMakeLists.txt +++ b/.github/CMakeLists.txt @@ -51,6 +51,7 @@ externalproject_add( SOURCE_DIR ${CMAKE_CURRENT_BINARY_DIR}/libreSslSource URL "https://mirror.leaseweb.com/pub/OpenBSD/LibreSSL/libressl-3.8.2.tar.gz" URL_HASH SHA256=6d4b8d5bbb25a1f8336639e56ec5088052d43a95256697a85c4ce91323c25954 + DOWNLOAD_EXTRACT_TIMESTAMP true PATCH_COMMAND "${Patch_EXECUTABLE}" -p1 --forward -d ${CMAKE_CURRENT_BINARY_DIR}/libreSslSource < ${CMAKE_CURRENT_SOURCE_DIR}/ciPatches/libressl-no_postfix.patch || echo "Patch returned non-zero" CMAKE_ARGS -DLIBRESSL_APPS:BOOL=0 -DCMAKE_INSTALL_PREFIX:PATH=${CMAKE_INSTALL_PREFIX} diff --git a/SampleServer.cpp b/SampleServer.cpp index b828defd..b95e8ad3 100644 --- a/SampleServer.cpp +++ b/SampleServer.cpp @@ -220,7 +220,7 @@ int main(int argc, char *argv[]) { std::cout << "No encryption will be available." << std::endl; } - // Create namespaces, order must match the NAMESPACE_MAP in CMakeLists.txt + // Create namespaces, order must match the CMakeLists.txt namespace_di_generated(pServer); namespace_machinery_generated(pServer); namespace_ia_generated(pServer);