Commit Graph

1399 Commits

Author SHA1 Message Date
Satoshi Asami 1844587c79 Add CFLAGS=${CFLAGS} to MAKE_ENV, otherwise gmake won't pick it up. 1996-04-26 10:09:06 +00:00
Jordan K. Hubbard 5da0cf3eec All hail Mike Pritchard - the new Docmaster!
Nominated by:	jfieber
Dragooned by:	jkh
Foolishly Accepted by:	mpp
1996-04-25 20:07:28 +00:00
Wolfram Schneider 44d97e5b42 New variable NOOBJLINK
Create 'obj' directory in current directory instead
	a symbolic link to the 'obj' tree if defined. [not set]

Print a warning if 'obj' tree (/usr/obj) does not exist.

Change default 'obj' directory from ``obj.${MACHINE}'' back to
``obj'', unfortunately many Makefiles are wired with the name ``obj''.

Add some comments for variables and targets.
1996-04-22 23:31:39 +00:00
John Polstra 0bd0c3cc45 Add "-x" to the linker command for building shared libraries. This
eliminates many local symbols that could not be removed by the "ld -r -x"
steps on the individual object files.  It makes shared libraries
substantially smaller -- almost 11%, in the case of libc.so.3.0.
1996-04-21 17:45:38 +00:00
Satoshi Asami 5e29e1ca51 Take out quotes around MOTIFLIB. Clarify comments a bit, most users
don't have to touch neither X11BASE nor MOTIFLIB.

Reported by:	kmitch@phantasma.bevc.blacksburg.va.us
1996-04-21 08:56:32 +00:00
Justin T. Gibbs 6ab36e711a Update to face reality. We now support the aic7850, aic7860 and aic7880.
Mention Ultra support and SCB paging.

Remove references to AHC_TAGENABLE.
1996-04-20 21:37:49 +00:00
John Polstra 8e15bdee3e Add Doug Ambrisko for implementing LD_PRELOAD in the dynamic linker. 1996-04-20 18:43:54 +00:00
Dima Ruban 0b1fc026ab Added sup5.freebsd.org (burka.rdy.com)
Obtained from: DNS :-)
1996-04-20 08:12:46 +00:00
Jordan K. Hubbard 262d8b3644 Add Paul Traina as the new security officer. 1996-04-20 00:17:53 +00:00
Satoshi Asami 4f4eb236f1 Delete duplicate "make sure you have at least one device supplying
teminator power".

Noticed by:	<yoshiaki@kt.rim.or.jp>
1996-04-19 21:50:32 +00:00
Wolfram Schneider 5e3a8ba2fd contents file for /usr/share/doc/papers 1996-04-19 21:26:27 +00:00
Wolfram Schneider f7d0103676 add ``contents'' to SUBDIR 1996-04-19 21:24:34 +00:00
Garrett Wollman ac7eaa7ff9 Fix timezone names for Mountain time.
Fixes PR 1150

Submitted by: colsen@usa.net
1996-04-19 15:15:41 +00:00
Jordan K. Hubbard 31dc8d5355 Revise the responsibility roster a bit. 1996-04-19 07:44:17 +00:00
Andrey A. Chernov db3a276987 Back out my MOTIF_STATIC change, it is unnecessary 1996-04-16 11:47:29 +00:00
Mike Pritchard 5406291a1d Add man pages for the copy*, fetch*, and store* families of
kernel functions.

Also added timeout(9) to the makefile.

Reviewed by:	joerg
Obtained from:	NetBSD
1996-04-15 21:37:07 +00:00
Wolfram Schneider eab78725f7 add keymap entries for
Italian ISO, Japanese 106/106x, Spanish ISO  [en,de]
	add US dvorak [en,de,fr]

remove old test examples
1996-04-14 17:22:43 +00:00
Joerg Wunsch 4928e97cae Describe timeout() and untimeout(). 1996-04-13 16:59:07 +00:00
Poul-Henning Kamp 05c7a37afb A little paper about phkmalloc. 1996-04-13 08:30:21 +00:00
Andrey A. Chernov 74bf61cc44 Document MOTIF_STATIC 1996-04-13 06:40:19 +00:00
Jordan K. Hubbard 8a60bacb43 Update section on mounting DOS extended partitions.
Document the fact that we're now working on BSDI's dos emulator
and point people at the new freebsd-emulation@freebsd.org mailing
list.
1996-04-13 00:12:41 +00:00
Jordan K. Hubbard 9afdcca190 Document the freebsd-emulation mailing list. 1996-04-13 00:05:30 +00:00
Wolfram Schneider bcb1a9de55 install bsd.obj.mk
Submitted by:	Asami
1996-04-12 11:13:29 +00:00
Satoshi Asami cf59981cf4 Add commented-out definitions of HAVE_MOTIF and MOTIFLIB. 1996-04-12 09:28:14 +00:00
Satoshi Asami 726722154d Add NO_CDROM, RESTRICTED, BROKEN and Motif support.
(1) The new NO_CDROM Boolean variable means "don't put the distfile/
    package on the CDROM you're going to sell".  It will basically
    turn off everything if FOR_CDROM is set.

    Many of the NO_PACKAGE ports are actually "don't sell for profit"
    types, which we shouldn't have any problem distributing via ftp.

(2) The new RESTRICTED Boolean variable means don't build this unless
    you know what you are doing.  It doesn't have any effect unless
    NO_RESTRICTED is also set.

(3) BROKEN means this port is broken.  At least it will now show up in
    INDEX and README.html, and give people more incentive to fix (I
    hope).

    RESTRICTED and BROKEN are expected to replace the pseudo-targets
    in parent Makefiles.  (The RESTRICTED and BROKEN list didn't do
    anything before, they were solely for grepping purposes.)

