You are not logged in.
Pages: 1
new ver out , love this game
but I have a problem running it
$ ./warsow
./warsow.i386: error while loading shared libraries: libgssapi_krb5.so.2: cannot open shared object file: No such file or directory
$
which package provides the missing library ? , tried searching for libgssapi for arch but to no avail
thanks in advance
Last edited by gerryAU (2007-05-17 06:09:25)
Offline
Did a quick search and it looks like you need the heimdal package and make a symbolic link to /usr/lib/libgssapi.so
Offline
thanks neon , but having a couple of problems
I did find krb5-crypto in aur but was hoping for a package in arch
krb5-crypto]$ makepkg
==> ERROR: krb5-crypto is not available for the 'i686' architecture.
Note that many packages may need a line added to their PKGBUILD
such as arch=('i686').
Ok , so I added arch=('i686') to pkgbuild & made & installed package fine
I also installed heimdal package from arch also, but can`t find that particular lib libgssapi_krb5.so.2
$ locate libgssapi
/usr/lib/libgssapi.so
/usr/lib/sasl2/libgssapiv2.so.2.0.22
/usr/lib/sasl2/libgssapiv2.so.2
/usr/lib/sasl2/libgssapiv2.la
/usr/lib/sasl2/libgssapiv2.so
/usr/lib/libgssapi.a
/usr/lib/libgssapi.so.4.0.0
/usr/lib/libgssapi.so.4
Which should I symlink & where would I put the symlink ?
I`m using the warsow_0.3_linux.tar.gz extracted to my home directory
link to /warsow/libs ?
thanks.
Last edited by gerryAU (2007-05-16 14:36:24)
Offline
I had the same problem for many libs on a different distro. All you have to do is to find all the missing libraries and put them in /usr/lib.
For that particular lib try making a symlink with /usr/lib/libgssapi.so.4.0.0 or /usr/lib/libgssapi.so.4
Last edited by mrB (2007-05-16 15:35:43)
Offline
So here's what I have so far:
warsow]$ ./warsow
./warsow.i386: error while loading shared libraries: libgssapi_krb5.so.2: cannot open shared object file: No such file or directory
/usr/lib]# ln -s libgssapi.so.4.0.0 libgssapi_krb5.so.2
warsow]$ ./warsow
/warsow.i386: error while loading shared libraries: libkrb5.so.3: cannot open shared object file: No such file or directory
/usr/lib] # ln -s libkrb5.so.17.4.0 libkrb5.so.3
warsow]$ ./warsow
./warsow.i386: error while loading shared libraries: libk5crypto.so.3: cannot open shared object file: No such file or directory
/usr/lib]# ln -s libcrypto.so.0.9.8 libk5crypto.so.3
warsow]$ ./warsow
./warsow.i386: error while loading shared libraries: libkrb5support.so.0: cannot open shared object file: No such file or directory
/usr/lib]# ???
I have no idea what to link that to. Any pointers or help? I can list the libraries I have (definitely have heimdal installed but none of the files in /usr/lib look like good replacements for that last library) if that would help, but I think that there's something else I need to install but I just don't know what.
Offline
You know there's a PKGBUILD in AUR?
http://aur.archlinux.org/packages.php?d … =1&ID=2679
1000
Offline
I, err, "fixed" it by downloading the SDK and compiling it myself. VERY clean compile, then I just copied the resources over into release/basewsw and it seems to work!
Offline
AUR package works great, thanks all
Offline
Pages: 1