Hey,

If you have issues with the pow10() function, you can have a look at
this issue : https://github.com/ElvishArtisan/rivendell/issues/210
Basically, before compiling, by replacing pow10() with pow() in
cae/cae_jack.cpp and cae/cae_alsa.cpp like this :

from :
(jack_default_audio_sample_t)pow10((double)level/2000.0);

to :
(jack_default_audio_sample_t)pow(10.0,(double)level/2000.0);

That should do the trick !

    Hoggins!

Le 13/06/2018 à 19:34, Chuck a écrit :
>   I know I have championed the CentOS 7 appliance, but we have a
> situation where it is desirable (more than desirable, actually) to
> install it on a machine running the latest Ubuntu LTS.  Wayne Merrick's
> excellent guide for 16.04 does not work with the newest 18.04 LTS
> release.  It stops compiling (with a dozen or more red entries also
> flying through) dead at a "pow" entry error and will not go further.
>
>   Has anybody successfully installed on Ubuntu 18.04? and how did you do
> it?
>
>   Thanks!
>
> --Chuck W.
>
> _______________________________________________
> Rivendell-dev mailing list
> [email protected]
> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
>


Attachment: signature.asc
Description: OpenPGP digital signature

_______________________________________________
Rivendell-dev mailing list
[email protected]
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev

Reply via email to