From patchwork Sun Sep 17 18:28:17 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 814683 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.133; helo=hemlock.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3xwHhc6PmPz9sBZ for ; Mon, 18 Sep 2017 04:28:48 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 2200F8A4A2; Sun, 17 Sep 2017 18:28:43 +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 w3lcHvEU6gph; Sun, 17 Sep 2017 18:28:35 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 385E48A49D; Sun, 17 Sep 2017 18:28:35 +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 DBF1C1C0C35 for ; Sun, 17 Sep 2017 18:28:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id D6381871A7 for ; Sun, 17 Sep 2017 18:28:33 +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 Bj4ppmbhTwn7 for ; Sun, 17 Sep 2017 18:28:28 +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 fraxinus.osuosl.org (Postfix) with ESMTPS id 7F7CA87188 for ; Sun, 17 Sep 2017 18:28:28 +0000 (UTC) Received: from fwd01.aul.t-online.de (fwd01.aul.t-online.de [172.20.27.147]) by mailout06.t-online.de (Postfix) with SMTP id 3817A41DB067; Sun, 17 Sep 2017 20:28:26 +0200 (CEST) Received: from fli4l.lan.fli4l (G55TnwZQ8hSPF1pdqvVKMPxR0bxuqbjc4naoNrIWPWvpOJusz4Py8Zm2UWShtr9QfK@[79.228.1.99]) by fwd01.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1dteIl-05VFh20; Sun, 17 Sep 2017 20:28:19 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:50918 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.89) (envelope-from ) id 1dteIk-0003oc-60; Sun, 17 Sep 2017 20:28:18 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sun, 17 Sep 2017 20:28:17 +0200 Message-Id: <20170917182818.18868-1-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.11.0 X-ID: G55TnwZQ8hSPF1pdqvVKMPxR0bxuqbjc4naoNrIWPWvpOJusz4Py8Zm2UWShtr9QfK X-TOI-MSGID: 884e7245-144b-4871-b18e-ffda42a4f47e Cc: Olivier Schonken Subject: [Buildroot] [PATCH 1/2] package/poppler: fix libcurl 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" BR2_PACKAGE_POPPLER_LIBCURL is not defined in poppler/Config.in. Signed-off-by: Bernd Kuhls Acked-by: Olivier Schonken Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
--- package/poppler/poppler.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/poppler/poppler.mk b/package/poppler/poppler.mk index 6796437776..1beb75a6a3 100644 --- a/package/poppler/poppler.mk +++ b/package/poppler/poppler.mk @@ -66,7 +66,7 @@ else POPPLER_CONF_OPTS += --disable-zlib endif -ifeq ($(BR2_PACKAGE_POPPLER_LIBCURL),y) +ifeq ($(BR2_PACKAGE_LIBCURL),y) POPPLER_CONF_OPTS += --enable-libcurl POPPLER_DEPENDENCIES += libcurl else