summaryrefslogtreecommitdiffstats
path: root/lib/ncurses
Commit message (Collapse)AuthorAgeFilesLines
* Add __FBSDID()s to libncursesdillon2001-09-301-2/+3
|
* Unbreak build-tools -- build and use up-to-date ${HEADERS}.ru2001-09-141-2/+2
| | | | | | | | | These might not be present in /usr/include, or they may be incompatible with the version we are building (for library upgrades/downgrades). This stopped the RELENG_4 buildworld on a -CURRENT box. Well, this only fixes the issue if MFC'ed. :-)
* Turn on the extra 'const' settings for various curses functions. Whilepeter2001-06-121-1/+1
| | | | | | | | this is not strictly compliant with XSI curses, it enables us to pass const strings to many more functions that are actually const safe than before. This should be harmless. Requested by: lots of folks
* Create curs_termcap.3 --> termcap.3 MLINK, so many manpages in our tree thatsobomax2001-06-071-3/+4
| | | | | | reference to termcap.3 will not be pointing to nowhere. MFC after: 1 week
* 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-173-32/+35
|
* MAN[1-9] -> MAN.ru2001-03-274-32/+23
|
* 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.
* Install manpages, including appropriate MLINKS.tg2000-12-053-0/+137
|
* Fix a buildworld hiccup with build-tools that wasn't present in standalonepeter2000-10-111-1/+1
| | | | library builds.
* Oops, beforedepend isn't needed. The build problem I had was due topeter2000-10-111-2/+0
| | | | something else.
* Update for ncurses 5.1-20001009 importpeter2000-10-111-3/+10
|
* Update for ncurses 20001009 importpeter2000-10-111-3/+10
|
* Update after ncurses 20001009 importpeter2000-10-111-3/+12
|
* 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
|
* Add missing source files. Sort SRCS.tg2000-05-243-8/+14
| | | | PR: 18631
* 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
|
* Replace beforeinstall target with new variables used by .mk system.rgrimes2000-01-143-14/+3
| | | | Reviewed by: marcel, and make world
* 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 bmake glue for libform (the SVSV-style ETI curses form driver frompeter1999-09-051-0/+23
| | | | ncurses)
* Add bmake glue for libpanel (the SVSV-style ETI curses panel (overlappingpeter1999-09-051-0/+19
| | | | layers) driver from ncurses)
* Add bmake glue for libmenu (the SVSV-style ETI curses menu driver frompeter1999-09-051-0/+24
| | | | ncurses)
* 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-304-198/+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)
* $Id$ -> $FreeBSD$peter1999-08-281-1/+1
|
* Renamed the generated include file keys.tries to keys.tries.h sobde1998-03-201-10/+6
| | | | | that it can be put in SRCS for dependency generation to work properly. Don't use beforedepend, as usual.
* Remove terminfo manpage we don't have itache1997-10-201-2/+2
|
* Fix saving/restoring tty modes, allow initscr be called twice,ache1997-08-251-2/+2
| | | | from ncurses 4.1
* Add winnstr family and fake resizeterm from ncurses 4.1 for compatibilityache1997-08-241-3/+3
| | | | | with recent applications. Bump minor number.
* Revert $FreeBSD$ to $Id$peter1997-02-221-1/+1
|
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-01-141-1/+1
| | | | | | | | 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.
* Fixed DPADD.bde1996-09-051-2/+3
|
* cmp -s || install -c ==> install -Cpeter1996-08-301-8/+5
|
* Delete -DGOOD_SELECT from CFLAGS, we don't have it. This is used topeter1996-08-261-2/+2
| | | | | indicate that select() returns the leftover time remaining in the timeval arg of select, we don't do that (yet :-).
* remove MLINKS tparm.3 due name clash with libtermcapwosch1996-05-271-2/+5
|
* Added some missing MLINKS for section 3 man pages.mpp1996-02-091-1/+125
| | | | | | | Also corrected a few minor formatting errors, file location and cross references in some of the section 3 man pages. This shuts up a lot of the output from "manck" for section 3.
OpenPOWER on IntegriCloud