Commit graph

2825 commits

Author SHA1 Message Date
Satoshi Asami 11e20b1a00 Add a short blurb about the ports page in the "applications" question.
List all three packages directories in the ensuing packages description.

Add a short (in fact, very short) section about libc.so.3.0 and wrong
package versions.
1997-04-10 12:06:53 +00:00
Brian Somers 7dbd91ddd1 Add a section on sysmouse configuration.
Suggested by: jkh
1997-04-10 10:20:46 +00:00
Hiroyuki Hanai a5f89fd540 Catch up with the original. 1997-04-10 06:06:22 +00:00
Jordan K. Hubbard f08979c3bf Nate Johnson is now the Gallery/Commercial editor since Charles Wimmer
seems to have disappeared.
1997-04-10 05:23:25 +00:00
Jordan K. Hubbard 4ce7186b25 Add Jack O'Neill to donor's list. 1997-04-10 05:20:19 +00:00
Hiroyuki Hanai b9305df214 Catch up with the original. 1997-04-10 04:41:55 +00:00
Jordan K. Hubbard 84f976bf92 Expand donors list. Note: Anyone I missed, *please* contact me!
I'm only now starting to get this a little more well organized.
1997-04-10 02:15:59 +00:00
John Polstra 9c8ff5b51f Use "-pg" instead of "-p" for generating profiled object files.
The two options differ only when linking, but "-p" is incorrect
because it is associated with the old-style "prof" command, which we
do not support.
1997-04-09 20:31:15 +00:00
Mike Pritchard 370059e507 Add Kent Vander Velden for his various contributions via problem reports.
Also updated Keith Bostic's mail address while I was in the area.
1997-04-09 19:44:58 +00:00
Mike Pritchard 405eecfbb1 Check for -1 instead of EOF in the getopt() example.
Submitted by:	Kent Vander Velden
1997-04-09 19:03:14 +00:00
Bruce Evans 663e9677d5 Use ld -f' (actually cc -Wl,-f') at `make depend' time to generate
almost perfect dependencies on crt0's and libraries.  DPADD and
bsd.libnames.mk should go away soon.  Use a new _EXTRADEPEND target
to implement this and to avoid editing of .depend when .depend isn;t
being rebuilt.  The afterdepend target doesn't seem to be good for
anything and is now unused.

Fixed LDDESTDIR for the DESTDIR case when ${SHLIBDIR} != /usr/lib.

Added commented-out -nostdlib to LDDESTDIR for the DESTDIR case.
The wrong libraries may be used without this; however it breaks
linkage to crt0 and libc.
1997-04-09 16:10:27 +00:00
Jordan K. Hubbard 43726d5d36 Reorganize the donor's gallery to include people who've donated
parts to replace freefall.freebsd.org (so that we can use what's currently
there to replace spatter).
1997-04-09 10:34:31 +00:00
Mike Pritchard db0ed86298 Document wakeup_one(). 1997-04-09 05:39:32 +00:00
Hiroyuki Hanai 05602cc2a2 Catch up with the original.
Submitted by: Yoshiaki Uchikawa <yoshiaki@kt.rim.or.jp>
1997-04-09 03:05:58 +00:00
Mike Pritchard d532602fe9 Fix a xref.
Obtained from: NetBSD-bus PR# 3464
1997-04-08 20:01:15 +00:00
Hiroyuki Hanai 8b020006c0 Fix the typo about the DEC's NICs
Submitted by: morimitsu@jrdvms.enet.dec.com
1997-04-08 02:28:58 +00:00
Hiroyuki Hanai 9cf0bc403e Catch up with the original. 1997-04-08 02:23:27 +00:00
Hiroyuki Hanai d005117e2f Catch up with the original. 1997-04-08 02:13:06 +00:00
Hiroyuki Hanai 17b09f4857 Catch up with the original.
Submitted by: mihoko@pa.yokogawa.co.j
1997-04-08 02:10:38 +00:00
Hiroyuki Hanai df6e5b0dd4 Catch up with the original.
Submitted by: Takashi Saeki <saeki@saskg.semicon.sony.co.jp>
1997-04-08 02:07:24 +00:00
John Fieber 1c8c7ff607 Latest release is 2.2.1, not 2.1.7. 1997-04-08 00:47:59 +00:00
John Polstra 88a9352def Mention the RELENG_2_2_1_RELEASE for getting FreeBSD-2.2.1. 1997-04-08 00:14:00 +00:00
Bruce Evans 3bfa8cb182 Include ${CURDIR}/../Makefile.inc as in most other `.mk' files. This
is most useful for centralizing the definitions of paths to contrib
directories.

Removed useless subshell and evil-hiding @ in the the rule for
initializing the info dir.
1997-04-07 16:46:40 +00:00
John-Mark Gurney 36ab952556 terminfo_extensions.doc:
o)	fix some typos
	o)	add missing comments from terminfo's man page

