opnsense-src/lib/libbsddialog/Makefile
Alfonso S. Siciliano b9e5884ef7
bsddialog(3): fix disabled shadow
Fix dialogs building and updating fault with disabled shadow
(conf.shadow=false and implicitly bsddialog --no-shadow).

While here delete WARNS=2: all warnings were fixed in upstream and
imported in 0.2.

Approved by:		bapt (mentor)
Differential Revision:	https://reviews.freebsd.org/D34958
2022-04-20 17:52:04 +02:00

27 lines
436 B
Makefile

BSDDIALOG= ${SRCTOP}/contrib/bsddialog
.PATH: ${BSDDIALOG}/lib
LIB= bsddialog
PRIVATELIB= yes
SHLIB_MAJOR= 0
SRCS= barbox.c \
formbox.c \
infobox.c \
lib_util.c \
lib_util.h \
libbsddialog.c \
menubox.c \
messagebox.c \
textbox.c \
theme.c \
timebox.c
INCS= bsddialog.h \
bsddialog_theme.h \
bsddialog_progressview.h
MAN= bsddialog.3
LIBADD= ncursesw tinfow formw
CFLAGS+= -D_XOPEN_SOURCE_EXTENDED
.include <bsd.lib.mk>