Re: Can't create custom configuration directives

2000-06-04 Thread Matt Sergeant
I've snipped the lengthy explanation. Here's a few things you can check: There's no old version of your module in the ordinary perl lib directory, rather than the i386-foo/ directory. That you use DynaLoader. That you define $VERSION before the bootstrap line. -- Matt/ Fastnet Software Ltd.

Re: Can't create custom configuration directives

2000-06-04 Thread Rob Tanner
Matt Sergeant wrote: On Sun, 4 Jun 2000, Rob Tanner wrote: That you define $VERSION before the bootstrap line. As below: $VERSION = '0.9b'; if ( $ENV{'MOD_PERL'} ) { no strict; @ISA = qw(DynaLoader); __PACKAGE__-bootstrap($VERSION); } That might represent a