From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Message-ID: <6297d67c0606282357q5d228640yeba467999c9665a9@mail.gmail.com> Date: Thu, 29 Jun 2006 12:27:21 +0530 From: "Mayank Batra" To: "BlueZ development" In-Reply-To: MIME-Version: 1.0 References: <6297d67c0606272053xff3b84dwf59410cce7bc658b@mail.gmail.com> Subject: Re: [Bluez-devel] cross-compiling bluez-utils.3.1 Reply-To: BlueZ development List-Id: BlueZ development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: multipart/mixed; boundary="===============1057509665==" Sender: bluez-devel-bounces@lists.sourceforge.net Errors-To: bluez-devel-bounces@lists.sourceforge.net --===============1057509665== Content-Type: multipart/alternative; boundary="----=_Part_42091_4076876.1151564241373" ------=_Part_42091_4076876.1151564241373 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Robert, On 6/28/06, Robert Wlaschin wrote: > > To get past the dbus problem, if you don't already have the dbus source > you'll > need to get it from http://www.freedesktop.org/wiki/Software/dbus, after > that I've got the DBus sources, and it is working fine. you'll need to get a new version of bluez-utils-3.1/acinclude.m4 from the > bluez > CVS -- there is a bug in this file that looks for the incorrect dbus libs. I think that the CVS is down, can you please send it to me by mail? Thanks. Mayank ------=_Part_42091_4076876.1151564241373 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Robert,

On 6/28/06, Robert Wlaschin <robertw@healthhero.com> wrote:
To get past the dbus problem, if you don't already have the dbus source you'll
need to get it from http://www.freedesktop.org/wiki/Software/dbus, after that
 
I've got the DBus sources, and it is working fine.

you'll need to get a new version of bluez-utils-3.1/acinclude.m4 from the bluez
CVS -- there is a bug in this file that looks for the incorrect dbus libs.
 
I think that the CVS is down, can you please send it to me by mail?

Thanks.
 
