fb16dfecae
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)
9 lines
433 B
Text
9 lines
433 B
Text
Perl's global destruction is a little tricky to deal with WRT finalizers
|
|
because it's not ordered and objects can sometimes disappear.
|
|
|
|
Writing defensive destructors is hard and annoying, and usually if global
|
|
destruction is happenning you only need the destructors that free up non
|
|
process local resources to actually execute.
|
|
|
|
For these constructors you can avoid the mess by simply bailing out if global
|
|
destruction is in effect.
|