pikpik / minix-pkgsrc

13 stars 12 forks source link

Branch xv-port Ready for Testing (3.1.9); Needs Additional Changes (3.1.8) #2

Open pikpik opened 13 years ago

pikpik commented 13 years ago

Hi,

I created the "xv-port" branch based on Ivan's work to port XV. It appears to compile and run in MINIX 3.1.9, but not in 3.1.8. The reason is that in 3.1.8, refers to a less used file, while in 3.1.9 simply includes .

Possible solution:

We could find the code that is having the problem and do the following:

Replace:

#include 

With:

#ifdef __minix
# include 
#else
# include 
#endif

...but I'm not sure if that is a good idea.

Thank you, pikpik

pikpik commented 13 years ago

Hi,

Unfortunately, XV currently doesn't compile due to library linking problems between it, libpng, libX11, and perhaps a few others.

For reference, this branch contains changes to:

Thanks, pikpik