From: Thomas E. Dickey Date: Sun, 11 Mar 2007 14:41:19 +0000 (+0000) Subject: ncurses 5.6 - patch 20070311 X-Git-Tag: v5.7~77 X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commitdiff_plain;h=b5a763d403a45cf54f774f07e1542d4ca8433e2b;ds=sidebyside ncurses 5.6 - patch 20070311 + fix mk-1st.awk script install_shlib() function, broken in 20070224 changes for cygwin (report by Michail Vidiassov). --- diff --git a/NEWS b/NEWS index d52a33b9..2e894fec 100644 --- a/NEWS +++ b/NEWS @@ -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 diff --git a/dist.mk b/dist.mk index 6faeb254..acbbf7d6 100644 --- a/dist.mk +++ b/dist.mk @@ -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) diff --git a/mk-1st.awk b/mk-1st.awk index 87a8b414..991f47f9 100644 --- a/mk-1st.awk +++ b/mk-1st.awk @@ -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) {