Vlad,
Have you heard from anyone else regarding this? I've had the same problem
and solved it by using wrapper scripts to set the LD_PRELOAD. Not a great
solution, by any stretch, so I was hoping I'd have the same success as
you. Unfortunately, the DynaLoader code you suggested didn't work for
me. I still get the "Solaris patch for java runtime" error. I'd be
interested to know why this worked for you.
Thanks!
Dave
VG wrote:
> Trying to get the oracle module to work and running into the java/patch
> error I tried using the LD_PRELOAD
> solution, but for a variety of reasons I found it unsadisfactory.
> However I've had luck with adding the following
> at the top of my program:
>
> use DynaLoader;
> Dynaloader::db_load_file("/usr/lib/libthread.so", 0x01);
>
> This seems to work for me. Anyone know any reasons why this shouldnt be
> the way do do it?
>
> Vlad