]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
22 years agoFix logic inversion bug.
Kelly Yancey [Sat, 11 May 2002 06:27:24 +0000 (06:27 +0000)]
Fix logic inversion bug.

22 years agosysctl -w -> sysctl
Dima Dorfman [Sat, 11 May 2002 06:06:11 +0000 (06:06 +0000)]
sysctl -w -> sysctl

22 years agosysctl -w -> sysctl
Dima Dorfman [Sat, 11 May 2002 05:55:05 +0000 (05:55 +0000)]
sysctl -w -> sysctl

Approved by: ume

22 years agoBeware the log demon! (Fix typo: s/demon/daemon/)
Dima Dorfman [Sat, 11 May 2002 05:16:02 +0000 (05:16 +0000)]
Beware the log demon!  (Fix typo: s/demon/daemon/)

Submitted by: zhuravlev alexander <zaa@ulstu.ru>

22 years agoSorry, I did not mean to turn collect2 back on yet.
David E. O'Brien [Sat, 11 May 2002 04:51:45 +0000 (04:51 +0000)]
Sorry, I did not mean to turn collect2 back on yet.

22 years agoFix warnings by commenting out text after #else/#endif.
Alfred Perlstein [Sat, 11 May 2002 04:40:13 +0000 (04:40 +0000)]
Fix warnings by commenting out text after #else/#endif.

22 years agoTemporarily disable Jeff's fix for atomic_cmpset_32() to zero-extend the
John Baldwin [Sat, 11 May 2002 04:27:39 +0000 (04:27 +0000)]
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.

22 years agoreplace __FUNCTION__ with standardized __func__.
Alfred Perlstein [Sat, 11 May 2002 04:17:55 +0000 (04:17 +0000)]
replace __FUNCTION__ with standardized __func__.

Requested by: jhb

22 years agounbreak build: fix multi-line string literal
Alfred Perlstein [Sat, 11 May 2002 04:10:49 +0000 (04:10 +0000)]
unbreak build: fix multi-line string literal

22 years agoAs a temporary bandaid disable '__printf0like' unconditionally, it
Alfred Perlstein [Sat, 11 May 2002 03:58:24 +0000 (03:58 +0000)]
As a temporary bandaid disable '__printf0like' unconditionally, it
doesn't seem to work under gcc 3.1 yet.

We are now 'WERROR' safe again.

22 years agounbreak build: ditch multi-line string literals
Alfred Perlstein [Sat, 11 May 2002 03:54:21 +0000 (03:54 +0000)]
unbreak build: ditch multi-line string literals

22 years agofix build:
Alfred Perlstein [Sat, 11 May 2002 03:48:49 +0000 (03:48 +0000)]
fix build:
you may not use string concatination with __FUNCTION__, replace all occurances
of:
__FUNCTION__ ": error string"
with:
"%s: error string"

22 years agoNetBSD keeps des.h in /usr/include/openssl these days
Brian Somers [Sat, 11 May 2002 03:47:15 +0000 (03:47 +0000)]
NetBSD keeps des.h in /usr/include/openssl these days

22 years agounbreak build:
Alfred Perlstein [Sat, 11 May 2002 03:29:04 +0000 (03:29 +0000)]
unbreak build:
K&R style main() makes gcc emit a warning about missing prototypes so
switch to ANSI.

22 years agounbreak build:
Alfred Perlstein [Sat, 11 May 2002 03:19:44 +0000 (03:19 +0000)]
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)

22 years ago#include <stdlib.h> for exit(3) prototype.
Chris D. Faulhaber [Sat, 11 May 2002 03:18:14 +0000 (03:18 +0000)]
#include <stdlib.h> for exit(3) prototype.

22 years agoAdd semicolon to empty default case to silence warning.
Chris D. Faulhaber [Sat, 11 May 2002 03:12:02 +0000 (03:12 +0000)]
Add semicolon to empty default case to silence warning.

