On Thu, 20 Jan 2005, Jay Hannah wrote:

> [EMAIL PROTECTED]:/usr/local/apache/admin.pm.org# kwiki -new
> "const" is not exported by the Spiffy module
>  "stub" is not exported by the Spiffy module
>  "super" is not exported by the Spiffy module

These messages probablly come from Exporter.

/usr/lib/perl5/5.8.5/i386-linux-thread-multi/Config.pm: die sprintf qq{"%s" is 
not exported by the %s module\n},
/usr/lib/perl5/5.8.5/CGI.pm:This method is not exported by default.  You will 
have to import it
/usr/lib/perl5/5.8.5/Exporter/Heavy.pm:                   qq["$sym" is not 
exported by the $pkg module\n];

In that module:

            if (!$export_cache->{$sym}) {
                if ($sym =~ m/^\d/) {
                    $pkg->VERSION($sym); # inherit from UNIVERSAL
                    # If the version number was the only thing specified
                    # then we should act as if nothing was specified:

...
                    if (!$export_cache->{$sym}) {
                        # accumulate the non-exports
                        push @carp,
                          qq["$sym" is not exported by the $pkg module\n];
                        $oops++;
                    }

I wonder if you got all the latest versions of everything.

--
Greg Matheson, Taiwan

Reply via email to