summaryrefslogtreecommitdiffstats
path: root/usr.bin/xlint
Commit message (Collapse)AuthorAgeFilesLines
* mdoc(7) police: split punctuation characters + misc fixes.ru2001-02-011-1/+1
|
* Prepare for mdoc(7)NG.ru2001-01-161-1/+1
|
* Prepare for mdoc(7)NG.ru2000-12-191-0/+1
|
* Change the spelling of `.' to `.' from .OBJDIR since `.' really is whereobrien2000-12-051-1/+1
| | | | generated files land. Also give precedence to generated files.
* The GCC 2.96 snapshots have slightly different rules for finding includeobrien2000-12-011-1/+1
| | | | | | | files. Mostly -I${.CURDIR} was needed -- especially for YACC generated files as the new cpp does not look in the ultimate source file (ie, the .y file)'s directory as told by the "#line" directive. Some were misspellings of "-I${.CURDIR}" as "-I.".
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-201-11/+11
|
* Remove single-space hard sentence breaks. These degrade the qualitysheldonh2000-03-011-33/+66
| | | | | of the typeset output, tend to make diffs harder to read and provide bad examples for new-comers to mdoc.
* Cosmetic change: space instead of tab in front of $FreeBSD$.sheldonh2000-01-162-2/+2
| | | | Submitted by: bde
* Revert previous change, which is reported to have broken world. Isheldonh2000-01-151-1/+1
| | | | | | | | did test this through a ``make world'', but of course I already had a working lint binary (one that does not call cpp -undef) installed. Reported by: "Pierre Y. Dampure" <Pierre.Dampure@barclayscapital.com>
* Populate /usr/libdata/lint again. David Malone <dwmalone@maths.tcd.ie>sheldonh2000-01-142-4/+5
| | | | | | is responsible for getting me to look at the NetBSD makefiles. :-) Obtained from: NetBSD
* Fix lint for the new cpp. Lint is still broken in other ways, butsheldonh2000-01-141-2/+1
| | | | | | | this at least allows the use of lint -i on single files again. Fiddled rcsid to satisfy commitprep.pl; the original NetBSD tag is still in the comments.
* $Id$ -> $FreeBSD$peter1999-08-282-2/+2
|
* Declaration of strtouq() is not missing from stdlib.h, so don't redeclaredt1999-08-251-3/+0
| | | | it.
* Add $Id$, to make it simpler for members of the translation teams tonik1999-07-121-0/+2
| | | | | | | | | | | | | | | | | 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
* Use __XSTRING() from cdefs.h instead of rolling my own.eivind1999-01-251-7/+1
|
* I may have forgotten to upgrade this value, but that will never happeneivind1999-01-231-6/+8
| | | | again. (Fully clone the value of __FreeBSD__ from the compiler.)
* __FreeBSD__ is also used here.jhay1999-01-231-1/+3
| | | | | Forgotten by: Lots of people. Pointed out by: make world.
* Put y.tab.h back in SRCS. This used to be the best way to getbde1998-05-051-1/+2
| | | | | dependencies on y.tab.h generated. It will soon be used to tell bsd.dep.mk that y.tab.h itself needs to be generated.
* Fixed races in `make -jN' using new yacc rules.bde1998-05-041-6/+2
|
* .Sh AUTHOR -> .Sh AUTHORS. Use .An/.Aq.charnier1998-03-231-1/+1
|
* Fixed `make -jN' for large N. Just put the generated file y.tab.h inbde1998-03-061-1/+3
| | | | | SRCS and add a dummy rule to create it. This and cleaning of yacc output files should all be handled by bsd.prog.mk.
* Work around a gcc bug (causing false warnings about integral constant being ↵tegge1997-06-121-0/+11
| | | | too large, even when the integral constant was e.g. 1).
* Cope with the possibility of __FreeBSD__ = 3peter1997-03-111-1/+3
|
* Sweep through the tree fixing mmap() usage:alex1997-01-162-2/+2
| | | | | | | | | | | | - Use MAP_FAILED instead of the constant -1 to indicate failure (required by POSIX). - Removed flag arguments of '0' (required by POSIX). - Fixed code which expected an error return of 0. - Fixed code which thought any address with the high bit set was an error. - Check for failure where no checks were present. Discussed with: bde
* .Os NetBSD -> .Os FreeBSD.wosch1996-09-281-1/+1
| | | | The pages are not NetBSD specific and FreeBSD is not a child of NetBSD.
* General -Wall warning cleanup, part I.jkh1996-07-125-0/+10
| | | | Submitted-By: Kent Vander Velden <graphix@iastate.edu>
* Fix a couple of minor typos. Closes PR 1309.alex1996-06-111-3/+3
| | | | | Reviewed by: alex Submitted by: jraynard
* Backout yacc changes.phk1996-06-024-4/+4
|
* Finished yacc rules changes.bde1996-06-011-1/+1
|
* yacc rules change.phk1996-05-303-3/+3
|
* Do not include math.h because it isn't used and it causesmpp1996-04-092-2/+0
| | | | | | | | | | | | "make world" to fail if you use the msun math library and blow away /usr/include and then do "make world". This is because the msun math.h isn't installed with the other include files before xlint is built. It finally gets installed when the msun library is built. Perhaps "make world" should install the msun math.h file if it doesn't install the CSRG math.h, to prevent problems like this in the future.
* Correct some man page cross references and file location references.mpp1996-04-071-2/+2
|
* Don't build the special case lint libraries.paul1996-03-313-3/+3
|
* Move llib-lstdc to llib-lc since that's what lint expects.paul1996-03-242-3/+3
|
* Re-enable building of lint libraries.paul1996-03-241-2/+1
|
* Build and install llib-lstdc.ln. Disable Posix version.paul1996-03-241-2/+3
| | | | Change install mode from NONBINMODE to LIBMODE
* Don't build lint libraries for the moment.paul1996-03-241-1/+2
|
* replace 'install' with ${INSTALL}wosch1996-02-062-2/+2
|
* Well, Jochen adopted most of my submissions. So only the differentjoerg1995-11-063-5/+12
| | | | | | | | style of error reporting (i prefer gcc style to be consistent with the compiler) is left, plus a minor nit he's most likely been overlooking. There are still problems with bootstrapping, and you should expect troubles when linting libc...
* Jochen Pohl's lint(1) from NetBSD. Yet another import.joerg1995-11-0537-0/+20618
This is just a vendor import by now. I'll wait until i'll get the imported files back via CTM before applying the FreeBSD patches. Don't use it yet. Submitted by: Jochen Pohl <jpo.drs@sni.de> Obtained from: (NetBSD -- this version is directly from Jochen)
OpenPOWER on IntegriCloud