mirror of
https://github.com/opnsense/src.git
synced 2026-04-14 13:57:02 -04:00
commit c1acf022c533c5ae27e0cd556977eafe3f5959eb
Author: Brooks Davis <brooks@one-eyed-alien.net>
Date: Fri Jan 17 21:46:44 2014 +0000
Add an option WITHOUT_NCURSESW to suppress building and linking to
libncursesw. While wide character support it useful we'd like to
only need one ncurses library on embedded systems.
MFC after: 4 weeks
Sponsored by: DARPA, AFRL
11 lines
166 B
Makefile
11 lines
166 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= ncurses form menu panel
|
|
|
|
.if ${MK_NCURSESW} != "no"
|
|
SUBDIR+= ncursesw formw menuw panelw
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|