configure: error: cannot find D-Bus

2

When configuring a software (subversion) on Ubuntu Linux (10.04 lucid), I get an error:

configure: error: cannot find D-Bus

I restarted dbus service:

#service dbus restart
dbus start/running, process 14688

but still get the same configure error.

tanon

Posted 2011-05-14T04:49:09.350

Reputation: 145

Answers

1

Looks like the daemon, not the dbus development package. You can grab it from spm.

Blomkvist

Posted 2011-05-14T04:49:09.350

Reputation: 2 379

apt-get says cannot find package dbus-devel. (I had installed dbus itself using apt-get). – tanon – 2011-05-14T05:01:14.250

libdconf-dbus-1-dev is what you're looking for. It has some deps though – Blomkvist – 2011-05-14T05:03:57.710

1Thanks. That didnt work, but finally, libdbus-1-dev worked for me. – tanon – 2011-05-14T05:15:20.800

I though libdconf would grab libdbus as a dep but your right, it doesn't. Seems odd but I guess they had their reasons for doing it like that. – Blomkvist – 2011-05-14T05:35:23.100