amelinda has asked for the wisdom of the Perl Monks concerning the following question:
I've tried the following, none of which seemed to work: (no, not all at the same time)
The next two lines are:$ENV{PATH} = $ENV{PATH} . ":/usr/local/openssl/bin"; use lib qw(/usr/local/openssl/bin/); push @INC, "/usr/local/openssl/bin/";
And it always die's. These attempts are based on reading the Blue Camel book, and how to add path to @INC. That node, however, is about adding a path for a module, so I'm not sure if it's appropos.chomp($openssl = `which openssl`); die "openssl required\n" unless (-X $openssl);
|
|---|