diff options
author | bapt <bapt@FreeBSD.org> | 2013-06-17 10:28:55 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-06-17 10:28:55 +0000 |
commit | 417e87f740ac4d85234428776a69e163d33517bd (patch) | |
tree | 9f45a4b095479f9ca544ff3abb716d5aefc15eb1 /gnu | |
parent | f7c70f4181a12b76d1a7454b166af41fb2cabe98 (diff) | |
parent | 2b5579c9bdbbca29e7b2df1ee9a9e5d1cce2b06f (diff) | |
download | FreeBSD-src-417e87f740ac4d85234428776a69e163d33517bd.zip FreeBSD-src-417e87f740ac4d85234428776a69e163d33517bd.tar.gz |
Update dialog to 1.2-20130523
Level up WARNS
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/lib/libdialog/Makefile | 16 | ||||
-rw-r--r-- | gnu/lib/libdialog/dlg_config.h | 25 | ||||
-rw-r--r-- | gnu/usr.bin/dialog/Makefile | 2 |
3 files changed, 30 insertions, 13 deletions
diff --git a/gnu/lib/libdialog/Makefile b/gnu/lib/libdialog/Makefile index f0979ac..f2f124f 100644 --- a/gnu/lib/libdialog/Makefile +++ b/gnu/lib/libdialog/Makefile @@ -4,17 +4,17 @@ DIALOG= ${.CURDIR}/../../../contrib/dialog LIB= dialog SHLIB_MAJOR= 7 -SRCS= argv.c arrows.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 \ - rc.c tailbox.c textbox.c timebox.c trace.c ui_getc.c util.c \ - version.c yesno.c +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 ui_getc.c util.c version.c yesno.c INCS= dialog.h dlg_colors.h dlg_config.h dlg_keys.h MAN= dialog.3 -CFLAGS+= -I${.CURDIR} -I${DIALOG} -D_XOPEN_SOURCE_EXTENDED +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 4dd6ab4..ccb4c30 100644 --- a/gnu/lib/libdialog/dlg_config.h +++ b/gnu/lib/libdialog/dlg_config.h @@ -5,9 +5,12 @@ * $FreeBSD$ */ -#define DIALOG_PATCHDATE 20100428 -#define DIALOG_VERSION "1.1" +#define CURSES_WACS_ARRAY _nc_wacs +#define CURSES_WACS_SYMBOLS 1 +#define DIALOG_PATCHDATE 20130523 +#define DIALOG_VERSION "1.2" #define HAVE_ALLOCA 1 +#define HAVE_BTOWC 1 #define HAVE_COLOR 1 #define HAVE_DIRENT_H 1 #define HAVE_DLG_FORMBOX 1 @@ -18,6 +21,7 @@ #define HAVE_FEOF_UNLOCKED 1 #define HAVE_FLUSHINP 1 #define HAVE_FSEEKO 1 +#define HAVE_GETATTRS 1 #define HAVE_GETBEGX 1 #define HAVE_GETBEGY 1 #define HAVE_GETBEGYX 1 @@ -42,7 +46,11 @@ #define HAVE_LIBNCURSESW 1 #define HAVE_LIMITS_H 1 #define HAVE_LOCALE_H 1 +#define HAVE_MBLEN 1 +#define HAVE_MBRLEN 1 +#define HAVE_MBRTOWC 1 #define HAVE_MBSTATE_T 1 +#define HAVE_MBTOWC 1 #define HAVE_MEMORY_H 1 #define HAVE_MIXEDGAUGE 1 #define HAVE_MMAP 1 @@ -75,8 +83,17 @@ #define HAVE_UNISTD_H 1 #define HAVE_USE_DEFAULT_COLORS 1 #define HAVE_WAITPID 1 -#define HAVE_WGET_WCH 1 +#define HAVE_WCHGAT 1 +#define HAVE_WCSRTOMBS 1 +#define HAVE_WCSTOMBS 1 +#define HAVE_WCTOB 1 +#define HAVE_WCTOMB 1 +#define HAVE_WCURSYNCUP 1 +#define HAVE_WGETPARENT 1 +#define HAVE_WHIPTAIL 1 +#define HAVE_WSYNCUP 1 #define HAVE_XDIALOG 1 +#define HAVE_XDIALOG2 1 #define HAVE__NC_FREE_AND_EXIT 1 #define ICONV_CONST const #define MIXEDCASE_FILENAMES 1 @@ -85,7 +102,7 @@ #define PACKAGE "dialog" #define RETSIGTYPE void #define STDC_HEADERS 1 -#define SYSTEM_NAME "freebsd9.0" +#define SYSTEM_NAME "freebsd10.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 e945b22..f9281c8 100644 --- a/gnu/usr.bin/dialog/Makefile +++ b/gnu/usr.bin/dialog/Makefile @@ -8,6 +8,6 @@ LDADD= -ldialog -lncursesw -lm CFLAGS+= -I${.CURDIR} -I${DIALOG} .PATH: ${DIALOG} -WARNS?= 3 +WARNS?= 6 .include <bsd.prog.mk> |