aMule Forum

English => Compilation problems => Topic started by: jhense on January 31, 2007, 01:57:00 PM

Title: compiling problem
Post by: jhense on January 31, 2007, 01:57:00 PM
hi, after run ./configure,make, make install, it's seems make install dont link /usr/bin/ with the aplication executable, because writing on a console amulereturns "comand not found", can someone tell me where is the exec file or how can i compile ag, wxwidgets-2.8 was used to compile . tnks all

lrwxrwxrwx 1 root root    46 2007-01-31 08:53 /usr/local/bin/wx-config -> /usr/local/lib/wx/config/gtk2-ansi-release-2.8
lrwxrwxrwx 1 root root     8 2007-01-31 08:53 /usr/local/bin/wxrc -> wxrc-2.8
-rwxr-xr-x 1 root root 81297 2007-01-31 08:53 /usr/local/bin/wxrc-2.8
Title: Re: compiling problem
Post by: jhense on January 31, 2007, 05:22:12 PM
plz some user of amule see the url of ur amule in menu, ll help a lot
Title: Re: compiling problem
Post by: wuischke on January 31, 2007, 08:24:30 PM
Heck, you didn't really ask in English and I tried to answer with the little Portuguese I know...

By default aMule installs to /usr/local/bin. You need to specify the installation directory using ./configure --prefix=/usr in order to install to /usr/bin.

BTW: aMule 2.1.3 is current stable, but I would recommend using aMule CVS (amule.hirnriss.net)
Title: Re: compiling problem
Post by: jhense on February 01, 2007, 03:58:39 AM
srry for my bad english :}, i ll look for it tnks
Title: Re: compiling problem
Post by: jhense on February 01, 2007, 05:30:12 AM
amule all compiled but when i will run shows this msg "amule: error while loading shared libraries: libwx_gtk2u_adv-2.8.so.0: cannot open shared object file: No such file or directory".
So i do instaled wxGTK-2.8.0 and even get that msg :|, what can i do???
Title: Re: compiling problem
Post by: wuischke on February 01, 2007, 11:01:16 AM
Don't excuse for language knowledge, I have to excuse for not speaking Portuguese better.

Where are your wxwidgets installed? Are they in /usr/local/lib? Then try the following script:
Code: [Select]
#!/bin/bash
export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
amule
Title: Re: compiling problem
Post by: skolnick on February 20, 2007, 05:26:15 PM
I usually add /usr/local/lib to /etc/ld.so.conf.d/local.conf (that's in Fedora, in other distros might be /etc/ld.so.conf) and avoid the usage of the script :)

Regards.