]> ncurses.scripts.mit.edu Git - ncurses.git/commitdiff
ncurses 5.9 - patch 20110626
authorThomas E. Dickey <dickey@invisible-island.net>
Mon, 27 Jun 2011 00:36:16 +0000 (00:36 +0000)
committerThomas E. Dickey <dickey@invisible-island.net>
Mon, 27 Jun 2011 00:36:16 +0000 (00:36 +0000)
+ move include of nc_termios.h out of term_entry.h, since the latter
  is installed, e.g., for tack while the former is not (report by
  Sven Joachim).

NEWS
dist.mk
include/term_entry.h
progs/progs.priv.h

diff --git a/NEWS b/NEWS
index c1a3665c3e2452b6a84fce20bb5dc1b676bb8769..6a39fa36a969754b5c57d8b3476e4bab753ea895 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.1726 2011/06/25 21:20:22 tom Exp $
+-- $Id: NEWS,v 1.1727 2011/06/26 10:37:58 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,11 @@ 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.
 
+20110626
+       + move include of nc_termios.h out of term_entry.h, since the latter
+         is installed, e.g., for tack while the former is not (report by
+         Sven Joachim).
+
 20110625
        + improve cleanup() function in lib_tstp.c, using _exit() rather than
          exit() and checking for SIGTERM rather than SIGQUIT (prompted by
 20110625
        + improve cleanup() function in lib_tstp.c, using _exit() rather than
          exit() and checking for SIGTERM rather than SIGQUIT (prompted by
diff --git a/dist.mk b/dist.mk
index 3397ff2dd4a8f4d5bfe1a8c79ec4ebb5b80ed4c2..9aed7af6e399e531d5f16586eca193d8cf9f85fe 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.822 2011/06/25 19:02:07 tom Exp $
+# $Id: dist.mk,v 1.823 2011/06/26 09:32:11 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 = 9
 # These define the major/minor/patch versions of ncurses.
 NCURSES_MAJOR = 5
 NCURSES_MINOR = 9
-NCURSES_PATCH = 20110625
+NCURSES_PATCH = 20110626
 
 # 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 cd496fa31b875bd9ec98b05e6800f25710c0de8d..bc715a7eeedb1dfb42d8f804fc25818c8d741e12 100644 (file)
@@ -32,7 +32,7 @@
  *     and: Thomas E. Dickey                        1998-on                 *
  ****************************************************************************/
 
  *     and: Thomas E. Dickey                        1998-on                 *
  ****************************************************************************/
 
-/* $Id: term_entry.h,v 1.38 2011/06/25 20:51:00 tom Exp $ */
+/* $Id: term_entry.h,v 1.39 2011/06/26 09:31:32 tom Exp $ */
 
 /*
  *     term_entry.h -- interface to entry-manipulation code
 
 /*
  *     term_entry.h -- interface to entry-manipulation code
@@ -46,7 +46,6 @@ extern "C" {
 #endif
 
 #include <term.h>
 #endif
 
 #include <term.h>
-#include <nc_termios.h>
 
 #define MAX_USES       32
 #define MAX_CROSSLINKS 16
 
 #define MAX_USES       32
 #define MAX_CROSSLINKS 16
index 363b1b9e5df3a6c1242815eda40222faae9c454c..63ff9a7bedc48649de12211c9d3505da2697ebb6 100644 (file)
@@ -30,7 +30,7 @@
  *  Author: Thomas E. Dickey                    1997-on                     *
  ****************************************************************************/
 /*
  *  Author: Thomas E. Dickey                    1997-on                     *
  ****************************************************************************/
 /*
- * $Id: progs.priv.h,v 1.35 2011/04/23 22:33:09 tom Exp $
+ * $Id: progs.priv.h,v 1.36 2011/06/26 09:31:22 tom Exp $
  *
  *     progs.priv.h
  *
  *
  *     progs.priv.h
  *
@@ -109,6 +109,7 @@ extern int optind;
 
 #include <curses.h>
 #include <term_entry.h>
 
 #include <curses.h>
 #include <term_entry.h>
+#include <nc_termios.h>
 #include <tic.h>
 #include <nc_tparm.h>
 
 #include <tic.h>
 #include <nc_tparm.h>