jb
be7e42c2c1
Add join to the list of bootstrap tools and remove the cpp script because
...
we set CPP explicitly.
Ensure that the make flags are used for depends too.
After building the build tools with LMAKE (which allows installed tools
to be used), rebuild the same tools with XMAKE (which does not use
the installed tools, headers or libraries) to check that the tools can
build themselves and that there are no missing tools.
1998-05-09 21:28:01 +00:00
wollman
845ecc3d6b
Documentation fix: delete references to T/TCP as they are not relevant
...
to the case in question. (Said case being quite clearly defined by
the basic TCP specification, RFC 792.)
1998-05-09 20:50:37 +00:00
msmith
0bee450fea
Add character major for 'loe' loopback pseudo-ethernet device.
...
Requested by: sbabkin@dcn.att.com
1998-05-09 17:52:26 +00:00
bde
d04603a325
Fixed the usual missing dependencies on headers generated by rpcgen.
...
Use rpcgen's -C option, although using it for non-headers breaks K&R
support. A local copy of yp.h is built to avoid adding
-I/usr/include/rpcsvc to CFLAGS. This version of yp.h differed from
<rpcsvc/yp.h> only in not declaring prototypes.
Fixed style bugs.
1998-05-09 15:10:53 +00:00
brian
deb14ceb4a
Add a BUGS section and describe a problem I've been having for
...
a few weeks now.
1998-05-09 14:45:06 +00:00
bde
19d2c7b61e
Fixed the usual dependency bugs. This Makefile accidentally usually
...
worked for `make -j9', but failed for `make -j4'.
1998-05-09 13:32:37 +00:00
bde
31cc4a2fce
Fixed overflow in sysinit enum constants. In that little-used
...
language, ANSI C, enum constants must be representable as ints.
We assumed at-least-33-bit ints. This worked on some 32-bit
systems because we don't mix negative sysinit enum constants with
too-large sysinit enum constants, and the compiler used an unsigned
32-bit type for sysinit enum variables, so sysinit enum variables
were sorted correctly. The fix lops off 4 hopefully-unused bits
so that we now only assume at-least-29-bit ints.
1998-05-09 12:14:18 +00:00
jb
966bd98970
Cast pointers to longs, not ints.
...
Hopefully that's the last of the 64-bit cleaning of src/games. That is,
without adding -Wall to the compiler flags. That's not a pretty sight.
1998-05-09 11:33:22 +00:00
bde
61f94cc545
Fixed `make -j9' by putting generated headers in ${SRCS}. Removed bogus
...
dependencies of generated .c files on generated headers (these made
`make -JN' work provided `depend' was made first). Sorted sources lists.
1998-05-09 11:32:43 +00:00
jb
48392a0789
Change long variable to time_t where it is passed to time() by reference.
1998-05-09 11:31:20 +00:00
jb
6f0053bd9d
Add #include string.h to get prototypes.
1998-05-09 11:06:46 +00:00
jb
eee6720ad6
Add #include string.h to get prototypes and change variables from long
...
to time_t where they are passed to time() and localtime() by reference.
1998-05-09 11:03:03 +00:00
jb
0c487350e5
Remove bogus time() prototype and let the one in time.h rule.
1998-05-09 11:00:50 +00:00
jb
a0da8cd034
Add #include string.h to get prototypes.
1998-05-09 10:59:57 +00:00
jb
05e443dab4
Cast pointers to long instead of int.
1998-05-09 10:51:27 +00:00
jb
0b8d784850
Add #include string.h to get prototypes.
1998-05-09 10:50:29 +00:00
jb
7689e1e466
Change casts of function pointers from int to long. This makes the
...
compiler warnings go away, but the compiler is throwing away 32-bits
as the long value is silently truncated to an int on alpha. But the
program works, so that must not matter.
1998-05-09 10:39:48 +00:00
jb
87514388e9
Add #include string.h to get prototypes.
1998-05-09 10:23:10 +00:00
jb
c3b3696dc5
Change long variable to time_t because it passed to time() and ctime().
1998-05-09 10:21:24 +00:00
jb
6206cfafdc
Change long variables to time_t if they are passed to time() or localtime()
...
be reference.
1998-05-09 10:15:15 +00:00
jb
2228191bb8
Add #include string.h to get prototypes.
1998-05-09 10:10:52 +00:00
jb
50ed7e732d
Change variable types from long to time_t if they are passed to time()
...
by reference.
1998-05-09 10:09:00 +00:00
jb
6ad82c9881
Remove #define NULL because stdio.h does that.
1998-05-09 10:03:01 +00:00
jb
2316af12a3
Add #include string.h to get prototypes.
1998-05-09 09:54:17 +00:00
jb
7aa4e853f4
Add #include string.h to get prototypes.
1998-05-09 09:48:23 +00:00
jb
ae8864f6a2
tv_sec in timeval is a long, and a time_t is not necessarily a long.
1998-05-09 09:41:30 +00:00
jb
88c50b200a
Add #include string.h to get prototypes.
1998-05-09 09:39:46 +00:00
jb
85a011c31a
Add 'extern' to arrays that are declared and initialised elsewhere.
1998-05-09 09:38:11 +00:00
dt
c422df4943
Fix off by ane error in previous commit.
...
This caused following commands:
mkdir z
cd z
touch A B
mv B A
corrupt the '..' entry in 'z'.
Reported by: bde
1998-05-09 09:36:38 +00:00
jb
9e9eb5452f
Add 'extern' to arrays that are declared and initialised in other files.
1998-05-09 09:27:33 +00:00
jb
936a497f2c
Add 'extern' to arrays that are declared and initialised in other files.
...
Who writes code like this?!
1998-05-09 09:25:26 +00:00
jb
f21cd75f30
Add #include stdlib.h to get prototypes.
1998-05-09 09:24:12 +00:00
jb
005dd2f7a4
Change prototype for addbuf to make it compatible with tputs now that
...
there is a prototype to check it against.
1998-05-09 09:22:33 +00:00
jb
6ebc5834dc
Add #include string.h, stdlib.h and termcap.h to get prototypes.
...
Change prototype for addbuf to make it compatible with tputs now that
there is a prototype to check it against.
1998-05-09 09:21:28 +00:00
jb
93326f26e1
Add #include string to get prototypes.
1998-05-09 09:19:24 +00:00
jb
11929d69ae
Add 'extern' to those arrays that are declared and initialised
...
in other files.
1998-05-09 09:18:33 +00:00
des
e80744306c
Arrggghhhh... forgot to strip the / after outputting %2f
1998-05-09 08:56:07 +00:00
jb
f7925067df
Add #include string.h to get prototypes.
1998-05-09 08:46:53 +00:00
jb
2289cf3713
Add #include stdlib.h to get prototypes.
1998-05-09 08:45:53 +00:00
des
bc55335b0d
Map a leading / in -c argument to %2f instead of dropping it silently.
...
PR: bin/6558
1998-05-09 08:41:23 +00:00
jb
6061aa32dc
Add #include string.h to get prototypes.
1998-05-09 08:17:46 +00:00
jb
4b1fdc389c
Alphas don't necessarily have speakers.
1998-05-09 08:16:53 +00:00
fenner
014829c6bf
Describe absolute paths in FTP URL's. This patch has been sitting
...
around uncommitted for 2 months =(
1998-05-09 07:33:09 +00:00
jb
babe8d3976
Of these programs, only df and ps aren't compatible with FreeBSD/Alpha.
...
All the rest work! Actually, I don't know if chio works because I can't
test that. df can be built using NetBSD's mount.h. ps depends on libkvm
so there is no point trying.
1998-05-09 06:42:52 +00:00
jkh
dcef58e481
Well, nobody objected, so here's my -u (unlink) flag to restore.
1998-05-09 05:23:02 +00:00
jb
9c0f3d45b1
Fix the problem people are having building -current on a -stable system.
...
The headers that are installed in WORLDTMP are part of the interface
that includes libraries like libc, so they must be installed together.
This means that lib-tools and build-tools should be merged. The FreeBSD
build only works in hosted form where it is assumed that the installed
version contains adequate tools to build the latest release.
1998-05-08 21:29:35 +00:00
phk
a10731d857
Add jetdirect 9100/tcp
...
PR: 5195
Reviewed by: phk
Submitted by: Cy Schubert <cschuber@uumail.gov.bc.ca>
1998-05-08 20:40:15 +00:00
phk
bade6f18a8
Add a crucial missing _ in NO_SENDMAIL
...
PR: 6545
Reviewed by: phk
Submitted by: Jos Backus <jbackus@plex.nl>
1998-05-08 20:15:39 +00:00
guido
656f78b87c
Unblock SIGPIPE before execv(); convert from sigvec to sigaction
...
Obtained from: OpenBSD
1998-05-08 19:15:44 +00:00
max
3d49c4c947
In the SEE ALSO section, {get,set}rlimit are said to be in the section
...
3 which are actually in the section 2.
Pointed out by: Brian Reichert <reichert@numachi.com>
PR: 6480
1998-05-08 14:46:23 +00:00