]> ncurses.scripts.mit.edu Git - ncurses.git/commitdiff
ncurses 5.6 - patch 20070311
authorThomas E. Dickey <dickey@invisible-island.net>
Sun, 11 Mar 2007 14:41:19 +0000 (14:41 +0000)
committerThomas E. Dickey <dickey@invisible-island.net>
Sun, 11 Mar 2007 14:41:19 +0000 (14:41 +0000)
+ fix mk-1st.awk script install_shlib() function, broken in 20070224
  changes for cygwin (report by  Michail Vidiassov).

NEWS
dist.mk
mk-1st.awk

diff --git a/NEWS b/NEWS
index d52a33b99cb0ca76de132cff0e188854b7225a7f..2e894fec2dd8f807eaf9f59c8a6e8b3b7d96c8c4 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -25,7 +25,7 @@
 -- sale, use or other dealings in this Software without prior written        --
 -- authorization.                                                            --
 -------------------------------------------------------------------------------
 -- 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
 -------------------------------------------------------------------------------
 
 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.
 
 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
 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 6faeb254e78a395e9f3ea494c49911f69246a7ca..acbbf7d640f9a0d9f5a5d9da726f1c8dfa80e269 100644 (file)
--- a/dist.mk
+++ b/dist.mk
@@ -25,7 +25,7 @@
 # use or other dealings in this Software without prior written               #
 # authorization.                                                             #
 ##############################################################################
 # 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
 # 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
 # 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)
 
 # We don't append the patch to the version, since this only applies to releases
 VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR)
index 87a8b414df000cc15c131b26c19721c08e48ca54..991f47f93333491a0f689c290402140ad37ac522 100644 (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.                #
 #                                                                            #
 ##############################################################################
 # 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);
 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", 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;
                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) {
                sharedlinks(directory)
        }
 function install_dll(directory,filename) {