diff --git a/ChangeLog b/ChangeLog index c90910e..a54be41 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +Tue Dec 13 2005 John (J5) Palmieri + + * Release 0.3.0 + + * tests/Makefile.am, tools/Makefile.am: patch from Rodney + Dawes fixing make distcheck + + * tools/notify-send.c: use show_and_forget + Fri Dec 09 2005 John (J5) Palmieri * libnotify/notifymarshal.[c|h]: new files where GLib callback diff --git a/tests/Makefile.am b/tests/Makefile.am index dba6243..9f4195a 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -47,4 +47,6 @@ test_xy_LDADD = $(common_ldflags) test_xy_stress_LDADD = $(common_ldflags) -INCLUDES = $(PACKAGE_CFLAGS) $(GDK_CFLAGS) +INCLUDES = $(PACKAGE_CFLAGS) \ + $(GDK_CFLAGS) \ + -I$(top_srcdir) diff --git a/tools/Makefile.am b/tools/Makefile.am index 7cba1c9..8edb788 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -8,4 +8,5 @@ common_ldflags = \ notify_send_SOURCES = notify-send.c notify_send_LDADD = $(common_ldflags) -INCLUDES = $(PACKAGE_CFLAGS) +INCLUDES = $(PACKAGE_CFLAGS) \ + -I$(top_srcdir) diff --git a/tools/notify-send.c b/tools/notify-send.c index 7771fb5..d40e4cf 100644 --- a/tools/notify-send.c +++ b/tools/notify-send.c @@ -43,7 +43,6 @@ main(int argc, const char **argv) poptContext opt_ctx; const char **args; NotifyNotification *notify; - GError *error = NULL; g_type_init (); @@ -135,7 +134,7 @@ main(int argc, const char **argv) notify_notification_set_urgency (notify, urgency); notify_notification_set_timeout (notify, expire_timeout); - notify_notification_show (notify, error); + notify_notification_show_and_forget (notify, NULL); poptFreeContext(opt_ctx); notify_uninit();