Compiling ScottFree in CygWin

I compiled ScottFree for CygWin if anybody would like to try:

  1. I dowloaded the source code for Unix & Linux at https://www.ifarchive.org/if-archive/scott-adams/interpreters/scottfree/ScottFree.tar.gz

  2. I installed the librarys for libncurses & libncurses-devel.

  3. I Changed the include in ScottCurses.c from #include <curses.h> to #include <ncurses.h>

  4. I Changed in Makefile “ScottCurses.o -o ScottCurses -lcurses -termcap” to “ScottCurses.o -o ScottCurses -lncurses”

  5. Finally I could “make” the file.

2 Likes