From patchwork Fri Oct 4 13:24:19 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Kim_B=C3=B8ndergaard?= X-Patchwork-Id: 280605 X-Patchwork-Delegate: esben@haabendal.dk Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hugin.dotsrc.org (hugin.dotsrc.org [IPv6:2001:878:346::102]) by ozlabs.org (Postfix) with ESMTP id 9DD682C00DC for ; Fri, 4 Oct 2013 23:24:37 +1000 (EST) Received: from hugin.dotsrc.org (localhost [127.0.0.1]) by hugin.dotsrc.org (Postfix) with ESMTP id CD05E44806 for ; Fri, 4 Oct 2013 15:24:35 +0200 (CEST) X-Original-To: dev@oe-lite.org Delivered-To: dev@oe-lite.org Received: from mail01.prevas.se (mail01.prevas.se [62.95.78.3]) by hugin.dotsrc.org (Postfix) with ESMTPS id D38CE447F0 for ; Fri, 4 Oct 2013 15:24:26 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=prevas.dk; i=@prevas.dk; l=816; q=dns/txt; s=ironport1; t=1380893066; x=1412429066; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version; bh=jQYswiLp/N9Hfs5JO42HOu1kp2N3iS72HLLg4wV1cFA=; b=af8xJJVgDFGqcpaP2wW1yJLpLuhAXkYJhGxgcVQyJEr9UTd2CVEuPtpF xp9ymXrPoWsebc2i6m7FIyBMCKmEKLrsR8HRMUyPuSs/eI1u3kEc+a8hc D8W3XkM3p6v+gCrZkojxYSHRmkjLG94ao4LccDscBTehy7M7dNdTqbYMd w=; X-IronPort-AV: E=Sophos;i="4.90,1033,1371074400"; d="scan'208";a="4009559" Received: from vmprevas3.prevas.se (HELO smtp.prevas.se) ([172.16.8.103]) by ironport1.prevas.se with ESMTP/TLS/AES128-SHA; 04 Oct 2013 15:24:26 +0200 Received: from localhost (172.16.10.102) by smtp.prevas.se (172.16.8.105) with Microsoft SMTP Server id 14.2.347.0; Fri, 4 Oct 2013 15:24:25 +0200 Received: by localhost (Postfix, from userid 30019) id B4207681DA2; Fri, 4 Oct 2013 13:24:25 +0000 (UTC) From: =?UTF-8?q?Kim=20B=C3=B8ndergaard?= To: Subject: [PATCH 13/17] libgcrypt: USE-flag defined for conf option --without-capabilities Date: Fri, 4 Oct 2013 13:24:19 +0000 Message-ID: <06ca2e65047bcef89a4d6fa964ae03898b35c4f1.1380892944.git.kibo@prevas.dk> X-Mailer: git-send-email 1.8.4 In-Reply-To: References: MIME-Version: 1.0 Cc: =?UTF-8?q?Kim=20B=C3=B8ndergaard?= X-BeenThere: dev@oe-lite.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: OE-lite development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dev-bounces@oe-lite.org Errors-To: dev-bounces@oe-lite.org --- recipes/libgcrypt/libgcrypt.inc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/recipes/libgcrypt/libgcrypt.inc b/recipes/libgcrypt/libgcrypt.inc index 01634f6..6befa72 100644 --- a/recipes/libgcrypt/libgcrypt.inc +++ b/recipes/libgcrypt/libgcrypt.inc @@ -8,7 +8,11 @@ DEPENDS_${PN} += "libgpg-error libcap2" SRC_URI = "ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-${PV}.tar.gz" -EXTRA_OECONF = "--without-pth --disable-asm --with-capabilities" +RECIPE_FLAGS = "gcrypt_no_capabilities" +DEFAULT_gcrypt_no_capabilites = "0" + +EXTRA_OECONF = "--without-pth --disable-asm" +EXTRA_OECONF:>USE_gcrypt_no_capabilities = " --without-capabilities" # libgcrypt.pc is added locally and thus installed here do_install[postfuncs] += "do_install_append"