Hi, The pow10 to pow(10.0 etc fix does indeed work. Just be aware that you will have to remove the mysql secure password plugin (from mysql shell: uninstall plugin validate_password; ) otherwise you get errors in various places. You will also need to change the root user from socket auth to password authorisation otherwise you won't be able to set up the initial database and rivendell database user. There was also one new dependency for source install libssl-dev.
Other than that, Riv has come a long way since 2.15. Everything seems to work without all the patching required back when 16.04 came out so if you're following the old Ubuntu Xenial guide, ignore all of the rivendell source code patches and from the little I've poked around, you don't even need MyISAM any more as the SERVICES table no longer have all the CLOCK fields like it used to. I tested this very briefly with Riv 2.19.2 so your mileage my vary. Regards, Wayne On Wed, Jun 13, 2018 at 7:18 PM, Hoggins! <[email protected]> wrote: > 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 > > > > > > _______________________________________________ > Rivendell-dev mailing list > [email protected] > http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev > >
_______________________________________________ Rivendell-dev mailing list [email protected] http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
