Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-base/dconf/files: dconf-0.8.0-automagic-vala.patch
Date: Wed, 27 Jul 2011 16:53:27
Message-Id: 20110727165311.D18E920051@flycatcher.gentoo.org
1 pacho 11/07/27 16:53:11
2
3 Added: dconf-0.8.0-automagic-vala.patch
4 Log:
5 Version bump, remove old.
6
7 (Portage version: 2.1.10.7/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 gnome-base/dconf/files/dconf-0.8.0-automagic-vala.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/dconf/files/dconf-0.8.0-automagic-vala.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/dconf/files/dconf-0.8.0-automagic-vala.patch?rev=1.1&content-type=text/plain
14
15 Index: dconf-0.8.0-automagic-vala.patch
16 ===================================================================
17 --- configure.ac.orig 2010-11-06 16:24:36.000000000 +0100
18 +++ configure.ac 2010-11-06 16:24:19.000000000 +0100
19 @@ -12,7 +12,15 @@
20
21 # Check for programs
22 AC_PROG_CC
23 -AM_PROG_VALAC([0.11.7])
24 +
25 +AC_ARG_ENABLE(vala,
26 + AC_HELP_STRING([--disable-vala],
27 + [Disable vala support]))
28 +AM_CONDITIONAL(ENABLE_VALA, test "x$enable_vala" != "xno")
29 +
30 +if test "x$enable_vala" != "xno"; then
31 + AM_PROG_VALAC([0.11.7])
32 +fi
33
34 # Use GSettings
35 GLIB_GSETTINGS