From patchwork Wed Sep 16 10:02:09 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Nosthoff X-Patchwork-Id: 1365134 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=140.211.166.133; helo=hemlock.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=busybox.net Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=heine.tech header.i=@heine.tech header.a=rsa-sha256 header.s=dkim header.b=Rkp6hzcs; dkim-atps=neutral Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4Brwdn242Fz9sSC for ; Wed, 16 Sep 2020 20:03:09 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 7B69A86FD0; Wed, 16 Sep 2020 10:03:07 +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 ilfcfn2LNAjB; Wed, 16 Sep 2020 10:03:07 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 081A986FD5; Wed, 16 Sep 2020 10:03:07 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 950B61BF40B for ; Wed, 16 Sep 2020 10:03:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 91E3D84D41 for ; Wed, 16 Sep 2020 10:03:06 +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 W95i3s4kNGPq for ; Wed, 16 Sep 2020 10:03:05 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.heine.tech (mail.heine.tech [195.201.24.99]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 7021D84D2E for ; Wed, 16 Sep 2020 10:03:05 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id CF7C118150E; Wed, 16 Sep 2020 12:02:56 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=heine.tech; s=dkim; t=1600250578; h=from:subject:date:message-id:to:cc:mime-version: content-transfer-encoding:in-reply-to:references; bh=ffHVclB/T6vvLpKktsXty1Hvvzv32qRUjvOzyChe468=; b=Rkp6hzcsCLbHXTKLzQpoOq7RcbaFfoBquCCagTvTo56WVTuZ0FKRF67Vg+7sE6C9dAue5e EBZRMtrxiZN5bCxURi5lz/I3j5L0uZU9zXSgqVbC4Nd2UJVxuACENhpAU7UcW0f0/vKj0h mTpx0JXHKGxW2PP35tJ6tthyn4BG8S4= To: buildroot@buildroot.org Date: Wed, 16 Sep 2020 12:02:09 +0200 Message-Id: <20200916100212.2903033-2-buildroot@heine.tech> In-Reply-To: <20200916100212.2903033-1-buildroot@heine.tech> References: <20200916100212.2903033-1-buildroot@heine.tech> MIME-Version: 1.0 X-Last-TLS-Session-Version: TLSv1.3 Subject: [Buildroot] [PATCH 1/3] package/doxygen: disable shared libs for host X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Michael Nosthoff via buildroot Reply-To: Michael Nosthoff Cc: Michael Nosthoff , Bartosz Golaszewski Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" doxygen fails to build with BUILD_SHARED_LIBS=ON as it only for some targets honors this flag and links the rest static. So enforce BUILD_SHARED_LIBS=OFF for this package. Signed-off-by: Michael Nosthoff --- package/doxygen/doxygen.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/doxygen/doxygen.mk b/package/doxygen/doxygen.mk index 6d8727208a..ee8ae4fde4 100644 --- a/package/doxygen/doxygen.mk +++ b/package/doxygen/doxygen.mk @@ -11,4 +11,6 @@ DOXYGEN_LICENSE = GPL-2.0 DOXYGEN_LICENSE_FILES = LICENSE HOST_DOXYGEN_DEPENDENCIES = host-flex host-bison +HOST_DOXYGEN_CONF_OPTS += -DBUILD_SHARED_LIBS=OFF + $(eval $(host-cmake-package))