I have a module which exports application level variables in EXPORT array, and the variables are defined with 'our' keyword. This works for 5.6.0
e.g.
Unfortunately I have coded a lot of scripts with this and I have to run them on 5.005 which does not support our.
Also on the sideline I tried to put all these variables in a file say "incl.pl"
Now when I use 'use strict' and then 'require ('incl.pl')' and these variables are not available and Global package error occurs. What could be a workaround for this?