Skip to content

Commit

Permalink
ncurses 6.3 - patch 20221203
Browse files Browse the repository at this point in the history
+ add -h usage and -V version options to the test-programs which use
  getopt.
+ use "command -v" rather than "type" in Ada95/gen/Makefile.in to fix
  a portability issue (patch by Nicolas Boulenguez).
+ update ncurses-howto, more documentation fixes along with corrections
  to example programs.
  • Loading branch information
ThomasDickey committed Dec 4, 2022
1 parent 205ea49 commit 6641601
Show file tree
Hide file tree
Showing 68 changed files with 1,628 additions and 1,204 deletions.
4 changes: 2 additions & 2 deletions Ada95/gen/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# Author: Juergen Pfeifer, 1996
# and: Thomas E. Dickey, 1997
#
# $Id: Makefile.in,v 1.100 2022/01/15 18:20:17 tom Exp $
# $Id: Makefile.in,v 1.101 2022/12/03 19:45:12 Nicolas.Boulenguez Exp $
#
.SUFFIXES:

Expand Down Expand Up @@ -103,7 +103,7 @@ PROG_GENERATE = ./generate$x
GENERATE = $(PROG_GENERATE) '@USE_ARG_SUFFIX@'
DEL_ADAMODE = sed -e '/^\-\-\ \ \-\*\-\ ada\ \-\*\-.*/d'

GNATHTML = `type -p gnathtml || type -p gnathtml.pl 2>/dev/null`
GNATHTML = `command -v gnathtml || command -v gnathtml.pl`

################################################################################
ALIB = @cf_ada_package@
Expand Down
10 changes: 9 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
-- sale, use or other dealings in this Software without prior written --
-- authorization. --
-------------------------------------------------------------------------------
-- $Id: NEWS,v 1.3882 2022/11/26 23:50:16 tom Exp $
-- $Id: NEWS,v 1.3885 2022/12/03 23:58:35 tom Exp $
-------------------------------------------------------------------------------

This is a log of changes that ncurses has gone through since Zeyd started
Expand All @@ -46,6 +46,14 @@ 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.

20221203
+ add -h usage and -V version options to the test-programs which use
getopt.
+ use "command -v" rather than "type" in Ada95/gen/Makefile.in to fix
a portability issue (patch by Nicolas Boulenguez).
+ update ncurses-howto, more documentation fixes along with corrections
to example programs.

20221126
+ fix an error in pathname of explain.txt (cf: 20200201).
+ fix an error in "@" command in test/ncurses.c F-menu (cf: 20190121).
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5:0:10 6.3 20221126
5:0:10 6.3 20221203
4 changes: 2 additions & 2 deletions dist.mk
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# use or other dealings in this Software without prior written #
# authorization. #
##############################################################################
# $Id: dist.mk,v 1.1514 2022/11/26 11:55:42 tom Exp $
# $Id: dist.mk,v 1.1515 2022/12/03 11:17:39 tom Exp $
# Makefile for creating ncurses distributions.
#
# This only needs to be used directly as a makefile by developers, but
Expand All @@ -38,7 +38,7 @@ SHELL = /bin/sh
# These define the major/minor/patch versions of ncurses.
NCURSES_MAJOR = 6
NCURSES_MINOR = 3
NCURSES_PATCH = 20221126
NCURSES_PATCH = 20221203

# We don't append the patch to the version, since this only applies to releases
VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR)
Expand Down
Loading

0 comments on commit 6641601

Please sign in to comment.