in reply to Re^2: problem with Config::Std on FreeBSD box?
in thread problem with Config::Std on FreeBSD box?

Found the problem.

The prototype being used by Config::Std::read_config isn't supported until perl 5.7.3 - see perl573delta.

Minimal test case:

sub read_config ($\[%$]) {} read_config( 'example.conf' => my %conf );

Replies are listed 'Best First'.
Re^4: problem with Config::Std on FreeBSD box?
by leocharre (Priest) on Aug 25, 2006 at 22:02 UTC

    Thank you so much.. I'm on that.

    It's really a simple thing it's doing for the end user of this module.. But it seems clean and slick - And it's made by the Big Poppa of sterilized coding... So I didn't want to pass this up. Should there be something in Config::Std About this? Makefile.PL does not say something about the version of perl needed. Did I miss it? Did the person who installed this miss it... ?