diff options
author | Ted Gould <ted@gould.cx> | 2011-02-10 14:57:31 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-02-10 14:57:31 -0600 |
commit | a9814d5d7acde62dd8f5cf3424f795bb4c977dd1 (patch) | |
tree | 11f2e90896af12c6718eb4b408347bb22b643672 /configure.ac | |
parent | 6def775bc45fdcf7ce59ccd08dd89c751b5cf3d3 (diff) | |
parent | 18d89929cb035b798916e10a6aa253fd5bcf4e7d (diff) | |
download | libayatana-appindicator-a9814d5d7acde62dd8f5cf3424f795bb4c977dd1.tar.gz libayatana-appindicator-a9814d5d7acde62dd8f5cf3424f795bb4c977dd1.tar.bz2 libayatana-appindicator-a9814d5d7acde62dd8f5cf3424f795bb4c977dd1.zip |
New upstream release.
∘ Fix Vala bindings
∘ Add support for scroll events
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 6f78786..24ef4e8 100644 --- a/configure.ac +++ b/configure.ac @@ -1,11 +1,11 @@ -AC_INIT(libappindicator, 0.2.92, ted@canonical.com) +AC_INIT(libappindicator, 0.2.93, ted@canonical.com) AC_COPYRIGHT([Copyright 2009, 2010 Canonical]) AC_PREREQ(2.53) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(libappindicator, 0.2.92) +AM_INIT_AUTOMAKE(libappindicator, 0.2.93) AM_MAINTAINER_MODE @@ -94,6 +94,14 @@ AM_CONDITIONAL(INTROSPECTION_TEN, [test "x$introspection_ten" = "xyes"]) ########################### AC_PATH_PROG([VALA_API_GEN], [vapigen]) +AM_CONDITIONAL(HAVE_VAPIGEN, [test "x$VALA_API_GEN" != "x"]) + +########################### +# Vala Compiler support +########################### + +AM_PROG_VALAC([0.11.0]) +AM_CONDITIONAL(HAVE_VALAC, [test "x$VALAC" != "x"]) ########################### # Check for Mono support @@ -205,6 +213,8 @@ bindings/mono/appindicator-sharp-0.1.pc bindings/mono/examples/Makefile bindings/mono/examples/indicator-example bindings/python/Makefile +bindings/vala/Makefile +bindings/vala/examples/Makefile tests/Makefile example/Makefile docs/Makefile |