mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 16:48:36 -05:00
The upgrade to libdialog 1.3 included changes to the ABI.
Bump libdpv to 3 since it links against libdialog.
Reported by: Mark Millard <marklmi@yahoo.com>
Reviewed by: bapt
Fixes: a96ef45019 dialog: import dialog 1.3-20210117
Differential Revision: https://reviews.freebsd.org/D32675
22 lines
667 B
Makefile
22 lines
667 B
Makefile
# $FreeBSD$
|
|
|
|
DIALOG= ${SRCTOP}/contrib/dialog
|
|
|
|
LIB= dialog
|
|
SHLIB_MAJOR= 10
|
|
SRCS= argv.c arrows.c buildlist.c buttons.c calendar.c checklist.c \
|
|
columns.c dlg_keys.c editbox.c fselect.c formbox.c guage.c \
|
|
help.c inputbox.c inputstr.c menubox.c mixedform.c \
|
|
mixedgauge.c mouse.c mousewget.c msgbox.c pause.c prgbox.c \
|
|
progressbox.c rangebox.c rc.c tailbox.c textbox.c timebox.c \
|
|
trace.c treeview.c ttysize.c ui_getc.c util.c version.c yesno.c
|
|
INCS= dialog.h dlg_colors.h dlg_config.h dlg_keys.h
|
|
MAN= dialog.3
|
|
|
|
LIBADD= tinfow ncursesw m
|
|
|
|
CFLAGS+= -I${.CURDIR} -I${DIALOG} -D_XOPEN_SOURCE_EXTENDED
|
|
.PATH: ${DIALOG}
|
|
WARNS?= 1
|
|
|
|
.include <bsd.lib.mk>
|