]> ncurses.scripts.mit.edu Git - ncurses.git/commitdiff
ncurses 6.2 - patch 20211017
authorThomas E. Dickey <dickey@invisible-island.net>
Sun, 17 Oct 2021 21:17:19 +0000 (21:17 +0000)
committerThomas E. Dickey <dickey@invisible-island.net>
Sun, 17 Oct 2021 21:17:19 +0000 (21:17 +0000)
+ amend change for pkg-config to account for "none" being returned in
  the libdir-path result rather than "no" (report by Gabriele Balducci).

14 files changed:
Ada95/aclocal.m4
Ada95/configure
NEWS
VERSION
aclocal.m4
configure
dist.mk
package/debian-mingw/changelog
package/debian-mingw64/changelog
package/debian/changelog
package/mingw-ncurses.nsi
package/mingw-ncurses.spec
package/ncurses.spec
package/ncursest.spec

index 76152855ea5b2d9bb12fc1618ec14a5f8bc38ff7..75e68c75f56b8b47022a09a6f3f91a13ba1cd99f 100644 (file)
@@ -29,7 +29,7 @@ dnl***************************************************************************
 dnl
 dnl Author: Thomas E. Dickey
 dnl
-dnl $Id: aclocal.m4,v 1.184 2021/10/11 00:18:09 tom Exp $
+dnl $Id: aclocal.m4,v 1.185 2021/10/17 15:16:03 tom Exp $
 dnl Macros used in NCURSES Ada95 auto-configuration script.
 dnl
 dnl These macros are maintained separately from NCURSES.  The copyright on
@@ -4771,7 +4771,7 @@ eval $3="$withval"
 AC_SUBST($3)dnl
 ])dnl
 dnl ---------------------------------------------------------------------------
-dnl CF_WITH_PKG_CONFIG_LIBDIR version: 12 updated: 2021/10/10 20:18:09
+dnl CF_WITH_PKG_CONFIG_LIBDIR version: 13 updated: 2021/10/17 11:12:47
 dnl -------------------------
 dnl Allow the choice of the pkg-config library directory to be overridden.
 dnl
@@ -4883,7 +4883,7 @@ do
 done
 AC_MSG_RESULT($cf_pkg_config_path)
 
-if test "x$cf_pkg_config_path" != xno ; then
+if test "x$cf_pkg_config_path" != xnone ; then
        # limit this to the first directory found
        PKG_CONFIG_LIBDIR="$cf_pkg_config_path"
 fi
index 185849aefbb85899002832989eeed1f649e4e378..0507ec8c18155d1386087215f32fa89f97e1cebf 100755 (executable)
@@ -3379,7 +3379,7 @@ done
 echo "$as_me:3379: result: $cf_pkg_config_path" >&5
 echo "${ECHO_T}$cf_pkg_config_path" >&6
 
-if test "x$cf_pkg_config_path" != xno ; then
+if test "x$cf_pkg_config_path" != xnone ; then
        # limit this to the first directory found
        PKG_CONFIG_LIBDIR="$cf_pkg_config_path"
 fi
diff --git a/NEWS b/NEWS
index 632ef2272972aa69424f84bcfe1e02db3cd5fbdb..92aceb0028ba3cd0b06876c13fc921720c62e85f 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -26,7 +26,7 @@
 -- sale, use or other dealings in this Software without prior written        --
 -- authorization.                                                            --
 -------------------------------------------------------------------------------
--- $Id: NEWS,v 1.3727 2021/10/16 15:17:50 tom Exp $
+-- $Id: NEWS,v 1.3729 2021/10/17 15:11:55 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.
 
+20211017
+       + amend change for pkg-config to account for "none" being returned in
+         the libdir-path result rather than "no" (report by Gabriele Balducci).
+
 20211016
        + build-fix for pmake with libtool.
        + improve make-tar.sh scripts, adding COPYING to tar file, and clean up
diff --git a/VERSION b/VERSION
index 0fb1b0e0712b3a741035230de4e123c5a440a188..477411b6c7e9da97132ca27e2e44be1979358dc5 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-5:0:10 6.2     20211016
+5:0:10 6.2     20211017
index e746475d1cb72933f47ea76d8a2155e013344413..96cae09c942cf831435fbe95f8d0749f0b80f703 100644 (file)
@@ -29,7 +29,7 @@ dnl***************************************************************************
 dnl
 dnl Author: Thomas E. Dickey 1995-on
 dnl
