summaryrefslogtreecommitdiff
path: root/lib/libtermcap
Commit message (Collapse)AuthorAgeFilesLines
* Change the last -Wall cleanup so that the tputs declaration doesn'tPeter Wemm1996-09-102-6/+7
| | | | | | | | | | | | conflict with the other declarations in other files. tputs() is traditionally declared to return int, not void. curses.h has it as int. ncurses has int and actually sets the return value. This problem has been causing the ircII port to not compile. (I've only minimally tested this, I do not have libtermcap on my systems) Notes: svn path=/head/; revision=18209
* oops, install termcap.h from ${.CURDIR}, not the obj dir.Peter Wemm1996-08-301-2/+2
| | | | | | | Pointed out by: asami Notes: svn path=/head/; revision=17948
* cmp -s || install -c ==> install -CPeter Wemm1996-08-301-2/+1
| | | | Notes: svn path=/head/; revision=17935
* General -Wall warning cleanup, part I.Jordan K. Hubbard1996-07-125-6/+8
| | | | | | | Submitted-By: Kent Vander Velden <graphix@iastate.edu> Notes: svn path=/head/; revision=17141
* Another round of man page cleanups.Mike Pritchard1996-02-121-1/+1
| | | | | | | Down to only about 100 items left to cleanup! :-) Notes: svn path=/head/; revision=14045
* Change `install' to `${INSTALL}' so that default install flags can beBruce Evans1995-08-061-1/+1
| | | | | | | | | | specified in the top level Makefiles. Previously I missed dozens of Makefiles that skip the install after using `cmp -s' to decide that the install isn't necessary. Notes: svn path=/head/; revision=9970
* Do a little trick which covers 99% cases: initialize ospeedAndrey A. Chernov1995-08-057-48/+53
| | | | | | | | | | variable directly in tgetent by stderr or stdout output speed. It helps hide in non-standard __set_ospeed function and remove it from other sources (coming soon). Do prototype cleanup too. Notes: svn path=/head/; revision=9938
* Add non-standard function: _set_ospeed(speed)Andrey A. Chernov1995-08-044-6/+89
| | | | | | | | | | | | Basically all termios+termcap pgms needs it. It set ospeed variable using nearest-matched stty speeds, which helps termcap pgms works with non-fixed termios speeds and not duplicate ospeed switch into every pgm. Also it isn't standard function, its source code is too big to include it in whole to every termcap+termios pgm. Notes: svn path=/head/; revision=9887
* Add missing entries for 38400/57600/115200 bauds to tmspc10[]Andrey A. Chernov1995-07-231-1/+2
| | | | Notes: svn path=/head/; revision=9650
* Remove trailing whitespace.Rodney W. Grimes1995-05-303-12/+12
| | | | Notes: svn path=/head/; revision=8870
* Bump minor numberAndrey A. Chernov1995-05-031-0/+2
| | | | Notes: svn path=/head/; revision=8249
* Continue of previous fix: eliminate backslashes too.Andrey A. Chernov1995-03-261-1/+1
| | | | Notes: svn path=/head/; revision=7379
* Compact entry returned to user:Andrey A. Chernov1995-03-261-3/+49
| | | | | | | | | | | | 1) Eliminate spaces and double ':'. 2) Remove duplicated capabilities from tc= expansion. It is needed to not overflow historycal 1024 limit. Add range check and return -1 if entry is too big instead of corrupting user memory. Notes: svn path=/head/; revision=7378
* tputs: (char) -> (int)Andrey A. Chernov1994-12-102-3/+3
| | | | Notes: svn path=/head/; revision=5025
* Fix tputs declarationAndrey A. Chernov1994-12-092-3/+3
| | | | Notes: svn path=/head/; revision=5022
* Describe tparmAndrey A. Chernov1994-12-041-0/+17
| | | | Notes: svn path=/head/; revision=4945
* Add $Id$Andrey A. Chernov1994-12-041-1/+1
| | | | Notes: svn path=/head/; revision=4943
* Add termcap.h & tparmAndrey A. Chernov1994-12-044-9/+826
| | | | Notes: svn path=/head/; revision=4940
* Ooops, change back the LIBDIR macro to the SHLIBDIR macro for the sharedAndreas Schulz1994-11-191-2/+2
| | | | | | | libs as told by Bruce. Now it works. Notes: svn path=/head/; revision=4674
* Makefile:Andreas Schulz1994-11-182-2/+3
| | | | | | | | | | | | | Change the reference for the libtermcap libtermlib link from SHLIBDIR to LIBDIR. SHLIBDIR is undefined in the standard case. termcap.c: Initialize a local variable to zero. Otherwise an erroneous free call can happen and clobber the calling program. Seen with vi and gdb. If you have TERMCAP set with a terminal entry and set TERM with something like huhu, vi and gdb core dumps. Notes: svn path=/head/; revision=4631
* Remove ${DESTDIR} from link-macros. Already applied behind the scenes.Poul-Henning Kamp1994-11-181-4/+4
| | | | Notes: svn path=/head/; revision=4583
* Install shared libraries in ${SHLIBDIR} instead of in ${LIBDIR}.Bruce Evans1994-11-141-4/+4
| | | | | | | Add missing ${DESTDIR}'s. Notes: svn path=/head/; revision=4455
* Forget to change = to += in previous commitAndrey A. Chernov1994-11-081-1/+1
| | | | Notes: svn path=/head/; revision=4289
* Add missing link for shared libtermlibAndrey A. Chernov1994-11-081-0/+4
| | | | Notes: svn path=/head/; revision=4288
* Oops, back out ospeed fix, I forget that flushing can occurse _after_Andrey A. Chernov1994-10-061-5/+27
| | | | | | | usleep, too quick commit :-( Notes: svn path=/head/; revision=3394
* Change padding mechanism to use usleep, old variant not worksAndrey A. Chernov1994-10-061-27/+5
| | | | | | | | | | on terminals with no pad char (cons25) and quote from tputs.c says so too: ! * Too bad there are no user program accessible programmed delays. ! * Transmitting pad characters slows many ! * terminals down and also loads the system. Notes: svn path=/head/; revision=3388
* Correct the man page extent.Jordan K. Hubbard1994-08-081-1/+1
| | | | | | | Submitted by: jkh Notes: svn path=/head/; revision=1965
* Do not create link for *lib_p.a if you are not installing profiled libraries.Rodney W. Grimes1994-05-271-2/+4
| | | | Notes: svn path=/head/; revision=1587
* BSD 4.4 Lite Lib SourcesRodney W. Grimes1994-05-279-0/+1106
Notes: svn path=/cvs2svn/branches/unlabeled-1.1.1/; revision=1573