From patchwork Sun May 22 12:26:29 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 624951 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3rCLX32yM8z9sdb for ; Sun, 22 May 2016 22:26:59 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 43D53925C6; Sun, 22 May 2016 12:26:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nOeSYjLiCQ9s; Sun, 22 May 2016 12:26:51 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id CE6BE92541; Sun, 22 May 2016 12:26:46 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 44EA61C2694 for ; Sun, 22 May 2016 12:26:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 42CCB92517 for ; Sun, 22 May 2016 12:26:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id k9zsVGRMOUZi for ; Sun, 22 May 2016 12:26:39 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout01.t-online.de (mailout01.t-online.de [194.25.134.80]) by whitealder.osuosl.org (Postfix) with ESMTPS id 866809250D for ; Sun, 22 May 2016 12:26:39 +0000 (UTC) Received: from fwd29.aul.t-online.de (fwd29.aul.t-online.de [172.20.26.134]) by mailout01.t-online.de (Postfix) with SMTP id 4BDA3421651A for ; Sun, 22 May 2016 14:26:37 +0200 (CEST) Received: from fli4l.lan.fli4l (rff492ZCwhXxP4HMhgNJ2eyjJH2Y7uIvJrLmDiF-nEfh1wU2+qsAOnmJU-b48EBZlH@[84.178.242.106]) by fwd29.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1b4SSm-0kGL9U0; Sun, 22 May 2016 14:26:32 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:44592 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.87) (envelope-from ) id 1b4SSl-0006oc-Pw; Sun, 22 May 2016 14:26:32 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sun, 22 May 2016 14:26:29 +0200 Message-Id: <1463919991-28382-1-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.8.1 X-ID: rff492ZCwhXxP4HMhgNJ2eyjJH2Y7uIvJrLmDiF-nEfh1wU2+qsAOnmJU-b48EBZlH X-TOI-MSGID: c079bcd6-13cc-4c12-8a68-6d2e1673cea3 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH 1/3] package/tinc: needs libdl for OpenSSL support X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Fixes http://autobuild.buildroot.net/results/d5b/d5b2f905d8da79cebda1408ffceac6d4c99f9e7b/ Signed-off-by: Bernd Kuhls --- package/tinc/Config.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/tinc/Config.in b/package/tinc/Config.in index 5390ff3..1d8e2c4 100644 --- a/package/tinc/Config.in +++ b/package/tinc/Config.in @@ -3,6 +3,7 @@ config BR2_PACKAGE_TINC select BR2_PACKAGE_LZO select BR2_PACKAGE_OPENSSL select BR2_PACKAGE_ZLIB + depends on !BR2_STATIC_LIBS # tinc requires libdl for OpenSSL depends on BR2_USE_MMU # fork() help tinc is a Virtual Private Network (VPN) daemon that uses @@ -10,3 +11,6 @@ config BR2_PACKAGE_TINC between hosts on the Internet. http://www.tinc-vpn.org/ + +comment "tinc needs a toolchain w/ dynamic library" + depends on BR2_STATIC_LIBS