* [Bluez-devel] [PATCH]
@ 2005-12-20 13:54 Filippo Giunchedi
2005-12-20 18:59 ` Marcel Holtmann
0 siblings, 1 reply; 5+ messages in thread
From: Filippo Giunchedi @ 2005-12-20 13:54 UTC (permalink / raw)
To: bluez-devel
Hi,
dbus 0.60 has removed the DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT flag for
dbus_bus_request_name and now that is the default behaviour, the following
patch should work:
--- dbus.c (revision 116)
+++ dbus.c (working copy)
@@ -874,7 +874,7 @@
dbus_connection_set_exit_on_disconnect(connection, FALSE);
dbus_bus_request_name(connection, BASE_INTERFACE,
- DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT, &error);
+ 0, &error);
if (dbus_error_is_set(&error)) {
syslog(LOG_ERR, "Can't get system message bus name: %s",
unfortunately I can't find a DBUS_VERSION #define to be backward
compatible with dbus < 0.60
filippo
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [Bluez-devel] [PATCH]
2005-12-20 13:54 [Bluez-devel] [PATCH] Filippo Giunchedi
@ 2005-12-20 18:59 ` Marcel Holtmann
2005-12-21 13:51 ` [Bluez-devel] [PATCH] Filippo Giunchedi
0 siblings, 1 reply; 5+ messages in thread
From: Marcel Holtmann @ 2005-12-20 18:59 UTC (permalink / raw)
To: bluez-devel
Hi Filippo,
> dbus 0.60 has removed the DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT flag for
> dbus_bus_request_name and now that is the default behaviour, the following
> patch should work:
>
> --- dbus.c (revision 116)
> +++ dbus.c (working copy)
> @@ -874,7 +874,7 @@
> dbus_connection_set_exit_on_disconnect(connection, FALSE);
>
> dbus_bus_request_name(connection, BASE_INTERFACE,
> - DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT, &error);
> + 0, &error);
>
> if (dbus_error_is_set(&error)) {
> syslog(LOG_ERR, "Can't get system message bus name: %s",
>
>
> unfortunately I can't find a DBUS_VERSION #define to be backward
> compatible with dbus < 0.60
when D-Bus 1.0 has been released, I am going to drop support for older
versions anyway. However what you need to add is something like:
#ifndef DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT
#define DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT 0x00
#endif
This will work perfect instead of using your patch and is still backward
compatible.
Regards
Marcel
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel
^ permalink raw reply [flat|nested] 5+ messages in thread* [Bluez-devel] Re: [PATCH]
2005-12-20 18:59 ` Marcel Holtmann
@ 2005-12-21 13:51 ` Filippo Giunchedi
2005-12-21 14:11 ` Marcel Holtmann
0 siblings, 1 reply; 5+ messages in thread
From: Filippo Giunchedi @ 2005-12-21 13:51 UTC (permalink / raw)
To: bluez-devel
On Tue, 20 Dec 2005 19:59:17 +0100, Marcel Holtmann wrote:
> when D-Bus 1.0 has been released, I am going to drop support for older
> versions anyway. However what you need to add is something like:
>
> #ifndef DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT
> #define DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT 0x00
> #endif
>
> This will work perfect instead of using your patch and is still backward
> compatible.
that's right! thank you, are you going to merge the above define into the
next release of bluez?
filippo
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Bluez-devel] Re: [PATCH]
2005-12-21 13:51 ` [Bluez-devel] [PATCH] Filippo Giunchedi
@ 2005-12-21 14:11 ` Marcel Holtmann
2005-12-21 15:28 ` [Bluez-devel] " Filippo Giunchedi
0 siblings, 1 reply; 5+ messages in thread
From: Marcel Holtmann @ 2005-12-21 14:11 UTC (permalink / raw)
To: bluez-devel
Hi Filippo,
> > when D-Bus 1.0 has been released, I am going to drop support for older
> > versions anyway. However what you need to add is something like:
> >
> > #ifndef DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT
> > #define DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT 0x00
> > #endif
> >
> > This will work perfect instead of using your patch and is still backward
> > compatible.
>
> that's right! thank you, are you going to merge the above define into the
> next release of bluez?
it is already in the CVS. However I have some people doing the following
transition (instead of no flags):
DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT -> DBUS_NAME_FLAG_DO_NOT_QUEUE
Any comments on this?
Regards
Marcel
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2005-12-21 15:28 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-12-20 13:54 [Bluez-devel] [PATCH] Filippo Giunchedi
2005-12-20 18:59 ` Marcel Holtmann
2005-12-21 13:51 ` [Bluez-devel] [PATCH] Filippo Giunchedi
2005-12-21 14:11 ` Marcel Holtmann
2005-12-21 15:28 ` [Bluez-devel] " Filippo Giunchedi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).