I'm trying to build virt-top with oasis 0.4.6. This works fine beside the fact that virt-top calls into optional components like xml-light/calendar/csv. Its custom Makefile builds these optional .ml files if they are present, and uses them when linking the executable. It looks like the linking fills the function pointers and the fuctionality can be used at runtime. In _oasis I tried to use 'Object', but this fails because each one creates a META file. Does oasis support something like this (pseudo code)? x.ml: let ext_fn : (string -> float) ref = ref ( fun _ -> failwith (s_"X was compiled without support for ext_fn") ) x.mli: val ext_fn : (string -> float) ref x_ext.ml: X.ext_fn := fun arg -> let .... Thanks, Olaf