in reply to Using perlcc to compile stand alone code

I have seen similar messages with modules loaded using require instead of use. Not sure if that is the case here with Socket, POSIX and Fcntl. Maybe a module being loaded is require'ing them ? Just a thought.
from the frivolous to the serious

Replies are listed 'Best First'.
Re: Re: Using perlcc to compile stand alone code
by gnu@perl (Pilgrim) on Mar 27, 2003 at 15:08 UTC
    Thanks, I'll have to check into that in the modules themselves. I have:
    use Fcntl ':flock'; use POSIX; use IO::Socket;
    in the beginning of my program, but perhaps one of the (or the others I am 'use'ing have 'require's in them.