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.5.1-automagic-vala.patch
Date: Sat, 06 Nov 2010 15:53:20
Message-Id: 20101106155306.D0B992003C@flycatcher.gentoo.org
1 pacho 10/11/06 15:53:06
2
3 Added: dconf-0.5.1-automagic-vala.patch
4 Log:
5 Fix vala automagic support, upstream bug #634171
6
7 (Portage version: 2.1.9.24/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 gnome-base/dconf/files/dconf-0.5.1-automagic-vala.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/dconf/files/dconf-0.5.1-automagic-vala.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/dconf/files/dconf-0.5.1-automagic-vala.patch?rev=1.1&content-type=text/plain
14
15 Index: dconf-0.5.1-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.9.5])
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.9.5])
32 +fi
33
34 # Introspection
35 GOBJECT_INTROSPECTION_CHECK([0.9.5])