diff options
| author | Dongxiao Xu <dongxiao.xu@intel.com> | 2010-11-18 00:49:38 +0800 |
|---|---|---|
| committer | Saul Wold <Saul.Wold@intel.com> | 2010-11-18 13:30:28 -0800 |
| commit | dfc8bf318ffa0c76dc08c032d48b3a04b7fa1adf (patch) | |
| tree | 0290fe8a099fdeec232e3a64ee8a30075c6862b6 /meta/recipes-support/libfm/libfm-0.1.12 | |
| parent | a79165c616a3e60a0e8e127394fda53f467455b0 (diff) | |
| download | poky-dfc8bf318ffa0c76dc08c032d48b3a04b7fa1adf.tar.gz | |
libfm: add missing definitions and declarations
Some macro definitions are missing in the new glib headers, which are
needed by libfm. Add these to fix the libfm build issue.
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-support/libfm/libfm-0.1.12')
| -rw-r--r-- | meta/recipes-support/libfm/libfm-0.1.12/add_missing.patch | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/meta/recipes-support/libfm/libfm-0.1.12/add_missing.patch b/meta/recipes-support/libfm/libfm-0.1.12/add_missing.patch new file mode 100644 index 0000000000..3739d8056e --- /dev/null +++ b/meta/recipes-support/libfm/libfm-0.1.12/add_missing.patch | |||
| @@ -0,0 +1,50 @@ | |||
| 1 | Add missing definitions and declarations for libfm which are | ||
| 2 | needed by libfm. | ||
| 3 | |||
| 4 | Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> | ||
| 5 | |||
| 6 | diff -ruN libfm-0.1.12-orig/src/gio/fm-app-lookup.h libfm-0.1.12/src/gio/fm-app-lookup.h | ||
| 7 | --- libfm-0.1.12-orig/src/gio/fm-app-lookup.h 2010-11-17 22:00:48.000000000 +0800 | ||
| 8 | +++ libfm-0.1.12/src/gio/fm-app-lookup.h 2010-11-17 22:01:13.000000000 +0800 | ||
| 9 | @@ -53,6 +53,41 @@ | ||
| 10 | GType fm_app_lookup_get_type(void); | ||
| 11 | void fm_app_lookup_register(GIOModule *module); | ||
| 12 | |||
| 13 | +#define G_TYPE_DESKTOP_APP_INFO_LOOKUP (g_desktop_app_info_lookup_get_type ()) | ||
| 14 | +#define G_DESKTOP_APP_INFO_LOOKUP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_DESKTOP_APP_INFO_LOOKUP, GDesktopAppInfoLookup)) | ||
| 15 | +#define G_IS_DESKTOP_APP_INFO_LOOKUP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_DESKTOP_APP_INFO_LOOKUP)) | ||
| 16 | +#define G_DESKTOP_APP_INFO_LOOKUP_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_DESKTOP_APP_INFO_LOOKUP, GDesktopAppInfoLookupIface)) | ||
| 17 | + | ||
| 18 | +/** | ||
| 19 | + * G_DESKTOP_APP_INFO_LOOKUP_EXTENSION_POINT_NAME: | ||
| 20 | + * | ||
| 21 | + * Extension point for default handler to URI association. See | ||
| 22 | + * <link linkend="extending-gio">Extending GIO</link>. | ||
| 23 | + */ | ||
| 24 | +#define G_DESKTOP_APP_INFO_LOOKUP_EXTENSION_POINT_NAME "gio-desktop-app-info-lookup" | ||
| 25 | + | ||
| 26 | +/** | ||
| 27 | + * GDesktopAppInfoLookup: | ||
| 28 | + * | ||
| 29 | + * Interface that is used by backends to associate default | ||
| 30 | + * handlers with URI schemes. | ||
| 31 | + */ | ||
| 32 | +typedef struct _GDesktopAppInfoLookup GDesktopAppInfoLookup; | ||
| 33 | +typedef struct _GDesktopAppInfoLookupIface GDesktopAppInfoLookupIface; | ||
| 34 | + | ||
| 35 | +struct _GDesktopAppInfoLookupIface | ||
| 36 | +{ | ||
| 37 | + GTypeInterface g_iface; | ||
| 38 | + | ||
| 39 | + GAppInfo * (* get_default_for_uri_scheme) (GDesktopAppInfoLookup *lookup, | ||
| 40 | + const char *uri_scheme); | ||
| 41 | +}; | ||
| 42 | + | ||
| 43 | +GType g_desktop_app_info_lookup_get_type (void) G_GNUC_CONST; | ||
| 44 | + | ||
| 45 | +GAppInfo *g_desktop_app_info_lookup_get_default_for_uri_scheme (GDesktopAppInfoLookup *lookup, | ||
| 46 | + const char *uri_scheme); | ||
| 47 | + | ||
| 48 | G_END_DECLS | ||
| 49 | |||
| 50 | #endif /* __FM_APP_LOOKUP_H__ */ | ||
