Results 1 to 2 of 2
Hello,
Absolute beginners question.
Wrote a perl program and the program itself runs fine when ran from command line . perl program.pl
When program is ran from another program in ...
- 06-25-2007 #1Just Joined!
- Join Date
- Jun 2007
- Posts
- 2
symbol lookup error beginners question please help!
Hello,
Absolute beginners question.
Wrote a perl program and the program itself runs fine when ran from command line . perl program.pl
When program is ran from another program in this case radius it will show an error like:
Symbol lookup error /usr/lib/perl/5.8/auto/IO/IO.so undefined symbol : Per_tstack_sp_ptr
It will bail out on the first use or require statement that it will see and reporting an error because it cannot seem to find the dynamic linked libraries for this module.
THe same configuration runs fine on freebsd or redhat or slackware. I only have this problem on debian.
I tried things with DynaLoader and XSLoader but no luck.
It has to be something simple that I am overlooking.
I am really really stuck on this problem so any hint is welcome.
- 06-25-2007 #2Just Joined!
- Join Date
- Jun 2007
- Posts
- 2
the solution
I have found the solution on the freeradius list.
Should do LD_PRELOAD=/usr/lib/libperl.so.5.8 because of some installation problem on debian.
Man i am so happy this issue is solved now.


Reply With Quote
