From patchwork Mon Sep 25 08:27:59 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 818084 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.137; helo=fraxinus.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3y0xzw3b5zz9t5c for ; Mon, 25 Sep 2017 18:28:11 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id CF00187612; Mon, 25 Sep 2017 08:28:07 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nhl1utfHQXL7; Mon, 25 Sep 2017 08:28:06 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 7F23087625; Mon, 25 Sep 2017 08:28:06 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 2DCB01C0328 for ; Mon, 25 Sep 2017 08:28:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 22B728806E for ; Mon, 25 Sep 2017 08:28:05 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6UVNo6vXHg3w for ; Mon, 25 Sep 2017 08:28:03 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout06.t-online.de (mailout06.t-online.de [194.25.134.19]) by hemlock.osuosl.org (Postfix) with ESMTPS id 7D84E8804C for ; Mon, 25 Sep 2017 08:28:03 +0000 (UTC) Received: from fwd21.aul.t-online.de (fwd21.aul.t-online.de [172.20.27.66]) by mailout06.t-online.de (Postfix) with SMTP id BE7AD41E72FF for ; Mon, 25 Sep 2017 10:28:00 +0200 (CEST) Received: from fli4l.lan.fli4l (ZwfptkZG8hiFdQ2phZor-5-OX-T-LzBWGo70WVTyTE-Rn0VloetjP69pXg8uSvoQdh@[79.228.13.67]) by fwd21.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1dwOkC-0Wylfs0; Mon, 25 Sep 2017 10:28:00 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:60736 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.89) (envelope-from ) id 1dwOkB-00015q-LQ for buildroot@buildroot.org; Mon, 25 Sep 2017 10:27:59 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Mon, 25 Sep 2017 10:27:59 +0200 Message-Id: <20170925082759.2237-1-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.11.0 X-ID: ZwfptkZG8hiFdQ2phZor-5-OX-T-LzBWGo70WVTyTE-Rn0VloetjP69pXg8uSvoQdh X-TOI-MSGID: 97fb12d7-6afe-41a0-a2fe-fea812212d5b Subject: [Buildroot] [PATCH 1/1] package/poco: needs NPTL 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/609/6090f5a0f4bf96b9dc2b3e48eb2e33c83d2ba7d2/ Signed-off-by: Bernd Kuhls --- package/poco/Config.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/poco/Config.in b/package/poco/Config.in index b3b247f906..8e5209e786 100644 --- a/package/poco/Config.in +++ b/package/poco/Config.in @@ -2,7 +2,8 @@ config BR2_PACKAGE_POCO bool "poco" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR - depends on BR2_TOOLCHAIN_HAS_THREADS + # pthread_condattr_setclock + depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL depends on !BR2_STATIC_LIBS # dlopen() depends on !(BR2_arc || BR2_bfin || BR2_microblaze || BR2_mipsel \ || BR2_or1k || BR2_xtensa)