22 years agoEXPR_COMPAT should imply -e, since there is no way to specify it otherwise,
Garrett Wollman [Sat, 11 May 2002 03:08:12 +0000 (03:08 +0000)]
EXPR_COMPAT should imply -e, since there is no way to specify it otherwise,
and -e reflects the historic behavior of FreeBSD's expr.

22 years agounbreak build: include string.h for strcmp prototype.
Alfred Perlstein [Sat, 11 May 2002 03:07:38 +0000 (03:07 +0000)]
unbreak build: include string.h for strcmp prototype.

22 years agoAdd a dummy cleandir target to the kernel section so that make buildkernel
John Baldwin [Sat, 11 May 2002 02:25:02 +0000 (02:25 +0000)]
Add a dummy cleandir target to the kernel section so that make buildkernel
actually works on a kernel config with NO_MODULES set.

22 years agoMention the other RAS_PORT_TYPEs from rfc2865
Brian Somers [Sat, 11 May 2002 01:27:27 +0000 (01:27 +0000)]
Mention the other RAS_PORT_TYPEs from rfc2865

Suggested by: "lsz8425" <lsz8425@mail.cd.hn.cn>

22 years agowhile i'm breaking stuff, use __dead2 instead of GCC specific __attribute__.
Alfred Perlstein [Sat, 11 May 2002 01:25:54 +0000 (01:25 +0000)]
while i'm breaking stuff, use __dead2 instead of GCC specific __attribute__.

22 years agobackout additional include of cdefs.h, it's not helping any.
Alfred Perlstein [Sat, 11 May 2002 01:24:39 +0000 (01:24 +0000)]
backout additional include of cdefs.h, it's not helping any.

22 years agoinclude cdefs.h for __printf0like to silence warning.
Alfred Perlstein [Sat, 11 May 2002 00:54:33 +0000 (00:54 +0000)]
include cdefs.h for __printf0like to silence warning.

22 years agoAdd semicolon to empty default case to silence warning.
Chris D. Faulhaber [Sat, 11 May 2002 00:45:01 +0000 (00:45 +0000)]
Add semicolon to empty default case to silence warning.

22 years agoLocalize the version number at the request of the GCC developers.
David E. O'Brien [Sat, 11 May 2002 00:25:50 +0000 (00:25 +0000)]
Localize the version number at the request of the GCC developers.

22 years agoAdd semicolon to empty default case to silence warning.
Alfred Perlstein [Sat, 11 May 2002 00:21:00 +0000 (00:21 +0000)]
Add semicolon to empty default case to silence warning.

22 years agoRevert rev 1.3 -- I tested using the wrong build compiler.
David E. O'Brien [Sat, 11 May 2002 00:15:45 +0000 (00:15 +0000)]
Revert rev 1.3 -- I tested using the wrong build compiler.

22 years agoActually we don't need any special YACC'ing here. The ones known to
David E. O'Brien [Fri, 10 May 2002 23:20:54 +0000 (23:20 +0000)]
Actually we don't need any special YACC'ing here.  The ones known to
Bmake are fine.

22 years agoThe response to my POSIX interpretation request says that `expr'
Garrett Wollman [Fri, 10 May 2002 22:59:29 +0000 (22:59 +0000)]
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.

22 years agoNote potential cvs update problem in contrib/gcc.
David E. O'Brien [Fri, 10 May 2002 22:56:59 +0000 (22:56 +0000)]
Note potential cvs update problem in contrib/gcc.

22 years agoThis commit was generated by cvs2svn to compensate for changes in r96364,
Dag-Erling Smørgrav [Fri, 10 May 2002 22:03:19 +0000 (22:03 +0000)]
This commit was generated by cvs2svn to compensate for changes in r96364,
which included commits to RCS files with non-trunk default branches.

22 years agoAdd missing include (perforce change 11137)
Dag-Erling Smørgrav [Fri, 10 May 2002 22:03:19 +0000 (22:03 +0000)]
Add missing include (perforce change 11137)

22 years agoBWK awk appears to work for world builds just fine now. We want to make
David E. O'Brien [Fri, 10 May 2002 20:36:21 +0000 (20:36 +0000)]
BWK awk appears to work for world builds just fine now.  We want to make
sparc64 the same as the other platforms -- so do it by moving the other
platforms toward the sparc64.

22 years agoAdd tweaks needed when using as the system compiler.
David E. O'Brien [Fri, 10 May 2002 19:05:07 +0000 (19:05 +0000)]
Add tweaks needed when using as the system compiler.

22 years agoChange the PIO loops from a hard counter into a loop that calls DELAY()
Joerg Wunsch [Fri, 10 May 2002 17:56:39 +0000 (17:56 +0000)]
Change the PIO loops from a hard counter into a loop that calls DELAY()
in each cycle, with a tunable max cycle count defined in fdreg.h.

This is said to fix the problem on some Compaq hardware (and perhaps
on other machines using the Natsemi PC87317 chip) where the fdc(4)
driver failed to operate at all.

PR: kern/21397
Submitted by: Jung-uk Kim <jkim@niksun.com>
MFC after: 3 days

22 years agoTouching the sjlj setting on IA-64 makes things not build.
David E. O'Brien [Fri, 10 May 2002 17:42:19 +0000 (17:42 +0000)]
Touching the sjlj setting on IA-64 makes things not build.

Submitted by: peter

22 years agoBuild compiler on all platforms.
David E. O'Brien [Fri, 10 May 2002 17:30:42 +0000 (17:30 +0000)]
Build compiler on all platforms.

22 years agoDoh! Add IA-64 to our target list.
David E. O'Brien [Fri, 10 May 2002 17:23:04 +0000 (17:23 +0000)]
Doh!  Add IA-64 to our target list.

22 years agoRemove ## concatination in the CFGREAD and CFGWRITE macros, as gcc3 complains
Andrew Gallatin [Fri, 10 May 2002 16:56:14 +0000 (16:56 +0000)]
Remove ## concatination in the CFGREAD and CFGWRITE macros, as gcc3 complains
about them & they are not needed.  Same fix as to tsunami_pci.c.
(not surprising, as this code was cut and pasted from there when I wrote it).

22 years agoFix several bugs in devfs_lookupx(). When we check the nameiop to
Maxime Henrion [Fri, 10 May 2002 15:41:14 +0000 (15:41 +0000)]
Fix several bugs in devfs_lookupx().  When we check the nameiop to
make sure it's a correct operation for devfs, do it only in the
ISLASTCN case.  If we don't, we are assuming that the final file will
be in devfs, which is not true if another partition is mounted on top
of devfs or with special filenames (like /dev/net/../../foo).

Reviewed by: phk

22 years agop_leader is only set at fork1() time, so update its locking note
John Baldwin [Fri, 10 May 2002 14:28:05 +0000 (14:28 +0000)]
p_leader is only set at fork1() time, so update its locking note
appropriately.

22 years agoImplement the following functions:
Benno Rice [Fri, 10 May 2002 14:21:48 +0000 (14:21 +0000)]
Implement the following functions:
- pmap_addr_hint
- pmap_change_wiring
- pmap_extract
- pmap_is_modified

22 years agoInstall the system call trap handler.
Benno Rice [Fri, 10 May 2002 14:19:44 +0000 (14:19 +0000)]
Install the system call trap handler.

22 years agoxargs.c,v 1.33 broke the upgrade path from old versions of 4.x and 5.0.
Ruslan Ermilov [Fri, 10 May 2002 13:06:34 +0000 (13:06 +0000)]
xargs.c,v 1.33 broke the upgrade path from old versions of 4.x and 5.0.

22 years agoAvoid casting a different sized integer to a pointer on LP64 systems.
Peter Wemm [Fri, 10 May 2002 12:50:59 +0000 (12:50 +0000)]
Avoid casting a different sized integer to a pointer on LP64 systems.

22 years agoFix a misplaced break statement within a switch that accidentally made
Joerg Wunsch [Fri, 10 May 2002 12:48:09 +0000 (12:48 +0000)]
Fix a misplaced break statement within a switch that accidentally made
it into an "#ifdef INET6" block.  This caused a (harmless but annoying)
EINVAL return value to be sent even though the operation completed
successfully.

PR: kern/37786
Submitted by: Ari Suutari <ari.suutari@syncrontech.com>,David Malone <dwmalone@maths.tcd.ie>
MFC after: 1 day

22 years agoFix a problem which could cause some machines to hang after a warm boot.
Gary Jennejohn [Fri, 10 May 2002 12:04:04 +0000 (12:04 +0000)]
Fix a problem which could cause some machines to hang after a warm boot.

This should be in 4.6.

Submitted by: Ari Suutari <ari.suutari@syncrontech.com>

22 years agoCast the uc_mcontext member to regcontext *, not the whole ucontext_t.
Thomas Gellekum [Fri, 10 May 2002 10:40:46 +0000 (10:40 +0000)]
Cast the uc_mcontext member to regcontext *, not the whole ucontext_t.

PR: 35449
Submitted by: Stefan Farfeleder <e0026813@stud3.tuwien.ac.at>

22 years agoFix wrong bitmask.
Thomas Gellekum [Fri, 10 May 2002 10:37:57 +0000 (10:37 +0000)]
Fix wrong bitmask.

22 years agoGather up the stragglers that depends on genrtl.h. This is -j10 safe now.
David E. O'Brien [Fri, 10 May 2002 10:21:19 +0000 (10:21 +0000)]
Gather up the stragglers that depends on genrtl.h.  This is -j10 safe now.

22 years agoThis was *very* -j unsafe. Add a dependency on the common generated
David E. O'Brien [Fri, 10 May 2002 10:14:53 +0000 (10:14 +0000)]
This was *very* -j unsafe.  Add a dependency on the common generated
headers to mostly make it -j1 safe.

22 years ago[Ab]use LDFLAGS rather than CFLAGS.
David E. O'Brien [Fri, 10 May 2002 09:32:39 +0000 (09:32 +0000)]
[Ab]use LDFLAGS rather than CFLAGS.
BDE tells me POSIX pretends `ld' as a directly callable entity does not exist.

22 years ago-ffreestanding is the word.
David E. O'Brien [Fri, 10 May 2002 09:26:35 +0000 (09:26 +0000)]
-ffreestanding is the word.
(also resort some CFLAGS such that the more "important" value are first so
they are easier to see)

22 years agoChange symbol values to match freebsd.h to avoid warnings.
David E. O'Brien [Fri, 10 May 2002 09:02:14 +0000 (09:02 +0000)]
Change symbol values to match freebsd.h to avoid warnings.

22 years agoBmake bits for Gcc 3.1.
David E. O'Brien [Fri, 10 May 2002 08:54:50 +0000 (08:54 +0000)]
Bmake bits for Gcc 3.1.

Partially made possible by: Wilko.Bulte@compaq.com

22 years agoNeed to build libgcc.so with -nostdlib -- otherwise we try linking with
David E. O'Brien [Fri, 10 May 2002 08:52:41 +0000 (08:52 +0000)]
Need to build libgcc.so with -nostdlib -- otherwise we try linking with
ourself.

22 years agoUse MD_EXEC_PREFIX now to get us thru `buildworld'.
David E. O'Brien [Fri, 10 May 2002 08:41:46 +0000 (08:41 +0000)]
Use MD_EXEC_PREFIX now to get us thru `buildworld'.
The problem is the GCC driver now turns STANDARD_EXEC_PREFIX into a relative
path -- "<basename argv[0]>/../../libexec" for our normal install location.
However, in the middle of `buildworld' we need
"<basename argv[0]>/../../../../libexec" due to the prefix we tell the GCC
driver.  But either the GCC driver is buggy, or we are confusing it, as it
tries to exec "<basename argv[0]>/../../libexec/cpp0" as if it were installed
in the normal place (but isn't).
MD_EXEC_PREFIX is still absolute, so I'll use that for now.  I would like to
later make it so MD_EXEC_PREFIX is set only for `buildworld', as
MD_EXEC_PREFIX is also in the search path for libraries. Don't ask me why!
Another way is to add ${OBJFORMAT_PATH} (as set in CROSSENV) to the PATH
in src/Makefile.inc's WMAKEENV.

