summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* syscons is i386 specific due to machine/console.hjb1998-05-151-1/+5
|
* Oops, forgot references in previous commit.bde1998-05-155-5/+5
| | | | | Submitted by: Brian Cully <shmit@erols.com> PR: 6178
* Support Objective C almost as well as C++.bde1998-05-155-15/+38
| | | | | | | | | Notes: - We no longer use -fgnu-runtime in bsd.lib.mk, since it is the default and bsd.lib.mk is the wrong place to override it. - Gnu C doesn't have a special compiler driver for Objective C like it does for C++. The defaults are suitable for Gnu C. Use `OBJCLIBS=' in /etc/make.conf for POC.
* Removed misleading claim that login classes are no longer implemented.jkoshy1998-05-151-5/+7
| | | | Added Xref to pw(8).
* Add an example showing how to build a UFS floppypst1998-05-141-2/+32
|
* Add upcoming NetBSD 1.3.2wosch1998-05-121-4/+4
| | | | Submitted by: Sune Stjerneby <stjerneby@usa.net>
* Add upcoming FreeBSD 2.2.7 and FreeBSD 2.2.8wosch1998-05-121-5/+11
| | | | Add NetBSD-1.3.1.
* Oops, the lex and yacc sources must be added to SRCS before ${SRCS}bde1998-05-111-40/+40
| | | | | | | | is used in the dependency list for ${DEPENDFILE}. `make depend' was broken for a few days. `make world' only uses `make depend' when NOCLEAN is defined, so only a few people noticed the bug. Submitted by: mostly by jmg
* Change NBPG to PAGE_SIZE to match one of phk's recent commits.steve1998-05-111-2/+2
| | | | | PR: 6573 Submitted by: Kazuo Horikawa <horikawa@jp.freebsd.org>
* Print a human-readable warning and die if $INFODIR do not exist.wosch1998-05-091-1/+11
| | | | | PR: bin/6138 Reviewed by: bde
* Add a crucial missing _ in NO_SENDMAILphk1998-05-081-2/+2
| | | | | | PR: 6545 Reviewed by: phk Submitted by: Jos Backus <jbackus@plex.nl>
* Moved lex and yacc source handling from bsd.prog.mk to bsd.dep.mkbde1998-05-082-39/+41
| | | | so that it applies to libraries (and lkms) as well as programs.
* Only include bsd.dep.mk in `mk'files that handle C sources. Abusebde1998-05-065-31/+29
| | | | | | bsd.obj.mk instead of bsd.dep.mk for defining the _SUBDIR target and a default tags target. Abuse bsd.obj.mk for defining default cleandepend and depend targets.
* Overlooked, that newer naming convention is xxx_program instead of xxx_prog.andreas1998-05-061-4/+4
| | | | | So changed it to ntpdate_program and xntpd_program. Backout last change, now we have again named_program, sorry.
* document ntpdate_prog and xntpd_progandreas1998-05-061-2/+12
| | | | | | fix: named_program -> named_prog to reflect "real life" (I suggest keeping this shorter name convention as it is actually used in the config file)
* Delete stale comment.wosch1998-05-061-4/+2
| | | | Pointed out by: bde
* Regress to generating foo.c from foo.y via y.tab.c for crufty applicationsbde1998-05-061-12/+20
| | | | | | | | | | | | | that want a y.tab.h file. This want must be specified by putting y.tab.h in SRCS (and defaulting to or putting -d in YFLAGS). This only works if there is only one yacc parser, of course. One improvement: copy y.tab.c to foo.c instead of renaming it, so that `#line...y.tab.c' statements in it refer to an existing file. Regress to not generating explicit rules for .l and .y sources containing slashes. This case is unusual and hard to handle properly. Don't generate an unused dependency when -d is not in YFLAGS.
* devfs_add_devswf(9) and devfs_link(9) don't tell you how tophk1998-05-062-3/+6
| | | | | | | | remove the device once it's added or linked. PR: 6524 Reviewed by: phk Submitted by: Brian Cully <shmit@kublai.com>
* Oops, the symlink from y.tab.h doesn't work until its target exists.bde1998-05-051-2/+2
|
* Fudge local variables better in the yacc rules so that multiple yaccbde1998-05-041-4/+7
| | | | sources are handled properly.
* Generate explicit rules and other infrastructure for lex and yaccbde1998-05-041-1/+27
| | | | | | | | | | | | | | | | | | sources. This will be used to fix `make -jN' races in many Makefiles in /usr/src, and to simplify these and other Makefiles. To get the fixes and simplifications, application Makefiles should put the raw lex and yacc source names (foo.l and bar.y) in SRCS and not put the names of any generated files in SRCS or CLEANFILES. A few Makefiles already do this, although it didn't actually work before (mkdep couldn't create complete dependencies because there is no intermediate .c file for the .y.o and .l.o implicit rules). Complications: if bar.y is in SRCS and -d is in YFLAGS, then bar.h will be generated whether or not it is used, even if this clobbers a real source file. This is so that bar.c can be generated using the -j-safe and debugger-friendly -o option to YACC. There are smaller warts for handling y.tab.h. y.tab.c and lex.yy.c are not supported.
* Just the sans-serif console font that I use on my system; I've made thephk1998-05-043-1/+146
| | | | | | | | | letters one pixel taller, and the ()[]{} are more distinct. Nice if your monitor is small. 8x16 and 8x8 fonts included. PR: 4208 Reviewed by: phk Submitted by: Dan Nelson <dnelson@emsphone.com>
* Change a couple 'make' to '${MAKE}'.steve1998-05-041-6/+6
| | | | | PR: 6341 Submitted by: Niall Smart <rotel@indigo.ie>
* Typo fixesjraynard1998-05-031-2/+3
|
* Typo and grammer fixes.steve1998-05-031-7/+7
| | | | | PR: 6482 Submitted by: Allen Campbell <allenc@verinet.com>
* Added -ansi to CWARNFLAGS so that ANSI errors don't come back.bde1998-05-011-2/+2
|
* Add -pipe to default CFLAGS. The optimization it provides is cheapjkh1998-05-011-2/+2
| | | | | | and does not require any special action on the part of the user to take advantage of it. And no, it probably won't work with c89. Cry me a river!
* Fixes incorrect company and product names in uha(4) manpage andandreas1998-04-291-10/+10
| | | | | | LINT config file. Should be merged to -STABLE as well. PR: closes 6447 Submitted by: Steven Plite splite@purdue.edu
* Don't include ../Makefile.inc here. bsd.man.mk is always includedbde1998-04-271-6/+1
| | | | | in another .mk file which has already included ../Makefile.inc, so including ../Makefike.inc again mainly messed up `+=' definitions.
* Add an example supfile for the gnats database.jb1998-04-202-1/+64
| | | | Submitted by: A Joseph Koshy <koshy@india.hp.com>
* Add natd support.brian1998-04-181-1/+23
| | | | | PR: 6339 Submitted by: cdillon@wolves.k12.mo.us
* Add commented out common INSTALL and FORCE_PKG_REGISTER knobsache1998-04-161-1/+8
|
* Add missing commented out MOTIF_STATIC exampleache1998-04-161-1/+2
|
* In light of the fact that several widespread sendmail alternatives existsphk1998-04-151-1/+4
| | | | | | | | | is reason enough to make the compilation & installation of sendmail an make.conf option. I know that you hate negative options Bruce. PR: 6284 Reviewed by: phk Submitted by: Adrian Colley <aecolley@world.std.com>
* Finished previous commit. Just revert to rev.1.9.bde1998-04-131-1/+4
| | | | Bruce
* Fix comment.jkh1998-04-121-2/+2
| | | | Scolded by: bde
* omehow Jordan got 07.lpd in -current enabled again...sos1998-04-121-3/+3
|
* In these enlightened times there are more and better places to findphk1998-04-112-393/+2
| | | | | | | | | | this information. PR 2789 mentions: http://www.pacbell.com/about-pb/areacodes/ http://www.bellcore.com/NANP/ PR: 2789 (in a backewards kind of way)
* MF22: build lpd docsjkh1998-04-111-5/+2
|
* Add a reference to the gcc linker option -pthread that is part ofjb1998-04-101-3/+11
| | | | the FreeBSD configuration LIB_SPEC.
* Add the LBA addressing flag.sos1998-04-091-1/+3
|
* This function compiles with the standard, so say so.jb1998-04-031-3/+3
|
* This function compiles with the standard, so say so.jb1998-04-031-4/+6
| | | | | | | | Add a note about not touching errno and warn about previous drafts of the standard which changed the level of indirection to the thread argument. POSIX had a bit of trouble deciding what to do. So anyone coding to both draft 4 and draft 10 (the final draft) will get burnt by this function. I did. Grrr.
* .Sh AUTHOR -> .Sh AUTHORS.charnier1998-04-013-6/+6
|
* Document the WORMIOCFIRSTWRITABLEADDR ioctl.jmz1998-03-311-1/+19
|
* fkey61 is the same thing as del, kinda. Make sure that we really swap del andimp1998-03-301-2/+2
| | | | | | bs. Reported by: Chuck Robey
* Support for fine-grained external control of subdir building.eivind1998-03-291-12/+38
|
* Finish _POSIX_PRIORITY_SCHEDULING. Needs P1003_1B anddufault1998-03-282-46/+43
| | | | | | | | | | | | | | | | _KPOSIX_PRIORITY_SCHEDULING options to work. Changes: Change all "posix4" to "p1003_1b". Misnamed files are left as "posix4" until I'm told if I can simply delete them and add new ones; Add _POSIX_PRIORITY_SCHEDULING system calls for FreeBSD and Linux; Add man pages for _POSIX_PRIORITY_SCHEDULING system calls; Add options to LINT; Minor fixes to P1003_1B code during testing.
* Add us.unix.kbd. Just like us.iso.kbd except:imp1998-03-283-3/+120
| | | | | | | | | | | | | ESCAPE and `~ are swapped CTRL and CAPS LOCK are swapped BACKSPACE and DELETE are swapped Suitable for keymap=us.unix in your rc.conf file or for setting on the fly with kbdcontrol -l us.unix. This is the keyboard layout of many of the more traditional unix workstations and terminals that have been around for a very long time. Older Sun keyboards and VT100's had a layout very similar to the PC, with the above exceptions. Idea Reviewed by: Many people in -hackers
* Remove special handling of 'tags' for complex subdir systemseivind1998-03-261-26/+4
| | | | | | (presently only used in tip; should have been used by e.g. pkg_add). Submitted by: bde
OpenPOWER on IntegriCloud