i am all new to perl but i have a perl script that require alot of modules to work which all are found in folder lib/ , when i try to run the script and it start loading the modules (use x;) the script fails when calling dynaloader x; saying cant find loadable objects for modules x @INC then i figured out that these modules have shared objects (.so) files that dynaloader fails to find and its names are all in form libx.so and they are in the same folder of the .pm files .. so the question is how could i make dynaloader load the modules and there shared libraries .
Any help would be appreciated.. p.s: -i am running the script through cygwin. -these modules are locale modules , i dont have the makefile.pl for them and i cant get it either.