From celix-dev-return-219-apmail-incubator-celix-dev-archive=incubator.apache.org@incubator.apache.org Fri Jun 22 08:51:15 2012 Return-Path: X-Original-To: apmail-incubator-celix-dev-archive@minotaur.apache.org Delivered-To: apmail-incubator-celix-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 32DD99092 for ; Fri, 22 Jun 2012 08:51:15 +0000 (UTC) Received: (qmail 55078 invoked by uid 500); 22 Jun 2012 08:51:15 -0000 Delivered-To: apmail-incubator-celix-dev-archive@incubator.apache.org Received: (qmail 54993 invoked by uid 500); 22 Jun 2012 08:51:14 -0000 Mailing-List: contact celix-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: celix-dev@incubator.apache.org Delivered-To: mailing list celix-dev@incubator.apache.org Received: (qmail 54905 invoked by uid 99); 22 Jun 2012 08:51:13 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Jun 2012 08:51:13 +0000 X-ASF-Spam-Status: No, hits=0.7 required=5.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [80.101.237.101] (HELO hupie.dyndns.org) (80.101.237.101) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Jun 2012 08:51:05 +0000 Received: from stinkpad.internal.hupie.com (s529dac66.adsl.wanadoo.nl [82.157.172.102]) by hupie.dyndns.org (Postfix) with ESMTP id 819BF484E1A for ; Fri, 22 Jun 2012 10:50:45 +0200 (CEST) From: Ferry Huberts To: celix-dev@incubator.apache.org Subject: [PATCH v1 3/3] do not statically link system libraries Date: Fri, 22 Jun 2012 10:50:44 +0200 Message-Id: <1340355044-10989-4-git-send-email-mailings@hupie.com> X-Mailer: git-send-email 1.7.10.2 In-Reply-To: <1340355044-10989-1-git-send-email-mailings@hupie.com> References: <1340355044-10989-1-git-send-email-mailings@hupie.com> From: Ferry Huberts Signed-off-by: Ferry Huberts --- remote_services/discovery/CMakeLists.txt | 2 +- remote_services/example_endpoint/CMakeLists.txt | 2 +- remote_services/example_proxy/CMakeLists.txt | 2 +- remote_services/remote_service_admin/CMakeLists.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/remote_services/discovery/CMakeLists.txt b/remote_services/discovery/CMakeLists.txt index 0aa0ccf..5515ad7 100644 --- a/remote_services/discovery/CMakeLists.txt +++ b/remote_services/discovery/CMakeLists.txt @@ -27,5 +27,5 @@ bundle(discovery SOURCES private/src/discovery private/src/discovery_activator ) -target_link_libraries(discovery framework ${APRUTIL_LIBRARY} slp.a) +target_link_libraries(discovery framework ${APRUTIL_LIBRARY} slp.so) diff --git a/remote_services/example_endpoint/CMakeLists.txt b/remote_services/example_endpoint/CMakeLists.txt index 985e072..6b6e4a0 100644 --- a/remote_services/example_endpoint/CMakeLists.txt +++ b/remote_services/example_endpoint/CMakeLists.txt @@ -26,4 +26,4 @@ bundle(example_endpoint SOURCES private/src/example_endpoint_activator private/src/example_endpoint_impl.c ) -target_link_libraries(example_endpoint framework jansson.a) +target_link_libraries(example_endpoint framework jansson.so) diff --git a/remote_services/example_proxy/CMakeLists.txt b/remote_services/example_proxy/CMakeLists.txt index f677217..1a64a59 100644 --- a/remote_services/example_proxy/CMakeLists.txt +++ b/remote_services/example_proxy/CMakeLists.txt @@ -28,4 +28,4 @@ bundle(example_proxy SOURCES private/src/example_proxy_activator private/src/example_proxy_impl.c ) -target_link_libraries(example_proxy framework jansson.a curl.a) +target_link_libraries(example_proxy framework jansson.so curl.so) diff --git a/remote_services/remote_service_admin/CMakeLists.txt b/remote_services/remote_service_admin/CMakeLists.txt index 080b997..83c5fe5 100644 --- a/remote_services/remote_service_admin/CMakeLists.txt +++ b/remote_services/remote_service_admin/CMakeLists.txt @@ -30,4 +30,4 @@ bundle(remote_service_admin SOURCES private/src/remote_service_admin_activator private/src/mongoose.c ) -target_link_libraries(remote_service_admin framework ${APRUTIL_LIBRARY} jansson.a) +target_link_libraries(remote_service_admin framework ${APRUTIL_LIBRARY} jansson.so) -- 1.7.10.2