jake
6aad34df02
Add a support macro to convert the 5-bit packed register field of
...
a floating point instruction into a 6-bit register number for
double and quad arguments.
Make use of the new INSFPdq_RN macro where apporpriate; this
is required for correctly handling the "high" fp registers
(>= %f32).
Fix a number of bugs related to the handling of the high registers
which were caused by using __fpu_[gs]etreg() where __fpu_[gs]etreg64()
should be used (the former can only access the low, single-precision,
registers).
Submitted by: tmm
2002-05-11 21:20:05 +00:00
obrien
50d831e585
Add pointers to GCC's allowable values for -march, and restore structure
...
of rev 1.7 until someone can sit down and think thru all the GCC 3.1
related changes.
2002-05-11 20:18:54 +00:00
wilko
368aae2d3b
Explicitely note ATEN UC-232A is supported. Sort list entries
...
while we are here.
2002-05-11 20:10:38 +00:00
obrien
e752914d1b
With GCC 3.1, we can now treat AMD Athlon and an Athlon.
...
Submitted by: Steven G. Kargl <kargl@troutmask.apl.washington.edu>
2002-05-11 20:05:17 +00:00
mux
304f33f4ba
Fix a typo : ".Xr mount_udf 8," -> ".Xr mount_udf 8 ,".
2002-05-11 19:32:24 +00:00
bmah
e129c49f08
Some features should have been marked as &merged;, but weren't. Fix
...
this.
While I'm here, add a few missing words.
2002-05-11 19:23:17 +00:00
marcel
e4f919be68
Add support for stripping non-native object files by using an
...
environment variable that specifies the name of the strip(1)
program to use. The envvar is "STRIPBIN". The more natural
choice would be "STRIP", but that one is taken already.
2002-05-11 19:15:15 +00:00
obrien
4da1be0803
NOPIC, NOPROFILE, NOMAN, and INTERNALSTATICLIB are redundant when using
...
INTERNALLIB now.
2002-05-11 18:02:33 +00:00
bmah
372b2111f6
New release notes: ng_split, lpd(8) rc (+MFC).
...
Deleted some release notes that were too vague to be useful: CAM
error recovery update, vinum update, lpr/lpq/lpd update.
2002-05-11 17:56:09 +00:00
obrien
94b803cf52
We don't need libgnumalloc or libresolv on ELF systems.
2002-05-11 17:51:04 +00:00
obrien
d2df975828
Use the simpler NOMAN rather than NOMAN, NOPIC, NOPROFILE, INTERNALLIB.
2002-05-11 17:45:03 +00:00
bmah
eab64faef4
New release notes: new crashdump infrastructure, cdcontrol(1) speed,
...
fsdb(8) blocks (+MFC), who(1) -H/-T/-m/-u/-q, xargs(1) -L, general
note on SuSv3/POSIX.1 conformance.
Modified release notes: The system awk is now BWK awk (noted in three
places), uudecode(1)/uuencode(1) -o/-m (+MFC), xargs(1) -I/-J.
2002-05-11 17:28:01 +00:00
brian
e7542a26ed
We don't need to include arpa/inet.h here. In fact, only FreeBSD needs
...
netinet/in.h.
2002-05-11 17:04:01 +00:00
eric
8d4a79ea28
Remove cross reference to pkg_update(1).
2002-05-11 16:27:19 +00:00
nectar
555b23e66d
Do not install this with set-user-ID bit set. This utility does not
...
grok the `wheel' group.
Noticed by: jmallett
2002-05-11 14:05:07 +00:00
brian
7cc72b4946
Reword the ``alias'' description slightly. We must specify a non-conflicting
...
netmask - not necessarily 0xffffffff.
MFC after: 3 days
2002-05-11 11:35:35 +00:00
brian
80f4fb7cc7
#include netinet/in.h when !__FreeBSD__ to silence some warnings from
...
the inclusion of arpa/inet.h
2002-05-11 10:54:45 +00:00
alfred
7124e5c223
Use GCC's __attribute__ ((constructor)) mechanism to invoke the pthread
...
startup code rather than a static C++ object since c++ seems to be broken.
This doesn't seem to work for staticically linked program just yet, I'll
give that some more work when I get a chance.
2002-05-11 08:13:42 +00:00
kbyanc
4cc86e854d
Fix logic inversion bug.
2002-05-11 06:27:24 +00:00
dd
1a506b7f47
sysctl -w -> sysctl
2002-05-11 06:06:11 +00:00
dd
65ea494ab5
sysctl -w -> sysctl
...
Approved by: ume
2002-05-11 05:55:05 +00:00
dd
83b30c61bf
Beware the log demon! (Fix typo: s/demon/daemon/)
...
Submitted by: zhuravlev alexander <zaa@ulstu.ru>
2002-05-11 05:16:02 +00:00
obrien
6ffd9aaeaa
Sorry, I did not mean to turn collect2 back on yet.
2002-05-11 04:51:45 +00:00
alfred
00909002b6
Fix warnings by commenting out text after #else/#endif.
2002-05-11 04:40:13 +00:00
jhb
a2929176d9
Temporarily disable Jeff's fix for atomic_cmpset_32() to zero-extend the
...
value we load from memory. gcc3.1 passes in the u_int32_t old value to
compare against as a _sign_-extended 64-bit value for some reason (bug?).
This is a temporary workaround so kernels work again on alpha.
2002-05-11 04:27:39 +00:00
alfred
c94931edf3
replace __FUNCTION__ with standardized __func__.
...
Requested by: jhb
2002-05-11 04:17:55 +00:00
alfred
df59877e64
unbreak build: fix multi-line string literal
2002-05-11 04:10:49 +00:00
alfred
c15786f489
As a temporary bandaid disable '__printf0like' unconditionally, it
...
doesn't seem to work under gcc 3.1 yet.
We are now 'WERROR' safe again.
2002-05-11 03:58:24 +00:00
alfred
f42c92628a
unbreak build: ditch multi-line string literals
2002-05-11 03:54:21 +00:00
alfred
7be446ee1c
fix build:
...
you may not use string concatination with __FUNCTION__, replace all occurances
of:
__FUNCTION__ ": error string"
with:
"%s: error string"
2002-05-11 03:48:49 +00:00
brian
02509bfc4b
NetBSD keeps des.h in /usr/include/openssl these days
2002-05-11 03:47:15 +00:00
alfred
1481568735
unbreak build:
...
K&R style main() makes gcc emit a warning about missing prototypes so
switch to ANSI.
2002-05-11 03:29:04 +00:00
alfred
ab796ae7fb
unbreak build:
...
commands.c, sys_bsd.c: comment out/remove junk after #endif/#else
network.c, terminal.c, utlities.c: include stdlib.h for exit(3)
2002-05-11 03:19:44 +00:00
jedgar
7a96d67f52
#include <stdlib.h> for exit(3) prototype.
2002-05-11 03:18:14 +00:00
jedgar
47acb76e7c
Add semicolon to empty default case to silence warning.
2002-05-11 03:12:02 +00:00
wollman
a04093f9b6
EXPR_COMPAT should imply -e, since there is no way to specify it otherwise,
...
and -e reflects the historic behavior of FreeBSD's expr.
2002-05-11 03:08:12 +00:00
alfred
9605f078e0
unbreak build: include string.h for strcmp prototype.
2002-05-11 03:07:38 +00:00
jhb
847fe64c07
Add a dummy cleandir target to the kernel section so that make buildkernel
...
actually works on a kernel config with NO_MODULES set.
2002-05-11 02:25:02 +00:00
brian
1b3e4e9ad4
Mention the other RAS_PORT_TYPEs from rfc2865
...
Suggested by: "lsz8425" <lsz8425@mail.cd.hn.cn>
2002-05-11 01:27:27 +00:00
alfred
2864dba864
while i'm breaking stuff, use __dead2 instead of GCC specific __attribute__.
2002-05-11 01:25:54 +00:00
alfred
2f75a283e0
backout additional include of cdefs.h, it's not helping any.
2002-05-11 01:24:39 +00:00
alfred
83d76dffe1
include cdefs.h for __printf0like to silence warning.
2002-05-11 00:54:33 +00:00
jedgar
818f9c0a64
Add semicolon to empty default case to silence warning.
2002-05-11 00:45:01 +00:00
obrien
a8e2e6d6bb
Localize the version number at the request of the GCC developers.
2002-05-11 00:25:50 +00:00
alfred
c4d4a5fa12
Add semicolon to empty default case to silence warning.
2002-05-11 00:21:00 +00:00
obrien
b900b2ab4e
Revert rev 1.3 -- I tested using the wrong build compiler.
2002-05-11 00:15:45 +00:00
obrien
aaf4b41b86
Actually we don't need any special YACC'ing here. The ones known to
...
Bmake are fine.
2002-05-10 23:20:54 +00:00
wollman
e11cb46ee8
The response to my POSIX interpretation request says that `expr'
...
is required to be oblivious to overflow and to use the data type `long'.
(Division by zero is undefined in ISO C so it's still OK to check for it
here.) Add a new `-e' flag to get the old, more useful behavior.
2002-05-10 22:59:29 +00:00
obrien
6cd7fcea88
Note potential cvs update problem in contrib/gcc.
2002-05-10 22:56:59 +00:00
des
d0e527bb11
This commit was generated by cvs2svn to compensate for changes in r96364,
...
which included commits to RCS files with non-trunk default branches.
2002-05-10 22:03:19 +00:00