]> ncurses.scripts.mit.edu Git - ncurses.git/commitdiff
ncurses 5.9 - patch 20131014
authorThomas E. Dickey <dickey@invisible-island.net>
Mon, 14 Oct 2013 22:13:49 +0000 (22:13 +0000)
committerThomas E. Dickey <dickey@invisible-island.net>
Mon, 14 Oct 2013 22:13:49 +0000 (22:13 +0000)
+ fix new typo in CF_ADA_INCLUDE_DIRS macro (report by Roumen Petrov).

12 files changed:
Ada95/aclocal.m4
Ada95/configure
NEWS
aclocal.m4
configure
dist.mk
package/debian-mingw/changelog
package/debian-mingw64/changelog
package/debian/changelog
package/mingw-ncurses.nsi
package/mingw-ncurses.spec
package/ncurses.spec

index 2dfa5d0c047f1ea9857740bade8100cb67e36ec6..4391e02fa51521ff6f91e640003432eb744c78a5 100644 (file)
@@ -28,7 +28,7 @@ dnl***************************************************************************
 dnl
 dnl Author: Thomas E. Dickey
 dnl
-dnl $Id: aclocal.m4,v 1.73 2013/10/12 21:01:04 tom Exp $
+dnl $Id: aclocal.m4,v 1.74 2013/10/14 08:48:41 tom Exp $
 dnl Macros used in NCURSES Ada95 auto-configuration script.
 dnl
 dnl These macros are maintained separately from NCURSES.  The copyright on
@@ -65,7 +65,7 @@ define([CF_ACVERSION_COMPARE],
 [ifelse([$8], , ,[$8])],
 [ifelse([$9], , ,[$9])])])dnl
 dnl ---------------------------------------------------------------------------
-dnl CF_ADA_INCLUDE_DIRS version: 7 updated: 2013/10/12 16:45:09
+dnl CF_ADA_INCLUDE_DIRS version: 8 updated: 2013/10/14 04:24:07
 dnl -------------------
 dnl Construct the list of include-options for the C programs in the Ada95
 dnl binding.
@@ -79,7 +79,7 @@ if test "$GCC" != yes; then
        ACPPFLAGS="$ACPPFLAGS -I\${includedir}"
 elif test "$includedir" != "/usr/include"; then
        if test "$includedir" = '${prefix}/include' ; then
-               if test x$prefix != /usr ; then
+               if test x$prefix != x/usr ; then
                        ACPPFLAGS="$ACPPFLAGS -I\${includedir}"
                fi
        else
index f81cf90c23afb9b6930897fda231678052474272..18328945f61a8cd22f4267135e4f067171bb712c 100644 (file)
@@ -11858,7 +11858,7 @@ if test "$GCC" != yes; then
        ACPPFLAGS="$ACPPFLAGS -I\${includedir}"
 elif test "$includedir" != "/usr/include"; then
        if test "$includedir" = '${prefix}/include' ; then
-               if test x$prefix != /usr ; then
+               if test x$prefix != x/usr ; then
                        ACPPFLAGS="$ACPPFLAGS -I\${includedir}"
                fi
        else
diff --git a/NEWS b/NEWS
index 09c7447cb71ffc034f71bb48fcc63b3f18a9483b..b1d35785348bbbf467d45eda840665cb21d9a734 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -25,7 +25,7 @@
 -- sale, use or other dealings in this Software without prior written        --
 -- authorization.                                                            --
 -------------------------------------------------------------------------------
--- $Id: NEWS,v 1.2117 2013/10/12 23:15:23 tom Exp $
+-- $Id: NEWS,v 1.2119 2013/10/14 08:33:15 tom Exp $
 -------------------------------------------------------------------------------
 
 This is a log of changes that ncurses has gone through since Zeyd started
@@ -45,6 +45,9 @@ 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.
 
+20131014
+       + fix new typo in CF_ADA_INCLUDE_DIRS macro (report by Roumen Petrov).
+
 20131012
        + fix a few compiler warnings in progs and test.
        + minor fix to package/debian-mingw/rules, do not strip dll's.
index 04cf49b6e8aae93ab64999a4a7f927461568b514..c94aea4edc2c5872c003c515d55b8d250a72ad29 100644 (file)
@@ -28,7 +28,7 @@ dnl***************************************************************************
 dnl
 dnl Author: Thomas E. Dickey 1995-on
 dnl
-dnl $Id: aclocal.m4,v 1.680 2013/10/12 20:45:47 tom Exp $
+dnl $Id: aclocal.m4,v 1.681 2013/10/14 08:26:40 tom Exp $
 dnl Macros used in NCURSES auto-configuration script.
 dnl
 dnl These macros are maintained separately from NCURSES.  The copyright on
@@ -88,7 +88,7 @@ define([CF_ACVERSION_COMPARE],
 [ifelse([$8], , ,[$8])],
 [ifelse([$9], , ,[$9])])])dnl
 dnl ---------------------------------------------------------------------------
-dnl CF_ADA_INCLUDE_DIRS version: 7 updated: 2013/10/12 16:45:09
+dnl CF_ADA_INCLUDE_DIRS version: 8 updated: 2013/10/14 04:24:07
 dnl -------------------
 dnl Construct the list of include-options for the C programs in the Ada95
 dnl binding.