(4) The Motif support brings in four new variables: REQUIRES_MOTIF,
    which the porter sets for ports that require Motif to build;
    HAVE_MOTIF, which the user sets to indicate the system has Motif;
    MOTIF_STATIC, which the user sets to indicate that the static
    libXm, instead af the default dynamic library, is to be used; and
    MOTIFLIB, which is set to "${X11BASE}/lib/libXm.a" or
    "-L${X11BASE}/lib -lXm", depending on whether MOTIF_STATIC is set.

    The porter is expected to replace all occurrences of libXm in the
    {Im,M}akefiles with ${MOTIFLIB}, and this will allow both dynamic
    linkage (for users with Motif) and static linkage (for those who
    build packages to be used by those withot Motif, i.e., me ;)
    automatically.

Original Motif support idea by:	graichen
1996-04-12 08:08:36 +00:00
Wolfram Schneider 5ce6c3cfe2 remove variables KMODGRP?=, KMODOWN?=, KMODMODE?=
replace ${BIN*} variables with ${KMOD*} variables

cleanup manpage code

include bsd.obj.mk
remove targets clean, cleandir, obj (included by bsd.obj.mk)
1996-04-11 23:03:10 +00:00
Satoshi Asami b32a8a24d9 Add Daniel M. Eischen <deischen@iworks.InterWorks.org> for his xmcd
port contribution.
1996-04-11 08:49:21 +00:00
Satoshi Asami 7ac319529f Describe usage of LOCALBASE and X11BASE in relation with PREFIX. 1996-04-10 06:32:42 +00:00
Wolfram Schneider bd063a9d88 Add variable ``_MANPAGES'' This will be replace the
.if !defined(MAN1) && !defined(MAN2) ... orgy in bsd.prog.mk and
bsd.kmod.mk
1996-04-09 23:10:19 +00:00
Wolfram Schneider cd8e84c7e1 use .for loop for common targets 1996-04-09 22:54:13 +00:00
Wolfram Schneider fe51f2705c Add targets cleanfiles/clean, cleandir 1996-04-09 22:43:33 +00:00
Satoshi Asami 5c5a2a4672 Add Jian-Da Li <jdli@FreeBSD.csie.NCTU.edu.tw> for his xsysinfo port. 1996-04-09 09:04:09 +00:00
Gary Clark II 74d1818c9b Add John Perry to list for security documentation (forth coming)
perry@vishnu.alias.net
1996-04-09 04:14:09 +00:00
Satoshi Asami 432991b2dc Add "Brent J. Nordquist" <nordquist@platinum.com> for contribution of
btoa port.
1996-04-09 04:00:24 +00:00
John Fieber d2c6bd76e3 Remove some rogue section headings that jordan left way back in v1.9 in a
reorganization of the hw section.
1996-04-08 15:01:04 +00:00
Poul-Henning Kamp c5c15c162f Document 5 new macros in TAILQ family. 1996-04-08 07:54:04 +00:00
Mike Pritchard afe9fcd5d6 Remove the old unused makewhatis.sed script. 1996-04-08 05:17:00 +00:00
Mike Pritchard e40f3f85d4 Do not install the now unsupported netns and netiso
related man pages.  Comment out cross references to those man
pages from other man pages.
1996-04-08 05:15:09 +00:00
Mike Pritchard edf0e5b3f8 Correct some man page xrefs, and some other minor changes to bring some
man pages up to mdoc guidelines and fix some minor formatting glitches.
Also fixed a number of man pages to not abuse the .Xr macro to
display functions and path names and a lot of other junk.
1996-04-08 04:18:31 +00:00
Mike Pritchard 8c10c7dd2e Update the scd(4) man page to reflect the current copyright
status and to update some path references.
1996-04-08 01:08:24 +00:00
Mike Pritchard 868f8f4197 Add the Ap macro to the macro table documentation (it generates an
apostrophe for those of you that were wondering).
1996-04-07 23:57:14 +00:00
Mike Pritchard 24e89d55ba Bring clocks(7) into line with mdoc standards.
Reviewed by:	joerg
1996-04-07 21:12:10 +00:00
Ollivier Robert 0d12126b3b Add several entries for ISA PnP cards (from Frank Durda IV), for using the NT
loader to boot, Jörg answer for slow printers and Dave Walton's answer to
hang during vty switches.
1996-04-07 17:23:34 +00:00
Mike Pritchard c4a856d3a0 Add a zero(4) man page to describe /dev/zero. Update null(4) to xref
this new man page.
1996-04-07 10:04:49 +00:00
Mike Pritchard 89e33e9285 Fix some typos. 1996-04-07 08:37:54 +00:00
Satoshi Asami 89f4624ddc Change ${ENV} -> ${SETENV}. The former coincides with startup file
names of bash et al.

Submitted by:	Thomas Gellekum <thomas@ghpc8.ihf.rwth-aachen.de>
1996-04-07 08:34:21 +00:00
Mike Pritchard 906c1e27fc Correct some man page cross references and file location references. 1996-04-07 00:06:21 +00:00
Joerg Wunsch a29b7c975a Fix a typo. 1996-04-06 13:33:23 +00:00
Jordan K. Hubbard 34fb754b6c Add Jake Hamby as the new webmaster. 1996-04-06 08:36:30 +00:00
Joerg Wunsch 9c2c5c6d6e .Ql --> .Dv
Submitted by:	wollman
1996-04-05 23:23:25 +00:00