Well, I just looked at one of my linux boxes that I've got it running on and found that there is a file called SSLeay.so in place that is not on the HPUX boxes.. Maybe changing the link options to static wasn't that great of an idea after all.... On Fri, 8 Dec 2000 sinck@ugive.com wrote: > > > \_ Anyway it finishes the link and then I do a make install but when I run > \_ perl -e 'use Net::SSLeay' it can't find the SSLeay object.. What gives? > \_ :-/ Why didn't make install put it in a path that perl could find? I'm a > \_ little ignorant on how perl's file structure... where extra modules are > \_ supposed to go and what file names it needs to find. Teach me oh great > \_ ones.. just don't tell me to wax on/wax off or paint the fence.. :-) > > figure out where it actually got installed... > > find / -name SSLeay.pm -print > > then > > perl -e 'print join("\n", @INC)' ; > > and see if the path looks similar. > > if not [expected], at the start of your perl scripts, try: > > use lib '/some/other/path/lib/perl'; > > or if that borks, > > BEGIN > { > unshift (@INC, '/some/other/path/lib/perl'); > } > > If all that fails, go find a chicken, a knife, and email me for further > instructions. > > David > > ________________________________________________ > See http://PLUG.phoenix.az.us/navigator-mail.shtml if your mail doesn't post to the list quickly and you use Netscape to write mail. > > Plug-discuss mailing list - Plug-discuss@lists.PLUG.phoenix.az.us > http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss >