| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This change should have no effect on i386.
Pointed out by: Steve Kargl <sgk@troutmask.apl.washington.edu>
Quote from http://www.netlib.org/f2c/readme:
NOTE: f2c.h defines several types, e.g., real, integer, doublereal.
The definitions in f2c.h are suitable for most machines, but if
your machine has sizeof(double) > 2*sizeof(long), you may need
to adjust f2c.h appropriately. f2c assumes
sizeof(doublecomplex) = 2*sizeof(doublereal)
sizeof(doublereal) = sizeof(complex)
sizeof(doublereal) = 2*sizeof(real)
sizeof(real) = sizeof(integer)
sizeof(real) = sizeof(logical)
sizeof(real) = 2*sizeof(shortint)
EQUIVALENCEs may not be translated correctly if these
assumptions are violated.
On machines, such as those using a DEC Alpha processor, on
which sizeof(short) == 2, sizeof(int) == sizeof(float) == 4,
and sizeof(long) == sizeof(double) == 8, it suffices to
modify f2c.h by removing the first occurrence of "long "
on each line containing "long ", e.g., by issuing the
commands
mv f2c.h f2c.h0
sed 's/long //' f2c.h0 >f2c.h
On such machines, one can enable INTEGER*8 by uncommenting
the typedef of longint in f2c.h, so it reads
typedef long longint;
by compiling libI77 with -DAllow_TYQUAD, and by adjusting
libF77/makefile as described in libF77/README.
Notes:
svn path=/head/; revision=42825
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Didn't fix related bogotification from moving the definitions of
DPADD and LDADD to here. Setting these variables in a top-level
directory gives bogus dependencies in library subdirectories.
E.g., there is a dependency on `foo.so..' where the double dots
separate null shared library version numbers.
Set BINDIR properly by inheriting it from ../Makefile.inc.
Notes:
svn path=/head/; revision=42821
|
| |
|
|
| |
Notes:
svn path=/head/; revision=42816
|
| |
|
|
| |
Notes:
svn path=/head/; revision=42815
|
| |
|
|
| |
Notes:
svn path=/head/; revision=42800
|
| |
|
|
| |
Notes:
svn path=/head/; revision=42792
|
| |
|
|
|
|
|
|
|
|
|
| |
the kernel; this was left over from the earlier protocol-dependent
kernel multicast routing code.
Learn how to handle the malloc'd multicast routing table (instead of
expecting it to be in mbufs)
Notes:
svn path=/head/; revision=42778
|
| |
|
|
| |
Notes:
svn path=/head/; revision=42703
|
| |
|
|
|
|
|
| |
described in RFC 2068. Include a reference to same in the manual page.
Notes:
svn path=/head/; revision=42702
|
| |
|
|
| |
Notes:
svn path=/head/; revision=42683
|
| |
|
|
|
|
|
|
| |
Approved by: jkh
Obtained from: NetBSD
Notes:
svn path=/head/; revision=42625
|
| |
|
|
|
|
|
|
|
|
|
|
| |
to be written to /etc.
The only essential change is in paths.h, so any third-party software
written correctly will pick it up in the next rebuild.
Reviewed by: the committers list (actually an old version)
Notes:
svn path=/head/; revision=42515
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
I found the reason why f77 so offen dies on alpha. Here is a fix.
"Const" is a union of int and double.
If nelt->constblock.Const.ci > 0 then it trys to evaluate it as double
and floating point exception occurs.
Submitted by: Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp>
Obtained from: NetBSD
Notes:
svn path=/head/; revision=42483
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
one character shorter than the previous in a stairstep fashion when long
idle times were involved.
A couple of nits:
- spelling/typo fix.
- some of the easier style(9) fixes where it was bothering me.
- Handle 100+ days idle time (ha!). Probably the right thing to do is
to do a snprintf into a buffer and strlen the result rather than doing
hackery on magic numbers.
XXX the wide (and mostly unused) username and tty columns annoy me since
it it could be used for more useful information for the command. We should
actually count the largest username and tty and adjust like 'ls -l' does.
Notes:
svn path=/head/; revision=42481
|
| |
|
|
| |
Notes:
svn path=/head/; revision=42447
|
| |
|
|
| |
Notes:
svn path=/head/; revision=42425
|
| |
|
|
|
|
|
|
| |
file types. Also add bit interpretation from NetBSD to give more
details about the file.
Notes:
svn path=/head/; revision=42416
|
| |
|
|
|
|
|
| |
Spotted by: John W. DeBoskey <jwd@unx.sas.com>
Notes:
svn path=/head/; revision=42409
|
| |
|
|
| |
Notes:
svn path=/head/; revision=42310
|
| |
|
|
|
|
|
|
|
| |
Submitted by: ishisone@sra.co.jp
Make touch handle years 2000-2038 in the obsoleted format, rather
than 1902-1969 as was previously the case with two digit year spec.
Notes:
svn path=/head/; revision=42307
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
so it can't be completely fixed here. Putting -I paths to the current
headers in CFLAGS is more likely to break things than fix them, since
there is no reason why current headers should work with old libraries.
Other Makefiles that do this may only work because they are not used early
in the bootstrap. However, the usual problem with errno being defined in
terms of a nonexistent library doesn't seem to occur here, since we don't
reference errno.
Notes:
svn path=/head/; revision=42286
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
a circular dependency problem, wherein rpcgen depends on the latest
includes, but those same includes depend on rpcgen to build
include/rpcsvc. This was causing the build or librpcsvc to fail
(like I said, only on upgrades of 9 month old sources).
If there's stylistic problems, tell me, I'll learn and fix them.
I did a buildworld with this, it should be safe.
Notes:
svn path=/head/; revision=42275
|
| |
|
|
|
|
|
| |
logins get logged.
Notes:
svn path=/head/; revision=42272
|
| |
|
|
|
|
|
|
| |
PR: docs/9255
Submitted by: Christian Weisgerber <naddy@bigeye.rhein-neckar.de>
Notes:
svn path=/head/; revision=42212
|
| |
|
|
|
|
|
| |
Noticed by: ken
Notes:
svn path=/head/; revision=42106
|
| |
|
|
|
|
|
|
|
| |
relation to devstat(3)/(9).
Submitted-by: ken@freebsd.org
Notes:
svn path=/head/; revision=42105
|
| |
|
|
|
|
|
|
|
| |
You can now use the `want_fd' command in the vmstat display.
Suggested by: grog
Notes:
svn path=/head/; revision=42094
|
| |
|
|
|
|
|
| |
(can get old behavior with -DWANT_FD)
Notes:
svn path=/head/; revision=42072
|
| |
|
|
|
|
|
| |
"uptime" the right way. Sheesh.
Notes:
svn path=/head/; revision=42055
|
| |
|
|
|
|
|
| |
Suggested by: bde
Notes:
svn path=/head/; revision=42050
|
| |
|
|
|
|
|
|
| |
Complete the addition of the setmark support
(from Martin.Birgmeier@aon.at).
Notes:
svn path=/head/; revision=42010
|
| |
|
|
|
|
|
| |
the stdio buffer.
Notes:
svn path=/head/; revision=41970
|
| |
|
|
| |
Notes:
svn path=/head/; revision=41949
|
| |
|
|
| |
Notes:
svn path=/head/; revision=41945
|
| |
|
|
|
|
|
| |
Obtained from:bde@freebsd.org
Notes:
svn path=/head/; revision=41925
|
| |
|
|
|
|
|
| |
ANSI C no matter what language is specified.
Notes:
svn path=/head/; revision=41922
|
| |
|
|
|
|
|
|
| |
2) Add in the set of {sethpos,setspos,rdhpos,rdspos) commands to implement the
Hardware && SCSI Logical Block position ioctls.
Notes:
svn path=/head/; revision=41913
|
| |
|
|
|
|
|
| |
Obtained from: OpenBSD
Notes:
svn path=/head/; revision=41847
|
| |
|
|
|
|
|
| |
Obtained from: OpenBSD
Notes:
svn path=/head/; revision=41846
|
| |
|
|
|
|
|
| |
in a release or buildworld environment, so I'll leave it disabled.
Notes:
svn path=/head/; revision=41840
|
| |
|
|
|
|
|
| |
is set to C.
Notes:
svn path=/head/; revision=41819
|
| |
|
|
|
|
|
|
|
|
| |
This comes in really handy when you're telneting the broken DNS server by
IP.
PR: bin/8698
Notes:
svn path=/head/; revision=41805
|
| |
|
|
|
|
|
|
|
| |
from Kaleb.
Obtained from: Kaleb Keithley <kaleb@ics.com>
Notes:
svn path=/head/; revision=41760
|
| |
|
|
|
|
|
|
|
| |
arguments to changequote are significant.
PR: 8282
Notes:
svn path=/head/; revision=41743
|
| |
|
|
| |
Notes:
svn path=/head/; revision=41730
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Fix bug with od/hd/hexdump. "*" lines are supposed to indicate one or
duplicates of the previous line, but a small file with less then 16
characters of zeros in it will be falsy identified as a repeat of
the (non-existant) previous line. i.e. the first line of output winds
up being a "*". Added a bit of code to handle the degenerate 'there is
no previous line' case for the first line.
Notes:
svn path=/head/; revision=41724
|
| |
|
|
|
|
|
|
| |
Minor adjustments to rwall.c. Increased the size of a couple of char
arrays and replaced a potentially dangeerous strcpy/strcat with snprintf().
Notes:
svn path=/head/; revision=41718
|
| |
|
|
|
|
|
|
|
| |
Increase the size of a number of buffers and replace strcpy/strcat/sprintf
with snprintf(). There was a minor and possibly not exploitable security
hole related to one sprintf().
Notes:
svn path=/head/; revision=41717
|
| |
|
|
| |
Notes:
svn path=/head/; revision=41716
|
| |
|
|
|
|
|
|
|
| |
Update chpass(1) manual page. Change the definition of the class
field and also reorganize the field list to match that of the
/etc/master.passwd file, to avoid confusion.
Notes:
svn path=/head/; revision=41715
|