[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
ncurses-5.2-20020127.patch.gz
From: |
Thomas Dickey |
Subject: |
ncurses-5.2-20020127.patch.gz |
Date: |
Sun, 27 Jan 2002 18:54:37 -0500 |
User-agent: |
Mutt/1.2.5i |
# ncurses 5.2 - patch 20020127 - T.Dickey
#
# ------------------------------------------------------------------------------
#
# Ncurses 5.2 is at
# ftp.gnu.org:/pub/gnu
#
# Patches for ncurses 5.2 are in the subdirectory
# ftp://dickey.his.com/ncurses/5.2
#
# ------------------------------------------------------------------------------
# NEWS | 5 +++++
# dist.mk | 4 ++--
# mk-1st.awk | 4 ++--
# 3 files changed, 9 insertions(+), 4 deletions(-)
# ------------------------------------------------------------------------------
Index: NEWS
Prereq: 1.666
--- ncurses-5.2-20020126+/NEWS Sat Jan 26 12:53:08 2002
+++ ncurses-5.2-20020127/NEWS Sun Jan 27 18:37:39 2002
@@ -1,10 +1,14 @@
--- $Id: NEWS,v 1.666 2002/01/26 17:53:08 tom Exp $
+-- $Id: NEWS,v 1.667 2002/01/27 23:37:39 tom Exp $
This is a log of changes that ncurses has gone through since Zeyd started
working with Pavel Curtis' original work, pcurses, in 1992.
Changes through 1.9.9e are recorded by Zeyd M. Ben-Halim.
Changes since 1.9.9e are recorded by Thomas Dickey.
+
+20020127
+ + fix a typo in change to mk-1st.awk, which broke the shared-library
+ makefile rules (reported by Martin Mokrejs).
20020126
+ update config.guess, config.sub
Index: dist.mk
Prereq: 1.288
--- ncurses-5.2-20020126+/dist.mk Sat Jan 26 12:20:54 2002
+++ ncurses-5.2-20020127/dist.mk Sun Jan 27 18:32:09 2002
@@ -1,4 +1,4 @@
-# $Id: dist.mk,v 1.288 2002/01/26 17:20:54 tom Exp $
+# $Id: dist.mk,v 1.289 2002/01/27 23:32:09 tom Exp $
# Makefile for creating ncurses distributions.
#
# This only needs to be used directly as a makefile by developers, but
@@ -10,7 +10,7 @@
# These define the major/minor/patch versions of ncurses.
NCURSES_MAJOR = 5
NCURSES_MINOR = 2
-NCURSES_PATCH = 20020126
+NCURSES_PATCH = 20020127
# We don't append the patch to the version, since this only applies to releases
VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR)
Index: mk-1st.awk
Prereq: 1.52
--- ncurses-5.2-20020126+/mk-1st.awk Sat Jan 26 21:09:37 2002
+++ ncurses-5.2-20020127/mk-1st.awk Sun Jan 27 18:37:05 2002
@@ -1,4 +1,4 @@
-# $Id: mk-1st.awk,v 1.52 2002/01/27 02:09:37 tom Exp $
+# $Id: mk-1st.awk,v 1.53 2002/01/27 23:37:05 tom Exp $
##############################################################################
# Copyright (c) 1998,2000,2002 Free Software Foundation, Inc. #
# #
@@ -176,7 +176,7 @@
} else {
if ( ShlibVer == "rel" ) {
end_name = rel_name;
- } else if ( ShlibVer == "abi" ||
ShlibVer = "cygdll" ) {
+ } else if ( ShlibVer == "abi" ||
ShlibVer == "cygdll" ) {
end_name = abi_name;
} else {
end_name = lib_name;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- ncurses-5.2-20020127.patch.gz,
Thomas Dickey <=