in reply to Re: Re: hijacking a module constructor
in thread hijacking a module constructor

This can be done, but I think it may be saner to go down another route as suggested by Corion and perrin ...
$GD::{$_} = $SVG::GD::{$_} for grep !/::$/, keys %SVG::GD::;
This has a similar effect to the symbol table glob aliasing, but only affects the GD:: symbol table. Again, use with caution as this is even more hackish than the glob alias.
HTH

_________
broquaint