Vincent, carry the discussion over to the
mingw...@lists.sourceforge.net list for help with that.
--
Earnie
-- https://sites.google.com/site/earnieboyd
------------------------------------------------------------------------------
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here
http://p.sf.net/sfu/sfd2d-msazure
_______________________________________________
MinGW-users mailing list
MinGW...@lists.sourceforge.net
This list observes the Etiquette found at
http://www.mingw.org/Mailing_Lists.
We ask that you be polite and do the same. Disregard for the list etiquette may cause your account to be moderated.
_______________________________________________
You may change your MinGW Account Options or unsubscribe at:
https://lists.sourceforge.net/lists/listinfo/mingw-users
Also: mailto:mingw-use...@lists.sourceforge.net?subject=unsubscribe
On Tue, 20 Mar 2012, Earnie Boyd wrote:
> On Tue, Mar 20, 2012 at 10:55 AM, Vincent Torri <vincen...@gmail.com> wrote:
>> On Tue, Mar 20, 2012 at 3:42 PM, rony <ro...@wu.ac.at> wrote:
>>> Dear all,
>>>
>>> thank you really very much for your insights and hints, which I really appreciate a lot!
>>>
>>> Will try to explore the Windows KDE-D-Bus as hinted by Andre Heinecke
>>> <http://sourceforge.net/projects/kde-windows/files/dbus/> and by Siraj Razick.
>>>
>>> The aim is to find somewhere a maintained D-Bus Windows binary which non-Linux-programmers (or
>>> non-C++-programmers) can download and install. Probably there is a need of some sort of a readme
>>> which explains on how to install and setup the Windows KDE version of D-Bus.
>>
>> I can make some packages that are installable with mingw-get.
>>
>
> Vincent, carry the discussion over to the
> mingw...@lists.sourceforge.net list for help with that.
well, the main problem is that dbus does not work on Windows (at least
when compiled with the autotools. I don't use cmake). Otherwise, doing the
package is easy.
Vincent
I've had no trouble executing the dbus configure script. I did have
to modify the source of one of the files with a #ifndef __MINGW32__
... #endif pair but configure wasn't an issue. However, we brought
this here because of your volunteering to contribute a package
deliverable by mingw-get. What do you mean by "does not work on
Windows"? Give a better description please.
--
Earnie
-- https://sites.google.com/site/earnieboyd
------------------------------------------------------------------------------
On Wed, 21 Mar 2012, Earnie Boyd wrote:
> On Wed, Mar 21, 2012 at 5:21 AM, Vincent Torri <vto...@univ-evry.fr> wrote:
>>
>>
>> On Tue, 20 Mar 2012, Earnie Boyd wrote:
>>
>>> On Tue, Mar 20, 2012 at 10:55 AM, Vincent Torri <vincen...@gmail.com> wrote:
>>>> On Tue, Mar 20, 2012 at 3:42 PM, rony <ro...@wu.ac.at> wrote:
>>>>> Dear all,
>>>>>
>>>>> thank you really very much for your insights and hints, which I really appreciate a lot!
>>>>>
>>>>> Will try to explore the Windows KDE-D-Bus as hinted by Andre Heinecke
>>>>> <http://sourceforge.net/projects/kde-windows/files/dbus/> and by Siraj Razick.
>>>>>
>>>>> The aim is to find somewhere a maintained D-Bus Windows binary which non-Linux-programmers (or
>>>>> non-C++-programmers) can download and install. Probably there is a need of some sort of a readme
>>>>> which explains on how to install and setup the Windows KDE version of D-Bus.
>>>>
>>>> I can make some packages that are installable with mingw-get.
>>>>
>>>
>>> Vincent, carry the discussion over to the
>>> mingw...@lists.sourceforge.net list for help with that.
>>
>> well, the main problem is that dbus does not work on Windows (at least
>> when compiled with the autotools. I don't use cmake). Otherwise, doing the
>> package is easy.
>
> I've had no trouble executing the dbus configure script. I did have
> to modify the source of one of the files with a #ifndef __MINGW32__
> ... #endif pair but configure wasn't an issue. However, we brought
> this here because of your volunteering to contribute a package
> deliverable by mingw-get. What do you mean by "does not work on
> Windows"? Give a better description please.
First, i don't know much about dbus stuff itself, so I asked, some months
ago, how to check that dbus is really working. It compiles
flawlessly (except the warnings i mentioned), but it fails at
runtime. Someone told me to do that to check if dbus is working :
launch in an MSYS terminal:
dbus-daemon --session
and in another :
dbus-monitor
And on my computer, 'dbus-monitor' fails with:
Failed to open connection to session bus: Failed to get autolaunch address from launched dbus-daemon
Vincent Torri