22 years ago[forced commit] Previous change got piggybacked. Initial definition
Marcel Moolenaar [Fri, 10 May 2002 07:45:26 +0000 (07:45 +0000)]
[forced commit] Previous change got piggybacked. Initial definition
of ptrace registers.

Pointy hat with donkey sounds to: marcel :-(

22 years agoAdd missing #endif
Marcel Moolenaar [Fri, 10 May 2002 07:33:11 +0000 (07:33 +0000)]
Add missing #endif

22 years agoAccording to POSIX, exit status must be 127 if the requested utility was not
Tim J. Robbins [Fri, 10 May 2002 06:39:16 +0000 (06:39 +0000)]
According to POSIX, exit status must be 127 if the requested utility was not
found, 126 if the execvp() failed for any other reason.

Similar to rev. 1.6 to src/usr.bin/env/env.c

Reviewed by: mike

22 years agoImprove our detection of an attempted duplicate entry. We may be trying to
Benno Rice [Fri, 10 May 2002 06:27:08 +0000 (06:27 +0000)]
Improve our detection of an attempted duplicate entry.  We may be trying to
change the page protection bits.

22 years agoRemove a debugging printf that escaped.
Benno Rice [Fri, 10 May 2002 06:26:19 +0000 (06:26 +0000)]
Remove a debugging printf that escaped.

22 years agoAdd a couple of entries. My MAINTAINER= lines are not locks.
Peter Wemm [Fri, 10 May 2002 05:44:09 +0000 (05:44 +0000)]
Add a couple of entries.  My MAINTAINER= lines are not locks.

22 years agoRemove files not part of GCC 3.1.
David E. O'Brien [Fri, 10 May 2002 05:26:57 +0000 (05:26 +0000)]
Remove files not part of GCC 3.1.

22 years agoImport data for 3.0.2.
David E. O'Brien [Fri, 10 May 2002 05:21:15 +0000 (05:21 +0000)]
Import data for 3.0.2.

22 years agoIncrease the size of the kstack.
Benno Rice [Fri, 10 May 2002 05:16:40 +0000 (05:16 +0000)]
Increase the size of the kstack.

22 years ago- Axe -mpreferred-stack-boundary=2 as -Os turns this on by default.
John Baldwin [Fri, 10 May 2002 04:05:42 +0000 (04:05 +0000)]
- Axe -mpreferred-stack-boundary=2 as -Os turns this on by default.
- Axe -fdata-sections as turning it on or off makes no difference.  If
  it did make a difference it would serve to bloat boot2 even further with
  extra padding.
- Axe -fforce-addr.  This gets us 32 bytes so we are down to only being
  64-bytes over.

We still can't compile this with gcc 3.1.  The problem seems to be that
the -fno-align-foo options don't actually work.  Comparing the new and
old output it turns out that gcc is 4-byte padding all the functions and
labels and what not despite the passed in arguments thus adding the
unfortunate bloat to boot2.

22 years agoTypo.
Masafumi Max NAKANE [Fri, 10 May 2002 03:53:00 +0000 (03:53 +0000)]
Typo.

22 years agoI reorganized a little bit too much in the backwards case.
David E. O'Brien [Fri, 10 May 2002 03:24:06 +0000 (03:24 +0000)]
I reorganized a little bit too much in the backwards case.

22 years agoAdd support for MS-CHAP authentication via a RADIUS server.
Brian Somers [Fri, 10 May 2002 03:11:35 +0000 (03:11 +0000)]
Add support for MS-CHAP authentication via a RADIUS server.
Add support for Reply-Message and MS-CHAP-Error.

Sponsored by: Monzoon

22 years agoGcc 3.1 now offers both a C99 and a K&R traditional C preprocessor.
David E. O'Brien [Fri, 10 May 2002 02:46:01 +0000 (02:46 +0000)]
Gcc 3.1 now offers both a C99 and a K&R traditional C preprocessor.
This is the ISO C99 one.

22 years agoAdd rad_get_vendor_attr() for deciphering vendor attributes received
Brian Somers [Fri, 10 May 2002 02:40:23 +0000 (02:40 +0000)]
Add rad_get_vendor_attr() for deciphering vendor attributes received
from the RADIUS server.

22 years agoBmake bits for GCC 3.1.
David E. O'Brien [Fri, 10 May 2002 02:36:12 +0000 (02:36 +0000)]
Bmake bits for GCC 3.1.

22 years agoOpps, remove added bogon.
David E. O'Brien [Fri, 10 May 2002 02:21:05 +0000 (02:21 +0000)]
Opps, remove added bogon.

22 years agoSync with the other platforms.
David E. O'Brien [Fri, 10 May 2002 02:20:33 +0000 (02:20 +0000)]
Sync with the other platforms.

22 years agoGcc 3.1 varargs support.
David E. O'Brien [Fri, 10 May 2002 02:12:04 +0000 (02:12 +0000)]
Gcc 3.1 varargs support.

22 years agoGcc 3.1 varargs support.
David E. O'Brien [Fri, 10 May 2002 02:02:54 +0000 (02:02 +0000)]
Gcc 3.1 varargs support.

22 years agoGcc 3.1 has different -Wx flags.
David E. O'Brien [Fri, 10 May 2002 01:58:16 +0000 (01:58 +0000)]
Gcc 3.1 has different -Wx flags.

22 years agoUse only bits w/in /sys if at all possible.
David E. O'Brien [Fri, 10 May 2002 01:53:16 +0000 (01:53 +0000)]
Use only bits w/in /sys if at all possible.

22 years agoRemove gCC'isms.
David E. O'Brien [Fri, 10 May 2002 01:48:15 +0000 (01:48 +0000)]
Remove gCC'isms.

22 years agoUse the compiler's crt{begin,end}.
David E. O'Brien [Fri, 10 May 2002 01:36:29 +0000 (01:36 +0000)]
Use the compiler's crt{begin,end}.

22 years agoAdd the beginnings of Sparc64 support.
David E. O'Brien [Fri, 10 May 2002 01:31:40 +0000 (01:31 +0000)]
Add the beginnings of Sparc64 support.

22 years agoPass CFLAGS to {CC} when using it as an `ld' replacement.
David E. O'Brien [Fri, 10 May 2002 01:30:34 +0000 (01:30 +0000)]
Pass CFLAGS to {CC} when using it as an `ld' replacement.

22 years agoWe don't need bootinfo any more, and sparc64 doesn't have it anyways.
David E. O'Brien [Fri, 10 May 2002 01:20:37 +0000 (01:20 +0000)]
We don't need bootinfo any more, and sparc64 doesn't have it anyways.

22 years agoDon't be redundant.
David E. O'Brien [Fri, 10 May 2002 01:06:52 +0000 (01:06 +0000)]
Don't be redundant.

22 years agoNew release notes: pam_ftpusers(8), sed(1) -i.
Bruce A. Mah [Fri, 10 May 2002 01:02:13 +0000 (01:02 +0000)]
New release notes:  pam_ftpusers(8), sed(1) -i.

Record the arrival (and departure) of pkg_update(1).  It lived in the
tree for so long (over a year) that even though it won't show up in
the release, -CURRENT users might have gotten used to seeing it
around and might wonder where it went.

22 years agomklocale has bad juju for Sparc64.
David E. O'Brien [Fri, 10 May 2002 00:57:14 +0000 (00:57 +0000)]
mklocale has bad juju for Sparc64.

22 years ago-ffreestanding is the word for /sys.
David E. O'Brien [Fri, 10 May 2002 00:53:45 +0000 (00:53 +0000)]
-ffreestanding is the word for /sys.

22 years agoTurn off boot2 -- it gained over 96 bytes dieting on the in-tree Gcc 3.1.
David E. O'Brien [Fri, 10 May 2002 00:52:00 +0000 (00:52 +0000)]
Turn off boot2 -- it gained over 96 bytes dieting on the in-tree Gcc 3.1.

22 years agoTurn off groff and gperf -- they will not compile with the in-tree Gcc 3.1.
David E. O'Brien [Fri, 10 May 2002 00:50:43 +0000 (00:50 +0000)]
Turn off groff and gperf -- they will not compile with the in-tree Gcc 3.1.

22 years agoAll platforms should be on equal footing now -- no special handling for
David E. O'Brien [Fri, 10 May 2002 00:49:55 +0000 (00:49 +0000)]
All platforms should be on equal footing now -- no special handling for
Sparc64 and IA-64.

22 years agoTurn off pppctl -- it won't like with an in-tree Gcc 3.1 built libc_r.
David E. O'Brien [Fri, 10 May 2002 00:48:33 +0000 (00:48 +0000)]
Turn off pppctl -- it won't like with an in-tree Gcc 3.1 built libc_r.

22 years agoAdd entry for Vinum.
Greg Lehey [Fri, 10 May 2002 00:31:33 +0000 (00:31 +0000)]
Add entry for Vinum.

22 years agoWhen packing installed package into a file (pkg_create -b) make sure to
Maxim Sobolev [Fri, 10 May 2002 00:03:14 +0000 (00:03 +0000)]
When packing installed package into a file (pkg_create -b) make sure to
include all package files into resulting tarball.

PR: 34007
Submitted by: olgeni

While I here:

- Remove bogus comment;
- ensure that we return the proper exit code in the case of -b failure.

MFC after: 5 days

22 years agoReimplement the who(1) utility to add some features required by SUSv3:
Tim J. Robbins [Thu, 9 May 2002 23:04:40 +0000 (23:04 +0000)]
Reimplement the who(1) utility to add some features required by SUSv3:
-H option (show column headings),
-T (show mesg(1) state),
-m (same as "am I"),
-u (show idle time),
-q (quick mode; list names in columns).

PR: 36128
Reviewed by: mike

22 years agoThis commit was generated by cvs2svn to compensate for changes in r96297,
David E. O'Brien [Thu, 9 May 2002 22:50:04 +0000 (22:50 +0000)]
This commit was generated by cvs2svn to compensate for changes in r96297,
which included commits to RCS files with non-trunk default branches.

22 years agoGcc 3.1.0 pre-release's Objective C support bits from the FSF anoncvs repo
David E. O'Brien [Thu, 9 May 2002 22:50:04 +0000 (22:50 +0000)]
Gcc 3.1.0 pre-release's Objective C support bits from the FSF anoncvs repo
on 9-May-2002 15:57:15 EDT.

22 years agoThis commit was generated by cvs2svn to compensate for changes in r96295,
David E. O'Brien [Thu, 9 May 2002 22:47:59 +0000 (22:47 +0000)]
This commit was generated by cvs2svn to compensate for changes in r96295,
which included commits to RCS files with non-trunk default branches.

22 years agoGcc 3.1.0 pre-release's libf2c bits from the FSF anoncvs repo on
David E. O'Brien [Thu, 9 May 2002 22:47:59 +0000 (22:47 +0000)]
Gcc 3.1.0 pre-release's libf2c bits from the FSF anoncvs repo on
9-May-2002 15:57:15 EDT.