diff options
| -rw-r--r-- | debian/changelog | 39 | ||||
| -rw-r--r-- | debian/libindicate0.install | 2 | ||||
| -rw-r--r-- | libindicate/Makefile.am | 48 | ||||
| -rw-r--r-- | libindicate/tests/indicate-and-crash.c | 2 | ||||
| -rw-r--r-- | tests/indicate-and-crash.c | 20 |
5 files changed, 84 insertions, 27 deletions
diff --git a/debian/changelog b/debian/changelog index 6ecbe69..d5ad21f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,42 @@ +indicator-applet (0.1~ppa33) intrepid; urgency=low + + * Version bump, autogen.sh + + -- Ted Gould <[email protected]> Fri, 06 Feb 2009 14:35:38 +0100 + +indicator-applet (0.1~ppa32) intrepid; urgency=low + + * Adding back in the package config data + + -- Ted Gould <[email protected]> Fri, 06 Feb 2009 14:14:33 +0100 + +indicator-applet (0.1~ppa31) intrepid; urgency=low + + * Ah, silly packaging stuff. I hate packaging. + + -- Ted Gould <[email protected]> Fri, 06 Feb 2009 11:39:04 +0100 + +indicator-applet (0.1~ppa30) intrepid; urgency=low + + * Removing GObject introspection, so that it will build in + the PPA. Will put back later. + + -- Ted Gould <[email protected]> Fri, 06 Feb 2009 10:39:59 +0100 + +indicator-applet (0.1~ppa29) intrepid; urgency=low + + * Bumping for PPA as forgot to run autogen.sh + + -- Ted Gould <[email protected]> Fri, 06 Feb 2009 00:29:11 +0100 + +indicator-applet (0.1~ppa28) intrepid; urgency=low + + * Updating the server interface to have signals for show and hide + on the server and having properties for the desktop and type + of the server. + + -- Ted Gould <[email protected]> Thu, 05 Feb 2009 18:22:19 +0100 + indicator-applet (0.1~ppa27) intrepid; urgency=low * Adding an API function for pixbufs diff --git a/debian/libindicate0.install b/debian/libindicate0.install index a83aa8a..0618a58 100644 --- a/debian/libindicate0.install +++ b/debian/libindicate0.install @@ -1,3 +1 @@ debian/tmp/usr/lib/libindicate.so.* -debian/tmp/usr/share/gir/ -debian/tmp/usr/lib/girepository/ diff --git a/libindicate/Makefile.am b/libindicate/Makefile.am index 5b43425..3eb14af 100644 --- a/libindicate/Makefile.am +++ b/libindicate/Makefile.am @@ -74,28 +74,28 @@ listener-marshal.c: $(srcdir)/listener-marshal.list pkgconfig_DATA = indicate.pc pkgconfigdir = $(libdir)/pkgconfig -gobjectintrospection_gir_DATA = \ - Indicate-0.1.gir -gobjectintrospection_girdir = $(datadir)/gir - -gobjectintrospection_type_DATA = \ - Indicate-0.1.typelib -gobjectintrospection_typedir = $(libdir)/girepository - -irscanner_headers = $(patsubst %,$(srcdir)/%,$(indicate_headers)) -Indicate-0.1.gir: $(irscanner_headers) - $(G_IR_SCANNER) \ - -v --namespace Indicate \ - --nsversion=0.1 \ - --add-include-path=$(srcdir) \ - --include=GObject-2.0 \ - --include=GLib-2.0 \ - --include=GdkPixbuf-2.0 \ - --library=indicate --pkg indicate \ - --output Indicate-0.1.gir $(irscanner_headers) - -Indicate-0.1.typelib: Indicate-0.1.gir - $(G_IR_COMPILER) \ - --includedir=$(srcdir) Indicate-0.1.gir \ - -o Indicate-0.1.typelib +#gobjectintrospection_gir_DATA = \ +# Indicate-0.1.gir +#gobjectintrospection_girdir = $(datadir)/gir +# +#gobjectintrospection_type_DATA = \ +# Indicate-0.1.typelib +#gobjectintrospection_typedir = $(libdir)/girepository +# +#irscanner_headers = $(patsubst %,$(srcdir)/%,$(indicate_headers)) +#Indicate-0.1.gir: $(irscanner_headers) +# $(G_IR_SCANNER) \ +# -v --namespace Indicate \ +# --nsversion=0.1 \ +# --add-include-path=$(srcdir) \ +# --include=GObject-2.0 \ +# --include=GLib-2.0 \ +# --include=GdkPixbuf-2.0 \ +# --library=indicate --pkg indicate \ +# --output Indicate-0.1.gir $(irscanner_headers) +# +#Indicate-0.1.typelib: Indicate-0.1.gir +# $(G_IR_COMPILER) \ +# --includedir=$(srcdir) Indicate-0.1.gir \ +# -o Indicate-0.1.typelib diff --git a/libindicate/tests/indicate-and-crash.c b/libindicate/tests/indicate-and-crash.c index 5a50e30..44be76e 100644 --- a/libindicate/tests/indicate-and-crash.c +++ b/libindicate/tests/indicate-and-crash.c @@ -2,7 +2,7 @@ #include <glib.h> #include "libindicate/indicator.h" -gboolean crashfunc (gpointer data) { *(int *)data = 5; return FALSE;} +gboolean crashfunc (gpointer data) { *(int *)data = 5; } int main (int argc, char ** argv) diff --git a/tests/indicate-and-crash.c b/tests/indicate-and-crash.c new file mode 100644 index 0000000..5a50e30 --- /dev/null +++ b/tests/indicate-and-crash.c @@ -0,0 +1,20 @@ + +#include <glib.h> +#include "libindicate/indicator.h" + +gboolean crashfunc (gpointer data) { *(int *)data = 5; return FALSE;} + +int +main (int argc, char ** argv) +{ + g_type_init(); + + IndicateIndicator * indicator = indicate_indicator_new(); + indicate_indicator_show(indicator); + + g_timeout_add_seconds(15, crashfunc, NULL); + + g_main_loop_run(g_main_loop_new(NULL, FALSE)); + + return 0; +} |