-dnl $Id: aclocal.m4,v 1.979 2021/10/11 00:20:48 tom Exp $
+dnl $Id: aclocal.m4,v 1.981 2021/10/17 15:14:04 tom Exp $
 dnl Macros used in NCURSES auto-configuration script.
 dnl
 dnl These macros are maintained separately from NCURSES.  The copyright on
@@ -2041,7 +2041,7 @@ fi
 AC_SUBST(BROKEN_LINKER)
 ])dnl
 dnl ---------------------------------------------------------------------------
-dnl CF_ENABLE_PC_FILES version: 13 updated: 2015/11/01 05:27:39
+dnl CF_ENABLE_PC_FILES version: 14 updated: 2021/10/17 11:12:47
 dnl ------------------
 dnl This is the "--enable-pc-files" option, which is available if there is a
 dnl pkg-config configuration on the local machine.
@@ -2066,7 +2066,7 @@ if test "x$enable_pc_files" != xno
 then
        MAKE_PC_FILES=
        case "x$PKG_CONFIG_LIBDIR" in
-       (xno|xyes)
+       (xno|xnone|xyes)
                AC_MSG_WARN(no PKG_CONFIG_LIBDIR was found)
                ;;
        (*)
@@ -9206,7 +9206,7 @@ if test "x$with_pcre2" != xno ; then
 fi
 ])dnl
 dnl ---------------------------------------------------------------------------
-dnl CF_WITH_PKG_CONFIG_LIBDIR version: 12 updated: 2021/10/10 20:18:09
+dnl CF_WITH_PKG_CONFIG_LIBDIR version: 13 updated: 2021/10/17 11:12:47
 dnl -------------------------
 dnl Allow the choice of the pkg-config library directory to be overridden.
 dnl
@@ -9318,7 +9318,7 @@ do
 done
 AC_MSG_RESULT($cf_pkg_config_path)
 
-if test "x$cf_pkg_config_path" != xno ; then
+if test "x$cf_pkg_config_path" != xnone ; then
        # limit this to the first directory found
        PKG_CONFIG_LIBDIR="$cf_pkg_config_path"
 fi
index 5c4add91b85dab133c46718845ff25014a358097..421cf85997e9a5afbf0921eee0531c2243504cb9 100755 (executable)
--- a/configure
+++ b/configure
@@ -4238,7 +4238,7 @@ done
 echo "$as_me:4238: result: $cf_pkg_config_path" >&5
 echo "${ECHO_T}$cf_pkg_config_path" >&6
 
-if test "x$cf_pkg_config_path" != xno ; then
+if test "x$cf_pkg_config_path" != xnone ; then
        # limit this to the first directory found
        PKG_CONFIG_LIBDIR="$cf_pkg_config_path"
 fi
@@ -4266,7 +4266,7 @@ if test "x$enable_pc_files" != xno
 then
        MAKE_PC_FILES=
        case "x$PKG_CONFIG_LIBDIR" in
-       (xno|xyes)
+       (xno|xnone|xyes)
                { echo "$as_me:4270: WARNING: no PKG_CONFIG_LIBDIR was found" >&5
 echo "$as_me: WARNING: no PKG_CONFIG_LIBDIR was found" >&2;}
                ;;
diff --git a/dist.mk b/dist.mk
index 06eeec0b2e728391043af1f08f5c944f183fe748..c521e1455c033b9aeca327675bdce5ac1b1a12f8 100644 (file)
--- 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.1440 2021/10/16 08:28:32 tom Exp $
+# $Id: dist.mk,v 1.1441 2021/10/17 14:58:11 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 = 20211016
+NCURSES_PATCH = 20211017
 
 # We don't append the patch to the version, since this only applies to releases
 VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR)
index 8897eec13771fd68ed9272183e650756577e824d..729ccb35e53aaea5e17800098e0a0691c945afdd 100644 (file)
@@ -1,8 +1,8 @@
-ncurses6 (6.2+20211016) unstable; urgency=low
+ncurses6 (6.2+20211017) unstable; urgency=low
 
   * latest weekly patch
 
