The advisable solution is to localize all includes/required modules. Having said that, you could try something like this, in place of your use:
Code:
BEGIN {
if (-r path-to-module) { require module; import Module; }
}
So what will happen if the module is unavailable? the rest of your code will probably fail to compile.