From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1PziKo-0003co-Lq for garchives@archives.gentoo.org; Wed, 16 Mar 2011 04:28:16 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D169BE07BA; Wed, 16 Mar 2011 04:27:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 94879E07BA for ; Wed, 16 Mar 2011 04:27:38 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2BABA1B4355 for ; Wed, 16 Mar 2011 04:27:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 8E6D78006A for ; Wed, 16 Mar 2011 04:27:37 +0000 (UTC) From: "Jory Pratt" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jory Pratt" Message-ID: <0249960e58fdb88323585e8de80b888dd91541a0.anarchy@gentoo> Subject: [gentoo-commits] proj/mozilla:master commit in: eclass/ X-VCS-Repository: proj/mozilla X-VCS-Files: eclass/mozconfig-3.eclass X-VCS-Directories: eclass/ X-VCS-Committer: anarchy X-VCS-Committer-Name: Jory Pratt X-VCS-Revision: 0249960e58fdb88323585e8de80b888dd91541a0 Date: Wed, 16 Mar 2011 04:27:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: a0254b4007d70e267494caa94ee5932e commit: 0249960e58fdb88323585e8de80b888dd91541a0 Author: Jory A. Pratt gentoo org> AuthorDate: Wed Mar 16 04:27:20 2011 +0000 Commit: Jory Pratt gentoo org> CommitDate: Wed Mar 16 04:27:20 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/mozilla.git;a= =3Dcommit;h=3D0249960e only enable places and other options in specific applications --- eclass/mozconfig-3.eclass | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/eclass/mozconfig-3.eclass b/eclass/mozconfig-3.eclass index cbba1c5..a1b919c 100644 --- a/eclass/mozconfig-3.eclass +++ b/eclass/mozconfig-3.eclass @@ -88,11 +88,13 @@ mozconfig_config() { mozconfig_annotate '' --with-system-nspr --with-nspr-prefix=3D"${EPREFI= X}"/usr mozconfig_annotate '' --with-system-nss --with-nss-prefix=3D"${EPREFIX}= "/usr mozconfig_annotate '' --x-includes=3D"${EPREFIX}"/usr/include --x-libra= ries=3D"${EPREFIX}"/usr/$(get_libdir) - mozconfig_annotate 'places' --enable-storage --enable-places --enable-p= laces_bookmarks mozconfig_annotate '' --with-system-libevent=3D"${EPREFIX}"/usr - mozconfig_annotate '' --enable-oji --enable-mathml - mozconfig_annotate 'broken' --disable-mochitest mozconfig_annotate '' --enable-system-hunspell mozconfig_annotate '' --disable-gnomevfs mozconfig_annotate '' --enable-gio + if ${XUL} || ${FF} || ${IC} || ${SM} ; then + mozconfig_annotate 'places' --enable-storage --enable-places --enable-= places_bookmarks + mozconfig_annotate '' --enable-oji --enable-mathml + mozconfig_annotate 'broken' --disable-mochitest + fi }