Hi, This is not problem with debain based system,i had faced same problem for Linux machine, i had solved with following method may be it will be useful for u try this one.
actual code is like this in mwin/winevent.c file if !(DOS_TURBOC | DOS_QUICKC | _MINIX | VXWORKS ) static int abs(int n) { return n >= 0? n: -n; } #endif i had changed to (added Linux option) if !(DOS_TURBOC | DOS_QUICKC | _MINIX | VXWORKS | LINUX) static int abs(int n) { return n >= 0? n: -n; } #endif Mohan. On Thu, Mar 19, 2009 at 7:36 PM, Siji Sunny <siji.su...@net4uonline.com>wrote: > Hi All, > While am trying to install microwindows 0.91 on debian base system, am > getting a error message like > > " /home/siji/microwindows-0.91/src/mwin/winevent.c:18: error: static > declaration of 'abs' follows non-static declaration > make[1]: *** [/home/siji/microwindows-0.91/src/obj/mwin/winevent.o] Error 1 > make: *** [subdir-/home/siji/microwindows-0.91/src/mwin] Error 2." > > Can you pls help me to resolve this. > > With Regards >