• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Ada95/H17-Oct-2021-54,67740,935

c++/H04-Sep-2021-7,8355,246

doc/H20-Oct-2021-20,53118,316

form/H01-Sep-2021-15,9159,399

include/H08-Oct-2021-11,98710,398

man/H20-Oct-2021-28,55323,978

menu/H03-Jul-2021-7,6194,392

misc/H03-May-2022-33,25231,233

ncurses/H19-Oct-2021-87,89962,969

package/H20-Oct-2021-10,61110,078

panel/H03-Jul-2021-2,5641,461

progs/H10-Oct-2021-12,3629,376

test/H03-May-2022-80,06065,399

ANNOUNCEH A D20-Oct-202130.2 KiB776614

AUTHORSH A D17-Jun-20212.6 KiB4139

COPYINGH A D01-Jan-20211.4 KiB3024

INSTALLH A D19-Oct-202194.2 KiB2,4401,888

MANIFESTH A D20-Oct-202136.3 KiB1,2451,244

Makefile.inH A D07-Aug-20214.7 KiB13177

Makefile.os2H A D17-Jun-20218.6 KiB261115

NEWSH A D20-Oct-2021663.1 KiB14,79313,399

READMEH A D17-Jun-202110 KiB219174

README.MinGWH A D06-Sep-20206.6 KiB149127

README.emxH A D17-Jun-20214 KiB7461

TO-DOH A D02-Feb-20209.5 KiB215161

VERSIONH A D20-Oct-202120 21

aclocal.m4H A D17-Oct-2021278.7 KiB9,8239,279

announce.html.inH A D20-Oct-202155.4 KiB1,8321,430

config.guessH A D04-Jun-202148.2 KiB1,7491,522

config.subH A D14-Aug-202134.4 KiB1,8851,698

configureH A D03-May-2022800.7 KiB30,73926,175

configure.inH A D18-Jul-202179.2 KiB2,5992,288

dist.mkH A D20-Oct-20217.2 KiB17893

install-shH A D29-Nov-20037 KiB295169

mk-0th.awkH A D20-Mar-20215.8 KiB176127

mk-1st.awkH A D15-Oct-202120.4 KiB610522

mk-2nd.awkH A D17-Jun-20215.4 KiB15595

mk-hdr.awkH A D17-Jun-20214.1 KiB11674

README

