Skip to content
Snippets Groups Projects
Commit 1b3f45dd authored by rswindell's avatar rswindell
Browse files

Allow USE_DOSEMU=1 to be specified at install time and persisted in the

src/build/localdefs.mk file.
parent 39b07a4b
No related branches found
No related tags found
No related merge requests found
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
# NO_X = Don't include build conio library (ciolib) for X # NO_X = Don't include build conio library (ciolib) for X
# NO_GTK = Don't build GTK-based sysop tools # NO_GTK = Don't build GTK-based sysop tools
# X_PATH = /path/to/X (if not /usr/X11R6) # X_PATH = /path/to/X (if not /usr/X11R6)
# USE_DOSEMU = Set to 1 to enable Linux-DOSEMU support
# the magic bit: # the magic bit:
MKFLAGS += MAKEFLAGS= MKFLAGS += MAKEFLAGS=
...@@ -132,6 +133,10 @@ ifdef X_PATH ...@@ -132,6 +133,10 @@ ifdef X_PATH
MKFLAGS += X_PATH=$(X_PATH) MKFLAGS += X_PATH=$(X_PATH)
endif endif
ifdef USE_DOSEMU
MKFLAGS += USE_DOSEMU=$(USE_DOSEMU)
endif
# Check for GLADE # Check for GLADE
ifndef NO_GTK ifndef NO_GTK
ifeq ($(shell pkg-config libglade-2.0 --exists && echo YES),YES) ifeq ($(shell pkg-config libglade-2.0 --exists && echo YES),YES)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment