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 de362a17 Fix linking error for macOS's `conan create`.
de362a17 is described below

commit de362a1771979bc006a51b9948aefbc45f2f6ecd
Author: PengZheng <[email protected]>
AuthorDate: Sun Feb 5 17:21:49 2023 +0800

    Fix linking error for macOS's `conan create`.
---
 .github/workflows/macos.yml                    | 2 +-
 examples/conan_test_package/my_rsa_activator.c | 6 ++++++
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index e8807fcb..7551571f 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -9,7 +9,7 @@ on:
 jobs:
 
   build-conan:
-    runs-on: macOS-latest
+    runs-on: macOS-10.15
     timeout-minutes: 120
     steps:
       - name: Checkout source code
diff --git a/examples/conan_test_package/my_rsa_activator.c 
b/examples/conan_test_package/my_rsa_activator.c
index d6cc728e..34179cf5 100644
--- a/examples/conan_test_package/my_rsa_activator.c
+++ b/examples/conan_test_package/my_rsa_activator.c
@@ -72,6 +72,12 @@ static celix_status_t 
remoteServiceAdmin_removeImportedService(remote_service_ad
     return CELIX_SUCCESS;
 }
 
+celix_status_t 
remoteServiceAdmin_destroyEndpointDescription(endpoint_description_t 
**description)
+{
+    celix_status_t status = CELIX_SUCCESS;
+    return status;
+}
+
 static celix_status_t my_rsa_start(my_remote_service_admin_activator_t* 
activator, celix_bundle_context_t* ctx) {
     celix_status_t status = CELIX_SUCCESS;
     activator->admin.context = ctx;

Reply via email to