2
0
mirror of https://github.com/Aigor44/ncursesw-morphos.git synced 2024-12-21 07:39:06 +08:00

ncurses 5.6 - patch 20070311

+ fix mk-1st.awk script install_shlib() function, broken in 20070224
  changes for cygwin (report by  Michail Vidiassov).
This commit is contained in:
Thomas E. Dickey 2007-03-11 14:41:19 +00:00
parent 0be8085145
commit b5a763d403
3 changed files with 10 additions and 9 deletions

6
NEWS
View File

@ -25,7 +25,7 @@
-- sale, use or other dealings in this Software without prior written --
-- authorization. --
-------------------------------------------------------------------------------
-- $Id: NEWS,v 1.1099 2007/03/11 00:10:14 tom Exp $
-- $Id: NEWS,v 1.1100 2007/03/11 13:57:53 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.
20070311
+ fix mk-1st.awk script install_shlib() function, broken in 20070224
changes for cygwin (report by Michail Vidiassov).
20070310
+ increase size of array in _nc_visbuf2n() to make "tic -v" work
properly in its similar_sgr() function (report/analysis by Peter

View File

@ -25,7 +25,7 @@
# use or other dealings in this Software without prior written #
# authorization. #
##############################################################################
# $Id: dist.mk,v 1.582 2007/03/10 15:04:55 tom Exp $
# $Id: dist.mk,v 1.583 2007/03/11 13:39:46 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 = 6
NCURSES_PATCH = 20070310
NCURSES_PATCH = 20070311
# We don't append the patch to the version, since this only applies to releases
VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR)

View File

@ -1,4 +1,4 @@
# $Id: mk-1st.awk,v 1.76 2007/03/03 20:26:06 tom Exp $
# $Id: mk-1st.awk,v 1.77 2007/03/11 13:37:22 tom Exp $
##############################################################################
# Copyright (c) 1998-2006,2007 Free Software Foundation, Inc. #
# #
@ -190,14 +190,11 @@ function shlib_build(directory) {
function shlib_install(directory) {
src_lib1 = sprintf("../lib/%s", end_name);
dst_lib1 = sprintf("%s/%s", directory, end_name);
printf "%s : \\\n", dst_libs
printf "%s : \\\n", dst_lib1
printf "\t\t%s \\\n", directory
printf "\t\t%s\n", src_libs
printf "\t\t%s\n", src_lib1
printf "\t@echo installing $@\n"
printf "\t$(INSTALL_LIB) %s %s\n", src_lib1, dst_lib1;
if ( src_lib2 != "" ) {
printf "\t$(INSTALL_LIB) %s %s\n", src_lib2, dst_lib2;
}
sharedlinks(directory)
}
function install_dll(directory,filename) {