Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
15 lines
493 B
Text
15 lines
493 B
Text
UNIVERSAL::require - require() modules from a variable.
|
|
|
|
If you've ever had to do this...
|
|
|
|
eval "require $module";
|
|
|
|
to get around the bareword caveats on require(), this module is for
|
|
you. It creates a universal require() class method that will work with
|
|
every Perl module and its secure. So instead of doing some arcane
|
|
eval() work, you can do this:
|
|
|
|
$module->require;
|
|
|
|
It doesn't save you much typing, but it'll make a lot more sense to
|
|
someone who's not a ninth level Perl acolyte.
|