summaryrefslogtreecommitdiffstats
path: root/lib/libncurses
Commit message (Collapse)AuthorAgeFilesLines
* Use the correct FreeBSD definitions for wint_t and wchar_t.obrien2001-05-181-1/+3
|
* Argh. Fix a long-standing man page filter botch. See terminfo(5) forpeter2001-05-171-1/+1
| | | | the effect.
* Update for ncurses 5.2-20010512 importpeter2001-05-172-31/+34
|
* MAN[1-9] -> MAN.ru2001-03-271-12/+9
|
* Add some missing functions in MLINKS. Link assume_default_colors.3tg2000-12-051-5/+10
| | | | | and use_default_colors.3 to default_colors.3 instead of dft_fgbg.3. The former seems to be newer and/or better maintained.
* Fix a buildworld hiccup with build-tools that wasn't present in standalonepeter2000-10-111-1/+1
| | | | library builds.
* Update bmake glue after ncurses 5.1-20001009 import.peter2000-10-112-10/+30
|
* src/Makefile.inc1 sets DESTDIR=${WORLDTMP} for `buildworld' stageru2000-08-041-1/+1
| | | | | causing pre-processed manual pages, like terminfo(5), to point to the temporary build tree.
* Add new man pagespeter2000-07-031-1/+3
|
* Get this to compile in the 5.1-20000701-prerelease environment.peter2000-07-033-5/+17
|
* Make a link from curses.3 -> ncurses.3 so that 'man 3 curses' doespeter2000-03-021-0/+1
| | | | something remotely useful.
* Add the new version.c file for curses_version(3)peter2000-01-261-0/+1
|
* This is the second half of unbreaking the world build. Add a -DNOHTMLgreen2000-01-111-0/+2
| | | | | | corollary for -DNOINFO and -DNOMAN. I'll fix this properly (add specific HTML doc magic) in the .mk files later; right now, just unbreak the world.
* *draws his sword*green2000-01-111-0/+1
| | | | | | | | | I smite thee, vile buildworld breakage! The story is that these were added to beforeinstall improperly. In our beforeinstall, a full mtree has not been populated. Since the tree is not populated, we explode from missing directories on doc install. It should not be done in beforeinstall (includes) anyway.
* Install html files to /usr/share/doc/ncurses/phantom2000-01-101-0/+9
|
* Make sure curses.h is generated when making build-tools make_keysmarcel1999-12-201-2/+2
| | | | and make_hash depend on it.
* Add a `build-tools' target for make_hash and make_keys.marcel1999-12-131-0/+2
|
* Install include files with mode 444.marcel1999-12-111-1/+1
|
* EEK! termios mode wasn't activated..peter1999-11-301-1/+1
| | | | Noticed by: Christian Weisgerber <naddy@mips.rhein-neckar.de>
* Don't complain loudly about unknown termcap capabilities, eg:peter1999-11-171-1/+1
| | | | | | | | {vladivostok:/usr/home/ken:1:0} echo |more "TERMCAP", line 0, col 60, terminal 'screen': unknown capability 'G0' "TERMCAP", line 0, col 806, terminal 'screen': unknown capability 'AX' Submitted by: Kenneth D. Merry <ken@kdm.org>
* Try and catch a make -j problem in 'make depend'.peter1999-09-261-0/+2
| | | | Tested by: Dirk-Willem van Gulik <dirkx@va-179.skylink.it>
* Add a missing dependency for make_hash which could make various forms ofpeter1999-09-011-1/+1
| | | | | | | make -jN fail. This fixes the present problem only, not the larger one of when those internal tools are built and the cross-compiling etc. Submitted by: luoqi
* Make SYMLINKS relative. SYMLINKS are supposed to be relative, and for thisdt1999-08-301-25/+25
| | | | reason ${DESTDIR} isn't added to the symlink source.
* Use src/contrib/ncurses, v5.0.990821 prerelease.peter1999-08-30126-17294/+941
| | | | | | | | | | | | This isn't quite finished yet, there are still some unresolved problems with ospeed and the sgtty.h (non-posix) terminal interface. Mostly this only causes problems with src/games. The other tools and libraries (libform,libpanel,libmenu) will come shortly but are seperate. Beware, there be dragons here! (The build will be broken for a short while)
* Add $FreeBSD$ lines to man pages that are missing them to make itmpp1999-08-2836-0/+72
| | | | | | | easier for translation teams. PR: docs/13418 Submitted by: Alexey Zelkin <phantom@cris.net>
* $Header$ -> $FreeBSD$peter1999-08-281-1/+1
|
* $Id$ -> $FreeBSD$peter1999-08-284-4/+4
|
* Add $Id$, to make it simpler for members of the translation teams tonik1999-07-121-0/+4
| | | | | | | | | | | | | | | | | track. The $Id$ line is normally at the bottom of the main comment block in the man page, separated from the rest of the manpage by an empty comment, like so; .\" $Id$ .\" If the immediately preceding comment is a @(#) format ID marker than the the $Id$ will line up underneath it with no intervening blank lines. Otherwise, an additional blank line is inserted. Approved by: bde
* Correct prototype for tigetstr().jkoshy1999-05-051-1/+1
| | | | | PR: docs/11489 Submitted by: Andrew <andrew@ugh.net.au>
* More egcs warning fixes:imp1999-04-251-1/+2
| | | | | | | | | | o use braces to avoid potentially ambiguous else o don't default to type int (and also remove a useless register modifier). o Use parens around assignment values used as truth values. o Remove unused function. Reviewed by: obrien and chuckr
* Add missing int to prototypes of mvaddstr and mvaddnstr.steve1998-12-101-2/+2
| | | | | PR: 8110 Submitted by: Stephen J. Roznowski <sjr@home.net>
* $@ -> ${.TARGET}imp1998-09-111-1/+1
|
* Fix keypad on/off for ^Z suspends by replacing reset_*_mode()ache1998-06-193-25/+53
| | | | from libmytinfo
* Low level use of 'vidattr()' can cause a NULL pointer to beache1998-05-151-5/+11
| | | | | | | | | dereferenced. This is because 'SP' is only initialized via 'newterm()' (which is not required if you are going to interact with the 'terminfo' database without using 'ncurses'). PR: 6648 Submitted by: Max Euston <meuston@jmrodgers.com>
* Add some easy to implement XSI macros including attr_getache1998-04-151-1/+10
|
* Renamed the generated include file keys.tries to keys.tries.h sobde1998-03-202-12/+8
| | | | | that it can be put in SRCS for dependency generation to work properly. Don't use beforedepend, as usual.
* Avoid an uninitialised variable warning from gcc. I bet some peoplejb1998-02-201-1/+1
| | | | don't like me doing this, but I want to see clean compiles. 8-)
* Remove unneeded code left from testingache1998-01-021-13/+2
|
* 1) Redo internal interface to be more latest ncurses-likeache1998-01-023-73/+82
| | | | | | 2) Fix winsdel called in last line of the window (nothing happens in old variant) 3) Add range checks to wscrl() and internal soft scroll function
* Fix another problem with clearing the last line of thesteve1998-01-011-1/+1
| | | | | | display. Submitted by: Kouichi Hirabayashi <kh@mogami-wire.co.jp>
* Handle the condition where BS is typed while the cursor issteve1997-12-291-1/+3
| | | | | | | | | at the first position on either of the last two lines of the screen. Ie. append contents of current line to the previous line and scroll the next line's contents up. PR: 5392 Submitted by: Kouichi Hirabayashi <kh@mogami-wire.co.jp>
* Typo.joerg1997-10-281-2/+2
| | | | Submitted by: peter@rhiannon.clari.net.au (Peter Hawkins)
* Remove terminfo manpage we don't have itache1997-10-202-1658/+2
|
* environmental -> environment.charnier1997-09-181-1/+1
|
* Fix possible coredump on BW displaysache1997-09-021-2/+6
|
* Fix inspace handling I broke in rev 1.13ache1997-08-281-3/+3
|
* Fix saving/restoring tty modes, allow initscr be called twice,ache1997-08-254-27/+64
| | | | from ncurses 4.1
* Add winnstr family and fake resizeterm from ncurses 4.1 for compatibilityache1997-08-244-3/+70
| | | | | with recent applications. Bump minor number.
* Define NCURSES_VERSION publicly, some applications want itache1997-08-135-37/+80
| | | | | Fix unctrl() Merging from 4.1 used for this fixes.
* TRACE_VIRTPUT (we don't have it yet) -> TRACE_CHARPUTache1997-08-131-1/+1
|
OpenPOWER on IntegriCloud