From dev-return-1710-archive-asf-public=cust-asf.ponee.io@celix.apache.org Sat Feb 29 14:32:49 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 5249118060E for ; Sat, 29 Feb 2020 15:32:49 +0100 (CET) Received: (qmail 20940 invoked by uid 500); 29 Feb 2020 14:32:48 -0000 Mailing-List: contact dev-help@celix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@celix.apache.org Delivered-To: mailing list dev@celix.apache.org Received: (qmail 20928 invoked by uid 99); 29 Feb 2020 14:32:48 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Feb 2020 14:32:48 +0000 From: GitBox To: dev@celix.apache.org Subject: [GitHub] [celix] pnoltes edited a comment on issue #157: Unable to compile etcdlib Message-ID: <158298676858.27102.6807553859311810584.gitbox@gitbox.apache.org> References: In-Reply-To: Date: Sat, 29 Feb 2020 14:32:48 -0000 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit pnoltes edited a comment on issue #157: Unable to compile etcdlib URL: https://github.com/apache/celix/issues/157#issuecomment-592950852 The handling of building/linking against CURL and Jansson has been updated in Celix. These changes where not applied for the etcdlib project. @andre2007 Could you check if the hotfix branch works for you? Below the Dockerfile adjusted for the celix hotfix branch: ```Dockerfile FROM debian:stretch RUN apt-get update && apt-get install -y libcurl4-openssl-dev curl unzip build-essential libidn11 zip libjansson-dev uuid-dev RUN curl -OL https://cmake.org/files/v3.2/cmake-3.2.3-Linux-x86_64.sh \ && mkdir /opt/cmake \ && sh /cmake-3.2.3-Linux-x86_64.sh --prefix=/opt/cmake --skip-license \ && ln -s /opt/cmake/bin/cmake /usr/local/bin/cmake RUN curl -OL https://github.com/apache/celix/archive/hotfix/%23157-build-etcdlib-issues.zip \ && unzip %23157-build-etcdlib-issues.zip \ && cd celix-*/libs/etcdlib \ && mkdir build \ && cd build \ && cmake .. ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: users@infra.apache.org With regards, Apache Git Services