diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-03-04 10:23:52 -0500 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2011-03-04 10:23:52 -0500 |
commit | 7c009b1e4bfb7788d2d078947bd61f79aadf463f (patch) | |
tree | 9cbea14ff1771f89a57f9bff557035fa784448ba | |
parent | 06885e9d71861edd32d7906ef7ba252f2e064167 (diff) | |
parent | f753b6b03be3585bb9f96b276afffa0164a9a9e3 (diff) | |
download | libdbusmenu-7c009b1e4bfb7788d2d078947bd61f79aadf463f.tar.gz libdbusmenu-7c009b1e4bfb7788d2d078947bd61f79aadf463f.tar.bz2 libdbusmenu-7c009b1e4bfb7788d2d078947bd61f79aadf463f.zip |
releasing version 0.3.100-0ubuntu2
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | libdbusmenu-glib/enum-types.c.in | 2 | ||||
-rw-r--r-- | libdbusmenu-glib/enum-types.h.in | 5 |
3 files changed, 11 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 6ae49f3..840c128 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +libdbusmenu (0.3.100-0ubuntu2) natty; urgency=low + + * Cherry picked fix for path to find types.h + + -- Ken VanDine <ken.vandine@canonical.com> Fri, 04 Mar 2011 10:22:36 -0500 + libdbusmenu (0.3.100-0ubuntu1) natty; urgency=low * New upstream release. diff --git a/libdbusmenu-glib/enum-types.c.in b/libdbusmenu-glib/enum-types.c.in index 9395f5f..40f1759 100644 --- a/libdbusmenu-glib/enum-types.c.in +++ b/libdbusmenu-glib/enum-types.c.in @@ -31,7 +31,7 @@ License version 3 and version 2.1 along with this program. If not, see /*** END file-header ***/ /*** BEGIN file-production ***/ -#include "@filename@" +#include "@basename@" /*** END file-production ***/ /*** BEGIN value-header ***/ diff --git a/libdbusmenu-glib/enum-types.h.in b/libdbusmenu-glib/enum-types.h.in index 488b615..5758438 100644 --- a/libdbusmenu-glib/enum-types.h.in +++ b/libdbusmenu-glib/enum-types.h.in @@ -44,13 +44,16 @@ G_END_DECLS /*** BEGIN file-production ***/ /* Enumerations from file: "@filename@" */ -#include "@filename@" +#include "@basename@" + /*** END file-production ***/ /*** BEGIN value-header ***/ + GType @enum_name@_get_type (void) G_GNUC_CONST; const gchar * @enum_name@_get_nick (@EnumName@ value) G_GNUC_CONST; @EnumName@ @enum_name@_get_value_from_nick (const gchar * nick) G_GNUC_CONST; + /** DBUSMENU_TYPE_@ENUMSHORT@: |