AC_SUBST(DBUSGLIB_CFLAGS)
AC_SUBST(DBUSGLIB_LIBS)
- PKG_CHECK_MODULES(LIBNOTIFY, [ libnotify >= 0.7.0 ])
+ PKG_CHECK_MODULES(LIBNOTIFY, [ libnotify ])
AC_SUBST(LIBNOTIFY_CFLAGS)
AC_SUBST(LIBNOTIFY_LIBS)
fi
-AM_PROG_VALAC([0.11])
+AM_PROG_VALAC([0.9])
AC_SUBST(VAPIDIR)
AM_CONDITIONAL(HAVE_VALAC, test x"$VALAC" != x)
systemd (13-1) experimental; urgency=low
+ [ Tollef Fog Heen ]
* New upstream version, thanks a lot to Michael Biebl for help with
preparing this version.
* Add libaudit-dev to build-depends
+ [ Michael Biebl ]
+ * Revert upstream change which requires libnotify 0.7 (not yet available in
+ Debian).
+
-- Tollef Fog Heen <tfheen@debian.org> Sat, 20 Nov 2010 09:28:01 +0100
systemd (11-2) experimental; urgency=low
override_dh_auto_configure:
dh_auto_configure -- --with-rootdir= --with-udevrulesdir=/lib/udev/rules.d --with-gtk
+ dh $@ --parallel --with autoreconf
override_dh_install:
rm debian/tmp/usr/share/doc/systemd/LICENSE
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();
set_visible(true);
- Notification n = new Notification(title, message, icon);
+ Notification n = new Notification(title, message, icon, null);
+ n.attach_to_status_icon(this);
n.set_timeout(5000);
n.show();
OutputStream stream = new UnixOutputStream(to_process, true);
- stream.write(password.data, null);
+ stream.write(password, password.length, null);
}
}