diff options
| author | David Zeuthen <davidz@redhat.com> | 2009-04-11 17:19:59 -0400 |
|---|---|---|
| committer | David Zeuthen <davidz@redhat.com> | 2009-04-11 17:19:59 -0400 |
| commit | f5c0e92affa5ec515d03eb1d8abfcccd2b4fe3eb (patch) | |
| tree | 1b1e44099a98d64c4d3d199ace1fbe7e778711d2 /src/notification/Makefile.am | |
| parent | 01b800c41e0684d50ac60b3a54766f1e2cb4814c (diff) | |
| download | gnome-disk-utility-f5c0e92affa5ec515d03eb1d8abfcccd2b4fe3eb.tar.gz gnome-disk-utility-f5c0e92affa5ec515d03eb1d8abfcccd2b4fe3eb.tar.xz gnome-disk-utility-f5c0e92affa5ec515d03eb1d8abfcccd2b4fe3eb.zip | |
add notification daemon
First order of business for this daemon is to pop up dialogs for slow
unmont operations. These notifications look like this
http://people.freedesktop.org/~david/gdu-unmount-busy-1.png
http://people.freedesktop.org/~david/gdu-unmount-busy-2.png
See also
http://bugzilla.gnome.org/show_bug.cgi?id=570499
https://wiki.ubuntu.com/NotifyOSD#gnome-mount
Diffstat (limited to 'src/notification/Makefile.am')
| -rw-r--r-- | src/notification/Makefile.am | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/notification/Makefile.am b/src/notification/Makefile.am new file mode 100644 index 0000000..4a30c21 --- /dev/null +++ b/src/notification/Makefile.am @@ -0,0 +1,44 @@ + +NULL = + +libexec_PROGRAMS = gdu-notification-daemon + +gdu_notification_daemon_SOURCES = \ + notification-main.c \ + gdu-slow-unmount-dialog.h gdu-slow-unmount-dialog.c \ + $(NULL) + +gdu_notification_daemon_CPPFLAGS = \ + -I$(top_srcdir)/src/ \ + -I$(top_builddir)/src/ \ + -DG_LOG_DOMAIN=\"Palimpsest\" \ + -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \ + $(DISABLE_DEPRECATED) \ + -DGDU_API_IS_SUBJECT_TO_CHANGE \ + -DGDU_GTK_API_IS_SUBJECT_TO_CHANGE \ + $(AM_CPPFLAGS) + +gdu_notification_daemon_CFLAGS = \ + $(GLIB2_CFLAGS) \ + $(GOBJECT2_CFLAGS) \ + $(GIO2_CFLAGS) \ + $(GIO_UNIX2_CFLAGS) \ + $(GTK2_CFLAGS) \ + $(WARN_CFLAGS) \ + $(POLKIT_DBUS_CFLAGS) \ + $(POLKIT_GNOME_CFLAGS) \ + $(AM_CFLAGS) + +gdu_notification_daemon_LDFLAGS = \ + $(AM_LDFLAGS) + +gdu_notification_daemon_LDADD = \ + $(GLIB2_LIBS) \ + $(GOBJECT2_LIBS) \ + $(GIO2_LIBS) \ + $(GTK2_LIBS) \ + $(top_builddir)/src/gdu/libgdu.la \ + $(top_builddir)/src/gdu-gtk/libgdu-gtk.la + +clean-local : + rm -f *~ |
