Hi, I'll let Romain do the final fix on this because he knows best, but I think I see what's going on.
2011/6/27 Dave Pascoe <[email protected]>: > File "tools/utils.ml", line 141, characters 4-38: > Warning X: this statement never returns (or has an unsound type.) You can safely ignore this one. We should add a type annotation to avoid the warning. It's due to a trick to handle old versions of Caml. > File "tools/utils.ml", line 159, characters 5-22: > Unbound value Dynlink.is_native Here we're missing a similar trick. Your (older) version of OCaml doesn't have Dynlink.is_native. The quickfix for you would be to edit tools/utils.ml at line 159 and replace the whole if-then-else block by ".cmxs" (or ".cma" in the unlikely case where you'd be compiling in bytecode, ie. --disable-nativecode). Hope this helps, -- David ------------------------------------------------------------------------------ All of the data generated in your IT infrastructure is seriously valuable. Why? It contains a definitive record of application performance, security threats, fraudulent activity, and more. Splunk takes this data and makes sense of it. IT sense. And common sense. http://p.sf.net/sfu/splunk-d2d-c2 _______________________________________________ Savonet-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/savonet-users
