From: dman <ds...@ri...> - 2001-10-18 14:45:25
|
On Thu, Oct 18, 2001 at 11:58:23AM +0100, Shari Arman wrote: | | This is probably a really soppy question but I'm very very very stuck... | | | I'm trying to run a python script from a java GUI. I have had to use | jnios-1.7 to fix a problem I had with os.py, but now I'm getting: | java.lang.UnsatisfiedLinkError: java.lang.UnsatisfiedLinkError: no | posix in java.library.path | | | I tried to compile jnios-1.7/*.cpp, but it is looking for io.h, does io.h | even exist on UNIX?? | config.h:35: io.h: No such file or directory Yes. Do you have the *-dev packages installed? I use Debian and have the following : --------- $ find /usr/include -name io.h -print /usr/include/sys/io.h /usr/include/asm/io.h $ dpkg -S /usr/include/sys/io.h libc6-dev: /usr/include/sys/io.h --------- If you use debian, 'apt-get install libc6-dev' will fix that problem. | Is there a precompiled unix version of posix.so that I can download?? I don't know of any, and 'apt-cache search' didn't turn up anything that appears relevant. HTH, -D |