Skip to content
Snippets Groups Projects
Commit 52fb35fe authored by deuce's avatar deuce
Browse files

Defaults to using fltk.

YOU MUST CHECK OUT THE FLTK LIBS AND HEADERS

From your sbbs directory:
cvs -d :pserver:anonymous@cvs.synchro.net:/cvsroot/sbbs co lib/fltk/<os>
- AND -
cvs -d :pserver:anonymous@cvs.synchro.net:/cvsroot/sbbs co include

Where <os> is the lower case name of out OS... currently one of:
win32
linux
freebsd
openbsd
parent dc64cfd2
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ ifndef DEBUG
endif
#USE_DIALOG = 1 # Dialog vesrion of UIFC
#USE_FLTK = 1 # Use Windowed version
USE_FLTK = 1 # Use Windowed version
USE_CURSES = 1 # Curses version of UIFC
CC = gcc
CCPP = gcc
......@@ -58,8 +58,8 @@ ifdef USE_CURSES
endif
ifdef USE_FLTK
LFLAGS += -L/usr/X11R6/lib -lfltk -lX11
CFLAGS += -I/usr/X11R6/include -DUSE_FLTK
LFLAGS += -L../../../lib/fltk/$(os) -L/usr/X11R6/lib -lfltk -lX11
CFLAGS += -I../../../include/fltk -I/usr/X11R6/include -DUSE_FLTK
endif
# Math library needed
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment