From: Thomas E. Dickey Date: Sun, 6 Jun 2021 01:58:14 +0000 (+0000) Subject: ncurses 6.2 - patch 20210605 X-Git-Tag: v6.3~23 X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=commitdiff_plain;h=9028a6e05bf66890591f074dd510a43c10f4e984 ncurses 6.2 - patch 20210605 + add a summary of ncurses-specific preprocessor symbols to curses.h (prompted by discussion with Peter Farley, Bill Gray). --- diff --git a/NEWS b/NEWS index 3c1d58ab..efbbf5c0 100644 --- a/NEWS +++ b/NEWS @@ -26,7 +26,7 @@ -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------- --- $Id: NEWS,v 1.3669 2021/05/22 23:06:34 tom Exp $ +-- $Id: NEWS,v 1.3671 2021/06/05 23:45:46 tom Exp $ ------------------------------------------------------------------------------- This is a log of changes that ncurses has gone through since Zeyd started @@ -46,6 +46,10 @@ See the AUTHORS file for the corresponding full names. Changes through 1.9.9e did not credit all contributions; it is not possible to add this information. +20210605 + + add a summary of ncurses-specific preprocessor symbols to curses.h + (prompted by discussion with Peter Farley, Bill Gray). + 20210522 + regenerate configure scripts with autoconf 2.52.20210509 to eliminate an unnecessary warning in config.log (report by Miroslav Lichvar). diff --git a/VERSION b/VERSION index 6a8f2c0a..3a8bdb0c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5:0:10 6.2 20210522 +5:0:10 6.2 20210605 diff --git a/dist.mk b/dist.mk index e97a59c6..4cb2a007 100644 --- a/dist.mk +++ b/dist.mk @@ -26,7 +26,7 @@ # use or other dealings in this Software without prior written # # authorization. # ############################################################################## -# $Id: dist.mk,v 1.1416 2021/05/22 13:01:12 tom Exp $ +# $Id: dist.mk,v 1.1418 2021/06/05 23:45:46 tom Exp $ # Makefile for creating ncurses distributions. # # This only needs to be used directly as a makefile by developers, but @@ -38,7 +38,7 @@ SHELL = /bin/sh # These define the major/minor/patch versions of ncurses. NCURSES_MAJOR = 6 NCURSES_MINOR = 2 -NCURSES_PATCH = 20210522 +NCURSES_PATCH = 20210605 # We don't append the patch to the version, since this only applies to releases VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR) diff --git a/include/curses.h.in b/include/curses.h.in index a2f539aa..d9756ced 100644 --- a/include/curses.h.in +++ b/include/curses.h.in @@ -33,11 +33,39 @@ * and: Thomas E. Dickey 1996-on * ****************************************************************************/ -/* $Id: curses.h.in,v 1.271 2021/03/20 16:25:43 tom Exp $ */ +/* $Id: curses.h.in,v 1.273 2021/06/06 01:18:45 tom Exp $ */ #ifndef __NCURSES_H #define __NCURSES_H +/* + The symbols beginning NCURSES_ or USE_ are configuration choices. + A few of the former can be overridden by applications at compile-time. + Most of the others correspond to configure-script options (or checks + by the configure-script for features of the system on which it is built). + + These symbols can be overridden by applications at compile-time: + NCURSES_NOMACROS suppresses macro definitions in favor of functions + NCURSES_WATTR_MACROS suppresses wattr_* macro definitions + NCURSES_WIDECHAR is an alternative for declaring wide-character functions. + + These symbols are used only when building ncurses: + NCURSES_ATTR_T + NCURSES_FIELD_INTERNALS + NCURSES_INTERNALS + + These symbols are set by the configure script: + NCURSES_ENABLE_STDBOOL_H + NCURSES_EXPANDED + NCURSES_EXT_COLORS + NCURSES_EXT_FUNCS + NCURSES_EXT_PUTWIN + NCURSES_NO_PADDING + NCURSES_OSPEED_COMPAT + NCURSES_PATHSEP + NCURSES_REENTRANT + */ + #define CURSES 1 #define CURSES_H 1 diff --git a/package/debian-mingw/changelog b/package/debian-mingw/changelog index aff8df78..ac04dff6 100644 --- a/package/debian-mingw/changelog +++ b/package/debian-mingw/changelog @@ -1,8 +1,8 @@ -ncurses6 (6.2+20210522) unstable; urgency=low +ncurses6 (6.2+20210605) unstable; urgency=low * latest weekly patch - -- Thomas E. Dickey Sat, 22 May 2021 09:01:12 -0400 + -- Thomas E. Dickey Sat, 05 Jun 2021 19:45:46 -0400 ncurses6 (5.9-20131005) unstable; urgency=low diff --git a/package/debian-mingw64/changelog b/package/debian-mingw64/changelog index aff8df78..ac04dff6 100644 --- a/package/debian-mingw64/changelog +++ b/package/debian-mingw64/changelog @@ -1,8 +1,8 @@ -ncurses6 (6.2+20210522) unstable; urgency=low +ncurses6 (6.2+20210605) unstable; urgency=low * latest weekly patch - -- Thomas E. Dickey Sat, 22 May 2021 09:01:12 -0400 + -- Thomas E. Dickey Sat, 05 Jun 2021 19:45:46 -0400 ncurses6 (5.9-20131005) unstable; urgency=low diff --git a/package/debian/changelog b/package/debian/changelog index 90a6b3c7..e9c84afe 100644 --- a/package/debian/changelog +++ b/package/debian/changelog @@ -1,8 +1,8 @@ -ncurses6 (6.2+20210522) unstable; urgency=low +ncurses6 (6.2+20210605) unstable; urgency=low * latest weekly patch - -- Thomas E. Dickey Sat, 22 May 2021 09:01:12 -0400 + -- Thomas E. Dickey Sat, 05 Jun 2021 19:45:46 -0400 ncurses6 (5.9-20120608) unstable; urgency=low diff --git a/package/mingw-ncurses.nsi b/package/mingw-ncurses.nsi index 33ce9002..bf4730e0 100644 --- a/package/mingw-ncurses.nsi +++ b/package/mingw-ncurses.nsi @@ -1,4 +1,4 @@ -; $Id: mingw-ncurses.nsi,v 1.459 2021/05/22 13:01:12 tom Exp $ +; $Id: mingw-ncurses.nsi,v 1.461 2021/06/05 23:45:46 tom Exp $ ; TODO add examples ; TODO bump ABI to 6 @@ -10,7 +10,7 @@ !define VERSION_MAJOR "6" !define VERSION_MINOR "2" !define VERSION_YYYY "2021" -!define VERSION_MMDD "0522" +!define VERSION_MMDD "0605" !define VERSION_PATCH ${VERSION_YYYY}${VERSION_MMDD} !define MY_ABI "5" diff --git a/package/mingw-ncurses.spec b/package/mingw-ncurses.spec index ae44fc09..5916c3ce 100644 --- a/package/mingw-ncurses.spec +++ b/package/mingw-ncurses.spec @@ -3,7 +3,7 @@ Summary: shared libraries for terminal handling Name: mingw32-ncurses6 Version: 6.2 -Release: 20210522 +Release: 20210605 License: X11 Group: Development/Libraries Source: ncurses-%{version}-%{release}.tgz diff --git a/package/ncurses.spec b/package/ncurses.spec index f9bdc91a..b7e86c8e 100644 --- a/package/ncurses.spec +++ b/package/ncurses.spec @@ -1,7 +1,7 @@ Summary: shared libraries for terminal handling Name: ncurses6 Version: 6.2 -Release: 20210522 +Release: 20210605 License: X11 Group: Development/Libraries Source: ncurses-%{version}-%{release}.tgz diff --git a/package/ncursest.spec b/package/ncursest.spec index 16071d0f..de458e08 100644 --- a/package/ncursest.spec +++ b/package/ncursest.spec @@ -1,7 +1,7 @@ Summary: Curses library with POSIX thread support. Name: ncursest6 Version: 6.2 -Release: 20210522 +Release: 20210605 License: X11 Group: Development/Libraries Source: ncurses-%{version}-%{release}.tgz