1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
|
diff '--unified=2' -r ncurses-6.3-20221001/configure ncurses-6.3-20221008/configure
--- ncurses-6.3-20221001/configure 2022-10-01 09:25:01.000000000 -0400
+++ ncurses-6.3-20221008/configure 2022-10-08 12:55:47.000000000 -0400
@@ -1,4 +1,4 @@
#! /bin/sh
-# From configure.in Revision: 1.749 .
+# From configure.in Revision: 1.750 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by Autoconf 2.52.20210509.
@@ -15410,5 +15410,5 @@
NCURSES_MOUSE_VERSION=2
;;
-(789)
+([789])
NCURSES_MOUSE_VERSION=3
;;
diff '--unified=2' -r ncurses-6.3-20221001/configure.in ncurses-6.3-20221008/configure.in
--- ncurses-6.3-20221001/configure.in 2022-10-01 09:16:18.000000000 -0400
+++ ncurses-6.3-20221008/configure.in 2022-10-08 11:54:35.000000000 -0400
@@ -30,5 +30,5 @@
dnl Author: Thomas E. Dickey 1995-on
dnl
-dnl $Id: configure.in,v 1.749 2022/10/01 13:16:18 tom Exp $
+dnl $Id: configure.in,v 1.750 2022/10/08 15:54:35 tom Exp $
dnl Process this file with autoconf to produce a configure script.
dnl
@@ -39,5 +39,5 @@
dnl ---------------------------------------------------------------------------
AC_PREREQ(2.52.20210101)
-AC_REVISION($Revision: 1.749 $)
+AC_REVISION($Revision: 1.750 $)
AC_INIT(ncurses/base/lib_initscr.c)
AC_CONFIG_HEADER(include/ncurses_cfg.h:include/ncurses_cfg.hin)
@@ -1273,5 +1273,5 @@
NCURSES_MOUSE_VERSION=2
;;
-([789])
+([[789]])
NCURSES_MOUSE_VERSION=3
;;
diff '--unified=2' -r ncurses-6.3-20221001/dist.mk ncurses-6.3-20221008/dist.mk
--- ncurses-6.3-20221001/dist.mk 2022-10-01 09:15:31.000000000 -0400
+++ ncurses-6.3-20221008/dist.mk 2022-10-08 06:25:44.000000000 -0400
@@ -27,5 +27,5 @@
# authorization. #
##############################################################################
-# $Id: dist.mk,v 1.1505 2022/10/01 13:15:31 tom Exp $
+# $Id: dist.mk,v 1.1506 2022/10/08 10:25:44 tom Exp $
# Makefile for creating ncurses distributions.
#
@@ -39,5 +39,5 @@
NCURSES_MAJOR = 6
NCURSES_MINOR = 3
-NCURSES_PATCH = 20221001
+NCURSES_PATCH = 20221008
# We don't append the patch to the version, since this only applies to releases
diff '--unified=2' -r ncurses-6.3-20221001/misc/gen-pkgconfig.in ncurses-6.3-20221008/misc/gen-pkgconfig.in
--- ncurses-6.3-20221001/misc/gen-pkgconfig.in 2022-08-27 15:07:03.000000000 -0400
+++ ncurses-6.3-20221008/misc/gen-pkgconfig.in 2022-10-08 12:45:20.000000000 -0400
@@ -1,4 +1,4 @@
#!@SHELL@
-# $Id: gen-pkgconfig.in,v 1.55 2022/08/27 19:07:03 tom Exp $
+# $Id: gen-pkgconfig.in,v 1.56 2022/10/08 16:45:20 tom Exp $
##############################################################################
# Copyright 2018-2021,2022 Thomas E. Dickey #
@@ -104,5 +104,9 @@
-L*)
lib_check=`echo "x$opt" | sed -e 's/^.-L//'`
- [ -d "$lib_check" ] || continue
+ # on a new/nonstandard install, $libdir may not yet exist at this point
+ if [ "$libdir" != "$lib_check" ]
+ then
+ [ -d "$lib_check" ] || continue
+ fi
case "$lib_check" in
@LD_SEARCHPATH@) # skip standard libdir
diff '--unified=2' -r ncurses-6.3-20221001/NEWS ncurses-6.3-20221008/NEWS
--- ncurses-6.3-20221001/NEWS 2022-10-01 18:20:28.000000000 -0400
+++ ncurses-6.3-20221008/NEWS 2022-10-08 12:50:03.000000000 -0400
@@ -27,5 +27,5 @@
-- authorization. --
-------------------------------------------------------------------------------
--- $Id: NEWS,v 1.3862 2022/10/01 22:20:28 tom Exp $
+-- $Id: NEWS,v 1.3864 2022/10/08 16:50:03 tom Exp $
-------------------------------------------------------------------------------
@@ -47,4 +47,11 @@
it is not possible to add this information.
+20221008
+ + correct a switch-statement case in configure script to allow for test
+ builds with ABI=7.
+ + modify misc/gen-pkgconfig.in to allow for the case where the library
+ directory does not yet exist, since this is processed before doing an
+ install (report by Michal Liszcz).
+
20221001
+ modify configure/scripts to work around interference by GNU grep 3.8
diff '--unified=2' -r ncurses-6.3-20221001/package/debian/changelog ncurses-6.3-20221008/package/debian/changelog
--- ncurses-6.3-20221001/package/debian/changelog 2022-10-01 05:34:57.000000000 -0400
+++ ncurses-6.3-20221008/package/debian/changelog 2022-10-08 06:25:44.000000000 -0400
@@ -1,7 +1,7 @@
-ncurses6 (6.3+20221001) unstable; urgency=low
+ncurses6 (6.3+20221008) unstable; urgency=low
* latest weekly patch
- -- Thomas E. Dickey <dickey@invisible-island.net> Fri, 30 Sep 2022 20:16:53 -0400
+ -- Thomas E. Dickey <dickey@invisible-island.net> Sat, 08 Oct 2022 06:25:44 -0400
ncurses6 (5.9-20120608) unstable; urgency=low
diff '--unified=2' -r ncurses-6.3-20221001/package/debian-mingw/changelog ncurses-6.3-20221008/package/debian-mingw/changelog
--- ncurses-6.3-20221001/package/debian-mingw/changelog 2022-10-01 05:34:57.000000000 -0400
+++ ncurses-6.3-20221008/package/debian-mingw/changelog 2022-10-08 06:25:44.000000000 -0400
@@ -1,7 +1,7 @@
-ncurses6 (6.3+20221001) unstable; urgency=low
+ncurses6 (6.3+20221008) unstable; urgency=low
* latest weekly patch
- -- Thomas E. Dickey <dickey@invisible-island.net> Fri, 30 Sep 2022 20:16:53 -0400
+ -- Thomas E. Dickey <dickey@invisible-island.net> Sat, 08 Oct 2022 06:25:44 -0400
ncurses6 (5.9-20131005) unstable; urgency=low
diff '--unified=2' -r ncurses-6.3-20221001/package/debian-mingw64/changelog ncurses-6.3-20221008/package/debian-mingw64/changelog
--- ncurses-6.3-20221001/package/debian-mingw64/changelog 2022-10-01 05:34:57.000000000 -0400
+++ ncurses-6.3-20221008/package/debian-mingw64/changelog 2022-10-08 06:25:44.000000000 -0400
@@ -1,7 +1,7 @@
-ncurses6 (6.3+20221001) unstable; urgency=low
+ncurses6 (6.3+20221008) unstable; urgency=low
* latest weekly patch
- -- Thomas E. Dickey <dickey@invisible-island.net> Fri, 30 Sep 2022 20:16:53 -0400
+ -- Thomas E. Dickey <dickey@invisible-island.net> Sat, 08 Oct 2022 06:25:44 -0400
ncurses6 (5.9-20131005) unstable; urgency=low
diff '--unified=2' -r ncurses-6.3-20221001/package/mingw-ncurses.nsi ncurses-6.3-20221008/package/mingw-ncurses.nsi
--- ncurses-6.3-20221001/package/mingw-ncurses.nsi 2022-10-01 05:34:57.000000000 -0400
+++ ncurses-6.3-20221008/package/mingw-ncurses.nsi 2022-10-08 06:25:44.000000000 -0400
@@ -1,3 +1,3 @@
-; $Id: mingw-ncurses.nsi,v 1.544 2022/10/01 09:34:57 tom Exp $
+; $Id: mingw-ncurses.nsi,v 1.545 2022/10/08 10:25:44 tom Exp $
; TODO add examples
@@ -11,5 +11,5 @@
!define VERSION_MINOR "3"
!define VERSION_YYYY "2022"
-!define VERSION_MMDD "1001"
+!define VERSION_MMDD "1008"
!define VERSION_PATCH ${VERSION_YYYY}${VERSION_MMDD}
diff '--unified=2' -r ncurses-6.3-20221001/package/mingw-ncurses.spec ncurses-6.3-20221008/package/mingw-ncurses.spec
--- ncurses-6.3-20221001/package/mingw-ncurses.spec 2022-10-01 05:34:57.000000000 -0400
+++ ncurses-6.3-20221008/package/mingw-ncurses.spec 2022-10-08 06:25:44.000000000 -0400
@@ -4,5 +4,5 @@
Name: mingw32-ncurses6
Version: 6.3
-Release: 20221001
+Release: 20221008
License: X11
Group: Development/Libraries
diff '--unified=2' -r ncurses-6.3-20221001/package/ncurses.spec ncurses-6.3-20221008/package/ncurses.spec
--- ncurses-6.3-20221001/package/ncurses.spec 2022-10-01 05:34:57.000000000 -0400
+++ ncurses-6.3-20221008/package/ncurses.spec 2022-10-08 06:25:44.000000000 -0400
@@ -2,5 +2,5 @@
Name: ncurses6
Version: 6.3
-Release: 20221001
+Release: 20221008
License: X11
Group: Development/Libraries
diff '--unified=2' -r ncurses-6.3-20221001/package/ncursest.spec ncurses-6.3-20221008/package/ncursest.spec
--- ncurses-6.3-20221001/package/ncursest.spec 2022-10-01 05:34:57.000000000 -0400
+++ ncurses-6.3-20221008/package/ncursest.spec 2022-10-08 06:25:44.000000000 -0400
@@ -2,5 +2,5 @@
Name: ncursest6
Version: 6.3
-Release: 20221001
+Release: 20221008
License: X11
Group: Development/Libraries
diff '--unified=2' -r ncurses-6.3-20221001/VERSION ncurses-6.3-20221008/VERSION
--- ncurses-6.3-20221001/VERSION 2022-10-01 05:34:57.000000000 -0400
+++ ncurses-6.3-20221008/VERSION 2022-10-08 06:25:44.000000000 -0400
@@ -1 +1 @@
-5:0:10 6.3 20221001
+5:0:10 6.3 20221008
|