I managed to compile FLTK-1.1.3 with DJGPP. The demos work but I can make no keyboard input.
I read in an old post that it would work with the kbd_ttyscan.c keyboard driver but not with the kbd_tty.c keyboard driver. I am using my kbd_dj keyboard driver. Do I need to make a change to that for FLTK? I see these commands in kbd_ttyscan.c: scancode = *buf & 0x7f; mwkey = keymap[scancode]; What is the purpose of those? Georg