Pyroar
|
Hi people!
I just installed POL and i download Script-Creator 0.4, I launch POL for first time, i add the plugins and i restart the program, when i start the program again and i try to enter to the ScriptCreator nothing happens, then i think to to run this aplication in terminal, when i clic again in the SCript Creator (I launch POL in the terminal) it says:
"./POLSC: error while loading shared libraries: libwx_gtk2u_richtext-2.8.so.0: cannot open shared object file: No such file or directory"
Somebody knows what is this??
Thanks!!.
|
goncons
|
The Script Creator, was compiled in a 32bits OS, To Use it in Ubuntu 64bits you must follow this steps:
1. Download getlibs as d3phoenix says, there is a .deb version:
wget http://frozenfox.freehostia.com/cappy/getlibs.deb
2. Install getlibs:
sudo dpkg -i getlibs.deb
3. Install 32bits versión of the libraries required by Script Creator:
getlibs -w http://mirrors.kernel.org/ubuntu/pool/universe/w/wxwidgets2.8/libwxbase2.8-0_2.8.8.0-0ubuntu2_i386.deb
getlibs -w http://mirrors.kernel.org/ubuntu/pool/universe/w/wxwidgets2.8/libwxgtk2.8-0_2.8.8.0-0ubuntu2_i386.deb
getlibs -w http://mirrors.kernel.org/ubuntu/pool/main/libc/libcanberra/libcanberra-gtk-module_0.6-0ubuntu3_i386.deb
Note: You can go to http://packages.ubuntu.com/intrepid/libs/ and choose another mirror.
4. Modify the script ~/.PlayOnLinux/plugins/Script\\ Creator/scripts/menu:
From:
!/bin/bash
export LD_LIBRARY_PATH="$HOME/.PlayOnLinux/plugins/Script Creator/lib"
cd "$HOME/.PlayOnLinux/plugins/Script Creator/bin"
./POLSC
To:
!/bin/bash
export LD_LIBRARY_PATH="$HOME/.PlayOnLinux/plugins/Script Creator/lib"
export GTK_PATH=/usr/lib32/gtk-2.0
cd "$HOME/.PlayOnLinux/plugins/Script Creator/bin"
linux32 ./POLSC
Now you can use the Script Creator Plugin.
Regards,
Luis Gonzalo Costantini Von Rickel.
|
cslaughter
|
Same issue, but on Fedora 11. Tried to apply this fix, but it does not work. I am y noy have yum'ed in teh correct packages though.
Fatal Error: Mismatch between the program and library build versions detected.
The library used 2.8 (no debug,Unicode,compiler with C++ ABI 1002,wx containers,compatible with 2.4,compatible with 2.6),
and your program used 2.8 (no debug,Unicode,compiler with C++ ABI 1002,wx containers,compatible with 2.6).
|