aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/compile_et
Commit message (Collapse)AuthorAgeFilesLines
* Style: move .PATH to where it belongs.Ruslan Ermilov2005-10-141-2/+2
| | | | Notes: svn path=/head/; revision=151328
* Build this from contrib/ now.Mark Murray1999-09-047-657/+3
| | | | Notes: svn path=/head/; revision=50881
* $Header$ -> $FreeBSD$Peter Wemm1999-08-284-4/+4
| | | | Notes: svn path=/head/; revision=50488
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50477
* Unbreak K&R support, and generate code that works in K&R C as well asDag-Erling Smørgrav1998-12-181-20/+12
| | | | | | | ANSI C no matter what language is specified. Notes: svn path=/head/; revision=41922
* Generate a prototype for initialize_XXXX_error_table() when the languageDag-Erling Smørgrav1998-12-151-3/+3
| | | | | | | is set to C. Notes: svn path=/head/; revision=41819
* Simplified using new yacc rules and by not generating y.tab.h. TheBruce Evans1998-05-041-3/+4
| | | | | | | lex source is still handled bogusly. Notes: svn path=/head/; revision=35701
* Don't use beforedepend to break things. The usual fix of puttingBruce Evans1998-03-201-11/+9
| | | | | | | | | | | | | | | | generated sources in SRCS breaks because compile_et uses an evil include of one .c file in another. Use a worse fix. Perhaps DPSRCS is useful after all. Don't put *.y in SRCS. Put the generated file in SRCS instead. This fixes incomplete dependencies (mkdep can't work on *.y). Don't override the default .l.c rule. Just use LFLAGS. Fixed some style bugs. Notes: svn path=/head/; revision=34708
* Mdoc'ify man page. Use err(3). Remove whoami.Philippe Charnier1997-06-303-64/+49
| | | | Notes: svn path=/head/; revision=27095
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-221-1/+1
| | | | Notes: svn path=/head/; revision=23012
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-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. Notes: svn path=/head/; revision=21673
* General -Wall warning cleanup, part I.Jordan K. Hubbard1996-07-123-11/+14
| | | | | | | Submitted-By: Kent Vander Velden <graphix@iastate.edu> Notes: svn path=/head/; revision=17142
* recording cvs-1.6 file deathPeter Wemm1995-12-308-402/+0
| | | | Notes: svn path=/cvs2svn/branches/ATT/; revision=13122
* According to stdlib.h, malloc and realloc return void * but error_table.yBill Paul1995-03-151-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | declares them to return char *. For some reason, this causes no problems with the old compiler tools, but doing a 'make world' with gcc 2.6.3 in a seperate DESTDIR got me this error: yacc -d /usr/src/usr.bin/compile_et/error_table.y cc -O2 -I. -I/usr/src/usr.bin/compile_et/../../lib/libcom_err -I/mnt/usr/include -c y.tab.c -o error_table.o In file included from /usr/src/usr.bin/compile_et/et_lex.lex.l:11, from /usr/src/usr.bin/compile_et/error_table.y:233: /mnt/usr/include/stdlib.h:100: conflicting types for `malloc' /usr/src/usr.bin/compile_et/error_table.y:80: previous declaration of `malloc' /mnt/usr/include/stdlib.h:104: conflicting types for `realloc' /usr/src/usr.bin/compile_et/error_table.y:80: previous declaration of `realloc' *** Error code 1 Stop. Declaring malloc and realloc to return void * fixes this. It could be that the new gcc is a bit more picky about these things. Notes: svn path=/head/; revision=7073
* Add y.tab.h to CLEANFILES.Jordan K. Hubbard1995-02-091-2/+2
| | | | Notes: svn path=/head/; revision=6255
* Fix include directive bobble.Garrett Wollman1995-01-141-2/+2
| | | | Notes: svn path=/head/; revision=5625
* Upgrade to latest released SIPB version I can find. (Unfortunately, theGarrett Wollman1995-01-147-187/+450
| | | | | | | original releases were not numbered.) Notes: svn path=/head/; revision=5624
* Slight makefile cleanup.Garrett Wollman1995-01-141-3/+2
| | | | Notes: svn path=/head/; revision=5617
* Initial import of eBones.Geoff Rehmet1994-09-3012-0/+823
(Including all changes for FreeBSD - importing the original eBones distribution would be too complex at this stage, since I don't have access to Piero's CVS.) (If you want to include eBones in your system, don't forget to include MAKE_EBONES in /etc/make.conf.) (This stuff is now also suppable from braae.ru.ac.za.) Bones originally from MIT SIPB. Original port to FreeBSD 1.x by Piero Serini. Moved to FreeBSD 2.0 by Doug Rabson and Geoff Rehmet. Nice bug fixes from Doug Rabson. Notes: svn path=/cvs2svn/branches/EBONES_KRB4/; revision=3237