diff options
author | Pacho Ramos <pacho@gentoo.org> | 2016-10-08 10:46:18 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2016-10-08 11:50:06 +0200 |
commit | ff6e5e947d763336a125b9e4ad0fd42e822aa61b (patch) | |
tree | 6f9f5263c0dcd8f007ec2468adbea19b0910424f /gnome-extra/libgda/files | |
parent | dev-util/anjuta: Drop old (diff) | |
download | gentoo-ff6e5e947d763336a125b9e4ad0fd42e822aa61b.tar.gz gentoo-ff6e5e947d763336a125b9e4ad0fd42e822aa61b.tar.bz2 gentoo-ff6e5e947d763336a125b9e4ad0fd42e822aa61b.zip |
gnome-extra/libgda: Upstream patches to fix vala detection and allow the usage of newer slots.
Package-Manager: portage-2.3.1
Diffstat (limited to 'gnome-extra/libgda/files')
-rw-r--r-- | gnome-extra/libgda/files/libgda-5.2.4-vala-check.patch | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gnome-extra/libgda/files/libgda-5.2.4-vala-check.patch b/gnome-extra/libgda/files/libgda-5.2.4-vala-check.patch new file mode 100644 index 000000000000..c586d49356d0 --- /dev/null +++ b/gnome-extra/libgda/files/libgda-5.2.4-vala-check.patch @@ -0,0 +1,35 @@ +From e72c59062f39e89569524f4556cbddb8d00119f4 Mon Sep 17 00:00:00 2001 +From: Vivien Malerba <malerba@gnome-db.org> +Date: Sun, 7 Feb 2016 20:49:07 +0100 +Subject: Re-correction for bug #761424 + +Automatic detection of API version +--- + configure.ac | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 152f676..9898a32 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -571,13 +571,13 @@ fi + vala_api="No Vala bindings will be generated" + if test "x$enable_vala" = "xyes" + then +- AM_PROG_VALAC([0.26.0]) ++ AM_PROG_VALAC() + if test "x$VALA_API_VERSION" = "x" + then +- VAPIGEN_CHECK([0.26.0],[0.26],,no) +- vala_api="0.26 (Default)" ++ VAPIGEN_CHECK(,,,no) ++ vala_api="`pkg-config --modversion vapigen` (Default)" + else +- VAPIGEN_CHECK([0.26.0],$VALA_API_VERSION,,no) ++ VAPIGEN_CHECK(,$VALA_API_VERSION,,no) + vala_api=$VALA_API_VERSION + fi + else +-- +cgit v0.12 + |