From patchwork Sun Jul 12 19:57:11 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Cercueil X-Patchwork-Id: 1327596 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.137; helo=fraxinus.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=crapouillou.net Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=crapouillou.net header.i=@crapouillou.net header.a=rsa-sha256 header.s=mail header.b=HFWG6P/c; dkim-atps=neutral Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4B4cyJ6qMRz9sR4 for ; Mon, 13 Jul 2020 05:57:44 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id C2F2B86B2C; Sun, 12 Jul 2020 19:57:24 +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 n_pvWPiYSuIp; Sun, 12 Jul 2020 19:57:24 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 1AF5786B46; Sun, 12 Jul 2020 19:57:24 +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 8399B1BF4E3 for ; Sun, 12 Jul 2020 19:57:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 7C7E6889F8 for ; Sun, 12 Jul 2020 19:57:22 +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 O0H13Fg1MpPz for ; Sun, 12 Jul 2020 19:57:21 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from crapouillou.net (crapouillou.net [89.234.176.41]) by whitealder.osuosl.org (Postfix) with ESMTPS id A0831888EE for ; Sun, 12 Jul 2020 19:57:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=crapouillou.net; s=mail; t=1594583838; h=from:from:sender:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-transfer-encoding:content-transfer-encoding: in-reply-to:references; bh=gChaXSnEt9MUDLCqVm7xb82LLwn9zOeY7Y1ZX+nZehM=; b=HFWG6P/c4RrXbi9VYQ4ngAhtvXzXBqydhE2lYdpf71KUbLb/sa6o302XKt/sAFQdfWxylX zqDbSfNLqlBgmyLNIVuVuTAYAAHgcgLq9rf5sPlRWdZVmgJQiPrG2qQA4gmm7pmxwqo5bU dIV04i9z0t0psO3CAl5YLecx9nqSwR4= From: Paul Cercueil To: buildroot@busybox.net Date: Sun, 12 Jul 2020 21:57:11 +0200 Message-Id: <20200712195712.332139-1-paul@crapouillou.net> MIME-Version: 1.0 Subject: [Buildroot] [PATCH 1/2] package/sdl_image: fix WebP dynamically loaded on host build 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: , Cc: Paul Cercueil , od@zcrc.me Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Just like with libjpeg and libpng, we don't want libwebp to be dynamically loaded by SDL_image at runtime. Signed-off-by: Paul Cercueil --- package/sdl_image/sdl_image.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/sdl_image/sdl_image.mk b/package/sdl_image/sdl_image.mk index ee0712cc27..46a28799cf 100644 --- a/package/sdl_image/sdl_image.mk +++ b/package/sdl_image/sdl_image.mk @@ -43,7 +43,8 @@ HOST_SDL_IMAGE_CONF_OPTS = \ --disable-static \ --disable-jpg-shared \ --disable-png-shared \ - --disable-tif-shared + --disable-tif-shared \ + --disable-webp-shared HOST_SDL_IMAGE_DEPENDENCIES = host-libjpeg host-libpng host-sdl