From patchwork Sat May 24 17:55:47 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Hadjinlian X-Patchwork-Id: 352146 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id D46C8140082 for ; Sun, 25 May 2014 03:56:00 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id DA9B28A99D; Sat, 24 May 2014 17:55:59 +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 jTz-YLqQfc7n; Sat, 24 May 2014 17:55:59 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 3C4958A9AA; Sat, 24 May 2014 17:55:59 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 97D041BF830 for ; Sat, 24 May 2014 17:55:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 934528AFD5 for ; Sat, 24 May 2014 17:55:57 +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 gXEoXiJs7VEE for ; Sat, 24 May 2014 17:55:57 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wg0-f45.google.com (mail-wg0-f45.google.com [74.125.82.45]) by fraxinus.osuosl.org (Postfix) with ESMTPS id E21998AFC9 for ; Sat, 24 May 2014 17:55:56 +0000 (UTC) Received: by mail-wg0-f45.google.com with SMTP id m15so6268798wgh.16 for ; Sat, 24 May 2014 10:55:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=FtccMaxjC7JawfTUXujKlH4504pthOrG54li6Z4d7xM=; b=IQUnv3obEHvUPMuGuvIPw97/76tj9fghKyJd7PjTl0sOXTAMuPSM+xZ2j4nar6fiBx EdxSoYHKL32ANNw+j3pfyLIOkaIA1NI1y4VqHQ6myUbkkx/YpiEjinBBiV9CcDPH4nt4 GDNK1dK3wZIS27n/kBcXHfHXiWXwy7V8SrfjzyWd2J0vykDaXKtYi4e1GJwF35rDazSa EwaU9k1EePGkAAfatQeAIDpn++P2c7v8IgvKNHg5gtiKSl0vjtottJFyyizMPzV5jlSH ZdnsylUClsGHuwlXFJPbgks8fR9xFsvTh0OGbXoH6X1LA52aL3ubwf7Ckm2+flE9v3h2 MNmQ== X-Received: by 10.180.86.74 with SMTP id n10mr12631204wiz.55.1400954155294; Sat, 24 May 2014 10:55:55 -0700 (PDT) Received: from localhost (13-105-190-109.dsl.ovh.fr. [109.190.105.13]) by mx.google.com with ESMTPSA id vp5sm12122866wjc.31.2014.05.24.10.55.54 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 24 May 2014 10:55:54 -0700 (PDT) From: Maxime Hadjinlian To: buildroot@buildroot.org Date: Sat, 24 May 2014 19:55:47 +0200 Message-Id: <1400954147-25609-1-git-send-email-maxime.hadjinlian@gmail.com> X-Mailer: git-send-email 2.0.0.rc0 Subject: [Buildroot] [PATCH] xbmc: Add missing unicode properties supports X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 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-bounces@busybox.net At startup, XBMC complains that PCRE is lacking unicode properties supports. Signed-off-by: Maxime Hadjinlian Tested-by: "Yann E. MORIN" --- package/xbmc/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/xbmc/Config.in b/package/xbmc/Config.in index 0f45f5c..d94cdad 100644 --- a/package/xbmc/Config.in +++ b/package/xbmc/Config.in @@ -40,6 +40,7 @@ menuconfig BR2_PACKAGE_XBMC select BR2_PACKAGE_NCURSES select BR2_PACKAGE_OPENSSL select BR2_PACKAGE_PCRE + select BR2_PACKAGE_PCRE_UCP select BR2_PACKAGE_PYTHON select BR2_PACKAGE_PYTHON_BSDDB select BR2_PACKAGE_PYTHON_BZIP2