summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2018-10-20 20:49:46 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2018-10-20 20:49:46 +0000
commitf4f33ea0c752ff0f9bfad34991d5bbb54e71133d (patch)
tree40442a08324132e6e11845ccaa4f3e675edc8a4f /gnu
parentb0dee75e6460644cb00f57245a3e797626a0083f (diff)
parent4dccdce4191d6e2bc3ba9f782b0fe1aa46b743e3 (diff)
downloadsrc-test2-f4f33ea0c752ff0f9bfad34991d5bbb54e71133d.tar.gz
src-test2-f4f33ea0c752ff0f9bfad34991d5bbb54e71133d.zip
Update libdialog to 1.3-20180621
Notes
Notes: svn path=/head/; revision=339488
Diffstat (limited to 'gnu')
-rw-r--r--gnu/lib/libdialog/Makefile4
-rw-r--r--gnu/lib/libdialog/dlg_config.h15
-rw-r--r--gnu/usr.bin/dialog/Makefile2
3 files changed, 11 insertions, 10 deletions
diff --git a/gnu/lib/libdialog/Makefile b/gnu/lib/libdialog/Makefile
index c9ecd41ab313..67d725657c2f 100644
--- a/gnu/lib/libdialog/Makefile
+++ b/gnu/lib/libdialog/Makefile
@@ -9,7 +9,7 @@ SRCS= argv.c arrows.c buildlist.c buttons.c calendar.c checklist.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 ui_getc.c util.c version.c yesno.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
@@ -17,6 +17,6 @@ LIBADD= ncursesw m
CFLAGS+= -I${.CURDIR} -I${DIALOG} -D_XOPEN_SOURCE_EXTENDED -DGCC_UNUSED=__unused
.PATH: ${DIALOG}
-WARNS?= 1
+WARNS?= 4
.include <bsd.lib.mk>
diff --git a/gnu/lib/libdialog/dlg_config.h b/gnu/lib/libdialog/dlg_config.h
index 715b7fb50897..ee1d3f9ad3cb 100644
--- a/gnu/lib/libdialog/dlg_config.h
+++ b/gnu/lib/libdialog/dlg_config.h
@@ -6,9 +6,8 @@
*/
#define CURSES_WACS_ARRAY _nc_wacs
-#define CURSES_WACS_SYMBOLS 1
-#define DIALOG_PATCHDATE 20130923
-#define DIALOG_VERSION "1.2"
+#define DIALOG_PATCHDATE 20180621
+#define DIALOG_VERSION "1.3"
#define HAVE_ALLOCA 1
#define HAVE_BTOWC 1
#define HAVE_COLOR 1
@@ -43,7 +42,6 @@
#define HAVE_INTTYPES_H 1
#define HAVE_LANGINFO_CODESET 1
#define HAVE_LC_MESSAGES 1
-#define HAVE_LIBNCURSESW 1
#define HAVE_LIMITS_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MBLEN 1
@@ -53,14 +51,17 @@
#define HAVE_MBTOWC 1
#define HAVE_MEMORY_H 1
#define HAVE_MIXEDGAUGE 1
+#define HAVE_MKTIME 1
#define HAVE_MMAP 1
#define HAVE_MUNMAP 1
+#define HAVE_NCURSES_H 1
#define HAVE_NL_TYPES_H 1
#define HAVE_PUTENV 1
#define HAVE_RC_FILE 1
#define HAVE_SEARCH_H 1
#define HAVE_SETENV 1
#define HAVE_SETLOCALE 1
+#define HAVE_SIZECHANGE 1
#define HAVE_STDDEF_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
@@ -72,10 +73,12 @@
#define HAVE_STRINGS_H 1
#define HAVE_STRING_H 1
#define HAVE_STRTOUL 1
+#define HAVE_SYS_IOCTL_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_WAIT_H 1
+#define HAVE_TERMIOS_H 1
#define HAVE_TERM_H 1
#define HAVE_TSEARCH 1
#define HAVE_TYPE_CHTYPE 1
@@ -95,14 +98,14 @@
#define HAVE_XDIALOG 1
#define HAVE_XDIALOG2 1
#define HAVE__NC_FREE_AND_EXIT 1
-#define ICONV_CONST const
+#define ICONV_CONST
#define MIXEDCASE_FILENAMES 1
#define NCURSES 1
#define NEED_WCHAR_H 1
#define PACKAGE "dialog"
#define RETSIGTYPE void
#define STDC_HEADERS 1
-#define SYSTEM_NAME "freebsd10.0"
+#define SYSTEM_NAME "freebsd12.0"
#define TIME_WITH_SYS_TIME 1
#define TYPE_CHTYPE_IS_SCALAR 1
#define USE_WIDE_CURSES 1
diff --git a/gnu/usr.bin/dialog/Makefile b/gnu/usr.bin/dialog/Makefile
index bcca9b353303..71496f774830 100644
--- a/gnu/usr.bin/dialog/Makefile
+++ b/gnu/usr.bin/dialog/Makefile
@@ -7,6 +7,4 @@ LIBADD= dialog ncursesw m
CFLAGS+= -I${.CURDIR} -I${DIALOG}
.PATH: ${DIALOG}
-WARNS?= 6
-
.include <bsd.prog.mk>