@@ -102,7 +102,7 @@ if test "$GCC" != yes; then
        ACPPFLAGS="$ACPPFLAGS -I\${includedir}"
 elif test "$includedir" != "/usr/include"; then
        if test "$includedir" = '${prefix}/include' ; then
-               if test x$prefix != /usr ; then
+               if test x$prefix != x/usr ; then
                        ACPPFLAGS="$ACPPFLAGS -I\${includedir}"
                fi
        else
index eb0672957ceec9738f48f2b83ef40ffb44c8ce41..dc82c37809e8e7bda39a9061cdaaadd7514e135e 100755 (executable)
--- a/configure
+++ b/configure
@@ -20213,7 +20213,7 @@ if test "$GCC" != yes; then
        ACPPFLAGS="$ACPPFLAGS -I\${includedir}"
 elif test "$includedir" != "/usr/include"; then
        if test "$includedir" = '${prefix}/include' ; then
-               if test x$prefix != /usr ; then
+               if test x$prefix != x/usr ; then
                        ACPPFLAGS="$ACPPFLAGS -I\${includedir}"
                fi
        else
diff --git a/dist.mk b/dist.mk
index 52c613d26438d43039b33c3f43efb51aeb6446bd..b9ff828242075210448d67630748e8856008569f 100644 (file)
--- 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.948 2013/10/12 16:11:35 tom Exp $
+# $Id: dist.mk,v 1.949 2013/10/14 08:22:29 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 = 20131012
+NCURSES_PATCH = 20131014
 
 # We don't append the patch to the version, since this only applies to releases
 VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR)
index 8b5c290a8f4d87fd909f83deb4366ac994cbd583..61fc90aac84fb35ba5f21885197e1e542a688206 100644 (file)
@@ -1,8 +1,8 @@
-ncurses6 (5.9-20131012) unstable; urgency=low
+ncurses6 (5.9-20131014) unstable; urgency=low
 
   * latest weekly patch
 
- -- Thomas E. Dickey <dickey@invisible-island.net>  Sat, 12 Oct 2013 19:17:29 -0400
+ -- Thomas E. Dickey <dickey@invisible-island.net>  Mon, 14 Oct 2013 04:22:29 -0400
 
 ncurses6 (5.9-20131005) unstable; urgency=low
 
index 8b5c290a8f4d87fd909f83deb4366ac994cbd583..61fc90aac84fb35ba5f21885197e1e542a688206 100644 (file)
@@ -1,8 +1,8 @@
-ncurses6 (5.9-20131012) unstable; urgency=low
+ncurses6 (5.9-20131014) unstable; urgency=low
 
   * latest weekly patch
 
- -- Thomas E. Dickey <dickey@invisible-island.net>  Sat, 12 Oct 2013 19:17:29 -0400
+ -- Thomas E. Dickey <dickey@invisible-island.net>  Mon, 14 Oct 2013 04:22:29 -0400
 
 ncurses6 (5.9-20131005) unstable; urgency=low
 
index c905d8c44cd223059eb76249fbc874c6a4fc20be..388ae01549cbda0b25c63f2edd4f1e322857f0e5 100644 (file)
@@ -1,8 +1,8 @@
-ncurses6 (5.9-20131012) unstable; urgency=low
+ncurses6 (5.9-20131014) unstable; urgency=low
 
   * latest weekly patch
 
- -- Thomas E. Dickey <dickey@invisible-island.net>  Sat, 12 Oct 2013 12:11:35 -0400
+ -- Thomas E. Dickey <dickey@invisible-island.net>  Mon, 14 Oct 2013 04:22:29 -0400
 
 ncurses6 (5.9-20120608) unstable; urgency=low
 
index 67cb268e20843a68d0739715c71fa8c4bfc4dc72..d2b6b94758bd43158433368f03e3da4dacf03bd5 100644 (file)
@@ -1,4 +1,4 @@
-; $Id: mingw-ncurses.nsi,v 1.4 2013/10/12 23:13:27 tom Exp $\r
+; $Id: mingw-ncurses.nsi,v 1.5 2013/10/14 08:22:29 tom Exp $\r
 \r
 ; TODO add examples\r
 ; TODO bump ABI to 6\r
@@ -10,7 +10,7 @@
 !define VERSION_MAJOR "5"\r
 !define VERSION_MINOR "9"\r
 !define VERSION_YYYY  "2013"\r
-!define VERSION_MMDD  "1012"\r
+!define VERSION_MMDD  "1014"\r
 !define VERSION_PATCH ${VERSION_YYYY}${VERSION_MMDD}\r
 \r
 !define MY_ABI   "5"\r
index 74e30e5323fda18df39ccec62fa51845d7d7f395..ab197b55d4d75faa079e3674da51a52f81a6dd4f 100644 (file)
@@ -3,7 +3,7 @@
 Summary: shared libraries for terminal handling
 Name: mingw32-ncurses6
 Release: 5.9
-Version: 20131012
+Version: 20131014
 License: X11
 Group: Development/Libraries
 Source: ncurses-%{release}-%{version}.tgz
index d3e32dfb1c7845321fdfe7f962461b68895bc0f9..4ed840a804b71c04dfb58733c9fb1b8bd9b0cd8a 100644 (file)
@@ -1,7 +1,7 @@
 Summary: shared libraries for terminal handling
 Name: ncurses6
 Release: 5.9
-Version: 20131012
+Version: 20131014
 License: X11
 Group: Development/Libraries
 Source: ncurses-%{release}-%{version}.tgz