mirror of
https://github.com/ThomasDickey/ncurses-snapshots.git
synced 2026-01-26 19:09:16 +00:00
snapshot of project "ncurses", label v5_9_20120331
This commit is contained in:
parent
f94f7395fe
commit
05273a880b
96
Ada95/aclocal.m4
vendored
96
Ada95/aclocal.m4
vendored
@ -28,7 +28,7 @@ dnl***************************************************************************
|
||||
dnl
|
||||
dnl Author: Thomas E. Dickey
|
||||
dnl
|
||||
dnl $Id: aclocal.m4,v 1.46 2012/02/25 20:24:03 tom Exp $
|
||||
dnl $Id: aclocal.m4,v 1.49 2012/04/01 00:15:53 tom Exp $
|
||||
dnl Macros used in NCURSES Ada95 auto-configuration script.
|
||||
dnl
|
||||
dnl These macros are maintained separately from NCURSES. The copyright on
|
||||
@ -459,6 +459,35 @@ fi
|
||||
AC_SUBST(ARFLAGS)
|
||||
])
|
||||
dnl ---------------------------------------------------------------------------
|
||||
dnl CF_ARG_DISABLE version: 3 updated: 1999/03/30 17:24:31
|
||||
dnl --------------
|
||||
dnl Allow user to disable a normally-on option.
|
||||
AC_DEFUN([CF_ARG_DISABLE],
|
||||
[CF_ARG_OPTION($1,[$2],[$3],[$4],yes)])dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
dnl CF_ARG_OPTION version: 4 updated: 2010/05/26 05:38:42
|
||||
dnl -------------
|
||||
dnl Restricted form of AC_ARG_ENABLE that ensures user doesn't give bogus
|
||||
dnl values.
|
||||
dnl
|
||||
dnl Parameters:
|
||||
dnl $1 = option name
|
||||
dnl $2 = help-string
|
||||
dnl $3 = action to perform if option is not default
|
||||
dnl $4 = action if perform if option is default
|
||||
dnl $5 = default option value (either 'yes' or 'no')
|
||||
AC_DEFUN([CF_ARG_OPTION],
|
||||
[AC_ARG_ENABLE([$1],[$2],[test "$enableval" != ifelse([$5],no,yes,no) && enableval=ifelse([$5],no,no,yes)
|
||||
if test "$enableval" != "$5" ; then
|
||||
ifelse([$3],,[ :]dnl
|
||||
,[ $3]) ifelse([$4],,,[
|
||||
else
|
||||
$4])
|
||||
fi],[enableval=$5 ifelse([$4],,,[
|
||||
$4
|
||||
])dnl
|
||||
])])dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
dnl CF_BUILD_CC version: 6 updated: 2006/10/14 15:23:15
|
||||
dnl -----------
|
||||
dnl If we're cross-compiling, allow the user to override the tools and their
|
||||
@ -673,6 +702,43 @@ dnl ----------
|
||||
dnl "dirname" is not portable, so we fake it with a shell script.
|
||||
AC_DEFUN([CF_DIRNAME],[$1=`echo $2 | sed -e 's%/[[^/]]*$%%'`])dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
dnl CF_DISABLE_ECHO version: 11 updated: 2009/12/13 13:16:57
|
||||
dnl ---------------
|
||||
dnl You can always use "make -n" to see the actual options, but it's hard to
|
||||
dnl pick out/analyze warning messages when the compile-line is long.
|
||||
dnl
|
||||
dnl Sets:
|
||||
dnl ECHO_LT - symbol to control if libtool is verbose
|
||||
dnl ECHO_LD - symbol to prefix "cc -o" lines
|
||||
dnl RULE_CC - symbol to put before implicit "cc -c" lines (e.g., .c.o)
|
||||
dnl SHOW_CC - symbol to put before explicit "cc -c" lines
|
||||
dnl ECHO_CC - symbol to put before any "cc" line
|
||||
dnl
|
||||
AC_DEFUN([CF_DISABLE_ECHO],[
|
||||
AC_MSG_CHECKING(if you want to see long compiling messages)
|
||||
CF_ARG_DISABLE(echo,
|
||||
[ --disable-echo display "compiling" commands],
|
||||
[
|
||||
ECHO_LT='--silent'
|
||||
ECHO_LD='@echo linking [$]@;'
|
||||
RULE_CC='@echo compiling [$]<'
|
||||
SHOW_CC='@echo compiling [$]@'
|
||||
ECHO_CC='@'
|
||||
],[
|
||||
ECHO_LT=''
|
||||
ECHO_LD=''
|
||||
RULE_CC=''
|
||||
SHOW_CC=''
|
||||
ECHO_CC=''
|
||||
])
|
||||
AC_MSG_RESULT($enableval)
|
||||
AC_SUBST(ECHO_LT)
|
||||
AC_SUBST(ECHO_LD)
|
||||
AC_SUBST(RULE_CC)
|
||||
AC_SUBST(SHOW_CC)
|
||||
AC_SUBST(ECHO_CC)
|
||||
])dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
dnl CF_ENABLE_PC_FILES version: 7 updated: 2011/12/10 18:58:47
|
||||
dnl ------------------
|
||||
dnl This is the "--enable-pc-files" option, which is available if there is a
|
||||
@ -878,6 +944,25 @@ ifelse([$5],,AC_MSG_WARN(Cannot find $3 library),[$5])
|
||||
fi
|
||||
])dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
dnl CF_FIXUP_ADAFLAGS version: 1 updated: 2012/03/31 18:48:10
|
||||
dnl -----------------
|
||||
dnl make ADAFLAGS consistent with CFLAGS
|
||||
AC_DEFUN([CF_FIXUP_ADAFLAGS],[
|
||||
AC_MSG_CHECKING(optimization options for ADAFLAGS)
|
||||
case "$CFLAGS" in
|
||||
*-g*)
|
||||
CF_ADD_ADAFLAGS(-g)
|
||||
;;
|
||||
esac
|
||||
case "$CFLAGS" in
|
||||
*-O*)
|
||||
cf_O_flag=`echo "$CFLAGS" |sed -e 's/^.*-O/-O/' -e 's/[[ ]].*//'`
|
||||
CF_ADD_ADAFLAGS($cf_O_flag)
|
||||
;;
|
||||
esac
|
||||
AC_MSG_RESULT($ADAFLAGS)
|
||||
])dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
dnl CF_GCC_ATTRIBUTES version: 14 updated: 2010/10/23 15:52:32
|
||||
dnl -----------------
|
||||
dnl Test for availability of useful gcc __attribute__ directives to quiet
|
||||
@ -1002,7 +1087,7 @@ if test "$GCC" = yes ; then
|
||||
fi
|
||||
])dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
dnl CF_GCC_WARNINGS version: 27 updated: 2010/10/23 15:52:32
|
||||
dnl CF_GCC_WARNINGS version: 28 updated: 2012/03/31 20:10:46
|
||||
dnl ---------------
|
||||
dnl Check if the compiler supports useful warning options. There's a few that
|
||||
dnl we don't use, simply because they're too noisy:
|
||||
@ -1100,6 +1185,13 @@ then
|
||||
continue;;
|
||||
esac
|
||||
;;
|
||||
Wpointer-arith) #(vi
|
||||
case $GCC_VERSION in
|
||||
[[12]].*)
|
||||
CF_VERBOSE(feature is broken in gcc $GCC_VERSION)
|
||||
continue;;
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
|
||||
fi
|
||||
|
||||
2225
Ada95/configure
vendored
2225
Ada95/configure
vendored
File diff suppressed because it is too large
Load Diff
@ -28,14 +28,14 @@ dnl***************************************************************************
|
||||
dnl
|
||||
dnl Author: Thomas E. Dickey
|
||||
dnl
|
||||
dnl $Id: configure.in,v 1.39 2012/03/17 16:16:10 tom Exp $
|
||||
dnl $Id: configure.in,v 1.40 2012/03/31 22:57:57 tom Exp $
|
||||
dnl Process this file with autoconf to produce a configure script.
|
||||
dnl
|
||||
dnl See http://invisible-island.net/autoconf/ for additional information.
|
||||
dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
AC_PREREQ(2.13.20020210)
|
||||
AC_REVISION($Revision: 1.39 $)
|
||||
AC_REVISION($Revision: 1.40 $)
|
||||
AC_INIT(gen/gen.c)
|
||||
AC_CONFIG_HEADER(include/ncurses_cfg.h:include/ncurses_cfg.hin)
|
||||
|
||||
@ -54,7 +54,7 @@ cf_user_CFLAGS="$CFLAGS"
|
||||
CF_CFG_DEFAULTS
|
||||
|
||||
### Checks for programs.
|
||||
AC_PROG_CC
|
||||
AC_PROG_CC(gnatgcc gcc cc)
|
||||
CF_GCC_VERSION
|
||||
|
||||
AC_PROG_CPP
|
||||
@ -485,18 +485,7 @@ dnl At the moment we support no other Ada95 compiler.
|
||||
if test "$cf_with_ada" != "no" ; then
|
||||
CF_PROG_GNAT
|
||||
if test "$cf_cv_prog_gnat_correct" = yes; then
|
||||
|
||||
# make ADAFLAGS consistent with CFLAGS
|
||||
case "$CFLAGS" in
|
||||
*-g*)
|
||||
CF_ADD_ADAFLAGS(-g)
|
||||
;;
|
||||
esac
|
||||
case "$CFLAGS" in
|
||||
*-O*)
|
||||
CF_ADD_ADAFLAGS(-O3)
|
||||
;;
|
||||
esac
|
||||
CF_FIXUP_ADAFLAGS
|
||||
|
||||
CF_GNAT_GENERICS
|
||||
CF_GNAT_SIGINT
|
||||
|
||||
12
NEWS
12
NEWS
@ -25,7 +25,7 @@
|
||||
-- sale, use or other dealings in this Software without prior written --
|
||||
-- authorization. --
|
||||
-------------------------------------------------------------------------------
|
||||
-- $Id: NEWS,v 1.1883 2012/03/24 22:27:20 tom Exp $
|
||||
-- $Id: NEWS,v 1.1886 2012/03/31 23:44:45 tom Exp $
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
This is a log of changes that ncurses has gone through since Zeyd started
|
||||
@ -45,6 +45,16 @@ 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.
|
||||
|
||||
20120331
|
||||
+ update Ada95/configure to use CF_DISABLE_ECHO (cf: 20120317).
|
||||
+ correct order of use-clauses in st-256color -TD
|
||||
+ modify configure script to look for gnatgcc if the Ada95 binding
|
||||
is built, in preference to the default gcc/cc (suggested by
|
||||
Nicolas Boulenguez).
|
||||
+ modify configure script to ensure that the same -On option used for
|
||||
the C compiler in CFLAGS is used for ADAFLAGS rather than simply
|
||||
using -O3 (suggested by Nicolas Boulenguez)
|
||||
|
||||
20120324
|
||||
+ amend an old fix so that next_char() exits properly for empty files,
|
||||
e.g., from reading /dev/null (cf: 20080804).
|
||||
|
||||
30
aclocal.m4
vendored
30
aclocal.m4
vendored
@ -28,7 +28,7 @@ dnl***************************************************************************
|
||||
dnl
|
||||
dnl Author: Thomas E. Dickey 1995-on
|
||||
dnl
|
||||
dnl $Id: aclocal.m4,v 1.609 2012/03/17 16:08:47 tom Exp $
|
||||
dnl $Id: aclocal.m4,v 1.611 2012/04/01 00:13:31 tom Exp $
|
||||
dnl Macros used in NCURSES auto-configuration script.
|
||||
dnl
|
||||
dnl These macros are maintained separately from NCURSES. The copyright on
|
||||
@ -1540,6 +1540,25 @@ ifelse([$5],,AC_MSG_WARN(Cannot find $3 library),[$5])
|
||||
fi
|
||||
])dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
dnl CF_FIXUP_ADAFLAGS version: 1 updated: 2012/03/31 18:48:10
|
||||
dnl -----------------
|
||||
dnl make ADAFLAGS consistent with CFLAGS
|
||||
AC_DEFUN([CF_FIXUP_ADAFLAGS],[
|
||||
AC_MSG_CHECKING(optimization options for ADAFLAGS)
|
||||
case "$CFLAGS" in
|
||||
*-g*)
|
||||
CF_ADD_ADAFLAGS(-g)
|
||||
;;
|
||||
esac
|
||||
case "$CFLAGS" in
|
||||
*-O*)
|
||||
cf_O_flag=`echo "$CFLAGS" |sed -e 's/^.*-O/-O/' -e 's/[[ ]].*//'`
|
||||
CF_ADD_ADAFLAGS($cf_O_flag)
|
||||
;;
|
||||
esac
|
||||
AC_MSG_RESULT($ADAFLAGS)
|
||||
])dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
dnl CF_FUNC_DLSYM version: 2 updated: 2010/05/29 16:31:02
|
||||
dnl -------------
|
||||
dnl Test for dlsym() and related functions, as well as libdl.
|
||||
@ -1914,7 +1933,7 @@ if test "$GCC" = yes ; then
|
||||
fi
|
||||
])dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
dnl CF_GCC_WARNINGS version: 27 updated: 2010/10/23 15:52:32
|
||||
dnl CF_GCC_WARNINGS version: 28 updated: 2012/03/31 20:10:46
|
||||
dnl ---------------
|
||||
dnl Check if the compiler supports useful warning options. There's a few that
|
||||
dnl we don't use, simply because they're too noisy:
|
||||
@ -2012,6 +2031,13 @@ then
|
||||
continue;;
|
||||
esac
|
||||
;;
|
||||
Wpointer-arith) #(vi
|
||||
case $GCC_VERSION in
|
||||
[[12]].*)
|
||||
CF_VERBOSE(feature is broken in gcc $GCC_VERSION)
|
||||
continue;;
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
|
||||
fi
|
||||
|
||||
34
configure.in
34
configure.in
@ -28,14 +28,14 @@ dnl***************************************************************************
|
||||
dnl
|
||||
dnl Author: Thomas E. Dickey 1995-on
|
||||
dnl
|
||||
dnl $Id: configure.in,v 1.547 2012/03/17 17:08:08 tom Exp $
|
||||
dnl $Id: configure.in,v 1.549 2012/04/01 00:09:52 tom Exp $
|
||||
dnl Process this file with autoconf to produce a configure script.
|
||||
dnl
|
||||
dnl See http://invisible-island.net/autoconf/ for additional information.
|
||||
dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
AC_PREREQ(2.13.20020210)
|
||||
AC_REVISION($Revision: 1.547 $)
|
||||
AC_REVISION($Revision: 1.549 $)
|
||||
AC_INIT(ncurses/base/lib_initscr.c)
|
||||
AC_CONFIG_HEADER(include/ncurses_cfg.h:include/ncurses_cfg.hin)
|
||||
|
||||
@ -58,7 +58,18 @@ cf_user_CFLAGS="$CFLAGS"
|
||||
CF_CFG_DEFAULTS
|
||||
|
||||
### Checks for programs.
|
||||
AC_PROG_CC
|
||||
AC_ARG_WITH(ada,
|
||||
[ --without-ada suppress check for Ada95, don't build demo],
|
||||
[cf_with_ada=$withval],
|
||||
[cf_with_ada=yes])
|
||||
if test x"$cf_with_ada" = xyes
|
||||
then
|
||||
cf_PROG_CC="gnatgcc gcc cc"
|
||||
else
|
||||
cf_PROG_CC="gcc cc"
|
||||
fi
|
||||
|
||||
AC_PROG_CC($cf_PROG_CC)
|
||||
CF_GCC_VERSION
|
||||
|
||||
AC_PROG_CPP
|
||||
@ -118,10 +129,6 @@ AC_ARG_WITH(cxx-binding,
|
||||
AC_MSG_RESULT($cf_with_cxx_binding)
|
||||
|
||||
AC_MSG_CHECKING(if you want to build with Ada95)
|
||||
AC_ARG_WITH(ada,
|
||||
[ --without-ada suppress check for Ada95, don't build demo],
|
||||
[cf_with_ada=$withval],
|
||||
[cf_with_ada=yes])
|
||||
AC_MSG_RESULT($cf_with_ada)
|
||||
|
||||
AC_MSG_CHECKING(if you want to install manpages)
|
||||
@ -1564,18 +1571,7 @@ dnl At the moment we support no other Ada95 compiler.
|
||||
CF_PROG_GNAT
|
||||
if test "$cf_cv_prog_gnat_correct" = yes; then
|
||||
CF_ADD_ADAFLAGS(-gnatpn)
|
||||
|
||||
# make ADAFLAGS consistent with CFLAGS
|
||||
case "$CFLAGS" in
|
||||
*-g*)
|
||||
CF_ADD_ADAFLAGS(-g)
|
||||
;;
|
||||
esac
|
||||
case "$CFLAGS" in
|
||||
*-O*)
|
||||
CF_ADD_ADAFLAGS(-O3)
|
||||
;;
|
||||
esac
|
||||
CF_FIXUP_ADAFLAGS
|
||||
|
||||
CF_GNAT_GENERICS
|
||||
CF_GNAT_SIGINT
|
||||
|
||||
4
dist.mk
4
dist.mk
@ -25,7 +25,7 @@
|
||||
# use or other dealings in this Software without prior written #
|
||||
# authorization. #
|
||||
##############################################################################
|
||||
# $Id: dist.mk,v 1.865 2012/03/24 18:16:44 tom Exp $
|
||||
# $Id: dist.mk,v 1.866 2012/03/31 15:04:31 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 = 20120324
|
||||
NCURSES_PATCH = 20120331
|
||||
|
||||
# We don't append the patch to the version, since this only applies to releases
|
||||
VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR)
|
||||
|
||||
@ -6,8 +6,8 @@
|
||||
# Report bugs and new terminal descriptions to
|
||||
# bug-ncurses@gnu.org
|
||||
#
|
||||
# $Revision: 1.419 $
|
||||
# $Date: 2012/02/11 21:41:45 $
|
||||
# $Revision: 1.427 $
|
||||
# $Date: 2012/03/27 09:57:34 $
|
||||
#
|
||||
# The original header is preserved below for reference. It is noted that there
|
||||
# is a "newer" version which differs in some cosmetic details (but actually
|
||||
@ -907,7 +907,7 @@ linux-basic|linux console,
|
||||
khome=\E[1~, kich1=\E[2~, kmous=\E[M, knp=\E[6~, kpp=\E[5~,
|
||||
kspd=^Z, nel=^M^J, rc=\E8, rev=\E[7m, ri=\EM, rmam=\E[?7l,
|
||||
rmir=\E[4l, rmso=\E[27m, rmul=\E[24m, rs1=\Ec\E]R, sc=\E7,
|
||||
sgr=\E[0;10%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p6%t;1%;%?%p7%t;8%;%?%p9%t;11%;m,
|
||||
sgr=\E[0;10%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p6%t;1%;%?%p9%t;11%;m,
|
||||
smam=\E[?7h, smir=\E[4h, smul=\E[4m, tbc=\E[3g,
|
||||
vpa=\E[%i%p1%dd, use=vt102+enq, use=klone+sgr,
|
||||
use=ecma+color,
|
||||
@ -944,7 +944,7 @@ linux2.2|linux 2.2.x console,
|
||||
# However, SCS is buggy (see comment in Debian #515609) -TD
|
||||
linux2.6|linux 2.6.x console,
|
||||
rmacs=^O,
|
||||
sgr=\E[0;10%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p6%t;1%;%?%p7%t;8%;m%?%p9%t\016%e\017%;,
|
||||
sgr=\E[0;10%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p6%t;1%;m%?%p9%t\016%e\017%;,
|
||||
sgr0=\E[m\017, smacs=^N, use=linux2.2,
|
||||
|
||||
# The 3.0 kernel adds support for clearing scrollback buffer (capability E3).
|
||||
@ -4796,7 +4796,7 @@ st-16color|simpleterm with 16-colors,
|
||||
# shown in the titlebar.
|
||||
st-256color|simpleterm with 256 colors,
|
||||
ccc@,
|
||||
initc@, use=simpleterm, use=xterm+256color,
|
||||
initc@, use=xterm+256color, use=simpleterm,
|
||||
|
||||
### TERMINATOR
|
||||
# http://software.jessies.org/terminator/
|
||||
@ -5814,7 +5814,7 @@ cygwin|ansi emulation for Cygwin,
|
||||
rmacs=\E[10m, rmcup=\E[2J\E[?47l\E8, rmir=\E[4l,
|
||||
rmpch=\E[10m, rmso=\E[27m, rmul=\E[24m, rs1=\Ec\E]R,
|
||||
sc=\E7, setab=\E[4%p1%dm, setaf=\E[3%p1%dm,
|
||||
sgr=\E[0;10%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;%?%p7%t;8%;%?%p9%t;11%;m,
|
||||
sgr=\E[0;10%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p6%t;1%;%?%p7%t;8%;%?%p9%t;11%;m,
|
||||
sgr0=\E[0;10m, smacs=\E[11m, smcup=\E7\E[?47h,
|
||||
smir=\E[4h, smpch=\E[11m, smso=\E[7m, smul=\E[4m, tsl=\E];,
|
||||
vpa=\E[%i%p1%dd, use=vt102+enq,
|
||||
@ -5849,7 +5849,7 @@ cygwinDBG|Debug Version for Cygwin,
|
||||
rc=\E8, rev=\E[7m, ri=\EM, rmacs=\E[10m, rmir=\E[4l,
|
||||
rmso=\E[m, rmul=\E[m, rs1=\Ec\E]R, sc=\E7,
|
||||
setab=\E[4%p1%dm, setaf=\E[3%p1%dm,
|
||||
sgr=\E[0;10%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;%?%p7%t;8%;%?%p9%t;12%;m,
|
||||
sgr=\E[0;10%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p6%t;1%;%?%p7%t;8%;%?%p9%t;12%;m,
|
||||
sgr0=\E[0;10m, smacs=\E[11m, smir=\E[4h, smso=\E[7m,
|
||||
smul=\E[4m, tbc=\E[3g, vpa=\E[%i%p1%dd, use=vt102+enq,
|
||||
|
||||
@ -8482,8 +8482,8 @@ tvi9065|televideo 9065,
|
||||
rmxon=^N, rs1=\EC\EDF\E[0;0v\E[8;1v\E[=65l,
|
||||
rs2=\E.b\E[10;20v\E[14;1v\E[3;0v\E[7;0v\E[=11.h\E[=12.h\E[=13.h\E[=14.h\E[=15l\E[=20h\E[=60l\E[=61h\E[=9l\E[=10l\E[=21l\E[=23l\E[=3l\E_40\E_50\En\Ew\Ee \Ex0\0\0\Ex1\0\0\Ex2\0\0\Ex3\0\0\Ex4\0\0\E1,
|
||||
rs3=\E[=19h\E.3\E9\E0O\0\0\0\0\0\E0o\0\0\0\0\0\E0J\177\0\0\0\0,
|
||||
sgr=\EG0%?%p1%t\EGt%;%?%p2%t\EG8%;%?%p3%t\EG4%;%?%p4%t\EG2%;%?%p5%t\EGp%;%?%p6%t\EG\,%;%?%p7%t\EG1%;%?%p9%t\E$%e\E%%%;,
|
||||
sgr0=\EG0, smacs=\E$, smam=\E=7h, smcup=\E.2, smdc=\Er,
|
||||
sgr=\EG0%?%p1%t\EGt%;%?%p2%t\EG8%;%?%p3%t\EG4%;%?%p4%t\EG2%;%?%p5%t\EGp%;%?%p6%t\EG\,%;%?%p7%t\EG1%;%?%p8%t\E&%;%?%p9%t\E$%e\E%%%;,
|
||||
sgr0=\EG0\E%, smacs=\E$, smam=\E=7h, smcup=\E.2, smdc=\Er,
|
||||
smir=\Eq, smln=\E[4;2v, smso=\EGt, smul=\EG8, smxon=^O,
|
||||
tbc=\E3, tsl=\E[4;1v\E_30, uc=\EG8\EG0,
|
||||
|
||||
@ -10554,7 +10554,7 @@ att5425|tty5425|att4425|AT&T 4425/5425,
|
||||
rev=\E[7m, ri=\EM, rin=\E[%p1%dF, rmacs=^O, rmam=\E[?7l,
|
||||
rmir=\E[4l, rmkx=\E[21;0j\E[25;1j\212, rmln=\E|,
|
||||
rmso=\E[m, rmul=\E[m, rs2=\Ec\E[?3l\E[2;0y, sc=\E7,
|
||||
sgr=\E[0%?%p1%p5%|%t;2%;%?%p2%p6%|%t;4%;%?%p4%t;5%;%?%p3%p1%|%p6%|%t;7%;%?%p7%t;8%;m%?%p9%t\016%e\017%;,
|
||||
sgr=\E[0%?%p5%p6%|%t;2%;%?%p2%t;4%;%?%p4%t;5%;%?%p3%p1%|%p6%|%t;7%;%?%p7%t;8%;m%?%p8%t\EV%;%?%p9%t\016%e\017%;,
|
||||
sgr0=\E[m\017, smacs=^N, smam=\E[?7h, smir=\E[4h,
|
||||
smkx=\E[21;1j\E[25;4j\Eent\E~, smln=\E~, smso=\E[7m,
|
||||
smul=\E[4m, tbc=\E[3g, tsl=\E7\E[25;%p1%{8}%+%dH,
|
||||
@ -11011,7 +11011,7 @@ att630|AT&T 630 windowing terminal,
|
||||
mc5=\E[?5i, nel=^M^J, pfx=\E[%p1%d;%p2%l%dq%p2%s, rc=\E8,
|
||||
rev=\E[7m, ri=\EM, rin=\E[%p1%dT, rmir=\E[4l, rmso=\E[m,
|
||||
rmul=\E[m, rs2=\Ec, sc=\E7,
|
||||
sgr=\E[0%?%p2%t;4%;%?%p1%p3%|%p4%|%p5%|%t;7%;m,
|
||||
sgr=\E[0%?%p5%t;2%;%?%p2%t;4%;%?%p4%t;5%;%?%p1%p3%|%p4%|%t;7%;m,
|
||||
sgr0=\E[m, smir=\E[4h, smso=\E[7m, smul=\E[4m,
|
||||
att630-24|5630-24|5630DMD-24|630MTG-24|AT&T 630 windowing terminal 24 lines,
|
||||
lines#24, use=att630,
|
||||
@ -11677,7 +11677,7 @@ aaa+rv|ann arbor ambassador in reverse video,
|
||||
aaa+dec|ann arbor ambassador in dec vt100 mode,
|
||||
acsc=aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}},
|
||||
csr=\E[%i%p1%d;%p2%dr, enacs=\E(0, rmacs=^N,
|
||||
sgr=\E[%?%p1%p3%|%!%t7;%;%?%p2%t4;%;%?%p4%t5;%;%?%p6%t1;%;%?%p7%t8;%;m%?%p9%t\017%e\016%;,
|
||||
sgr=\E[%?%p2%t4;%;%?%p4%t5;%;%?%p6%t1;%;%?%p1%p3%|%!%t7;%;%?%p7%t8;%;m%?%p9%t\017%e\016%;,
|
||||
smacs=^O,
|
||||
aaa-18|ann arbor ambassador/18 lines,
|
||||
lines#18,
|
||||
@ -11844,7 +11844,7 @@ aaa-rv-unk|ann arbor unknown type,
|
||||
blink=\E[5;7m, bold=\E[1;7m, home=\E[H, invis=\E[7;8m,
|
||||
is1=\E[7m\E7\E[H\E9\E8, rev=\E[m, rmso=\E[7m, rmul=\E[7m,
|
||||
rs1=\E[H\E[7m\E[J,
|
||||
sgr=\E[%?%p1%!%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p6%t1;%;%?%p7%t8;%;m,
|
||||
sgr=\E[%?%p6%t1;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p1%!%t7;%;%?%p7%t8;%;m,
|
||||
sgr0=\E[7m, smso=\E[m, smul=\E[4;7m,
|
||||
|
||||
#### Applied Digital Data Systems (adds)
|
||||
@ -15554,7 +15554,7 @@ ncr260vt100an|NCR 2900_260 vt100 with ansi kybd,
|
||||
rmkx=\E[?1l\E>, rmso=\E[0m, rmul=\E[0m,
|
||||
rs2=\E[!p\E[?7;19;67h\E[?1;3;4l\E(B\E)0\017\E[2J\E[1;1H\E>$<200>,
|
||||
sc=\E7,
|
||||
sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;$<20>,
|
||||
sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;%?%p7%t;8%;m%?%p9%t\016%e\017%;$<20>,
|
||||
sgr0=\E[0m\017$<20>, smacs=^N, smir=\E[4h,
|
||||
smkx=\E[?1h\E=, smso=\E[1;7m, smul=\E[4m, tbc=\E[3g,
|
||||
tsl=\E[2$~\E[1$}, vpa=\E[%p1%dd$<40>, use=vt220+keypad,
|
||||
@ -15611,7 +15611,7 @@ ncr260vt200an|NCR 2900_260 vt200 with ansi kybd,
|
||||
rmkx=\E[?1l\E>, rmso=\E[27m, rmul=\E[24m,
|
||||
rs2=\E[!p\E[?7;19;67h\E[?1;3;4l\E(B\E)0\017\E[2J\E[1;1H\E>$<200>,
|
||||
sc=\E7,
|
||||
sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;$<20>,
|
||||
sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;%?%p7%t;8%;m%?%p9%t\016%e\017%;$<20>,
|
||||
sgr0=\E[0m\017$<20>, smacs=\016$<20>, smam=\E[?7h,
|
||||
smir=\E[4h, smkx=\E[?1h\E=, smso=\E[7m, smul=\E[4m,
|
||||
tbc=\E[3g, tsl=\E[2$~\E[1$}, vpa=\E[%p1%dd$<40>,
|
||||
@ -15667,7 +15667,7 @@ ncr260vt300an|NCR 2900_260 vt300 with ansi kybd,
|
||||
rmul=\E[24m,
|
||||
rs2=\E[!p\E[?7;19;67h\E[?1;3;4l\E[1;0%w\E(B\E)0\017\E[2J\E[1;1H\E>$<200>,
|
||||
sc=\E7,
|
||||
sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;$<20>,
|
||||
sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;%?%p7%t;8%;m%?%p9%t\016%e\017%;$<20>,
|
||||
sgr0=\E[0m\017$<20>, smacs=\016$<20>, smam=\E[?7h,
|
||||
smir=\E[4h, smkx=\E[?1h\E=, smso=\E[7m, smul=\E[4m,
|
||||
tbc=\E[3g, tsl=\E[2$~\E[1$}, vpa=\E[%p1%dd$<40>,
|
||||
@ -22697,5 +22697,17 @@ v3220|LANPAR Vision II model 3220/3221/3222,
|
||||
#
|
||||
# 2012-02-11
|
||||
# * make sgr for xterm-pcolor agree with other caps -TD
|
||||
# * make sgr for att5425 agree with other caps -TD
|
||||
# * make sgr for att630 agree with other caps -TD
|
||||
# * make sgr for linux entries agree with other caps -TD
|
||||
# * make sgr for tvi9065 agree with other caps -TD
|
||||
# * make sgr for ncr260vt200an agree with other caps -TD
|
||||
# * make sgr for ncr160vt100pp agree with other caps -TD
|
||||
# * make sgr for ncr260vt300an agree with other caps -TD
|
||||
# * make sgr for aaa-60-dec-rv, aaa+dec agree with other caps -TD
|
||||
# * make sgr for cygwin, cygwinDBG agree with other caps -TD
|
||||
#
|
||||
# 2012-03-31
|
||||
# * correct order of use-clauses in st-256color -TD
|
||||
#
|
||||
######## SHANTIH! SHANTIH! SHANTIH!
|
||||
|
||||
11
test/aclocal.m4
vendored
11
test/aclocal.m4
vendored
@ -26,7 +26,7 @@ dnl sale, use or other dealings in this Software without prior written *
|
||||
dnl authorization. *
|
||||
dnl***************************************************************************
|
||||
dnl
|
||||
dnl $Id: aclocal.m4,v 1.74 2012/01/14 17:16:53 tom Exp $
|
||||
dnl $Id: aclocal.m4,v 1.75 2012/04/01 00:14:58 tom Exp $
|
||||
dnl
|
||||
dnl Author: Thomas E. Dickey
|
||||
dnl
|
||||
@ -1414,7 +1414,7 @@ if test "$GCC" = yes ; then
|
||||
fi
|
||||
])dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
dnl CF_GCC_WARNINGS version: 27 updated: 2010/10/23 15:52:32
|
||||
dnl CF_GCC_WARNINGS version: 28 updated: 2012/03/31 20:10:46
|
||||
dnl ---------------
|
||||
dnl Check if the compiler supports useful warning options. There's a few that
|
||||
dnl we don't use, simply because they're too noisy:
|
||||
@ -1512,6 +1512,13 @@ then
|
||||
continue;;
|
||||
esac
|
||||
;;
|
||||
Wpointer-arith) #(vi
|
||||
case $GCC_VERSION in
|
||||
[[12]].*)
|
||||
CF_VERBOSE(feature is broken in gcc $GCC_VERSION)
|
||||
continue;;
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
|
||||
fi
|
||||
|
||||
2202
test/configure
vendored
2202
test/configure
vendored
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user