From patchwork Fri Feb 13 09:05:47 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Angelo Compagnucci X-Patchwork-Id: 439439 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id ABB28140082 for ; Fri, 13 Feb 2015 20:06:07 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 29619265B3; Fri, 13 Feb 2015 09:06:06 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HYqcmjD15UoB; Fri, 13 Feb 2015 09:06:04 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 423D62F715; Fri, 13 Feb 2015 09:06:04 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id C818B1C2986 for ; Fri, 13 Feb 2015 09:06:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id C5BC295C7E for ; Fri, 13 Feb 2015 09:06:02 +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 PRxx6tNCfJxG for ; Fri, 13 Feb 2015 09:06:00 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-we0-f181.google.com (mail-we0-f181.google.com [74.125.82.181]) by hemlock.osuosl.org (Postfix) with ESMTPS id 368C795BF1 for ; Fri, 13 Feb 2015 09:06:00 +0000 (UTC) Received: by mail-we0-f181.google.com with SMTP id w62so15235072wes.12 for ; Fri, 13 Feb 2015 01:05:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=mlvzZacDZvPahIox5UnhdzNhGKxkUDMUdKELX0hhdXU=; b=peeccYGhmGGGqkWnByJgcrnSM2PQHxdWfNFE/0JpW3sr4bk1O9RFakmbFHksDM+Sqf oCFo+0pO0zoFsJi8ZpT+cHD9zttQU85H2y3973+inJULctM/EV+0O34yU1YoZy3dgxAX 2ypfEbgDJ/1Ms5GNKSezEKAds7ksc2Maa7mpKIyl/+nw9Yw6mHBSelKRN6cH638FJo52 q2vxCss2V2gMSWhI3FJLDXES026EMCgnJ3e+0ISeJwIVowP/Iu2+T5U8TgKJaB+0pT20 elGXr3pQG+7ZAGQXnTV9CosnswEpL2wp+zdbFFOs4sPMpM1fvFafzJkPLDuz3AFeMikY A/Fg== X-Received: by 10.180.10.131 with SMTP id i3mr14446812wib.54.1423818358661; Fri, 13 Feb 2015 01:05:58 -0800 (PST) Received: from localhost.localdomain ([89.202.204.147]) by mx.google.com with ESMTPSA id vq9sm9215430wjc.6.2015.02.13.01.05.56 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 13 Feb 2015 01:05:57 -0800 (PST) From: Angelo Compagnucci To: buildroot@buildroot.net Date: Fri, 13 Feb 2015 10:05:47 +0100 Message-Id: <1423818347-3390-1-git-send-email-angelo.compagnucci@gmail.com> X-Mailer: git-send-email 1.9.1 Subject: [Buildroot] [PATCH] package/python: enable xml libraries 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" This patch adds the option to include xml libraries in python. Signed-off-by: Angelo Compagnucci --- package/python/Config.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/package/python/Config.in b/package/python/Config.in index 87defad..682a324 100644 --- a/package/python/Config.in +++ b/package/python/Config.in @@ -114,6 +114,12 @@ config BR2_PACKAGE_PYTHON_SQLITE help SQLite database support +config BR2_PACKAGE_PYTHON_XML + bool "xml module" + select BR2_PACKAGE_PYTHON_PYEXPAT + help + Xml libraries for Python + config BR2_PACKAGE_PYTHON_ZLIB bool "zlib module" select BR2_PACKAGE_ZLIB