in reply to Re: Re: Uploading Text::CSV
in thread Uploading Text::CSV

I modified Text::CSV and it appears to work ok.. just comment out the Exporter/AutoLoader stuff.. I don't believe it actually uses any of it..

#BEGIN { # use Exporter (); # use AutoLoader qw(AUTOLOAD); use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); $VERSION = '0.01'; # @ISA = qw(Exporter AutoLoader); # @EXPORT = qw(); # @EXPORT_OK = qw(); # %EXPORT_TAGS = qw(); #}

Update: ok, so it does use it, but it doesn't need it.. see here for a slightly more informed solution/explanation..

cheers,

J

Replies are listed 'Best First'.
Re: Re: Re: Re: Uploading Text::CSV
by Anonymous Monk on Jun 26, 2003 at 12:58 UTC

    Thanks, I did as BrowserUk suggested in the post you link to, it works great.

    Thanks for the help :)