aboutsummaryrefslogtreecommitdiff
path: root/lib/libncurses
Commit message (Collapse)AuthorAgeFilesLines
...
* This is the second half of unbreaking the world build. Add a -DNOHTMLBrian Feldman2000-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. Notes: svn path=/head/; revision=55816
* *draws his sword*Brian Feldman2000-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. Notes: svn path=/head/; revision=55813
* Install html files to /usr/share/doc/ncurses/Alexey Zelkin2000-01-101-0/+9
| | | | Notes: svn path=/head/; revision=55759
* Make sure curses.h is generated when making build-tools make_keysMarcel Moolenaar1999-12-201-2/+2
| | | | | | | and make_hash depend on it. Notes: svn path=/head/; revision=54876
* Add a `build-tools' target for make_hash and make_keys.Marcel Moolenaar1999-12-131-0/+2
| | | | Notes: svn path=/head/; revision=54576
* Install include files with mode 444.Marcel Moolenaar1999-12-111-1/+1
| | | | Notes: svn path=/head/; revision=54435
* EEK! termios mode wasn't activated..Peter Wemm1999-11-301-1/+1
| | | | | | | Noticed by: Christian Weisgerber <naddy@mips.rhein-neckar.de> Notes: svn path=/head/; revision=53926
* Don't complain loudly about unknown termcap capabilities, eg:Peter Wemm1999-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> Notes: svn path=/head/; revision=53252
* Try and catch a make -j problem in 'make depend'.Peter Wemm1999-09-261-0/+2
| | | | | | | Tested by: Dirk-Willem van Gulik <dirkx@va-179.skylink.it> Notes: svn path=/head/; revision=51687
* Add a missing dependency for make_hash which could make various forms ofPeter Wemm1999-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 Notes: svn path=/head/; revision=50726
* Make SYMLINKS relative. SYMLINKS are supposed to be relative, and for thisDmitrij Tejblum1999-08-301-25/+25
| | | | | | | reason ${DESTDIR} isn't added to the symlink source. Notes: svn path=/head/; revision=50676
* Use src/contrib/ncurses, v5.0.990821 prerelease.Peter Wemm1999-08-30126-17286/+933
| | | | | | | | | | | | | | | 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) Notes: svn path=/head/; revision=50624
* Add $FreeBSD$ lines to man pages that are missing them to make itMike Pritchard1999-08-2836-0/+72
| | | | | | | | | | easier for translation teams. PR: docs/13418 Submitted by: Alexey Zelkin <phantom@cris.net> Notes: svn path=/head/; revision=50533
* $Header$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50488
* $Id$ -> $FreeBSD$Peter Wemm1999-08-284-4/+4
| | | | Notes: svn path=/head/; revision=50476
* Add $Id$, to make it simpler for members of the translation teams toNik Clayton1999-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 Notes: svn path=/head/; revision=48794
* Correct prototype for tigetstr().Joseph Koshy1999-05-051-1/+1
| | | | | | | | PR: docs/11489 Submitted by: Andrew <andrew@ugh.net.au> Notes: svn path=/head/; revision=46461
* More egcs warning fixes:Warner Losh1999-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 Notes: svn path=/head/; revision=46079
* Add missing int to prototypes of mvaddstr and mvaddnstr.Steve Price1998-12-101-2/+2
| | | | | | | | PR: 8110 Submitted by: Stephen J. Roznowski <sjr@home.net> Notes: svn path=/head/; revision=41636
* $@ -> ${.TARGET}Warner Losh1998-09-111-1/+1
| | | | Notes: svn path=/head/; revision=39063
* Fix keypad on/off for ^Z suspends by replacing reset_*_mode()Andrey A. Chernov1998-06-193-25/+53
| | | | | | | from libmytinfo Notes: svn path=/head/; revision=37057
* Low level use of 'vidattr()' can cause a NULL pointer to beAndrey A. Chernov1998-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> Notes: svn path=/head/; revision=36083
* Add some easy to implement XSI macros including attr_getAndrey A. Chernov1998-04-151-1/+10
| | | | Notes: svn path=/head/; revision=35217
* Renamed the generated include file keys.tries to keys.tries.h soBruce Evans1998-03-202-12/+8
| | | | | | | | that it can be put in SRCS for dependency generation to work properly. Don't use beforedepend, as usual. Notes: svn path=/head/; revision=34710
* Avoid an uninitialised variable warning from gcc. I bet some peopleJohn Birrell1998-02-201-1/+1
| | | | | | | don't like me doing this, but I want to see clean compiles. 8-) Notes: svn path=/head/; revision=33661
* Remove unneeded code left from testingAndrey A. Chernov1998-01-021-13/+2
| | | | Notes: svn path=/head/; revision=32174
* 1) Redo internal interface to be more latest ncurses-likeAndrey A. Chernov1998-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 Notes: svn path=/head/; revision=32172
* Fix another problem with clearing the last line of theSteve Price1998-01-011-1/+1
| | | | | | | | | display. Submitted by: Kouichi Hirabayashi <kh@mogami-wire.co.jp> Notes: svn path=/head/; revision=32171
* Handle the condition where BS is typed while the cursor isSteve Price1997-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> Notes: svn path=/head/; revision=32073
* Typo.Joerg Wunsch1997-10-281-2/+2
| | | | | | | Submitted by: peter@rhiannon.clari.net.au (Peter Hawkins) Notes: svn path=/head/; revision=30800
* Remove terminfo manpage we don't have itAndrey A. Chernov1997-10-202-1658/+2
| | | | Notes: svn path=/head/; revision=30605
* environmental -> environment.Philippe Charnier1997-09-181-1/+1
| | | | Notes: svn path=/head/; revision=29563
* Fix possible coredump on BW displaysAndrey A. Chernov1997-09-021-2/+6
| | | | Notes: svn path=/head/; revision=29038
* Fix inspace handling I broke in rev 1.13Andrey A. Chernov1997-08-281-3/+3
| | | | Notes: svn path=/head/; revision=28857
* Fix saving/restoring tty modes, allow initscr be called twice,Andrey A. Chernov1997-08-254-27/+64
| | | | | | | from ncurses 4.1 Notes: svn path=/head/; revision=28698
* Add winnstr family and fake resizeterm from ncurses 4.1 for compatibilityAndrey A. Chernov1997-08-244-3/+70
| | | | | | | | with recent applications. Bump minor number. Notes: svn path=/head/; revision=28665
* Define NCURSES_VERSION publicly, some applications want itAndrey A. Chernov1997-08-135-37/+80
| | | | | | | | Fix unctrl() Merging from 4.1 used for this fixes. Notes: svn path=/head/; revision=28183
* TRACE_VIRTPUT (we don't have it yet) -> TRACE_CHARPUTAndrey A. Chernov1997-08-131-1/+1
| | | | Notes: svn path=/head/; revision=28132
* Fix handling of mixed colors+attributes case by merging from ncurses 4.1Andrey A. Chernov1997-07-301-7/+21
| | | | Notes: svn path=/head/; revision=27774
* Fix logical background handling by merging it from ncurses 4.1Andrey A. Chernov1997-07-3014-37/+102
| | | | | | | No new user-visible functions added Notes: svn path=/head/; revision=27773
* ifdef out ttytype definition, mytinfo not have it and configure confusedAndrey A. Chernov1997-07-301-0/+2
| | | | Notes: svn path=/head/; revision=27764
* Add getbkgd() macroAndrey A. Chernov1997-07-271-0/+1
| | | | Notes: svn path=/head/; revision=27721
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-223-3/+3
| | | | Notes: svn path=/head/; revision=22993
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-143-3/+3
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* The fix for PR#bin/722 made it into 2.1.5 and 2.1.6, but not into -current.Stephen McKay1996-12-221-2/+2
| | | | | | | | | | | | | | | Without it, the last row and last column don't get their background updated. I think this should be in 2.2. Submitted by: Paul Koch <koch@thehub.com.au> (again) Passing observation: The fixes that pst put in on 1996/09/22 then backed out look like they should be put in again. If sysinstall is depending on bugs, then it should be fixed. Notes: svn path=/head/; revision=20793
* delete doubled words, e.g.: "the the" -> "the"Wolfram Schneider1996-10-052-2/+6
| | | | Notes: svn path=/head/; revision=18718
* Added parens to noecho in screen initialization example.Alexander Langer1996-09-281-1/+1
| | | | Notes: svn path=/head/; revision=18530
* Back out my recent compilation clean-up changes, sysinstall is now weird.Paul Traina1996-09-265-5/+5
| | | | Notes: svn path=/head/; revision=18496
* Fix some compilation warningsPaul Traina1996-09-225-5/+5
| | | | Notes: svn path=/head/; revision=18454
* Don't smash attributes when turning color values off. This was submittedJordan K. Hubbard1996-09-061-2/+2
| | | | | | | | | | as a PR to GNATs but it evidently went astray somehow since I can't find it in the database now, nor does an assigned PR# appear on the mail I got. Sorry about that, Danny! Submitted-By: Danny R. Johnston <danny@simn.com> Notes: svn path=/head/; revision=18071