termcap.5
	o)	fix some types
	o)	add a reference to terminfo_extensions.doc
1997-04-07 10:24:13 +00:00
Hiroyuki Hanai 267bc040ef New translation which corresponds to the 1.11 -> 1.12 change of
original.
Submitted by: mihoko@pa.yokogawa.co.jp
1997-04-07 04:56:51 +00:00
Hiroyuki Hanai e234c6da84 Catch up with the original. 1997-04-07 04:09:47 +00:00
Doug Rabson 9e5f720f5f Document how to debug LKMs with kgdb.
Reviewed by:	J Wunsch <j@uriah.heep.sax.de>
1997-04-06 23:03:27 +00:00
Wolfram Schneider 03d38eb1f4 Add BSD family tree to UNIX history section. 1997-04-06 21:53:59 +00:00
Peter Dufault 0ddf9be1f0 Make MOD_* macros almost consistent:
Use the name argument almost the same in all LKM types.  Maintain
the current behavior for the external (e.g., modstat) name for DEV,
EXEC, and MISC types being #name ## "_mod" and SYCALL and VFS only
#name.  This is a candidate for change and I vote just the name without
the "_mod".

Change the DISPATCH macro to MOD_DISPATCH for consistency with the
other macros.

Add an LKM_ANON #define to eliminate the magic -1 and associated
signed/unsigned warnings.

Add MOD_PRIVATE to support wcd.c's poking around in the lkm structure.

Change source in tree to use the new interface.

Reviewed by:	Bruce Evans
1997-04-06 11:14:13 +00:00
Jordan K. Hubbard 332da55046 Update run - try and use the correct release numbers for everything. 1997-04-05 08:38:48 +00:00
Andrey A. Chernov f35381a000 Replace Sf/Sb with AF/AB for terminals with ANSI colors 1997-04-05 02:51:19 +00:00
Andrey A. Chernov 95a3cdde39 Back out cd ${.CURDIR}, stale obj fault 1997-04-04 01:44:25 +00:00
Mike Pritchard 9b99027472 Fix a typo that prevented the proper flag from being set
when USE_REFER is set.

Submitted by:	Sandro Sigala <ssigala@globalnet.it>
1997-04-04 01:25:32 +00:00
Wolfram Schneider 28fb62d30e Add manual page symlinks
YP.4 -> yp.4
	nis.4 -> yp.4
	NIS.4 -> yp.4
1997-04-03 12:32:42 +00:00
David E. O'Brien a16c9bc3e6 FREEBSD-upgrade is now the "accpeted" name for the FreeBSD readme on
contributed soruces.
1997-04-03 10:47:21 +00:00
Søren Schmidt 9751c10998 put the german keys where they belong.
Submitted by: Slaven Rezic
1997-04-03 09:10:37 +00:00
Masafumi Max NAKANE 353fe48bab Typo.
Submitted by:	Mihoko TANAKA <mihoko@pa.yokogawa.co.jp>
1997-04-03 01:07:38 +00:00
John-Mark Gurney 0548bf4d76 arg... add back the "stray" `-' (it is used by indent) 1997-04-03 00:36:26 +00:00
Andrey A. Chernov 7afe3a8a33 cd ${.CURDIR} before installing, since no files in the obj directory 1997-04-02 16:56:56 +00:00
John-Mark Gurney d10ef76b70 remove a stray `-' 1997-04-02 11:26:59 +00:00
John-Mark Gurney df3cc9399c uncomment CD_Q_BCD_TRACKS flag, add xref to scsi(4) 1997-04-02 09:41:16 +00:00
Jordan K. Hubbard dbf299abbe Fix spelling error.
Submitted by:	Hiroyuki HANAI <hanai@astec.co.jp>
1997-04-02 06:03:52 +00:00
Hiroyuki Hanai 3e9f70a897 Catch up with the original. 1997-04-02 05:42:39 +00:00
Mike Pritchard 94d6fcba9b Remove some garbage text. 1997-04-02 00:09:14 +00:00
Mike Pritchard b5d3fbf904 Add od(4). Closes PR# 3170.
Submitted by:	Shunsuke Akiyama <akiyama@jp.freebsd.org>
1997-04-01 19:52:37 +00:00
Adam David ae30d99c4a consistency update.
since we have "unsizeable" also have "sizeable"
1997-04-01 12:34:13 +00:00
Jordan K. Hubbard ac2e2624de Sync from 2.2 1997-04-01 09:53:32 +00:00
John Polstra 93abe8fedb Correct the name of a header file that is referenced. 1997-04-01 04:04:09 +00:00
Hiroyuki Hanai c9722f5e4e Fix the typo.
Submitted by: Nishika <nishika@cheerful.com>
1997-04-01 02:38:01 +00:00
Hiroyuki Hanai a9e4d8c730 Catch up with the original. 1997-04-01 02:32:28 +00:00