chiark / gitweb /
build-sys: fix building against libnotify 0.7
authorMatthias Clasen <matthias.clasen@gmail.com>
Mon, 15 Nov 2010 18:54:57 +0000 (19:54 +0100)
committerLennart Poettering <lennart@poettering.net>
Mon, 15 Nov 2010 21:13:25 +0000 (22:13 +0100)
Here are two patches I needed to get systemd to build against the
current libnotify and vala releases.

configure.ac
src/gnome-ask-password-agent.vala

index 5c6379c2b4ed8cfcf2a1ef7d877b5e0fae080963..b37e9942e01c06ab1ee3be056e03bb06d4906f6d 100644 (file)
@@ -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)
 
index 1523e2e3bef16d805a6845d795085399a5c294c4..6cab6f96a776523b76027f094469848168bbc529 100644 (file)
@@ -38,8 +38,8 @@ public class PasswordDialog : Dialog {
                 set_default_response(ResponseType.OK);
                 set_icon_name(icon);
 
-                add_button(STOCK_CANCEL, ResponseType.CANCEL);
-                add_button(STOCK_OK, ResponseType.OK);
+                add_button(Stock.CANCEL, ResponseType.CANCEL);
+                add_button(Stock.OK, ResponseType.OK);
 
                 Container content = (Container) get_content_area();
 
@@ -181,8 +181,7 @@ public class MyStatusIcon : StatusIcon {
 
                 set_visible(true);
 
-                Notification n = new Notification(title, message, icon, null);
-                n.attach_to_status_icon(this);
+                Notification n = new Notification(title, message, icon);
                 n.set_timeout(5000);
                 n.show();
 
@@ -226,7 +225,7 @@ public class MyStatusIcon : StatusIcon {
 
                 OutputStream stream = new UnixOutputStream(to_process, true);
 
-                stream.write(password, password.length, null);
+                stream.write(password.data, null);
         }
 }