Merge ^/head r358075 through r358130.
This commit is contained in:
parent
49ae389194
commit
4e7f425fc9
@ -9,7 +9,7 @@ env:
|
||||
CIRRUS_CLONE_DEPTH: 1
|
||||
|
||||
task:
|
||||
timeout_in: 90m
|
||||
timeout_in: 120m
|
||||
install_script:
|
||||
- pkg install -y qemu-devel uefi-edk2-qemu-x86_64
|
||||
script:
|
||||
|
5
UPDATING
5
UPDATING
@ -32,6 +32,11 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 13.x IS SLOW:
|
||||
information about prerequisites and upgrading, if you are not already
|
||||
using clang 3.5.0 or higher.
|
||||
|
||||
20200218:
|
||||
ncurses has been updated to a newer version (6.1-20200118). After an
|
||||
update some applications using ncurses may results have some rendering
|
||||
problems and would need to be rebuilt.
|
||||
|
||||
20200217:
|
||||
The size of struct vnet and the magic cookie have changed.
|
||||
Users need to recompile libkvm and all modules using VIMAGE
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,6 @@
|
||||
-------------------------------------------------------------------------------
|
||||
-- Copyright (c) 2006,2017 Free Software Foundation, Inc. --
|
||||
-- Copyright 2020 Thomas E. Dickey --
|
||||
-- Copyright 2006,2017 Free Software Foundation, Inc. --
|
||||
-- --
|
||||
-- Permission is hereby granted, free of charge, to any person obtaining a --
|
||||
-- copy of this software and associated documentation files (the --
|
||||
@ -25,7 +26,7 @@
|
||||
-- sale, use or other dealings in this Software without prior written --
|
||||
-- authorization. --
|
||||
-------------------------------------------------------------------------------
|
||||
-- $Id: AUTHORS,v 1.3 2017/02/04 15:20:52 tom Exp $
|
||||
-- $Id: AUTHORS,v 1.4 2020/02/02 23:34:34 tom Exp $
|
||||
-------------------------------------------------------------------------------
|
||||
These are the principal authors/contributors of ncurses since 1.9.9e,
|
||||
in decreasing order of their contribution:
|
||||
|
@ -1,4 +1,5 @@
|
||||
Copyright (c) 1998-2019,2020 Free Software Foundation, Inc.
|
||||
Copyright 2018-2019,2020 Thomas E. Dickey
|
||||
Copyright 1998-2017,2018 Free Software Foundation, Inc.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a
|
||||
copy of this software and associated documentation files (the
|
||||
@ -25,4 +26,4 @@ sale, use or other dealings in this Software without prior written
|
||||
authorization.
|
||||
|
||||
-- vile:txtmode fc=72
|
||||
-- $Id: COPYING,v 1.8 2020/01/04 14:49:29 tom Exp $
|
||||
-- $Id: COPYING,v 1.9 2020/02/08 13:34:12 tom Exp $
|
||||
|
@ -1,5 +1,6 @@
|
||||
-------------------------------------------------------------------------------
|
||||
-- Copyright (c) 1998-2019,2020 Free Software Foundation, Inc. --
|
||||
-- Copyright 2018-2019,2020 Thomas E. Dickey --
|
||||
-- Copyright 1998-2017,2018 Free Software Foundation, Inc. --
|
||||
-- --
|
||||
-- Permission is hereby granted, free of charge, to any person obtaining a --
|
||||
-- copy of this software and associated documentation files (the --
|
||||
@ -25,7 +26,7 @@
|
||||
-- sale, use or other dealings in this Software without prior written --
|
||||
-- authorization. --
|
||||
-------------------------------------------------------------------------------
|
||||
-- $Id: INSTALL,v 1.215 2020/01/18 17:02:13 tom Exp $
|
||||
-- $Id: INSTALL,v 1.217 2020/02/15 13:39:30 tom Exp $
|
||||
---------------------------------------------------------------------
|
||||
How to install Ncurses/Terminfo on your system
|
||||
---------------------------------------------------------------------
|
||||
@ -1342,6 +1343,43 @@ COMPATIBILITY WITH OLDER VERSIONS OF NCURSES:
|
||||
you may encounter when building a system with different versions of
|
||||
ncurses:
|
||||
|
||||
6.2 (Feb 12, 2020)
|
||||
Interface changes:
|
||||
|
||||
+ the terminal database must be compiled with ncurses 6.2 tic;
|
||||
older versions of tic/infocmp will not work. Aside from that,
|
||||
the compiled database will work with older applications.
|
||||
|
||||
+ "*.pc" and "ncurses*-config" files give the same information.
|
||||
|
||||
+ vwprintw and vwscanw are deprecated.
|
||||
|
||||
Added extensions:
|
||||
|
||||
+ These make it simpler to substitute a debug-configuration of the
|
||||
library for non-debug:
|
||||
curses_trace
|
||||
exit_curses
|
||||
exit_terminfo
|
||||
|
||||
Added internal functions (other than "_sp" variants):
|
||||
|
||||
+ These provide fast-lookup of common user-defined capabilities:
|
||||
_nc_find_user_entry
|
||||
_nc_get_userdefs_table
|
||||
_nc_get_hash_user
|
||||
|
||||
+ This is added to work around compiler-warnings:
|
||||
_nc_fmt_funcptr
|
||||
|
||||
Removed internal functions:
|
||||
|
||||
+ _nc_import_termtype
|
||||
|
||||
Modified internal functions:
|
||||
|
||||
+ _nc_reserve_pairs no longer returns a value
|
||||
|
||||
6.1 (Jan 27, 2018)
|
||||
Interface changes:
|
||||
|
||||
|
@ -123,6 +123,7 @@
|
||||
./Ada95/samples/sample-text_io_demo.ads
|
||||
./Ada95/samples/sample.adb
|
||||
./Ada95/samples/sample.ads
|
||||
./Ada95/samples/split-path.awk
|
||||
./Ada95/samples/status.adb
|
||||
./Ada95/samples/status.ads
|
||||
./Ada95/samples/tour.adb
|
||||
@ -894,6 +895,7 @@
|
||||
./ncurses/llib-ltinfow
|
||||
./ncurses/modules
|
||||
./ncurses/new_pair.h
|
||||
./ncurses/report_hashing.c
|
||||
./ncurses/report_offsets.c
|
||||
./ncurses/tinfo/MKcaptab.awk
|
||||
./ncurses/tinfo/MKcaptab.sh
|
||||
|
@ -1,6 +1,7 @@
|
||||
# $Id: Makefile.in,v 1.42 2019/01/06 00:35:11 tom Exp $
|
||||
# $Id: Makefile.in,v 1.43 2020/02/02 23:34:34 tom Exp $
|
||||
##############################################################################
|
||||
# Copyright (c) 1998-2018,2019 Free Software Foundation, Inc. #
|
||||
# Copyright 2018-2019,2020 Thomas E. Dickey #
|
||||
# Copyright 1998-2014,2015 Free Software Foundation, Inc. #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
|
@ -1,5 +1,6 @@
|
||||
##############################################################################
|
||||
# Copyright (c) 1998-2000,2006 Free Software Foundation, Inc. #
|
||||
# Copyright 2020 Thomas E. Dickey #
|
||||
# Copyright 1998-2000,2006 Free Software Foundation, Inc. #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
@ -25,7 +26,7 @@
|
||||
# use or other dealings in this Software without prior written #
|
||||
# authorization. #
|
||||
################################################################################
|
||||
# $Id: Makefile.os2,v 1.11 2006/04/22 21:46:17 tom Exp $
|
||||
# $Id: Makefile.os2,v 1.12 2020/02/02 23:34:34 tom Exp $
|
||||
#
|
||||
# Wrapper Makefile for ncurses library under OS/2.
|
||||
# Author: Juan Jose Garcia Ripoll <worm@arrakis.es>.
|
||||
|
@ -1,5 +1,6 @@
|
||||
-------------------------------------------------------------------------------
|
||||
-- Copyright (c) 1998-2019,2020 Free Software Foundation, Inc. --
|
||||
-- Copyright 2018-2019,2020 Thomas E. Dickey --
|
||||
-- Copyright 1998-2017,2018 Free Software Foundation, Inc. --
|
||||
-- --
|
||||
-- Permission is hereby granted, free of charge, to any person obtaining a --
|
||||
-- copy of this software and associated documentation files (the --
|
||||
@ -25,7 +26,7 @@
|
||||
-- sale, use or other dealings in this Software without prior written --
|
||||
-- authorization. --
|
||||
-------------------------------------------------------------------------------
|
||||
-- $Id: NEWS,v 1.3431 2020/01/19 02:02:44 tom Exp $
|
||||
-- $Id: NEWS,v 1.3450 2020/02/15 18:56:00 tom Exp $
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
This is a log of changes that ncurses has gone through since Zeyd started
|
||||
@ -45,6 +46,39 @@ 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.
|
||||
|
||||
20200215
|
||||
+ improve manual page for panel library, extending the portability
|
||||
section as well as documenting error-returns.
|
||||
+ show tic's version when installing terminal database in run_tic.sh
|
||||
+ correct check for gcc vs other compilers used in ncurses 6.0, from
|
||||
FreeBSD patch by Kyle Evans (cf: 20150725).
|
||||
+ add notes for 6.2 to INSTALL.
|
||||
|
||||
20200212 6.2 release for upload to ftp.gnu.org
|
||||
+ update release notes
|
||||
+ minor build-fixes, mostly to test-package scripts
|
||||
|
||||
20200208
|
||||
+ modify check for sizeof(wchar_t) to ensure it gives useful result
|
||||
when cross-compiling.
|
||||
+ drop assumption in configure script that Cygwin's linker is broken.
|
||||
+ define NCURSES_BROKEN_LINKER if the broken-linker feature is used,
|
||||
to simplify configure-checks for ncurses-examples.
|
||||
|
||||
20200202
|
||||
+ reassert copyright on ncurses, per discussion in ncurses FAQ:
|
||||
https://invisible-island.net/ncurses/ncurses.faq.html#relicensed
|
||||
|
||||
20200201
|
||||
+ modify comparison in make_hash.c to correct a special case in
|
||||
collision handling for Caps-hpux11
|
||||
+ add testing utility report_hashing to check hash-tables used for
|
||||
terminfo and termcap names.
|
||||
+ fix a missing prototype for _nc_free_and_exit().
|
||||
+ update a few comments about tack 1.07
|
||||
+ use an awk script to split too-long pathnames used in Ada95 sample
|
||||
programs for explain.txt
|
||||
|
||||
20200118
|
||||
+ expanded description of XM in user_caps.5
|
||||
+ improve xm example for xterm+x11mouse, xterm+sm+1006 -TD
|
||||
|
@ -1,5 +1,6 @@
|
||||
-------------------------------------------------------------------------------
|
||||
-- Copyright (c) 1998-2012,2018 Free Software Foundation, Inc. --
|
||||
-- Copyright 2020 Thomas E. Dickey --
|
||||
-- Copyright 1998-2012,2018 Free Software Foundation, Inc. --
|
||||
-- --
|
||||
-- Permission is hereby granted, free of charge, to any person obtaining a --
|
||||
-- copy of this software and associated documentation files (the --
|
||||
@ -25,7 +26,7 @@
|
||||
-- sale, use or other dealings in this Software without prior written --
|
||||
-- authorization. --
|
||||
-------------------------------------------------------------------------------
|
||||
-- $Id: README,v 1.27 2018/01/01 15:09:04 tom Exp $
|
||||
-- $Id: README,v 1.28 2020/02/02 23:34:34 tom Exp $
|
||||
-------------------------------------------------------------------------------
|
||||
README file for the ncurses package
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
-------------------------------------------------------------------------------
|
||||
-- Copyright (c) 2008-2011,2012 Free Software Foundation, Inc. --
|
||||
-- Copyright 2020 Thomas E. Dickey --
|
||||
-- Copyright 2008-2011,2012 Free Software Foundation, Inc. --
|
||||
-- --
|
||||
-- Permission is hereby granted, free of charge, to any person obtaining a --
|
||||
-- copy of this software and associated documentation files (the --
|
||||
@ -25,7 +26,7 @@
|
||||
-- sale, use or other dealings in this Software without prior written --
|
||||
-- authorization. --
|
||||
-------------------------------------------------------------------------------
|
||||
-- $Id: README.MinGW,v 1.9 2012/09/22 17:46:04 tom Exp $
|
||||
-- $Id: README.MinGW,v 1.10 2020/02/02 23:34:34 tom Exp $
|
||||
-- Author: Juergen Pfeifer
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
-------------------------------------------------------------------------------
|
||||
-- Copyright (c) 1998-2006,2018 Free Software Foundation, Inc. --
|
||||
-- Copyright 2020 Thomas E. Dickey --
|
||||
-- Copyright 1998-2006,2018 Free Software Foundation, Inc. --
|
||||
-- --
|
||||
-- Permission is hereby granted, free of charge, to any person obtaining a --
|
||||
-- copy of this software and associated documentation files (the --
|
||||
@ -25,7 +26,7 @@
|
||||
-- sale, use or other dealings in this Software without prior written --
|
||||
-- authorization. --
|
||||
-------------------------------------------------------------------------------
|
||||
-- $Id: README.emx,v 1.10 2018/01/01 15:09:55 tom Exp $
|
||||
-- $Id: README.emx,v 1.11 2020/02/02 23:34:34 tom Exp $
|
||||
-- Author: Thomas Dickey
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
-------------------------------------------------------------------------------
|
||||
-- Copyright (c) 1998-2010,2011 Free Software Foundation, Inc. --
|
||||
-- Copyright 2020 Thomas E. Dickey --
|
||||
-- Copyright 1998-2010,2011 Free Software Foundation, Inc. --
|
||||
-- --
|
||||
-- Permission is hereby granted, free of charge, to any person obtaining a --
|
||||
-- copy of this software and associated documentation files (the --
|
||||
@ -25,7 +26,7 @@
|
||||
-- sale, use or other dealings in this Software without prior written --
|
||||
-- authorization. --
|
||||
-------------------------------------------------------------------------------
|
||||
-- $Id: TO-DO,v 1.57 2011/03/28 00:23:02 tom Exp $
|
||||
-- $Id: TO-DO,v 1.58 2020/02/02 23:34:34 tom Exp $
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
SHORT-TERM TO-DO ITEMS:
|
||||
|
@ -1 +1 @@
|
||||
5:0:10 6.1 20200118
|
||||
5:0:10 6.2 20200215
|
||||
|
30
contrib/ncurses/aclocal.m4
vendored
30
contrib/ncurses/aclocal.m4
vendored
@ -1,5 +1,6 @@
|
||||
dnl***************************************************************************
|
||||
dnl Copyright (c) 1998-2019,2020 Free Software Foundation, Inc. *
|
||||
dnl Copyright 2018-2019,2020 Thomas E. Dickey *
|
||||
dnl Copyright 1998-2017,2018 Free Software Foundation, Inc. *
|
||||
dnl *
|
||||
dnl Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
dnl copy of this software and associated documentation files (the *
|
||||
@ -28,7 +29,7 @@ dnl***************************************************************************
|
||||
dnl
|
||||
dnl Author: Thomas E. Dickey 1995-on
|
||||
dnl
|
||||
dnl $Id: aclocal.m4,v 1.893 2020/01/18 17:30:44 tom Exp $
|
||||
dnl $Id: aclocal.m4,v 1.896 2020/02/08 21:01:07 tom Exp $
|
||||
dnl Macros used in NCURSES auto-configuration script.
|
||||
dnl
|
||||
dnl These macros are maintained separately from NCURSES. The copyright on
|
||||
@ -1818,6 +1819,28 @@ if test "$cf_disable_rpath_hack" = no ; then
|
||||
fi
|
||||
])
|
||||
dnl ---------------------------------------------------------------------------
|
||||
dnl CF_ENABLE_BROKEN_LINKER version: 1 updated: 2020/02/08 15:59:30
|
||||
dnl -----------------------
|
||||
dnl Some linkers cannot reference a data-only object. Cygwin used to be one.
|
||||
dnl This usually follows CF_LINK_DATAONLY, but is not required in case we need
|
||||
dnl an unconditional feature.
|
||||
AC_DEFUN([CF_ENABLE_BROKEN_LINKER],[
|
||||
|
||||
AC_MSG_CHECKING(if you want broken-linker support code)
|
||||
AC_ARG_ENABLE(broken_linker,
|
||||
[ --enable-broken_linker compile with broken-linker support code],
|
||||
[with_broken_linker=$enableval],
|
||||
[with_broken_linker=no])
|
||||
AC_MSG_RESULT($with_broken_linker)
|
||||
|
||||
: ${BROKEN_LINKER:=0}
|
||||
if test "x$with_broken_linker" = xyes ; then
|
||||
AC_DEFINE(BROKEN_LINKER,1,[Define to 1 to work around linkers which cannot link data-only modules])
|
||||
BROKEN_LINKER=1
|
||||
fi
|
||||
AC_SUBST(BROKEN_LINKER)
|
||||
])dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
dnl CF_ENABLE_PC_FILES version: 13 updated: 2015/11/01 05:27:39
|
||||
dnl ------------------
|
||||
dnl This is the "--enable-pc-files" option, which is available if there is a
|
||||
@ -4695,7 +4718,7 @@ AC_DEFUN([CF_LIB_TYPE],
|
||||
test -n "$LIB_SUFFIX" && $2="${LIB_SUFFIX}[$]{$2}"
|
||||
])dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
dnl CF_LINK_DATAONLY version: 12 updated: 2017/07/23 17:46:07
|
||||
dnl CF_LINK_DATAONLY version: 13 updated: 2020/02/08 15:59:30
|
||||
dnl ----------------
|
||||
dnl Some systems have a non-ANSI linker that doesn't pull in modules that have
|
||||
dnl only data (i.e., no functions), for example NeXT. On those systems we'll
|
||||
@ -4755,6 +4778,7 @@ if test "$cf_cv_link_dataonly" = no ; then
|
||||
AC_DEFINE(BROKEN_LINKER,1,[if data-only library module does not link])
|
||||
BROKEN_LINKER=1
|
||||
fi
|
||||
AC_SUBST(BROKEN_LINKER)
|
||||
|
||||
])dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
|
File diff suppressed because it is too large
Load Diff
3007
contrib/ncurses/configure
vendored
3007
contrib/ncurses/configure
vendored
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,6 @@
|
||||
dnl***************************************************************************
|
||||
dnl Copyright (c) 1998-2019,2020 Free Software Foundation, Inc. *
|
||||
dnl Copyright 2018-2019,2020 Thomas E. Dickey *
|
||||
dnl Copyright 1998-2017,2018 Free Software Foundation, Inc. *
|
||||
dnl *
|
||||
dnl Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
dnl copy of this software and associated documentation files (the *
|
||||
@ -28,7 +29,7 @@ dnl***************************************************************************
|
||||
dnl
|
||||
dnl Author: Thomas E. Dickey 1995-on
|
||||
dnl
|
||||
dnl $Id: configure.in,v 1.693 2020/01/11 23:27:16 tom Exp $
|
||||
dnl $Id: configure.in,v 1.697 2020/02/08 20:56:13 tom Exp $
|
||||
dnl Process this file with autoconf to produce a configure script.
|
||||
dnl
|
||||
dnl For additional information, see
|
||||
@ -37,7 +38,7 @@ dnl https://invisible-island.net/autoconf/my-autoconf.html
|
||||
dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
AC_PREREQ(2.52.20200111)
|
||||
AC_REVISION($Revision: 1.693 $)
|
||||
AC_REVISION($Revision: 1.697 $)
|
||||
AC_INIT(ncurses/base/lib_initscr.c)
|
||||
AC_CONFIG_HEADER(include/ncurses_cfg.h:include/ncurses_cfg.hin)
|
||||
|
||||
@ -856,27 +857,7 @@ test "x$with_links" = xyes && AC_DEFINE(USE_LINKS,1,[Define to 1 if hardlinks sh
|
||||
test "x$with_symlinks" = xyes && AC_DEFINE(USE_SYMLINKS,1,[Define to 1 if symbolic links should be used in terminfo database])
|
||||
|
||||
### use option --enable-broken-linker to force on use of broken-linker support
|
||||
AC_MSG_CHECKING(if you want broken-linker support code)
|
||||
AC_ARG_ENABLE(broken_linker,
|
||||
[ --enable-broken_linker compile with broken-linker support code],
|
||||
[with_broken_linker=$enableval],
|
||||
[with_broken_linker=${BROKEN_LINKER:-no}])
|
||||
AC_MSG_RESULT($with_broken_linker)
|
||||
|
||||
BROKEN_LINKER=0
|
||||
if test "x$with_broken_linker" = xyes ; then
|
||||
AC_DEFINE(BROKEN_LINKER,1,[Define to 1 to work around linkers which cannot link data-only modules])
|
||||
BROKEN_LINKER=1
|
||||
elif test "$DFT_LWR_MODEL" = shared ; then
|
||||
case $cf_cv_system_name in
|
||||
(cygwin*)
|
||||
AC_DEFINE(BROKEN_LINKER,1,[Define to 1 to work around linkers which cannot link data-only modules])
|
||||
BROKEN_LINKER=1
|
||||
CF_VERBOSE(cygwin linker is broken anyway)
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
AC_SUBST(BROKEN_LINKER)
|
||||
CF_ENABLE_BROKEN_LINKER
|
||||
|
||||
### use option --enable-bsdpad to have tputs process BSD-style prefix padding
|
||||
AC_MSG_CHECKING(if tputs should process BSD-style prefix padding)
|
||||
@ -1069,7 +1050,7 @@ AC_ARG_WITH(ccharw-max,
|
||||
AC_MSG_RESULT($NCURSES_CCHARW_MAX)
|
||||
AC_SUBST(NCURSES_CCHARW_MAX)
|
||||
|
||||
AC_CHECK_SIZEOF([signed char], 0)
|
||||
AC_CHECK_SIZEOF([signed char])
|
||||
if test "$ac_cv_sizeof_signed_char" = 1 ; then
|
||||
NCURSES_SBOOL="signed char"
|
||||
else
|
||||
@ -1938,6 +1919,16 @@ fi
|
||||
# do this "late" to avoid conflict with header-checks
|
||||
if test "x$with_widec" = xyes ; then
|
||||
AC_CHECK_SIZEOF(wchar_t)
|
||||
# cross-compiling to mingw can run into the problem that attempting to
|
||||
# link with the regex library fails, causing the test to not set this to
|
||||
# a number. "recent" autoconf does not address this problem either -TD
|
||||
if test -z "$ac_cv_sizeof_wchar_t"
|
||||
then
|
||||
CF_VERBOSE(test failed (assume 2))
|
||||
sed /SIZEOF_WCHAR_T/d confdefs.h >confdefs.tmp
|
||||
mv confdefs.tmp confdefs.h
|
||||
echo "#define SIZEOF_WCHAR_T 2" >>confdefs.h
|
||||
fi
|
||||
fi
|
||||
|
||||
### Construct the ncurses library-subsets, if any, from this set of keywords:
|
||||
|
@ -1,8 +1,9 @@
|
||||
extproc perl -S -w
|
||||
|
||||
# $Id: convert_configure.pl,v 1.3 2006/04/22 23:04:06 tom Exp $
|
||||
# $Id: convert_configure.pl,v 1.4 2020/02/02 23:34:34 tom Exp $
|
||||
##############################################################################
|
||||
# Copyright (c) 1998-2000,2006 Free Software Foundation, Inc. #
|
||||
# Copyright 2020 Thomas E. Dickey #
|
||||
# Copyright 1998-2000,2006 Free Software Foundation, Inc. #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
|
@ -1,5 +1,6 @@
|
||||
##############################################################################
|
||||
# Copyright (c) 1998-2019,2020 Free Software Foundation, Inc. #
|
||||
# Copyright 2018-2019,2020 Thomas E. Dickey #
|
||||
# Copyright 1998-2017,2018 Free Software Foundation, Inc. #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
@ -25,7 +26,7 @@
|
||||
# use or other dealings in this Software without prior written #
|
||||
# authorization. #
|
||||
##############################################################################
|
||||
# $Id: dist.mk,v 1.1325 2020/01/18 10:27:03 tom Exp $
|
||||
# $Id: dist.mk,v 1.1335 2020/02/15 09:30:48 tom Exp $
|
||||
# Makefile for creating ncurses distributions.
|
||||
#
|
||||
# This only needs to be used directly as a makefile by developers, but
|
||||
@ -36,12 +37,15 @@ SHELL = /bin/sh
|
||||
|
||||
# These define the major/minor/patch versions of ncurses.
|
||||
NCURSES_MAJOR = 6
|
||||
NCURSES_MINOR = 1
|
||||
NCURSES_PATCH = 20200118
|
||||
NCURSES_MINOR = 2
|
||||
NCURSES_PATCH = 20200215
|
||||
|
||||
# We don't append the patch to the version, since this only applies to releases
|
||||
VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR)
|
||||
|
||||
WEBSITE = https://invisible-island.net
|
||||
HOMEPAGE = $(WEBSITE)/ncurses
|
||||
|
||||
# The most recent html files were generated with lynx 2.8.6 (or later), using
|
||||
# ncurses configured with
|
||||
# --without-manpage-renames
|
||||
@ -73,10 +77,13 @@ distclean:
|
||||
|
||||
# Don't mess with announce.html.in unless you have lynx available!
|
||||
doc/html/announce.html: announce.html.in
|
||||
sed 's,@VERSION@,$(VERSION),' <announce.html.in > $@
|
||||
sed \
|
||||
-e 's,@VERSION@,$(VERSION),g' \
|
||||
-e 's,@WEBSITE@,$(WEBSITE),g' \
|
||||
-e 's,@HOMEPAGE@,$(HOMEPAGE),g' <announce.html.in > $@
|
||||
|
||||
ANNOUNCE : doc/html/announce.html
|
||||
$(DUMP) doc/html/announce.html > $@
|
||||
$(DUMP2) doc/html/announce.html > $@
|
||||
|
||||
doc/ncurses-intro.doc: doc/html/ncurses-intro.html
|
||||
$(DUMP2) doc/html/ncurses-intro.html > $@
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,7 +1,8 @@
|
||||
<!--
|
||||
$Id: hackguide.html,v 1.32 2019/07/28 18:08:54 tom Exp $
|
||||
$Id: hackguide.html,v 1.33 2020/02/02 23:34:34 tom Exp $
|
||||
****************************************************************************
|
||||
* Copyright (c) 1998-2017,2019 Free Software Foundation, Inc. *
|
||||
* Copyright 2019,2020 Thomas E. Dickey *
|
||||
* Copyright 2000-2013,2017 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
|
@ -1,7 +1,8 @@
|
||||
<!--
|
||||
$Id: ncurses-intro.html,v 1.53 2019/07/28 16:53:26 tom Exp $
|
||||
$Id: ncurses-intro.html,v 1.54 2020/02/02 23:34:34 tom Exp $
|
||||
****************************************************************************
|
||||
* Copyright (c) 1998-2017,2019 Free Software Foundation, Inc. *
|
||||
* Copyright 2019,2020 Thomas E. Dickey *
|
||||
* Copyright 2000-2013,2017 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
|
@ -1,6 +1,7 @@
|
||||
# $Id: Makefile.in,v 1.64 2018/01/15 19:28:45 tom Exp $
|
||||
# $Id: Makefile.in,v 1.65 2020/02/02 23:34:34 tom Exp $
|
||||
##############################################################################
|
||||
# Copyright (c) 1998-2015,2018 Free Software Foundation, Inc. #
|
||||
# Copyright 2020 Thomas E. Dickey #
|
||||
# Copyright 1998-2015,2018 Free Software Foundation, Inc. #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
|
@ -1,5 +1,6 @@
|
||||
-------------------------------------------------------------------------------
|
||||
-- Copyright (c) 1998-2003,2006 Free Software Foundation, Inc. --
|
||||
-- Copyright 2020 Thomas E. Dickey --
|
||||
-- Copyright 1998-2003,2006 Free Software Foundation, Inc. --
|
||||
-- --
|
||||
-- Permission is hereby granted, free of charge, to any person obtaining a --
|
||||
-- copy of this software and associated documentation files (the --
|
||||
@ -25,7 +26,7 @@
|
||||
-- sale, use or other dealings in this Software without prior written --
|
||||
-- authorization. --
|
||||
-------------------------------------------------------------------------------
|
||||
-- $Id: READ.ME,v 0.7 2006/04/22 23:13:05 tom Exp $
|
||||
-- $Id: READ.ME,v 0.8 2020/02/02 23:34:34 tom Exp $
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
This is a clone of the form library that is available with typical
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 2004-2016,2018 Free Software Foundation, Inc. *
|
||||
* Copyright 2018,2020 Thomas E. Dickey *
|
||||
* Copyright 2004-2010,2016 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: f_trace.c,v 1.4 2018/12/16 00:13:36 tom Exp $")
|
||||
MODULE_ID("$Id: f_trace.c,v 1.5 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
NCURSES_EXPORT(FIELD **)
|
||||
_nc_retrace_field_ptr(FIELD **code)
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2016,2018 Free Software Foundation, Inc. *
|
||||
* Copyright 2018,2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2012,2016 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fld_arg.c,v 1.15 2018/12/16 00:13:36 tom Exp $")
|
||||
MODULE_ID("$Id: fld_arg.c,v 1.16 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2010,2016 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2010,2016 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fld_attr.c,v 1.12 2016/01/23 21:32:00 tom Exp $")
|
||||
MODULE_ID("$Id: fld_attr.c,v 1.13 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*----------------------------------------------------------------------------
|
||||
Field-Attribute manipulation routines
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2010,2016 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2010,2016 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fld_current.c,v 1.14 2016/10/29 22:30:10 tom Exp $")
|
||||
MODULE_ID("$Id: fld_current.c,v 1.15 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2012,2014 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2012,2014 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fld_def.c,v 1.41 2014/07/26 21:08:55 tom Exp $")
|
||||
MODULE_ID("$Id: fld_def.c,v 1.42 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/* this can't be readonly */
|
||||
static FIELD default_field =
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fld_dup.c,v 1.14 2012/03/11 00:37:16 tom Exp $")
|
||||
MODULE_ID("$Id: fld_dup.c,v 1.15 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2016,2018 Free Software Foundation, Inc. *
|
||||
* Copyright 2018,2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2012,2016 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fld_ftchoice.c,v 1.15 2018/12/16 00:14:26 tom Exp $")
|
||||
MODULE_ID("$Id: fld_ftchoice.c,v 1.16 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fld_ftlink.c,v 1.15 2012/06/10 00:27:49 tom Exp $")
|
||||
MODULE_ID("$Id: fld_ftlink.c,v 1.16 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2004,2010 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2004,2010 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fld_info.c,v 1.11 2010/01/23 21:14:35 tom Exp $")
|
||||
MODULE_ID("$Id: fld_info.c,v 1.12 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fld_just.c,v 1.13 2012/03/11 00:37:16 tom Exp $")
|
||||
MODULE_ID("$Id: fld_just.c,v 1.14 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fld_link.c,v 1.13 2012/03/11 00:37:16 tom Exp $")
|
||||
MODULE_ID("$Id: fld_link.c,v 1.14 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2013,2019 Free Software Foundation, Inc. *
|
||||
* Copyright 2019,2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2012,2013 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fld_max.c,v 1.15 2019/01/26 22:18:08 Leon.Winter Exp $")
|
||||
MODULE_ID("$Id: fld_max.c,v 1.16 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fld_move.c,v 1.11 2012/03/11 00:37:16 tom Exp $")
|
||||
MODULE_ID("$Id: fld_move.c,v 1.12 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2016,2018 Free Software Foundation, Inc. *
|
||||
* Copyright 2018,2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2010,2016 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fld_newftyp.c,v 1.21 2018/12/16 00:14:22 tom Exp $")
|
||||
MODULE_ID("$Id: fld_newftyp.c,v 1.22 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
static FIELDTYPE default_fieldtype =
|
||||
{
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2004,2010 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2004,2010 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fld_opts.c,v 1.12 2010/01/23 21:14:36 tom Exp $")
|
||||
MODULE_ID("$Id: fld_opts.c,v 1.13 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*----------------------------------------------------------------------------
|
||||
Field-Options manipulation routines
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2004,2010 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2004,2010 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fld_pad.c,v 1.10 2010/01/23 21:14:36 tom Exp $")
|
||||
MODULE_ID("$Id: fld_pad.c,v 1.11 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fld_page.c,v 1.12 2012/06/10 00:12:47 tom Exp $")
|
||||
MODULE_ID("$Id: fld_page.c,v 1.13 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fld_stat.c,v 1.14 2012/06/10 00:13:09 tom Exp $")
|
||||
MODULE_ID("$Id: fld_stat.c,v 1.15 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2004,2010 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2004,2010 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fld_type.c,v 1.16 2010/01/23 21:14:36 tom Exp $")
|
||||
MODULE_ID("$Id: fld_type.c,v 1.17 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2004,2010 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2004,2010 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fld_user.c,v 1.16 2010/01/23 21:14:36 tom Exp $")
|
||||
MODULE_ID("$Id: fld_user.c,v 1.17 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2018,2019 Free Software Foundation, Inc. *
|
||||
* Copyright 2018-2019,2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2016,2017 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -30,7 +31,7 @@
|
||||
* Author: Juergen Pfeifer, 1995,1997 *
|
||||
****************************************************************************/
|
||||
|
||||
/* $Id: form.h,v 0.29 2019/01/19 21:26:13 Leon.Winter Exp $ */
|
||||
/* $Id: form.h,v 0.30 2020/02/02 23:34:34 tom Exp $ */
|
||||
|
||||
#ifndef FORM_H
|
||||
#define FORM_H
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2018,2019 Free Software Foundation, Inc. *
|
||||
* Copyright 2018-2019,2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2016,2017 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -30,7 +31,7 @@
|
||||
* Author: Juergen Pfeifer, 1995,1997 *
|
||||
****************************************************************************/
|
||||
|
||||
/* $Id: form.priv.h,v 0.44 2019/01/26 22:17:48 Leon.Winter Exp $ */
|
||||
/* $Id: form.priv.h,v 0.45 2020/02/02 23:34:34 tom Exp $ */
|
||||
|
||||
#ifndef FORM_PRIV_H
|
||||
#define FORM_PRIV_H 1
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2004,2010 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2004,2010 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: frm_cursor.c,v 1.10 2010/01/23 21:14:36 tom Exp $")
|
||||
MODULE_ID("$Id: frm_cursor.c,v 1.11 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2010,2013 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2010,2013 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: frm_data.c,v 1.16 2013/08/24 22:44:05 tom Exp $")
|
||||
MODULE_ID("$Id: frm_data.c,v 1.17 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: frm_def.c,v 1.26 2012/03/11 00:37:16 tom Exp $")
|
||||
MODULE_ID("$Id: frm_def.c,v 1.27 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/* this can't be readonly */
|
||||
static FORM default_form =
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2018,2019 Free Software Foundation, Inc. *
|
||||
* Copyright 2018-2019,2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2016,2017 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: frm_driver.c,v 1.128 2019/01/20 01:25:02 tom Exp $")
|
||||
MODULE_ID("$Id: frm_driver.c,v 1.129 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*----------------------------------------------------------------------------
|
||||
This is the core module of the form library. It contains the majority
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2016,2018 Free Software Foundation, Inc. *
|
||||
* Copyright 2018,2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2012,2016 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: frm_hook.c,v 1.18 2018/12/16 00:13:36 tom Exp $")
|
||||
MODULE_ID("$Id: frm_hook.c,v 1.19 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/* "Template" macro to generate function to set application specific hook */
|
||||
#define GEN_HOOK_SET_FUNCTION( typ, name ) \
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2012,2013 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2012,2013 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: frm_opts.c,v 1.17 2013/08/24 22:58:47 tom Exp $")
|
||||
MODULE_ID("$Id: frm_opts.c,v 1.18 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: frm_page.c,v 1.12 2012/06/10 00:28:04 tom Exp $")
|
||||
MODULE_ID("$Id: frm_page.c,v 1.13 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2012,2020 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: frm_post.c,v 1.12 2020/01/18 17:05:03 tom Exp $")
|
||||
MODULE_ID("$Id: frm_post.c,v 1.13 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2012,2015 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2012,2015 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -37,7 +38,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: frm_req_name.c,v 1.19 2015/04/04 17:11:46 tom Exp $")
|
||||
MODULE_ID("$Id: frm_req_name.c,v 1.20 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
#define DATA(s) { s }
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2004,2010 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2004,2010 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: frm_scale.c,v 1.10 2010/01/23 21:14:36 tom Exp $")
|
||||
MODULE_ID("$Id: frm_scale.c,v 1.11 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2009,2010 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2009,2010 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: frm_sub.c,v 1.12 2010/01/23 21:14:36 tom Exp $")
|
||||
MODULE_ID("$Id: frm_sub.c,v 1.13 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2004,2010 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2004,2010 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: frm_user.c,v 1.15 2010/01/23 21:14:36 tom Exp $")
|
||||
MODULE_ID("$Id: frm_user.c,v 1.16 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2009,2010 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2009,2010 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: frm_win.c,v 1.16 2010/01/23 21:14:36 tom Exp $")
|
||||
MODULE_ID("$Id: frm_win.c,v 1.17 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2009,2010 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2009,2010 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -34,7 +35,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fty_alnum.c,v 1.24 2010/01/23 21:14:36 tom Exp $")
|
||||
MODULE_ID("$Id: fty_alnum.c,v 1.25 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
#define thisARG alnumARG
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2009,2010 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2009,2010 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -34,7 +35,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fty_alpha.c,v 1.26 2010/01/23 21:14:36 tom Exp $")
|
||||
MODULE_ID("$Id: fty_alpha.c,v 1.27 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
#define thisARG alphaARG
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2009,2010 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2009,2010 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -34,7 +35,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fty_enum.c,v 1.26 2010/05/01 21:11:07 tom Exp $")
|
||||
MODULE_ID("$Id: fty_enum.c,v 1.27 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
typedef struct
|
||||
{
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 2008-2018,2020 Free Software Foundation, Inc. *
|
||||
* Copyright 2018,2020 Thomas E. Dickey *
|
||||
* Copyright 2008-2012,2016 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -34,7 +35,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fty_generic.c,v 1.9 2020/01/18 17:08:04 tom Exp $")
|
||||
MODULE_ID("$Id: fty_generic.c,v 1.10 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*
|
||||
* This is not a full implementation of a field type, but adds some
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -34,7 +35,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fty_int.c,v 1.26 2012/02/23 10:02:15 tom Exp $")
|
||||
MODULE_ID("$Id: fty_int.c,v 1.27 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
#if USE_WIDEC_SUPPORT
|
||||
#define isDigit(c) (iswdigit((wint_t)(c)) || isdigit(UChar(c)))
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2006,2009 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2006,2009 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -34,7 +35,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fty_ipv4.c,v 1.10 2009/11/07 20:17:58 tom Exp $")
|
||||
MODULE_ID("$Id: fty_ipv4.c,v 1.11 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
| Facility : libnform
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2012,2019 Free Software Foundation, Inc. *
|
||||
* Copyright 2019,2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2010,2012 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -34,7 +35,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fty_num.c,v 1.31 2019/03/30 21:20:04 tom Exp $")
|
||||
MODULE_ID("$Id: fty_num.c,v 1.32 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
#if HAVE_LOCALE_H
|
||||
#include <locale.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2015,2018 Free Software Foundation, Inc. *
|
||||
* Copyright 2018,2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2012,2015 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -34,7 +35,7 @@
|
||||
|
||||
#include "form.priv.h"
|
||||
|
||||
MODULE_ID("$Id: fty_regex.c,v 1.27 2018/07/14 21:41:39 tom Exp $")
|
||||
MODULE_ID("$Id: fty_regex.c,v 1.28 2020/02/02 23:34:34 tom Exp $")
|
||||
|
||||
#if HAVE_REGEX_H_FUNCS || HAVE_LIB_PCRE2 /* We prefer POSIX regex */
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
##############################################################################
|
||||
# Copyright (c) 1998,2006 Free Software Foundation, Inc. #
|
||||
# Copyright 2020 Thomas E. Dickey #
|
||||
# Copyright 1998,2006 Free Software Foundation, Inc. #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2015,2017 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2015,2017 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 2010-2015,2017 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 2010-2015,2017 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 2010-2015,2017 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 2010-2015,2017 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 2002-2015,2017 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 2002-2015,2017 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
|
@ -1,6 +1,7 @@
|
||||
# $Id: modules,v 1.17 2010/01/23 16:26:37 tom Exp $
|
||||
# $Id: modules,v 1.18 2020/02/02 23:34:34 tom Exp $
|
||||
##############################################################################
|
||||
# Copyright (c) 1998-2009,2010 Free Software Foundation, Inc. #
|
||||
# Copyright 2020 Thomas E. Dickey #
|
||||
# Copyright 1998-2008,2010 Free Software Foundation, Inc. #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
|
@ -1,5 +1,6 @@
|
||||
##############################################################################
|
||||
# Copyright (c) 1998-2016,2019 Free Software Foundation, Inc. #
|
||||
# Copyright 2019,2020 Thomas E. Dickey #
|
||||
# Copyright 1998-2015,2016 Free Software Foundation, Inc. #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
@ -29,7 +30,7 @@
|
||||
# Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995
|
||||
# and: Eric S. Raymond <esr@snark.thyrsus.com>
|
||||
#
|
||||
# $Id: Caps,v 1.44 2019/07/27 00:36:44 tom Exp $
|
||||
# $Id: Caps,v 1.45 2020/02/02 23:34:34 tom Exp $
|
||||
#
|
||||
# This is the master termcap/terminfo capability table.
|
||||
#
|
||||
|
@ -1,5 +1,5 @@
|
||||
##############################################################################
|
||||
# Copyright (c) 2019 Free Software Foundation, Inc. #
|
||||
# Copyright 2019,2020 Thomas E. Dickey #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
@ -28,7 +28,7 @@
|
||||
#
|
||||
# Author: Thomas E. Dickey
|
||||
#
|
||||
# $Id: Caps-ncurses,v 1.7 2019/05/04 14:10:54 tom Exp $
|
||||
# $Id: Caps-ncurses,v 1.8 2020/02/02 23:34:34 tom Exp $
|
||||
#
|
||||
#############################################################################
|
||||
#
|
||||
|
@ -1,5 +1,6 @@
|
||||
##############################################################################
|
||||
# Copyright (c) 2001-2016,2019 Free Software Foundation, Inc. #
|
||||
# Copyright 2019,2020 Thomas E. Dickey #
|
||||
# Copyright 2001-2015,2016 Free Software Foundation, Inc. #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
@ -28,7 +29,7 @@
|
||||
#
|
||||
# Author: Thomas Dickey
|
||||
#
|
||||
# $Id: Caps.aix4,v 1.16 2019/07/27 00:36:44 tom Exp $
|
||||
# $Id: Caps.aix4,v 1.17 2020/02/02 23:34:34 tom Exp $
|
||||
#
|
||||
# This is an adaptation of ncurses' termcap/terminfo capability table, which
|
||||
# is designed to align with AIX 4.x's terminfo.
|
||||
|
@ -1,5 +1,6 @@
|
||||
##############################################################################
|
||||
# Copyright (c) 2002-2016,2019 Free Software Foundation, Inc. #
|
||||
# Copyright 2019,2020 Thomas E. Dickey #
|
||||
# Copyright 2002-2015,2016 Free Software Foundation, Inc. #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
@ -28,7 +29,7 @@
|
||||
#
|
||||
# Author: Thomas Dickey
|
||||
#
|
||||
# $Id: Caps.hpux11,v 1.14 2019/07/27 00:36:44 tom Exp $
|
||||
# $Id: Caps.hpux11,v 1.15 2020/02/02 23:34:34 tom Exp $
|
||||
#
|
||||
# This is an adaptation of ncurses' termcap/terminfo capability table, which
|
||||
# is designed to align with HPUX 11.x's terminfo.
|
||||
|
@ -1,5 +1,6 @@
|
||||
##############################################################################
|
||||
# Copyright (c) 2001-2016,2019 Free Software Foundation, Inc. #
|
||||
# Copyright 2019,2020 Thomas E. Dickey #
|
||||
# Copyright 2001-2015,2016 Free Software Foundation, Inc. #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
@ -29,7 +30,7 @@
|
||||
# Author: Thomas Dickey
|
||||
# and: Ilya Zakharevich
|
||||
#
|
||||
# $Id: Caps.keys,v 1.13 2019/07/27 00:36:44 tom Exp $
|
||||
# $Id: Caps.keys,v 1.14 2020/02/02 23:34:34 tom Exp $
|
||||
#
|
||||
# This is an adaptation of ncurses' termcap/terminfo capability table, which
|
||||
# is illustrates an experimental extension to describe alt-, shift- and
|
||||
|
@ -1,5 +1,6 @@
|
||||
##############################################################################
|
||||
# Copyright (c) 2002-2016,2019 Free Software Foundation, Inc. #
|
||||
# Copyright 2019,2020 Thomas E. Dickey #
|
||||
# Copyright 2002-2015,2016 Free Software Foundation, Inc. #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
@ -28,7 +29,7 @@
|
||||
#
|
||||
# Author: Thomas Dickey
|
||||
#
|
||||
# $Id: Caps.osf1r5,v 1.12 2019/07/27 00:36:44 tom Exp $
|
||||
# $Id: Caps.osf1r5,v 1.13 2020/02/02 23:34:34 tom Exp $
|
||||
#
|
||||
# This is an adaptation of ncurses' termcap/terminfo capability table, which
|
||||
# is designed to align with OSF/1 version 5 (Tru64) terminfo.
|
||||
|
@ -1,5 +1,6 @@
|
||||
##############################################################################
|
||||
# Copyright (c) 2001-2016,2019 Free Software Foundation, Inc. #
|
||||
# Copyright 2019,2020 Thomas E. Dickey #
|
||||
# Copyright 2001-2015,2016 Free Software Foundation, Inc. #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
@ -28,7 +29,7 @@
|
||||
#
|
||||
# Author: Thomas Dickey
|
||||
#
|
||||
# $Id: Caps.uwin,v 1.11 2019/07/27 00:36:44 tom Exp $
|
||||
# $Id: Caps.uwin,v 1.12 2020/02/02 23:34:34 tom Exp $
|
||||
#
|
||||
# This is an adaptation of ncurses' termcap/terminfo capability table, which
|
||||
# is designed to align with U/Win's terminfo.
|
||||
|
@ -1,6 +1,7 @@
|
||||
#!/bin/sh
|
||||
##############################################################################
|
||||
# Copyright (c) 1998-2006,2019 Free Software Foundation, Inc. #
|
||||
# Copyright 2019,2020 Thomas E. Dickey #
|
||||
# Copyright 1998,2006 Free Software Foundation, Inc. #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
@ -26,7 +27,7 @@
|
||||
# use or other dealings in this Software without prior written #
|
||||
# authorization. #
|
||||
##############################################################################
|
||||
# $Id: MKhashsize.sh,v 1.8 2019/04/06 22:53:17 tom Exp $
|
||||
# $Id: MKhashsize.sh,v 1.9 2020/02/02 23:34:34 tom Exp $
|
||||
#
|
||||
# MKhashsize.sh --- generate size include for hash functions
|
||||
#
|
||||
|
@ -1,7 +1,8 @@
|
||||
#! /bin/sh
|
||||
# $Id: MKkey_defs.sh,v 1.18 2019/04/06 23:38:16 tom Exp $
|
||||
# $Id: MKkey_defs.sh,v 1.19 2020/02/02 23:34:34 tom Exp $
|
||||
##############################################################################
|
||||
# Copyright (c) 2001-2017,2019 Free Software Foundation, Inc. #
|
||||
# Copyright 2019,2020 Thomas E. Dickey #
|
||||
# Copyright 2001-2013,2017 Free Software Foundation, Inc. #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
|
@ -1,7 +1,8 @@
|
||||
#! /bin/sh
|
||||
# $Id: MKncurses_def.sh,v 1.3 2003/10/25 16:19:46 tom Exp $
|
||||
# $Id: MKncurses_def.sh,v 1.4 2020/02/02 23:34:34 tom Exp $
|
||||
##############################################################################
|
||||
# Copyright (c) 2000,2003 Free Software Foundation, Inc. #
|
||||
# Copyright 2020 Thomas E. Dickey #
|
||||
# Copyright 2000,2003 Free Software Foundation, Inc. #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
|
@ -1,6 +1,7 @@
|
||||
#!/bin/sh
|
||||
##############################################################################
|
||||
# Copyright (c) 1998-2017,2019 Free Software Foundation, Inc. #
|
||||
# Copyright 2019,2020 Thomas E. Dickey #
|
||||
# Copyright 1998-2014,2017 Free Software Foundation, Inc. #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
@ -26,7 +27,7 @@
|
||||
# use or other dealings in this Software without prior written #
|
||||
# authorization. #
|
||||
##############################################################################
|
||||
# $Id: MKparametrized.sh,v 1.9 2019/04/13 20:36:24 tom Exp $
|
||||
# $Id: MKparametrized.sh,v 1.10 2020/02/02 23:34:34 tom Exp $
|
||||
#
|
||||
# MKparametrized.sh -- generate indirection vectors for various sort methods
|
||||
#
|
||||
|
@ -26,7 +26,8 @@ BEGIN {
|
||||
lcurl = "{";
|
||||
rcurl = "}";
|
||||
print "/****************************************************************************"
|
||||
print " * Copyright (c) 1998-2018,2019 Free Software Foundation, Inc. *"
|
||||
print " * Copyright 2018-2019,2020 Thomas E. Dickey *"
|
||||
print " * Copyright 1998-2013,2017 Free Software Foundation, Inc. *"
|
||||
print " * *"
|
||||
print " * Permission is hereby granted, free of charge, to any person obtaining a *"
|
||||
print " * copy of this software and associated documentation files (the *"
|
||||
@ -59,7 +60,7 @@ BEGIN {
|
||||
print "/* and: Thomas E. Dickey 1995-on */"
|
||||
print "/****************************************************************************/"
|
||||
print ""
|
||||
print "/* $Id: MKterm.h.awk.in,v 1.73 2019/12/21 18:29:09 tom Exp $ */"
|
||||
print "/* $Id: MKterm.h.awk.in,v 1.74 2020/02/02 23:34:34 tom Exp $ */"
|
||||
print ""
|
||||
print "/*"
|
||||
print "** term.h -- Definition of struct term"
|
||||
|
@ -1,6 +1,7 @@
|
||||
# $Id: Makefile.in,v 1.45 2019/03/03 01:41:21 tom Exp $
|
||||
# $Id: Makefile.in,v 1.46 2020/02/02 23:34:34 tom Exp $
|
||||
##############################################################################
|
||||
# Copyright (c) 1998-2015,2019 Free Software Foundation, Inc. #
|
||||
# Copyright 2019,2020 Thomas E. Dickey #
|
||||
# Copyright 1998-2013,2015 Free Software Foundation, Inc. #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2000,2008 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2000,2008 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
* and: Thomas E. Dickey 1996-on *
|
||||
****************************************************************************/
|
||||
|
||||
/* $Id: capdefaults.c,v 1.14 2008/11/16 00:19:59 juergen Exp $ */
|
||||
/* $Id: capdefaults.c,v 1.15 2020/02/02 23:34:34 tom Exp $ */
|
||||
|
||||
/*
|
||||
* Compute obsolete capabilities. The reason this is an include file is
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2018,2019 Free Software Foundation, Inc. *
|
||||
* Copyright 2018-2019,2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2016,2017 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
* and: Thomas E. Dickey 1996-on *
|
||||
****************************************************************************/
|
||||
|
||||
/* $Id: curses.h.in,v 1.264 2019/03/23 23:06:46 tom Exp $ */
|
||||
/* $Id: curses.h.in,v 1.266 2020/02/08 10:51:53 tom Exp $ */
|
||||
|
||||
#ifndef __NCURSES_H
|
||||
#define __NCURSES_H
|
||||
@ -129,6 +130,14 @@
|
||||
#define NCURSES_REENTRANT @cf_cv_enable_reentrant@
|
||||
#endif
|
||||
|
||||
/*
|
||||
* In certain environments, we must work around linker problems for data
|
||||
*/
|
||||
#undef NCURSES_BROKEN_LINKER
|
||||
#if @BROKEN_LINKER@
|
||||
#define NCURSES_BROKEN_LINKER 1
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Control whether bindings for interop support are added.
|
||||
*/
|
||||
|
@ -1,7 +1,8 @@
|
||||
#!/bin/sh
|
||||
# $Id: edit_cfg.sh,v 1.13 2017/08/12 12:22:06 tom Exp $
|
||||
# $Id: edit_cfg.sh,v 1.14 2020/02/02 23:34:34 tom Exp $
|
||||
##############################################################################
|
||||
# Copyright (c) 2000,2001,2017 Free Software Foundation, Inc. #
|
||||
# Copyright 2020 Thomas E. Dickey #
|
||||
# Copyright 1998-2001,2017 Free Software Foundation, Inc. #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 2006-2014,2017 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 2006-2014,2017 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -31,7 +32,7 @@
|
||||
****************************************************************************/
|
||||
|
||||
/*
|
||||
* $Id: hashed_db.h,v 1.8 2017/07/22 16:22:49 tom Exp $
|
||||
* $Id: hashed_db.h,v 1.9 2020/02/02 23:34:34 tom Exp $
|
||||
*/
|
||||
|
||||
#ifndef HASHED_DB_H
|
||||
|
@ -1,6 +1,7 @@
|
||||
# $Id: headers,v 1.13 2013/10/20 00:32:21 tom Exp $
|
||||
# $Id: headers,v 1.14 2020/02/02 23:34:34 tom Exp $
|
||||
##############################################################################
|
||||
# Copyright (c) 1998-2012,2013 Free Software Foundation, Inc. #
|
||||
# Copyright 2020 Thomas E. Dickey #
|
||||
# Copyright 1998-2012,2013 Free Software Foundation, Inc. #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2017,2019 Free Software Foundation, Inc. *
|
||||
* Copyright 2019,2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2013,2017 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -29,7 +30,7 @@
|
||||
/****************************************************************************
|
||||
* Author: Thomas E. Dickey 1996-on *
|
||||
****************************************************************************/
|
||||
/* $Id: nc_alloc.h,v 1.24 2019/12/15 01:00:51 tom Exp $ */
|
||||
/* $Id: nc_alloc.h,v 1.26 2020/02/02 23:34:34 tom Exp $ */
|
||||
|
||||
#ifndef NC_ALLOC_included
|
||||
#define NC_ALLOC_included 1
|
||||
@ -91,6 +92,8 @@ extern NCURSES_EXPORT(void) _nc_free_and_exit(int) GCC_NORETURN GCC_DEPRECATED("
|
||||
|
||||
#define ExitProgram(code) exit_curses(code)
|
||||
|
||||
#else
|
||||
extern NCURSES_EXPORT(void) _nc_free_and_exit(int) GCC_NORETURN GCC_DEPRECATED("use exit_curses");
|
||||
#endif /* NO_LEAKS, etc */
|
||||
|
||||
#ifndef HAVE_NC_FREEALL
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 2008-2018,2019 Free Software Foundation, Inc. *
|
||||
* Copyright 2018-2019,2020 Thomas E. Dickey *
|
||||
* Copyright 2008-2010,2017 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -30,7 +31,7 @@
|
||||
* Author: Thomas Dickey, 2008-on *
|
||||
****************************************************************************/
|
||||
|
||||
/* $Id: nc_mingw.h,v 1.6 2019/06/23 19:55:08 tom Exp $ */
|
||||
/* $Id: nc_mingw.h,v 1.7 2020/02/02 23:34:34 tom Exp $ */
|
||||
|
||||
#ifndef NC_MINGW_H
|
||||
#define NC_MINGW_H 1
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2009,2017 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2009,2017 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -32,7 +33,7 @@
|
||||
****************************************************************************/
|
||||
|
||||
/*
|
||||
* $Id: nc_panel.h,v 1.9 2017/07/22 17:06:03 tom Exp $
|
||||
* $Id: nc_panel.h,v 1.10 2020/02/02 23:34:34 tom Exp $
|
||||
*
|
||||
* nc_panel.h
|
||||
*
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 2012-2013,2016 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 2012-2013,2016 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -40,7 +41,7 @@
|
||||
#endif
|
||||
|
||||
/*
|
||||
* $Id: nc_string.h,v 1.7 2016/09/10 19:57:15 tom Exp $
|
||||
* $Id: nc_string.h,v 1.8 2020/02/02 23:34:34 tom Exp $
|
||||
*
|
||||
* String-hacks. Use these macros to stifle warnings on (presumably) correct
|
||||
* uses of strcat, strcpy and sprintf.
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 2011-2017,2018 Free Software Foundation, Inc. *
|
||||
* Copyright 2018,2020 Thomas E. Dickey *
|
||||
* Copyright 2011-2014,2017 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -30,7 +31,7 @@
|
||||
* Author: Thomas E. Dickey 2011 *
|
||||
****************************************************************************/
|
||||
|
||||
/* $Id: nc_termios.h,v 1.6 2018/06/24 00:06:37 tom Exp $ */
|
||||
/* $Id: nc_termios.h,v 1.7 2020/02/02 23:34:34 tom Exp $ */
|
||||
|
||||
#ifndef NC_TERMIOS_included
|
||||
#define NC_TERMIOS_included 1
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 2006-2017,2018 Free Software Foundation, Inc. *
|
||||
* Copyright 2018,2020 Thomas E. Dickey *
|
||||
* Copyright 2006-2012,2017 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -30,7 +31,7 @@
|
||||
* Author: Thomas E. Dickey 2006 *
|
||||
****************************************************************************/
|
||||
|
||||
/* $Id: nc_tparm.h,v 1.9 2018/03/17 19:19:58 tom Exp $ */
|
||||
/* $Id: nc_tparm.h,v 1.10 2020/02/02 23:34:34 tom Exp $ */
|
||||
|
||||
#ifndef NC_TPARM_included
|
||||
#define NC_TPARM_included 1
|
||||
|
@ -1,5 +1,6 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2016,2017 Free Software Foundation, Inc. *
|
||||
* Copyright 2020 Thomas E. Dickey *
|
||||
* Copyright 1998-2016,2017 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -30,7 +31,7 @@
|
||||
* Author: Thomas E. Dickey 1997-on *
|
||||
****************************************************************************/
|
||||
/*
|
||||
* $Id: ncurses_cfg.hin,v 1.11 2017/12/09 20:41:54 tom Exp $
|
||||
* $Id: ncurses_cfg.hin,v 1.12 2020/02/02 23:34:34 tom Exp $
|
||||
*
|
||||
* Both ncurses_cfg.h and ncurses_def.h are internal header-files used when
|
||||
* building ncurses.
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user