Hi Gabor Szabo, Did you build wxWidgets or use binary from your Linux distro?
I just want to share my experience, I hope it could help. I develop under Ubuntu Linux and pack the script into one single executable. Then to make the executable runs in another computer, I copy all libwx*.so.4.0 (Ubuntu Gutsy Gibbon) or libwx*.so.5.0 (Ubuntu Hardy Heron) located in /usr/local/lib from the development computer to the target computers. Then using a shell script, I create symbolic links, for example: for libwx_base_2.8.so.0.4.0: sudo ln -s libwx_base_2.8.so.0.4.0 libwx_base_2.8.so.0 sudo ln -s libwx_base_2.8.so libwx_base_2.8.so.0 for every libwx* files. I know that it's not an elegant and easy way to install, but I hope it could give you an idea to solve your problem. Best Regards, bungsu On Fri, 2008-08-29 at 07:35 +0300, Gabor Szabo wrote: > I have packaged Padre using PAR on Linux to a stand-alone executable. > The result can be downloaded from http://padre.perlide.org/wiki/Download > > It seems to work on computer other than mine but it gives an initial > warning popup > with the text: > > libwx_gtk2_html-2.8.so: cannot open shared object file: No such file > or directory > > I asked it on the PAR list and now my understanding is that the problem > is somewhere in wxWidgets or wxPerl (using 0.84) > The thread on the PAR list is here: > http://www.mail-archive.com/[EMAIL PROTECTED]/msg03472.html > > > Mattia or anyone else who understands those two, > I'd appreciate your help. > > regards > Gabor