summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2011-12-22 12:53:44 +0100
committerChristophe Fergeau <cfergeau@redhat.com>2011-12-22 15:14:06 +0100
commitc5f42f8fb31c371548107ddf4114115d0e269946 (patch)
treebb4bbbc286d9da45ce6d5095dc210e1a9d50fc35 /autogen.sh
parent004322519fccb24024977068fa7d24d58b4d1590 (diff)
downloadspice-gtk-c5f42f8fb31c371548107ddf4114115d0e269946.tar.gz
spice-gtk-c5f42f8fb31c371548107ddf4114115d0e269946.tar.xz
spice-gtk-c5f42f8fb31c371548107ddf4114115d0e269946.zip
Disable vala bindings unless --enable-vala is used
Currently, building vala bindings from a tarball is broken because spice-client-glib-2.0.deps is missing from the tarball. This commit adds it to EXTRA_DIST and also makes sure the vala bindings don't get built/installed unless --enable-vala has been passed to configure. This means vala must be installed to build the vala bindings from a tarball. Fixes fdo bug #44000.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 904c00e..2724d7e 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -13,6 +13,6 @@ if test ! -e gtk/controller/controller.vala.stamp; then
fi
if [ -z "$NOCONFIGURE" ]; then
- "$srcdir"/configure --enable-maintainer-mode $enable_vala ${1+"$@"}
+ "$srcdir"/configure --enable-maintainer-mode --enable-gtk-doc --with-gtk=3.0 $enable_vala ${1+"$@"}
fi