By the way, a few tips to help migrating. First, you might need to avoid that the new liquidsoap loads the old installed utils.liq: liquidsoap --no-pervasives your_script.liq
If you really need utils.liq, load the new one explicitly (be aware that it doesn't have as many things as the old one, though): src/liquidsoap --no-pervasives scripts/utils.liq your_script.liq Finally, it's really useful to check a script and see the types that liquidsoap infers, to understand why/if it goes wrong: src/liquidsoap --no-pervasives -i -c scripts/utils.liq your_script.liq If you're seeing too complex types for your taste, you can add restrict to the types of sources: src/liquidsoap --no-pervasives -i -c scripts/utils.liq your.liq | grep ": source" Have fun, -- David ------------------------------------------------------------------------------ This SF.Net email is sponsored by the Verizon Developer Community Take advantage of Verizon's best-in-class app development support A streamlined, 14 day to market process makes app distribution fast and easy Join now and get one step closer to millions of Verizon customers http://p.sf.net/sfu/verizon-dev2dev _______________________________________________ Savonet-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/savonet-users
