aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/gpe-beam/gpe-beam-0.2.8
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
committerDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
commit709c4d66e0b107ca606941b988bad717c0b45d9b (patch)
tree37ee08b1eb308f3b2b6426d5793545c38396b838 /recipes/gpe-beam/gpe-beam-0.2.8
parentfa6cd5a3b993f16c27de4ff82b42684516d433ba (diff)
downloadopenembedded-709c4d66e0b107ca606941b988bad717c0b45d9b.tar.gz
rename packages/ to recipes/ per earlier agreement
See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko <denis@denix.org> Acked-by: Mike Westerhof <mwester@dls.net> Acked-by: Philip Balister <philip@balister.org> Acked-by: Khem Raj <raj.khem@gmail.com> Acked-by: Marcin Juszkiewicz <hrw@openembedded.org> Acked-by: Koen Kooi <koen@openembedded.org> Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/gpe-beam/gpe-beam-0.2.8')
-rw-r--r--recipes/gpe-beam/gpe-beam-0.2.8/dbus-new-api.patch76
1 files changed, 76 insertions, 0 deletions
diff --git a/recipes/gpe-beam/gpe-beam-0.2.8/dbus-new-api.patch b/recipes/gpe-beam/gpe-beam-0.2.8/dbus-new-api.patch
new file mode 100644
index 0000000000..723ba64194
--- /dev/null
+++ b/recipes/gpe-beam/gpe-beam-0.2.8/dbus-new-api.patch
@@ -0,0 +1,76 @@
+--- gpe-beam-0.2.7/dbus.c.orig 2005-08-29 21:05:28 +0200
++++ gpe-beam-0.2.7/dbus.c 2005-08-29 21:07:11 +0200
+@@ -40,7 +40,11 @@
+ return obex_client_handle_dbus_request (connection, message);
+
+ if (dbus_message_is_signal (message,
++#ifndef DBUS_INTERFACE_LOCAL
+ DBUS_INTERFACE_ORG_FREEDESKTOP_LOCAL,
++#else
++ DBUS_INTERFACE_LOCAL,
++#endif
+ "Disconnected"))
+ exit (0);
+
+@@ -70,10 +70,18 @@
+
+ dbus_connection_register_object_path (connection, object_path, &dbus_obex_vtable, NULL);
+
++#ifndef DBUS_INTERFACE_LOCAL
+ dbus_bus_acquire_service (connection, SERVICE_NAME, 0, &error);
++#else
++ dbus_bus_request_name (connection, SERVICE_NAME, 0, &error);
++#endif
+ if (dbus_error_is_set (&error))
+ {
++#ifndef DBUS_INTERFACE_LOCAL
+ gpe_error_box_fmt (_("Failed to acquire service: %s"), error.message);
++#else
++ gpe_error_box_fmt (_("Failed to request name: %s"), error.message);
++#endif
+ dbus_error_free (&error);
+ }
+ }
+--- gpe-beam-0.2.7/obexclient-dbus.c.orig 2005-08-29 21:05:33 +0200
++++ gpe-beam-0.2.7/obexclient-dbus.c 2005-08-29 21:10:00 +0200
+@@ -73,7 +73,11 @@
+ if (dbus_message_iter_get_arg_type (&iter) != DBUS_TYPE_STRING)
+ goto wrong_args;
+
++#ifndef DBUS_INTERFACE_LOCAL
+ filename = dbus_message_iter_get_string (&iter);
++#else
++ dbus_message_iter_get_basic (&iter, &filename);
++#endif
+
+ if (!dbus_message_iter_next (&iter))
+ goto wrong_args;
+@@ -81,16 +81,28 @@
+ if (dbus_message_iter_get_arg_type (&iter) != DBUS_TYPE_STRING)
+ goto wrong_args;
+
++#ifndef DBUS_INTERFACE_LOCAL
+ mime_type = dbus_message_iter_get_string (&iter);
++#else
++ dbus_message_iter_get_basic (&iter, &mime_type);
++#endif
+
+ if (!dbus_message_iter_next (&iter))
+ goto wrong_args;
+
+ if (dbus_message_iter_get_arg_type (&iter) != DBUS_TYPE_ARRAY
++#ifndef DBUS_INTERFACE_LOCAL
+ || dbus_message_iter_get_array_type (&iter) != DBUS_TYPE_BYTE)
++#else
++ || dbus_message_iter_get_element_type (&iter) != DBUS_TYPE_BYTE)
++#endif
+ goto wrong_args;
+
++#ifndef DBUS_INTERFACE_LOCAL
+ dbus_message_iter_get_byte_array (&iter, &data, &len);
++#else
++ dbus_message_iter_get_fixed_array (&iter, &data, &len);
++#endif
+
+ reply = dbus_message_new_method_return (message);
+ if (!reply)