diff options
Diffstat (limited to 'usr.bin/mg/Makefile')
-rw-r--r-- | usr.bin/mg/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mg/Makefile b/usr.bin/mg/Makefile index 7bfc53659b9..17a81285ee4 100644 --- a/usr.bin/mg/Makefile +++ b/usr.bin/mg/Makefile @@ -9,6 +9,7 @@ DPADD+= ${LIBCURSES} # # DO_METAKEY -- if bit 7 is set for a key, treat like a META key # STARTUP -- look for and handle initialization file +# FKEYS -- add support for function key sequences. # XKEYS -- use termcap function key definitions. Warning - # XKEYS and bsmap mode do _not_ get along. # BACKUP -- enable "make-backup-files" @@ -16,7 +17,7 @@ DPADD+= ${LIBCURSES} # REGEX -- create regular expression functions # CDEFS = -DDO_METAKEY -CDEFS+= -DDO_METAKEY -DPREFIXREGION -DXKEYS -DBACKUP +CDEFS+= -DDO_METAKEY -DPREFIXREGION -DXKEYS -DFKEYS -DBACKUP CFLAGS+=$(CDEFS) SRCS= cinfo.c fileio.c spawn.c ttyio.c tty.c ttykbd.c \ |