How do I reference LD_LIBRARY_PATH with Hypnotoad?

59 Views Asked by At

I have a Mojolicious application which accesses Net::LDAP. The application fails to find the libssl.so.

How do I add the LD_LIBRARY_PATH to Hypnotoad? I did this with Apache to solve a similar problem but can't find how to do it for the Hypnotoad server.

Thanks!

1

There are 1 best solutions below

0
On BEST ANSWER

I've done something like this before and it has worked:

BEGIN {
$ENV{NLS_LANG} = 'AMERICAN_AMERICA.AL32UTF8';
}

Just replace NLS_LANG with the environment variable of your choice.