- -- Thomas E. Dickey <dickey@invisible-island.net>  Sun, 10 Oct 2021 11:29:02 -0400
+ -- Thomas E. Dickey <dickey@invisible-island.net>  Sun, 17 Oct 2021 10:58:11 -0400
 
 ncurses6 (5.9-20131005) unstable; urgency=low
 
index 8897eec13771fd68ed9272183e650756577e824d..729ccb35e53aaea5e17800098e0a0691c945afdd 100644 (file)
@@ -1,8 +1,8 @@
-ncurses6 (6.2+20211016) unstable; urgency=low
+ncurses6 (6.2+20211017) unstable; urgency=low
 
   * latest weekly patch
 
- -- Thomas E. Dickey <dickey@invisible-island.net>  Sun, 10 Oct 2021 11:29:02 -0400
+ -- Thomas E. Dickey <dickey@invisible-island.net>  Sun, 17 Oct 2021 10:58:11 -0400
 
 ncurses6 (5.9-20131005) unstable; urgency=low
 
index 3c3641bd0dcfaff17450f2e4886f0247ac3f5a5b..d59c231bfff5b6623e6e160aef822d4f87bb813b 100644 (file)
@@ -1,8 +1,8 @@
-ncurses6 (6.2+20211016) unstable; urgency=low
+ncurses6 (6.2+20211017) unstable; urgency=low
 
   * latest weekly patch
 
- -- Thomas E. Dickey <dickey@invisible-island.net>  Sun, 10 Oct 2021 11:29:02 -0400
+ -- Thomas E. Dickey <dickey@invisible-island.net>  Sun, 17 Oct 2021 10:58:11 -0400
 
 ncurses6 (5.9-20120608) unstable; urgency=low
 
index 85faaef3928cc9d2a05eeac0308d32b05f63475d..7fa33938a601b3273dc31e2617af977e6ca72902 100644 (file)
@@ -1,4 +1,4 @@
-; $Id: mingw-ncurses.nsi,v 1.482 2021/10/10 15:29:02 tom Exp $\r
+; $Id: mingw-ncurses.nsi,v 1.483 2021/10/17 14:58:11 tom Exp $\r
 \r
 ; TODO add examples\r
 ; TODO bump ABI to 6\r
@@ -10,7 +10,7 @@
 !define VERSION_MAJOR "6"\r
 !define VERSION_MINOR "2"\r
 !define VERSION_YYYY  "2021"\r
-!define VERSION_MMDD  "1016"\r
+!define VERSION_MMDD  "1017"\r
 !define VERSION_PATCH ${VERSION_YYYY}${VERSION_MMDD}\r
 \r
 !define MY_ABI   "5"\r
index 5be2dd3bcfede2d117ec2aa96730ac75dfc34c3b..b907a5673fc583aa1bd3f61cd7e7242f778ec672 100644 (file)
@@ -3,7 +3,7 @@
 Summary: shared libraries for terminal handling
 Name: mingw32-ncurses6
 Version: 6.2
-Release: 20211016
+Release: 20211017
 License: X11
 Group: Development/Libraries
 Source: ncurses-%{version}-%{release}.tgz
index fe3c2e5bbe823720e8d42b8fc04e258a8b09aae2..9e9767b3f5760966e5d4bbe28a11e484cef022bf 100644 (file)
@@ -1,7 +1,7 @@
 Summary: shared libraries for terminal handling
 Name: ncurses6
 Version: 6.2
-Release: 20211016
+Release: 20211017
 License: X11
 Group: Development/Libraries
 Source: ncurses-%{version}-%{release}.tgz
index 68cc9fd3306c480d132f67973a0ece58d6e1b1fa..51ab385c227a03a23649d58a520099c5e4292394 100644 (file)
@@ -1,7 +1,7 @@
 Summary: Curses library with POSIX thread support.
 Name: ncursest6
 Version: 6.2
-Release: 20211016
+Release: 20211017
 License: X11
 Group: Development/Libraries
 Source: ncurses-%{version}-%{release}.tgz