From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga02.intel.com ([134.134.136.20]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1TFBhg-0005Bp-LP for openembedded-core@lists.openembedded.org; Sat, 22 Sep 2012 00:28:08 +0200 Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP; 21 Sep 2012 15:15:23 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.80,464,1344236400"; d="scan'208";a="196221212" Received: from unknown (HELO [10.255.14.14]) ([10.255.14.14]) by orsmga001.jf.intel.com with ESMTP; 21 Sep 2012 15:15:22 -0700 Message-ID: <505CE6FA.9060502@linux.intel.com> Date: Fri, 21 Sep 2012 15:15:22 -0700 From: Saul Wold User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:15.0) Gecko/20120827 Thunderbird/15.0 MIME-Version: 1.0 To: Ross Burton References: <1347615853-20491-1-git-send-email-ross.burton@intel.com> In-Reply-To: <1347615853-20491-1-git-send-email-ross.burton@intel.com> Cc: openembedded-core@lists.openembedded.org Subject: Re: [PATCH V2] librsvg: make the libcroco dependency a PACKAGECONFIG option X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Sep 2012 22:28:08 -0000 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 09/14/2012 02:44 AM, Ross Burton wrote: > Default to enabling it as we were build-depending on it already. If a user > needs the disk space and the limitations imposed by not using libcroco are > acceptable they can override this. > > Signed-off-by: Ross Burton > --- > meta/recipes-gnome/librsvg/librsvg_2.32.1.bb | 12 +++++++++--- > 1 file changed, 9 insertions(+), 3 deletions(-) > > diff --git a/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb b/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb > index 6bb5fe2..b118805 100644 > --- a/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb > +++ b/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb > @@ -7,15 +7,21 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ > file://rsvg.h;beginline=3;endline=24;md5=20b4113c4909bbf0d67e006778302bc6" > > SECTION = "x11/utils" > -DEPENDS = "gtk+ libcroco cairo libxml2" > +DEPENDS = "gtk+ cairo libxml2" > DEPENDS_virtclass-native = "cairo-native pango-native gdk-pixbuf-native" > BBCLASSEXTEND = "native" > > -PR = "r9" > +PR = "r10" > > inherit autotools pkgconfig gnome gtk-doc > > -EXTRA_OECONF = "--disable-mozilla-plugin --without-svgz --without-croco" > +EXTRA_OECONF = "--disable-mozilla-plugin --without-svgz" > + > +PACKAGECONFIG ??= "croco" > +# When native we can manage without croco, as it's only for GTK+ > +PACKAGECONFIG_class-native ??= "" > + > +PACKAGECONFIG[croco] = "--with-croco,--without-croco,libcroco" > > SRC_URI += "file://doc_Makefile.patch" > > Merged int OE-Core Thanks Sau!