rtp_engine error when calling from soft-phone

I have an error: “No RTP engine was found. Do you have one loaded?”

I use Ubuntu and Asterisk 11.5.0.

According to this: viewtopic.php?f=1&t=86518 I need to use this:
apt-get install uuid-dev

and I did. The uuid-dev got installed. I still can’t make calls. Same errors, nothing changed.

If the package libuuid-dev exist in your distribution install it too. Re-run the configure script and check in the menu select if the rtp engine is available.

I never got the menu like here: youtube.com/watch?feature=pl … _X4yo&t=95

./configure just configures files. So how can I check if it’s available?

Did you run “make menuconfig”? If so, what error did you get.

Ahh, my terminal was too small.

I found “[*] res_rtp_asterisk” in “Resource Modules” is that it?

Maybe the Asterisk doesn’t know the right path to the uuid?

It is more likely to be the individual RTP handler modules.

The main cause of this sort of problem is failing to install the -dev package.

If that is isntalled, you will need to override its location on the ./configure line. ./configure --help for more details.

Ok, I figured it out. I had to “make” and “makeinstall” after “apt-get install uuid-dev” and “make menuselect”. Now it works, thanks for help.