diff options
author | Matthias Clasen <matthias.clasen@gmail.com> | 2010-11-15 19:54:57 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-11-15 22:13:25 +0100 |
commit | 5c273f855630bf54f6ebe95ea8b45c8abe2ffff6 (patch) | |
tree | a37d766009a20becb1e8aa96645e4e5d473ee338 /configure.ac | |
parent | d8b4dbe6d7b1dcef739927d37b2e763860b85233 (diff) |
build-sys: fix building against libnotify 0.7
Here are two patches I needed to get systemd to build against the
current libnotify and vala releases.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 5c6379c2b4..b37e9942e0 100644 --- a/configure.ac +++ b/configure.ac @@ -256,12 +256,12 @@ if test "$have_gtk" = "yes"; then AC_SUBST(DBUSGLIB_CFLAGS) AC_SUBST(DBUSGLIB_LIBS) - PKG_CHECK_MODULES(LIBNOTIFY, [ libnotify ]) + PKG_CHECK_MODULES(LIBNOTIFY, [ libnotify >= 0.7.0 ]) AC_SUBST(LIBNOTIFY_CFLAGS) AC_SUBST(LIBNOTIFY_LIBS) fi -AM_PROG_VALAC([0.9]) +AM_PROG_VALAC([0.11]) AC_SUBST(VAPIDIR) AM_CONDITIONAL(HAVE_VALAC, test x"$VALAC" != x) |