1-------------------------------------------------------------------------------
2-- Copyright 2020,2021 Thomas E. Dickey                                      --
3-- Copyright 1998-2012,2018 Free Software Foundation, Inc.                   --
4--                                                                           --
5-- Permission is hereby granted, free of charge, to any person obtaining a   --
6-- copy of this software and associated documentation files (the             --
7-- "Software"), to deal in the Software without restriction, including       --
8-- without limitation the rights to use, copy, modify, merge, publish,       --
9-- distribute, distribute with modifications, sublicense, and/or sell copies --
10-- of the Software, and to permit persons to whom the Software is furnished  --
11-- to do so, subject to the following conditions:                            --
12--                                                                           --
13-- The above copyright notice and this permission notice shall be included   --
14-- in all copies or substantial portions of the Software.                    --
15--                                                                           --
16-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS   --
17-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF                --
18-- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN --
19-- NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,       --
20-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR     --
21-- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE --
22-- USE OR OTHER DEALINGS IN THE SOFTWARE.                                    --
23--                                                                           --
24-- Except as contained in this notice, the name(s) of the above copyright    --
25-- holders shall not be used in advertising or otherwise to promote the      --
26-- sale, use or other dealings in this Software without prior written        --
27-- authorization.                                                            --
28-------------------------------------------------------------------------------
29-- $Id: README,v 1.29 2021/06/17 21:20:30 tom Exp $
30-------------------------------------------------------------------------------
31		README file for the ncurses package
32
33See the file ANNOUNCE for a summary of ncurses features and ports.
34See the file INSTALL for instructions on how to build and install ncurses.
35See the file NEWS for a release history and bug-fix notes.
36See the file TO-DO for things that still need doing, including known bugs.
37
38Browse the file misc/ncurses-intro.html for narrative descriptions of how
39to use ncurses and the panel, menu, and form libraries.
40
41Browse the file doc/html/hackguide.html for a tour of the package internals.
42
43ROADMAP AND PACKAGE OVERVIEW:
44
45You should be reading this file in a directory called:  ncurses-d.d, where d.d
46is the current version number (see the dist.mk file in this directory for
47that).  There should be a number of subdirectories, including `c++', `form',
48`man', `menu', `misc', `ncurses', `panel', `progs', `test', 'tack' and `Ada95'.
49(The 'tack' program may be distributed separately).
50
51A full build/install of this package typically installs several libraries, a
52handful of utilities, and a database hierarchy.  Here is an inventory of the
53pieces:
54
55The libraries are:
56
57	libncurses.a       (normal)
58	libncurses.so      (shared)
59	libncurses_g.a     (debug and trace code enabled)
60	libncurses_p.a     (profiling enabled)
61
62	libpanel.a         (normal)
63	libpanel.so        (shared)
64	libpanel_g.a       (debug and trace code enabled)
65
66	libmenu.a          (normal)
67	libmenu.so         (shared)
68	libmenu_g.a        (debug enabled)
69
70	libform.a          (normal)
71	libform.so         (shared)
72	libform_g.a        (debug enabled)
73
74If you configure using the --enable-widec option, a "w" is appended to the
75library names (e.g., libncursesw.a), and the resulting libraries support
76wide-characters, e.g., via a UTF-8 locale.  The corresponding header files
77are compatible with the non-wide-character configuration; wide-character
78features are provided by ifdef's in the header files.  The wide-character
79library interfaces are not binary-compatible with the non-wide-character
80version.
81
82If you configure using the --enable-reentrant option, a "t" is appended to the
83library names (e.g., libncursest.a) and the resulting libraries have a
84different binary interface which makes the ncurses interface more "opaque".
85
86The ncurses libraries implement the curses API.  The panel, menu and forms
87libraries implement clones of the SVr4 panel, menu and forms APIs.  The source
88code for these lives in the `ncurses', `panel', `menu', and `form' directories
89respectively.
90
91In the `c++' directory, you'll find code that defines an interface to the
92curses, forms, menus and panels library packaged as C++ classes, and a demo program in C++
93to test it.  These class definition modules are not installed by the 'make
94install.libs' rule as libncurses++.
95
96In the `Ada95' directory, you'll find code and documentation for an
97Ada95 binding of the curses API, to be used with the GNAT compiler.
98This binding is built by a normal top-level `make' if configure detects
99an usable version of GNAT (3.11 or above). It is not installed automatically.
100See the Ada95 directory for more build and installation instructions and
101for documentation of the binding.
102
103To do its job, the ncurses code needs your terminal type to be set in the
104environment variable TERM (normally set by your OS; under UNIX, getty(1)
105typically does this, but you can override it in your .profile); and, it needs a
106database of terminal descriptions in which to look up your terminal type's
107capabilities.
108
109In older (V7/BSD) versions of curses, the database was a flat text file,
110/etc/termcap; in newer (USG/USL) versions, the database is a hierarchy of
111fast-loading binary description blocks under /usr/lib/terminfo.  These binary
112blocks are compiled from an improved editable text representation called
113`terminfo' format (documented in man/terminfo.5).  The ncurses library can use
114either /etc/termcap or the compiled binary terminfo blocks, but prefers the
115second form.
116
117In the `misc' directory, there is a text file terminfo.src, in editable
118terminfo format, which can be used to generate the terminfo binaries (that's
119what make install.data does).  If the package was built with the
120--enable-termcap option enabled, and the ncurses library cannot find a terminfo
121description for your terminal, it will fall back to the termcap file supplied
122with your system (which the ncurses package installation leaves strictly
123alone).
124
125The utilities are as follows:
126
127	tic             -- terminfo source to binary compiler
128	infocmp         -- terminfo binary to source decompiler/comparator
129	clear           -- emits clear-screen for current terminal
130	tabs            -- set tabs on a terminal
131	tput            -- shell-script access to terminal capabilities.
132	toe             -- table of entries utility
133	tset            -- terminal-initialization utility
134
135The first two (tic and infocmp) are used for manipulating terminfo
136descriptions; the next two (clear and tput) are for use in shell scripts.  The
137last (tset) is provided for 4.4BSD compatibility.  The source code for all of
138these lives in the `progs' directory.
139
140Detailed documentation for all libraries and utilities can be found in the
141`man' and `doc' directories.  An HTML introduction to ncurses, panels, and
142menus programming lives in the `doc/html' directory.  Manpages in HTML format
143are under `doc/html/man'.
144
145The `test' directory contains programs that can be used to verify or
146demonstrate the functions of the ncurses libraries.  See test/README for
147descriptions of these programs.  Notably, the `ncurses' utility is designed to
148help you systematically exercise the library functions.
149
150AUTHORS:
151
152Pavel Curtis:
153	wrote the original ncurses
154
155Zeyd M. Ben-Halim:
156	port of original to Linux and many enhancements.
157
158Thomas Dickey (maintainer for 1.9.9g through 4.1, resuming with FSF's 5.0):
159	configuration scripts, porting, mods to adhere to XSI Curses in the
160	areas of background color, terminal modes.  Also memory leak testing,
161	the wresize, default colors and key definition extensions and numerous
162	bug fixes -- more than half of those enumerated in NEWS beginning with
163	the internal release 1.8.9, see
164
165		https://invisible-island.net/personal/changelogs.html
166
167Florian La Roche (official maintainer for FSF's ncurses 4.2)
168	Beginning with release 4.2, ncurses is distributed under an MIT-style
169	license.
170
171Eric S. Raymond:
172	the man pages, infocmp(1), tput(1), clear(1), captoinfo(1), tset(1),
173	toe(1), most of tic(1), trace levels, the HTML intro, wgetnstr() and
174	many other entry points, the cursor-movement optimization, the
175	scroll-pack optimizer for vertical motions, the mouse interface and
176	xterm mouse support, and the ncurses test program.
177
178Juergen Pfeifer
179	The menu and form libraries, C++ bindings for ncurses, menus, forms and
180	panels, as well as the Ada95 binding.  Ongoing support for panel.
181
182CONTRIBUTORS:
183
184Alexander V. Lukyanov
185	for numerous fixes and improvements to the optimization logic.
186
187David MacKenzie
188	for first-class bug-chasing and methodical testing.
189
190Ross Ridge
191	for the code that hacks termcap parameterized strings into terminfo.
192
193Warren Tucker and Gerhard Fuernkranz,
194	for writing and sending the panel library.
195
196Hellmuth Michaelis,
197	for many patches and testing the optimization code.
198
199Eric Newton, Ulrich Drepper, and Anatoly Ivasyuk:
200	the C++ code.
201
202Jonathan Ross,
203	for lessons in using sed.
204
205Keith Bostic (maintainer of 4.4BSD curses)
206	for help, criticism, comments, bug-finding, and being willing to
207	deep-six BSD curses for this one when it grew up.
208
209Richard Stallman,
210	for his commitment to making ncurses free software.
211
212Countless other people have contributed by reporting bugs, sending fixes,
213suggesting improvements, and generally whining about ncurses :-)
214
215BUGS:
216	See the INSTALL file for bug and developer-list addresses.
217	The Hacker's Guide in the doc directory includes some guidelines
218	on how to report bugs in ways that will get them fixed most quickly.
219

README.MinGW

1-------------------------------------------------------------------------------
2-- Copyright 2020 Thomas E. Dickey                                           --
3-- Copyright 2008-2011,2012 Free Software Foundation, Inc.                   --
4--                                                                           --
5-- Permission is hereby granted, free of charge, to any person obtaining a   --
6-- copy of this software and associated documentation files (the             --
7-- "Software"), to deal in the Software without restriction, including       --
8-- without limitation the rights to use, copy, modify, merge, publish,       --
9-- distribute, distribute with modifications, sublicense, and/or sell copies --
10-- of the Software, and to permit persons to whom the Software is furnished  --
11-- to do so, subject to the following conditions:                            --
12--                                                                           --
13-- The above copyright notice and this permission notice shall be included   --
14-- in all copies or substantial portions of the Software.                    --
15--                                                                           --
16-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS   --
17-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF                --
18-- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN --
19-- NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,       --
20-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR     --
21-- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE --
22-- USE OR OTHER DEALINGS IN THE SOFTWARE.                                    --
23--                                                                           --
24-- Except as contained in this notice, the name(s) of the above copyright    --
25-- holders shall not be used in advertising or otherwise to promote the      --
26-- sale, use or other dealings in this Software without prior written        --
27-- authorization.                                                            --
28-------------------------------------------------------------------------------
29-- $Id: README.MinGW,v 1.14 2020/09/06 22:22:44 tom Exp $
30-- Author: Juergen Pfeifer
31-------------------------------------------------------------------------------
32
33This is work in progress, but it is in an state where one can see it
34works at least on the Windows Console.
35
36You should install the MSYS2 package, so that you have a shell environment that
37allows you to run scripts, especially configure, etc.  You can get that
38from
39	https://www.msys2.org/
40
41or the individual packages from
42
43	https://sourceforge.net/projects/msys2/files/
44
45You may also use a hosted MinGW cross-compile toolchain, e.g., on Ubuntu or
46ArchLinux to build the libraries and tools.
47
48To build ncurses for native Windows with support for the new Windows 10 Virtual
49Terminal and PseudoConsole support, you should install at least version 8.0 of
50the mingw-w64-x86_64-headers package as it appears to have support for the
51required Windows SDK level.  Please note that some of the Linux distributions
52are a bit behind with respect to the required MinGW header versions and you may
53not be able to properly build the libraries for current Windows 10 using these
54toolchains.  Although it is a bit slow, MSYS2 on Windows 10 64-Bit is the
55authoritative build environment for the MinGW version of ncurses.
56
57Using MinGW is a pragmatic decision, it is the easiest way to port this
58heavily UNIX based sourcebase to native Windows. The goal is of course
59to provide the includes, libraries and DLLs to be used with the more
60common traditional development environments on Windows, mainly with
61Microsoft Visual Studio.
62
63The TERM environment variable must be set especially to activate the Windows
64console-driver.  The driver checks if TERM is set to "#win32con" (explicit
65use) or if TERM is unset or empty (implicit).
66
67Beginning with build 17763 (Fall 2018 update), Windows 10 supports ANSI escape
68sequences (Virtual Terminal support). If ncurses detects this or a later
69Windows 10 version, the interpretation of the implicit TERM setting (which
70means: TERM is not set or empty) changes. In this case, TERM is to be assumed
71to be "ms-terminal" and ncurses acts using the regular terminfo based driver,
72thus acting like a regular Terminal we all know from UNIX like environments.
73
74This code requires WindowsNT 6.0 or better, which means on the client
75Windows Vista or better, on the server Windows Server 2008 or better.
76
77If running on Windows 10 Build 17763 or later is detected, any program
78spawning a subprocess running a ncurses program should use the new
79PseudoConsole support, which provides what we know as pty from the UNIX
80world also for Windows. Using the CreatePseudoConsole API
81(see https://docs.microsoft.com/en-us/windows/console/createpseudoconsole)
82in the calling process, it is guaranteed that the called ncurses program has
83a console that is required by its implementation, even if the calling program
84is NOT a console program, e.g., MSYS2's own mintty Terminal emulator.
85
86In the current MSYS2/minGW setup, building MinGW shared libraries with
87libtool for ncurses seems to be broken, so I recommend NOT to use libtool.
88
89To build a modern but still small footprint ncurses that provides
90hooks for interop, I recommend using these options:
91
92	--without-libtool
93	--disable-home-terminfo
94	--enable-database
95	--disable-termcap
96	--enable-sp-funcs
97	--enable-term-driver
98	--enable-interop
99
100This is the configuration command line which I am using at the moment
101(assuming environment variable MINGW_ROOT holds the root directory name of
102your MinGW build):
103
104./configure \
105	--prefix=/mingw64 \
106	--without-cxx \
107	--without-ada \
108	--enable-warnings \
109	--enable-assertions \
110	--enable-exp-win32 \
111	--enable-ext-funcs \
112	--disable-home-terminfo \
113	--disable-echo \
114	--disable-getcap \
115	--disable-hard-tabs \
116	--disable-leaks \
117	--disable-macros \
118	--disable-overwrite \
119	--enable-opaque-curses \
120	--enable-opaque-panel \
121	--enable-opaque-menu \
122	--enable-opaque-form \
123	--enable-database \
124	--enable-sp-funcs \
125	--enable-term-driver \
126	--enable-interop \
127	--disable-termcap \
128	--enable-database \
129	--with-progs \
130	--without-libtool \
131	--enable-pc-files \
132	--with-shared \
133	--with-normal \
134	--without-debug \
135	--with-fallbacks=ms-terminal \
136	--without-manpages
137
138Please note that it is also necessary to set this environment variable:
139
140export PATH_SEPARATOR=";"
141
142in order to parse the terminfo paths correctly. Terminfo paths should
143always be separated by a semicolon, even when running under MSYS2.
144
145All the options above are - like the whole Windows support -
146experimental.
147
148-- vile:txtmode
149

README.emx

1-------------------------------------------------------------------------------
2-- Copyright 2020,2021 Thomas E. Dickey                                      --
3-- Copyright 1998-2006,2018 Free Software Foundation, Inc.                   --
4--                                                                           --
5-- Permission is hereby granted, free of charge, to any person obtaining a   --
6-- copy of this software and associated documentation files (the             --
7-- "Software"), to deal in the Software without restriction, including       --
8-- without limitation the rights to use, copy, modify, merge, publish,       --
9-- distribute, distribute with modifications, sublicense, and/or sell copies --
10-- of the Software, and to permit persons to whom the Software is furnished  --
11-- to do so, subject to the following conditions:                            --
12--                                                                           --
13-- The above copyright notice and this permission notice shall be included   --
14-- in all copies or substantial portions of the Software.                    --
15--                                                                           --
16-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS   --
17-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF                --
18-- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN --
19-- NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,       --
20-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR     --
21-- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE --
22-- USE OR OTHER DEALINGS IN THE SOFTWARE.                                    --
23--                                                                           --
24-- Except as contained in this notice, the name(s) of the above copyright    --
25-- holders shall not be used in advertising or otherwise to promote the      --
26-- sale, use or other dealings in this Software without prior written        --
27-- authorization.                                                            --
28-------------------------------------------------------------------------------
29-- $Id: README.emx,v 1.12 2021/06/17 21:20:30 tom Exp $
30-- Author: Thomas Dickey
31-------------------------------------------------------------------------------
32
33You can build ncurses on OS/2 in the EMX environment.  But you must build and
34acquire tools.  Not all of the tools distributed with EMX work properly, and
35some additional ones are required.
36
37First, the configure script distributed with ncurses will not run as-is in EMX.
38You can generate a new one if you have autoconf built for EMX.  You will need
39the EMX development tools, of course.  Get these programs to start:
40
41	GNU m4 program (version 1.4)
42	GNU autoconf (version 2.13).
43	GNU patch (version 2.5)
44
45Apply the autoconf patches from
46
47	https://invisible-island.net/autoconf
48	ftp://ftp.invisible-island.net/autoconf
49
50These are ordered by date:
51
52	autoconf-2.13-20030927.patch.gz
53	autoconf-2.13-20030927-emx.patch.gz
54
55I built my development environment for ncurses using EMX 0.9c at the end of
561997.  Much of the EMX patch for autoconf was done originally by J.J.G.Ripoll,
57using a similar environment (he prefers using the 'ash' shell).  Newer versions
58may fix these problems:
59
60	+ The pdksh program distributed at Hobbes and Leo (with a 1996 date) is
61	  defective.  It does not process "here documents" correctly (which
62	  renders it useless for running the autoconf script).  I built my own
63	  copy of pdksh 5.2.13, which does have the bug corrected (documented
64	  in the change log for pdksh).
65
66	+ I also built from sources (because the distributed binaries did not
67	  work) the cmp, diff programs.
68
69	  Other required utilities such as ar, cat, chmod, cp, gawk, grep, mv,
70	  ls, rm, mkdir, sed, sort and tr worked.
71
72Once you have autoconf patched and installed, run 'autoconf' from the top-level
73directory of ncurses to generate the EMX-specific configure script.
74