> And that finally explains why in some of my scripts using the Win32::Lanman > module I have to do a 'require Win32;' instead of a 'use Win32' if I don't > want to get warning messages about conflicting constants.
I*t sems to me that this is sort of a shortcoming, if you have to worry about that at all. In C/C++, one of the standards for writing any header file is to always surround the entirety with an inclusion guard to prevent the precompiler from redefining classes or redeclarating other constants and prototypes. Usually it took the form of: #ifndef STDIO_H #define STDIO_H ... All code in header ... #endif /* STDIO_H */ Which effectively prevents such problems--although it does not prevent deadlock from circular includes. I assume that most Perl modules have similar structures built in. Joseph -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]