Mayank
------=_Part_42091_4076876.1151564241373-- --===============1057509665== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 --===============1057509665== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Bluez-devel mailing list Bluez-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bluez-devel --===============1057509665==-- From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Marcel Holtmann To: BlueZ development In-Reply-To: References: <1151479698.9544.1.camel@localhost> Date: Wed, 28 Jun 2006 19:33:40 +0200 Message-Id: <1151516020.26495.10.camel@localhost> Mime-Version: 1.0 Subject: Re: [Bluez-devel] cross-compiling bluez-utils.3.1 Reply-To: BlueZ development List-Id: BlueZ development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Sender: bluez-devel-bounces@lists.sourceforge.net Errors-To: bluez-devel-bounces@lists.sourceforge.net Hi Steve, > D-Bus seems like a useful tool for desktops, but possibly overkill > and/or unnecessary for embedded systems. Also, as noted before, D-Bus > will not build out of the box for cross-compiled systems such as ARM. > Since a lot of embedded systems use Bluetooth, this seems problematic. I am aware of embedded systems and a long time this was the reason for keeping D-Bus optional. In the long run it is not worth it and it would only increase the complexity. Devices like the Nokia 770 proved that we can handle D-Bus in the embedded area and if there are problems, they must be addressed in D-Bus. > What exactly does D-Bus supply in terms of necessary/useful functionality for > Bluetooth, and how difficult would it be to work around having to use it? (I > have not taken a serious look at the new release yet, as I'm still working > on a basic understanding of the 2.21 version). D-Bus is a message bus (IPC based). Something like RPC and it makes writing client applications a lot easier. The BlueZ D-Bus API provides a clean interface to basic Bluetooth tasks. You don't need any knowledge about HCI anymore. You can also write your application in C, C++, Java, Python, C# etc. and they don't need to be put under GPL. Trying to implement your own message bus to avoid the D-Bus dependency is not worth it. We considered it in the beginning, but this would increase the complexity without any real benefit. Regards Marcel Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Bluez-devel mailing list Bluez-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bluez-devel From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: To: bluez-devel@lists.sourceforge.net From: Steve Finney Date: Wed, 28 Jun 2006 17:11:30 +0000 (UTC) Message-ID: References: <1151479698.9544.1.camel@localhost> Mime-Version: 1.0 Subject: Re: [Bluez-devel] cross-compiling bluez-utils.3.1 Reply-To: BlueZ development List-Id: BlueZ development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Sender: bluez-devel-bounces@lists.sourceforge.net Errors-To: bluez-devel-bounces@lists.sourceforge.net > the D-Bus library is mandatory now. Hence the new major version number. > Regards > Marcel D-Bus seems like a useful tool for desktops, but possibly overkill and/or unnecessary for embedded systems. Also, as noted before, D-Bus will not build out of the box for cross-compiled systems such as ARM. Since a lot of embedded systems use Bluetooth, this seems problematic. What exactly does D-Bus supply in terms of necessary/useful functionality for Bluetooth, and how difficult would it be to work around having to use it? (I have not taken a serious look at the new release yet, as I'm still working on a basic understanding of the 2.21 version). sf Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Bluez-devel mailing list Bluez-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bluez-devel From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: To: bluez-devel@lists.sourceforge.net From: Robert Wlaschin Date: Wed, 28 Jun 2006 17:07:12 +0000 (UTC) Message-ID: References: <6297d67c0606272053xff3b84dwf59410cce7bc658b@mail.gmail.com> Mime-Version: 1.0 Subject: Re: [Bluez-devel] cross-compiling bluez-utils.3.1 Reply-To: BlueZ development List-Id: BlueZ development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Sender: bluez-devel-bounces@lists.sourceforge.net Errors-To: bluez-devel-bounces@lists.sourceforge.net Mayank Batra gmail.com> writes: > > > Hi Robert, > On 6/28/06, Robert Wlaschin healthhero.com> wrote: > I seem to be having problems with the latest version of bluez-utils. It > seemsthat dbus is a required component of the > 3.1 release; which isn't cross-compilefriendly (the dbus build complains about > cross-compiling) -- a previous versionof bluez-utils (2.21) is. In the 2.21 > release there was an option to compilewithout dbus, is there a work around for > the 3.1/if so, how? If not, anysuggestions about cross-compiling the stock > bluez-utils.3.1 (including dbus asnecessary) for an ARM processor?Robert > > Actually the latest bluez-utils are not even compiling on PC. It complains > that dbus package is not present. > > Regards, > Mayank > > > > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > _______________________________________________ > Bluez-devel mailing list > Bluez-devel lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/bluez-devel > Mayank, Thanks for the response. There are some posts in the forum about problems with cross-compiling. To get past the dbus problem, if you don't already have the dbus source you'll need to get it from http://www.freedesktop.org/wiki/Software/dbus, after that you'll need to get a new version of bluez-utils-3.1/acinclude.m4 from the bluez CVS -- there is a bug in this file that looks for the incorrect dbus libs. After you have updated that file follow the instructions in INSTALL for rebuilding the configuration script. As a side note you may need to add PKG_CONFIG_PATH=$(BLUEZ_LIBS_BUILD_DIR) to your command-line when running ./configuration (BLUEZ_LIBS_BUILD_DIR is a make variable that needs to point to your bluez-libs-3.1 directory). Please search the group for more information concerning this issue. I hope this helps. Robert Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Bluez-devel mailing list Bluez-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bluez-devel From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Marcel Holtmann To: BlueZ development In-Reply-To: References: Date: Wed, 28 Jun 2006 09:28:18 +0200 Message-Id: <1151479698.9544.1.camel@localhost> Mime-Version: 1.0 Subject: Re: [Bluez-devel] cross-compiling bluez-utils.3.1 Reply-To: BlueZ development List-Id: BlueZ development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Sender: bluez-devel-bounces@lists.sourceforge.net Errors-To: bluez-devel-bounces@lists.sourceforge.net Hi Robert, > I seem to be having problems with the latest version of bluez-utils. It seems > that dbus is a required component of the 3.1 release; which isn't cross-compile > friendly (the dbus build complains about cross-compiling) -- a previous version > of bluez-utils (2.21) is. In the 2.21 release there was an option to compile > without dbus, is there a work around for the 3.1/if so, how? If not, any > suggestions about cross-compiling the stock bluez-utils.3.1 (including dbus as > necessary) for an ARM processor? the D-Bus library is mandatory now. Hence the new major version number. Regards Marcel Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Bluez-devel mailing list Bluez-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bluez-devel From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Message-ID: <6297d67c0606272053xff3b84dwf59410cce7bc658b@mail.gmail.com> Date: Wed, 28 Jun 2006 09:23:00 +0530 From: "Mayank Batra" To: "BlueZ development" In-Reply-To: MIME-Version: 1.0 References: Subject: Re: [Bluez-devel] cross-compiling bluez-utils.3.1 Reply-To: BlueZ development List-Id: BlueZ development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: multipart/mixed; boundary="===============1820046631==" Sender: bluez-devel-bounces@lists.sourceforge.net Errors-To: bluez-devel-bounces@lists.sourceforge.net --===============1820046631== Content-Type: multipart/alternative; boundary="----=_Part_4854_17986110.1151466780100" ------=_Part_4854_17986110.1151466780100 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Robert, On 6/28/06, Robert Wlaschin wrote: > I seem to be having problems with the latest version of bluez-utils. It > seems > that dbus is a required component of the 3.1 release; which isn't > cross-compile > friendly (the dbus build complains about cross-compiling) -- a previous > version > of bluez-utils (2.21) is. In the 2.21 release there was an option to > compile > without dbus, is there a work around for the 3.1/if so, how? If not, any > suggestions about cross-compiling the stock bluez-utils.3.1 (including > dbus as > necessary) for an ARM processor? > > Robert Actually the latest bluez-utils are not even compiling on PC. It complains that dbus package is not present. Regards, Mayank ------=_Part_4854_17986110.1151466780100 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Robert,

On 6/28/06, Robert Wlaschin <robertw@healthhero.com> wrote:
I seem to be having problems with the latest version of bluez-utils.  It seems
that dbus is a required component of the 3.1 release; which isn't cross-compile
friendly (the dbus build complains about cross-compiling) -- a previous version
of bluez-utils (2.21) is.  In the 2.21 release there was an option to compile
without dbus, is there a work around for the 3.1/if so, how?  If not, any
suggestions about cross-compiling the stock bluez-utils.3.1 (including dbus as
necessary) for an ARM processor?

Robert
 
Actually the latest bluez-utils are not even compiling on PC. It complains that dbus package is not present.
 
Regards,
Mayank

------=_Part_4854_17986110.1151466780100-- --===============1820046631== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 --===============1820046631== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Bluez-devel mailing list Bluez-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bluez-devel --===============1820046631==-- From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: To: bluez-devel@lists.sourceforge.net From: Robert Wlaschin Date: Wed, 28 Jun 2006 01:36:49 +0000 (UTC) Message-ID: Mime-Version: 1.0 Subject: [Bluez-devel] cross-compiling bluez-utils.3.1 Reply-To: BlueZ development List-Id: BlueZ development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Sender: bluez-devel-bounces@lists.sourceforge.net Errors-To: bluez-devel-bounces@lists.sourceforge.net Hi, I seem to be having problems with the latest version of bluez-utils. It seems that dbus is a required component of the 3.1 release; which isn't cross-compile friendly (the dbus build complains about cross-compiling) -- a previous version of bluez-utils (2.21) is. In the 2.21 release there was an option to compile without dbus, is there a work around for the 3.1/if so, how? If not, any suggestions about cross-compiling the stock bluez-utils.3.1 (including dbus as necessary) for an ARM processor? Robert Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Bluez-devel mailing list Bluez-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bluez-devel From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Message-ID: <24a5055d0607190005r519be8f6t9c7af64a0138e8eb@mail.gmail.com> Date: Wed, 19 Jul 2006 12:35:47 +0530 From: "Rahul Tank" To: "BlueZ development" In-Reply-To: <28c817710607182109l7518990fqc45ea07198919363@mail.gmail.com> MIME-Version: 1.0 References: <1151479698.9544.1.camel@localhost> <1151516020.26495.10.camel@localhost> <28c817710607182109l7518990fqc45ea07198919363@mail.gmail.com> Subject: Re: [Bluez-devel] cross-compiling bluez-utils.3.1 Reply-To: BlueZ development List-Id: BlueZ development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: multipart/mixed; boundary="===============0883329325==" Sender: bluez-devel-bounces@lists.sourceforge.net Errors-To: bluez-devel-bounces@lists.sourceforge.net --===============0883329325== Content-Type: multipart/alternative; boundary="----=_Part_3384_29032724.1153292747380" ------=_Part_3384_29032724.1153292747380 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline On 7/19/06, ifq wrote: > > hello,marcel: > I have a stupid question:can Bluez 3.1 run on ARM system? > I cross-compiled the 3.1.and got lots of error. > is there anyone have success cross-compile 3.1 to ARM?could you give me > some advice? > thanks very much. > Yes, U can . I myself did it using scratchbox for cross-compilation.Itworked fine. regards, rahul ------=_Part_3384_29032724.1153292747380 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline

On 7/19/06, ifq <ifqqfi@gmail.com> wrote:
hello,marcel:
I have a stupid question:can Bluez 3.1 run on ARM system?
I cross-compiled the 3.1.and got lots of error.
is there anyone have success cross-compile 3.1 to ARM?could you give me some advice?
thanks very much.


  Yes, U can . I myself did it using scratchbox for cross-compilation.It worked fine.

 regards,
   rahul


------=_Part_3384_29032724.1153292747380-- --===============0883329325== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV --===============0883329325== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Bluez-devel mailing list Bluez-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bluez-devel --===============0883329325==-- From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Message-ID: <28c817710607182109l7518990fqc45ea07198919363@mail.gmail.com> Date: Wed, 19 Jul 2006 12:09:56 +0800 From: ifq To: "BlueZ development" In-Reply-To: <1151516020.26495.10.camel@localhost> MIME-Version: 1.0 References: <1151479698.9544.1.camel@localhost> <1151516020.26495.10.camel@localhost> Subject: Re: [Bluez-devel] cross-compiling bluez-utils.3.1 Reply-To: BlueZ development List-Id: BlueZ development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: multipart/mixed; boundary="===============1549437704==" Sender: bluez-devel-bounces@lists.sourceforge.net Errors-To: bluez-devel-bounces@lists.sourceforge.net --===============1549437704== Content-Type: multipart/alternative; boundary="----=_Part_29435_17707867.1153282196807" ------=_Part_29435_17707867.1153282196807 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline hello,marcel: I have a stupid question:can Bluez 3.1 run on ARM system? I cross-compiled the 3.1.and got lots of error. is there anyone have success cross-compile 3.1 to ARM?could you give me some advice? thanks very much. 2006/6/29, Marcel Holtmann : > > Hi Steve, > > > D-Bus seems like a useful tool for desktops, but possibly overkill > > and/or unnecessary for embedded systems. Also, as noted before, D-Bus > > will not build out of the box for cross-compiled systems such as ARM. > > Since a lot of embedded systems use Bluetooth, this seems problematic. > > I am aware of embedded systems and a long time this was the reason for > keeping D-Bus optional. In the long run it is not worth it and it would > only increase the complexity. Devices like the Nokia 770 proved that we > can handle D-Bus in the embedded area and if there are problems, they > must be addressed in D-Bus. > > > What exactly does D-Bus supply in terms of necessary/useful > functionality for > > Bluetooth, and how difficult would it be to work around having to use > it? (I > > have not taken a serious look at the new release yet, as I'm still > working > > on a basic understanding of the 2.21 version). > > D-Bus is a message bus (IPC based). Something like RPC and it makes > writing client applications a lot easier. The BlueZ D-Bus API provides a > clean interface to basic Bluetooth tasks. You don't need any knowledge > about HCI anymore. You can also write your application in C, C++, Java, > Python, C# etc. and they don't need to be put under GPL. > > Trying to implement your own message bus to avoid the D-Bus dependency > is not worth it. We considered it in the beginning, but this would > increase the complexity without any real benefit. > > Regards > > Marcel > > > > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Bluez-devel mailing list > Bluez-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/bluez-devel > ------=_Part_29435_17707867.1153282196807 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline hello,marcel:
I have a stupid question:can Bluez 3.1 run on ARM system?
I cross-compiled the 3.1.and got lots of error.
is there anyone have success cross-compile 3.1 to ARM?could you give me some advice?
thanks very much.

2006/6/29, Marcel Holtmann <marcel@holtmann.org>:
Hi Steve,

> D-Bus seems like a useful tool for desktops, but possibly overkill
> and/or unnecessary for embedded systems. Also, as noted before, D-Bus
> will not build out of the box for cross-compiled systems such as ARM.
> Since a lot of embedded systems use Bluetooth, this seems problematic.

I am aware of embedded systems and a long time this was the reason for
keeping D-Bus optional. In the long run it is not worth it and it would
only increase the complexity. Devices like the Nokia 770 proved that we
can handle D-Bus in the embedded area and if there are problems, they
must be addressed in D-Bus.

> What exactly does D-Bus supply in terms of necessary/useful functionality for
> Bluetooth, and how difficult would it be to work around having to use it? (I
> have not taken a serious look at the new release yet, as I'm still working
> on a basic understanding of the 2.21 version).

D-Bus is a message bus (IPC based). Something like RPC and it makes
writing client applications a lot easier. The BlueZ D-Bus API provides a
clean interface to basic Bluetooth tasks. You don't need any knowledge
about HCI anymore. You can also write your application in C, C++, Java,
Python, C# etc. and they don't need to be put under GPL.

Trying to implement your own message bus to avoid the D-Bus dependency
is not worth it. We considered it in the beginning, but this would
increase the complexity without any real benefit.

Regards

Marcel



Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel

------=_Part_29435_17707867.1153282196807-- --===============1549437704== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV --===============1549437704== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Bluez-devel mailing list Bluez-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bluez-devel --===============1549437704==--