From 3e4ef9b5c9171a07cf29fdbe90c3a067ab79a643 Mon Sep 17 00:00:00 2001 From: Gerwin Klein Date: Mon, 14 Nov 2022 17:14:18 +1100 Subject: [PATCH 1/2] lighttpd: update pcre-8.43 URL Signed-off-by: Gerwin Klein --- lighttpd/Findlighttpd.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lighttpd/Findlighttpd.cmake b/lighttpd/Findlighttpd.cmake index 90fb55c..96141e9 100644 --- a/lighttpd/Findlighttpd.cmake +++ b/lighttpd/Findlighttpd.cmake @@ -23,7 +23,7 @@ macro(lighttpd_build_server outfile) ExternalProject_Add( libpcre URL - https://ftp.pcre.org/pub/pcre/pcre-8.43.tar.gz + https://sourceforge.net/projects/pcre/files/pcre/8.43/pcre-8.43.tar.gz BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/libprce-prefix/src/libpcre BUILD_ALWAYS From 82850c345ff5087742b50bf66042445244d8a5dc Mon Sep 17 00:00:00 2001 From: Gerwin Klein Date: Mon, 14 Nov 2022 17:15:39 +1100 Subject: [PATCH 2/2] cmake: point to Arm VM The Arm VM has been merged into the camkes-vm repo and is available under a slightly different path there. Signed-off-by: Gerwin Klein --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cc656d1..0b9268e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -267,9 +267,9 @@ DeclareCAmkESComponent(VM SOURCES src/cross_vm_connections.c) # Declare root server if(MULTI_VM_LAN) - DeclareCAmkESRootserver(multi_main.camkes CPP_INCLUDES ${CAMKES_ARM_VM_DIR}/components/VM) + DeclareCAmkESRootserver(multi_main.camkes CPP_INCLUDES ${CAMKES_ARM_VM_DIR}/components/VM_Arm) else() - DeclareCAmkESRootserver(main.camkes CPP_INCLUDES ${CAMKES_ARM_VM_DIR}/components/VM) + DeclareCAmkESRootserver(main.camkes CPP_INCLUDES ${CAMKES_ARM_VM_DIR}/components/VM_Arm) endif() # Now generate the root server and the global configuration GenerateCAmkESRootserver()