This is an automated email from the ASF dual-hosted git repository.
pengzheng pushed a commit to branch feature/civetweb_integration
in repository https://gitbox.apache.org/repos/asf/celix.git
The following commit(s) were added to refs/heads/feature/civetweb_integration
by this push:
new 4ac1ae42 Fix toolchain inconsistency for macOS's conan build.
4ac1ae42 is described below
commit 4ac1ae42a570dcecdbf4b37d8a5dbf0ec16fba0e
Author: PengZheng <[email protected]>
AuthorDate: Sun Feb 5 15:44:07 2023 +0800
Fix toolchain inconsistency for macOS's conan build.
---
cmake/Findcivetweb.cmake | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cmake/Findcivetweb.cmake b/cmake/Findcivetweb.cmake
index 46310ed1..7096e5dc 100644
--- a/cmake/Findcivetweb.cmake
+++ b/cmake/Findcivetweb.cmake
@@ -23,8 +23,8 @@ if (NOT civetweb_FOUND)
set(BUILD_SHARED_LIBS TRUE CACHE BOOL "" FORCE)
FetchContent_Declare(
civetweb
- GIT_REPOSITORY https://github.com/civetweb/civetweb.git
-# GIT_REPOSITORY https://gitee.com/mirrors/civetweb.git
+# GIT_REPOSITORY https://github.com/civetweb/civetweb.git
+ GIT_REPOSITORY https://gitee.com/mirrors/civetweb.git
GIT_TAG eefb26f82b233268fc98577d265352720d477ba4 # V1.15
)
FetchContent_MakeAvailable(civetweb)