mirror of
https://github.com/Aigor44/ncursesw-morphos.git
synced 2025-03-07 16:16:53 +08:00
ncurses 5.9 - patch 20141221
+ fix an incorrect variable assignment in 20141220 changes (report by Sven Joachim).
This commit is contained in:
parent
b0b1980be1
commit
596d5db3cd
6
NEWS
6
NEWS
@ -25,7 +25,7 @@
|
||||
-- sale, use or other dealings in this Software without prior written --
|
||||
-- authorization. --
|
||||
-------------------------------------------------------------------------------
|
||||
-- $Id: NEWS,v 1.2318 2014/12/21 00:20:46 tom Exp $
|
||||
-- $Id: NEWS,v 1.2320 2014/12/21 17:32:58 tom Exp $
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
This is a log of changes that ncurses has gone through since Zeyd started
|
||||
@ -45,6 +45,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.
|
||||
|
||||
20141221
|
||||
+ fix an incorrect variable assignment in 20141220 changes (report by
|
||||
Sven Joachim).
|
||||
|
||||
20141220
|
||||
+ updated Ada95/configure with macro changes from 20141213
|
||||
+ tie configure options --with-abi-version and --with-versioned-syms
|
||||
|
12
configure
vendored
12
configure
vendored
@ -1,5 +1,5 @@
|
||||
#! /bin/sh
|
||||
# From configure.in Revision: 1.594 .
|
||||
# From configure.in Revision: 1.595 .
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by Autoconf 2.52.20141204.
|
||||
#
|
||||
@ -21980,17 +21980,17 @@ then
|
||||
UNALTERED_SYMS=`echo "$RESULTING_SYMS" | sed -e 's/\\$/\\\\$/g'`
|
||||
case $cf_cv_abi_version in
|
||||
[6789])
|
||||
if test -n "$VERSIONED_SYMS"
|
||||
then
|
||||
test -n "$verbose" && echo " will map symbols to ABI=$cf_cv_abi_version" 1>&6
|
||||
|
||||
echo "${as_me:-configure}:21987: testing will map symbols to ABI=$cf_cv_abi_version ..." 1>&5
|
||||
echo "${as_me:-configure}:21985: testing will map symbols to ABI=$cf_cv_abi_version ..." 1>&5
|
||||
|
||||
fi
|
||||
RESULTING_SYMS=resulting.map
|
||||
;;
|
||||
*)
|
||||
RESULTING_SYMS="$UNALTERED_SYMS"
|
||||
test -n "$verbose" && echo " will map symbols to default ABI" 1>&6
|
||||
|
||||
echo "${as_me:-configure}:21992: testing will map symbols to default ABI ..." 1>&5
|
||||
|
||||
;;
|
||||
esac
|
||||
else
|
||||
|
@ -28,14 +28,14 @@ dnl***************************************************************************
|
||||
dnl
|
||||
dnl Author: Thomas E. Dickey 1995-on
|
||||
dnl
|
||||
dnl $Id: configure.in,v 1.594 2014/12/21 00:00:25 tom Exp $
|
||||
dnl $Id: configure.in,v 1.595 2014/12/21 17:25:38 tom Exp $
|
||||
dnl Process this file with autoconf to produce a configure script.
|
||||
dnl
|
||||
dnl See http://invisible-island.net/autoconf/ for additional information.
|
||||
dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
AC_PREREQ(2.52.20030208)
|
||||
AC_REVISION($Revision: 1.594 $)
|
||||
AC_REVISION($Revision: 1.595 $)
|
||||
AC_INIT(ncurses/base/lib_initscr.c)
|
||||
AC_CONFIG_HEADER(include/ncurses_cfg.h:include/ncurses_cfg.hin)
|
||||
|
||||
@ -2098,14 +2098,11 @@ then
|
||||
UNALTERED_SYMS=`echo "$RESULTING_SYMS" | sed -e 's/\\$/\\\\$/g'`
|
||||
case $cf_cv_abi_version in
|
||||
[[6789]])
|
||||
if test -n "$VERSIONED_SYMS"
|
||||
then
|
||||
CF_VERBOSE(will map symbols to ABI=$cf_cv_abi_version)
|
||||
fi
|
||||
RESULTING_SYMS=resulting.map
|
||||
;;
|
||||
*)
|
||||
RESULTING_SYMS="$UNALTERED_SYMS"
|
||||
CF_VERBOSE(will map symbols to default ABI)
|
||||
;;
|
||||
esac
|
||||
else
|
||||
|
4
dist.mk
4
dist.mk
@ -25,7 +25,7 @@
|
||||
# use or other dealings in this Software without prior written #
|
||||
# authorization. #
|
||||
##############################################################################
|
||||
# $Id: dist.mk,v 1.1020 2014/12/20 16:10:23 tom Exp $
|
||||
# $Id: dist.mk,v 1.1021 2014/12/21 17:23:21 tom Exp $
|
||||
# Makefile for creating ncurses distributions.
|
||||
#
|
||||
# This only needs to be used directly as a makefile by developers, but
|
||||
@ -37,7 +37,7 @@ SHELL = /bin/sh
|
||||
# These define the major/minor/patch versions of ncurses.
|
||||
NCURSES_MAJOR = 5
|
||||
NCURSES_MINOR = 9
|
||||
NCURSES_PATCH = 20141220
|
||||
NCURSES_PATCH = 20141221
|
||||
|
||||
# We don't append the patch to the version, since this only applies to releases
|
||||
VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR)
|
||||
|
@ -1,8 +1,8 @@
|
||||
ncurses6 (5.9+20141220) unstable; urgency=low
|
||||
ncurses6 (5.9+20141221) unstable; urgency=low
|
||||
|
||||
* latest weekly patch
|
||||
|
||||
-- Thomas E. Dickey <dickey@invisible-island.net> Sat, 20 Dec 2014 11:10:23 -0500
|
||||
-- Thomas E. Dickey <dickey@invisible-island.net> Sun, 21 Dec 2014 12:23:21 -0500
|
||||
|
||||
ncurses6 (5.9-20131005) unstable; urgency=low
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
ncurses6 (5.9+20141220) unstable; urgency=low
|
||||
ncurses6 (5.9+20141221) unstable; urgency=low
|
||||
|
||||
* latest weekly patch
|
||||
|
||||
-- Thomas E. Dickey <dickey@invisible-island.net> Sat, 20 Dec 2014 11:10:23 -0500
|
||||
-- Thomas E. Dickey <dickey@invisible-island.net> Sun, 21 Dec 2014 12:23:21 -0500
|
||||
|
||||
ncurses6 (5.9-20131005) unstable; urgency=low
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
ncurses6 (5.9+20141220) unstable; urgency=low
|
||||
ncurses6 (5.9+20141221) unstable; urgency=low
|
||||
|
||||
* latest weekly patch
|
||||
|
||||
-- Thomas E. Dickey <dickey@invisible-island.net> Sat, 20 Dec 2014 11:10:23 -0500
|
||||
-- Thomas E. Dickey <dickey@invisible-island.net> Sun, 21 Dec 2014 12:23:21 -0500
|
||||
|
||||
ncurses6 (5.9-20120608) unstable; urgency=low
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
; $Id: mingw-ncurses.nsi,v 1.75 2014/12/20 16:10:23 tom Exp $
|
||||
; $Id: mingw-ncurses.nsi,v 1.76 2014/12/21 17:23:21 tom Exp $
|
||||
|
||||
; TODO add examples
|
||||
; TODO bump ABI to 6
|
||||
@ -10,7 +10,7 @@
|
||||
!define VERSION_MAJOR "5"
|
||||
!define VERSION_MINOR "9"
|
||||
!define VERSION_YYYY "2014"
|
||||
!define VERSION_MMDD "1220"
|
||||
!define VERSION_MMDD "1221"
|
||||
!define VERSION_PATCH ${VERSION_YYYY}${VERSION_MMDD}
|
||||
|
||||
!define MY_ABI "5"
|
||||
|
@ -3,7 +3,7 @@
|
||||
Summary: shared libraries for terminal handling
|
||||
Name: mingw32-ncurses6
|
||||
Version: 5.9
|
||||
Release: 20141220
|
||||
Release: 20141221
|
||||
License: X11
|
||||
Group: Development/Libraries
|
||||
Source: ncurses-%{version}-%{release}.tgz
|
||||
|
@ -1,7 +1,7 @@
|
||||
Summary: shared libraries for terminal handling
|
||||
Name: ncurses6
|
||||
Version: 5.9
|
||||
Release: 20141220
|
||||
Release: 20141221
|
||||
License: X11
|
||||
Group: Development/Libraries
|
||||
Source: ncurses-%{version}-%{release}.tgz
|
||||
|
Loading…
Reference in New Issue
Block a user