From owner-cvs-all Sun May 3 01:37:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA28272 for cvs-all-outgoing; Sun, 3 May 1998 01:37:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA28267; Sun, 3 May 1998 01:37:24 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA23853; Sun, 3 May 1998 01:35:07 -0700 (PDT) Date: Sun, 3 May 1998 01:35:07 -0700 (PDT) Message-Id: <199805030835.BAA23853@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pci pcisupport.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/05/03 01:35:07 PDT Modified files: sys/pci pcisupport.c Log: Patches are given here for pcisupport.c to recognise most of VIA Technologies' Socket 7 chipsets. This covers all of the Apollo chipsets except the Master (82C570) and the MVP3, and it also covers the cheap VXPro and VXTWO knockoffs of the VP1 and VPX. PR: 6481 Reviewed by: phk Submitted by: Lee Cremeans Revision Changes Path 1.64 +22 -1 src/sys/pci/pcisupport.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 02:49:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA05945 for cvs-all-outgoing; Sun, 3 May 1998 02:49:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from rvc1.informatik.ba-stuttgart.de (rvc1.informatik.ba-stuttgart.de [141.31.112.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA05913; Sun, 3 May 1998 02:48:38 -0700 (PDT) (envelope-from helbig@Informatik.BA-Stuttgart.DE) Received: (from helbig@localhost) by rvc1.informatik.ba-stuttgart.de (8.8.8/8.8.5) id LAA01172; Sun, 3 May 1998 11:48:54 +0200 (MET DST) From: Wolfgang Helbig Message-Id: <199805030948.LAA01172@rvc1.informatik.ba-stuttgart.de> Subject: Re: cvs commit: src/usr.sbin/chown chown.c In-Reply-To: <199805030417.VAA21679@freefall.freebsd.org> from Bruce Evans at "May 2, 98 09:17:53 pm" To: bde@FreeBSD.ORG (Bruce Evans) Date: Sun, 3 May 1998 11:48:53 +0200 (MET DST) Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL30 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > bde 1998/05/02 21:17:53 PDT > > Modified files: > usr.sbin/chown chown.c > Log: > Backed out previous commit. chown(8) doesn't follow symlinks by > default, at least in BSD. This used to be automatic, because chown(2) > didn't follow symlinks. When chown(2) was changed to follow symlinks > in BSD4.4, chown(8) was changed to not follow symlinks by default. > The previous commit broke this. The first victim was bsd.prog.mk, > which uses a plain chown in an attempt to change the ownership of the > symlinks to `dm' in /usr/games. This fails when it is done before > dm is installed, or messes up the ownership of dm if dm is installed. Before and after r1.11 it always failes, since symlinks were ignored completely by chown(8) without [-hHL], i. e. neither the symbolic link nor the file linked to were affected by chown(8). I suggest to implement the 4.4BSD behaviour as outlined in symlink(7), and documented in the man page of chown(8). Let cslink and rslink be symbolic links pointing to the files cpointed_to and rpointed_to respectively. Assume cslink be given on the command line and rslink found during a recursive traversal. flags affected --------------------------------- cpointed_to -h cslink, -R cslink, rslink -RH cpointed_to, rslink -RL cpointed_to, rpointed_to > Unfixed problems: > 1. When lchown(2) was implemented, chown(8) wasn't changed to implement > the historical behaviour of changing ownership of symlinks. I'm not > sure if it should have been. The -HLP options give more complete > control, but they unfortunately don't apply unless the -R option is > specified (a problem shared with other commands, e.g., cp; I guess > we're supposed to use -R even for non-recursive traversals). The -h option gives complete control in the nonrecursive case, and the -R[HL] options in the recursive case, if implemented as outlined above. > 2. If we implement the historical behaviour, then -h would become a no-op > and should be left undocumented. But then at least symlink(7) should be changed to reflect this. > 3. The man page suggests that without option -h, all symlinks (to files > specified in the command line?) are followed. It's not clear what > "the file" is. These bugs were introduced when -h was documented. ``the file'' is the one given on the command line. > 4. The correct interaction of -h with the other flags is not clear. According to symlink(7) -h and -R[HL] cannot be given together on the command line. If you agree, I'd implement the 4.4BSD suggestions (r1.11 didn't, with -R alone the pointed to files were affected instead of the symlinks themselves). Wolfgang > Revision Changes Path > 1.12 +2 -1 src/usr.sbin/chown/chown.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 04:26:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA20901 for cvs-all-outgoing; Sun, 3 May 1998 04:26:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA20878; Sun, 3 May 1998 04:26:37 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA24713; Sun, 3 May 1998 04:24:20 -0700 (PDT) Date: Sun, 3 May 1998 04:24:20 -0700 (PDT) Message-Id: <199805031124.EAA24713@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp hdlc.c modem.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/05/03 04:24:19 PDT Modified files: (Branch: MP) usr.sbin/ppp hdlc.c modem.c Log: o Mention our link name with timed HDLC error reports. o Switch off our carrier detect timer if we don't have CD after logging in. o Maintain our CD timer after a link transfer. Revision Changes Path 1.28.2.32 +2 -2 src/usr.sbin/ppp/hdlc.c 1.77.2.65 +16 -4 src/usr.sbin/ppp/modem.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 05:10:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA24711 for cvs-all-outgoing; Sun, 3 May 1998 05:10:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA24675; Sun, 3 May 1998 05:10:15 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id WAA20229; Sun, 3 May 1998 22:06:54 +1000 Date: Sun, 3 May 1998 22:06:54 +1000 From: Bruce Evans Message-Id: <199805031206.WAA20229@godzilla.zeta.org.au> To: bde@FreeBSD.ORG, helbig@Informatik.BA-Stuttgart.DE Subject: Re: cvs commit: src/usr.sbin/chown chown.c Cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >> The previous commit broke this. The first victim was bsd.prog.mk, >> which uses a plain chown in an attempt to change the ownership of the >> symlinks to `dm' in /usr/games. This fails when it is done before >> dm is installed, or messes up the ownership of dm if dm is installed. > >Before and after r1.11 it always failes, since symlinks were ignored >completely by chown(8) without [-hHL], i. e. neither the symbolic >link nor the file linked to were affected by chown(8). Ignoring is not quite the same as failing. When symlinks didn't have owners, it was correct to ignore the chown(8), since following the link might have clobbered the owner of the target. Both following the link and ignoring the chown(8) are harmless in /usr/games, provided the target exists (the symlink targets are already owned by games.bin, and it just makes `ls -l' output look nicer to change the symlink ownership from root.bin to games.bin). >I suggest to implement the 4.4BSD behaviour as outlined in symlink(7), >and documented in the man page of chown(8). I suggest not. The 3 commands documented as following symlinks specified on the command line (chown, chgrp and file(1)), seem to have never actually done that in FreeBSD: 4.4Lite's file.1 documents doing it, but 4.4Lite is missing the source for /usr/src/usr.bin/file. It only has sources for contrib/file-3.12, which don't do it, at least when naively configured. Anyway, we blew away 4.4Lite's file.1 with a newer distribution of `file' which has a -L option like ls's. 4.4Lite's chown.8 conflicts with its symlink.7. The former says that "Symbolic links don't have owners, so unless the -H or -L option is set, chown on a symbolic link always succeeds and has no effect". Similarly for 4.4Lite's chgrp.1. >Let cslink and rslink be symbolic links pointing to the files >cpointed_to and rpointed_to respectively. Assume cslink be >given on the command line and rslink found during a recursive >traversal. > >flags affected >--------------------------------- > cpointed_to >-h cslink, >-R cslink, rslink >-RH cpointed_to, rslink >-RL cpointed_to, rpointed_to OK, this is what rev.1.10 does (except for -R). >The -h option gives complete control in the nonrecursive case, and >the -R[HL] options in the recursive case, if implemented as outlined above. I think -HLP should have applied without -R: -H cpointed_to -L cpointed_to (same as -H; already implemented in ls(1) and file(1)) -P cslink (same as default) -h cslink (same as default, deprecated) >> 2. If we implement the historical behaviour, then -h would become a no-op >> and should be left undocumented. > >But then at least symlink(7) should be changed to reflect this. Yes. >> 4. The correct interaction of -h with the other flags is not clear. > >According to symlink(7) -h and -R[HL] cannot be given together on >the command line. I can't find this. >If you agree, I'd implement the 4.4BSD suggestions (r1.11 didn't, >with -R alone the pointed to files were affected instead of the >symlinks themselves). -R actually ignores symlinks deep in the tree as well as on the command line. It should handle all symlinks the same (only the -H flag give different handling of symlinks on the command line). I think it should change the symlinks (NOT as in symlink.7). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 07:07:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA03063 for cvs-all-outgoing; Sun, 3 May 1998 07:07:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from rvc1.informatik.ba-stuttgart.de (rvc1.informatik.ba-stuttgart.de [141.31.112.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA03047; Sun, 3 May 1998 07:07:30 -0700 (PDT) (envelope-from helbig@Informatik.BA-Stuttgart.DE) Received: (from helbig@localhost) by rvc1.informatik.ba-stuttgart.de (8.8.8/8.8.5) id QAA17706; Sun, 3 May 1998 16:07:20 +0200 (MET DST) From: Wolfgang Helbig Message-Id: <199805031407.QAA17706@rvc1.informatik.ba-stuttgart.de> Subject: Re: cvs commit: src/usr.sbin/chown chown.c In-Reply-To: <199805031206.WAA20229@godzilla.zeta.org.au> from Bruce Evans at "May 3, 98 10:06:54 pm" To: bde@zeta.org.au (Bruce Evans) Date: Sun, 3 May 1998 16:07:19 +0200 (MET DST) Cc: bde@FreeBSD.ORG, helbig@Informatik.BA-Stuttgart.DE, cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL30 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > >> The previous commit broke this. The first victim was bsd.prog.mk, > >> which uses a plain chown in an attempt to change the ownership of the > >> symlinks to `dm' in /usr/games. This fails when it is done before > >> dm is installed, or messes up the ownership of dm if dm is installed. > > > >Before and after r1.11 it always failes, since symlinks were ignored > >completely by chown(8) without [-hHL], i. e. neither the symbolic > >link nor the file linked to were affected by chown(8). > > Ignoring is not quite the same as failing. When symlinks didn't have > owners, it was correct to ignore the chown(8), since following the > link might have clobbered the owner of the target. Both following the > link and ignoring the chown(8) are harmless in /usr/games, provided the > target exists (the symlink targets are already owned by games.bin, and > it just makes `ls -l' output look nicer to change the symlink ownership > from root.bin to games.bin). > > >I suggest to implement the 4.4BSD behaviour as outlined in symlink(7), > >and documented in the man page of chown(8). > > I suggest not. The 3 commands documented as following symlinks > specified on the command line (chown, chgrp and file(1)), seem to > have never actually done that in FreeBSD: > > 4.4Lite's file.1 documents doing it, but 4.4Lite is missing the source > for /usr/src/usr.bin/file. It only has sources for contrib/file-3.12, > which don't do it, at least when naively configured. Anyway, we blew > away 4.4Lite's file.1 with a newer distribution of `file' which has a > -L option like ls's. > > 4.4Lite's chown.8 conflicts with its symlink.7. The former says that > "Symbolic links don't have owners, so unless the -H or -L option is > set, chown on a symbolic link always succeeds and has no effect". > > Similarly for 4.4Lite's chgrp.1. > > >Let cslink and rslink be symbolic links pointing to the files > >cpointed_to and rpointed_to respectively. Assume cslink be > >given on the command line and rslink found during a recursive > >traversal. > > > >flags affected > >--------------------------------- > > cpointed_to > >-h cslink, > >-R cslink, rslink > >-RH cpointed_to, rslink > >-RL cpointed_to, rpointed_to > > OK, this is what rev.1.10 does (except for -R). No, this is the semantics of rev 1.10: flags affected ------------------------ none of them -h cslink, -R none of them -RH cpointed_to -RL cpointed_to, rpointed_to > >The -h option gives complete control in the nonrecursive case, and > >the -R[HL] options in the recursive case, if implemented as outlined above. > > I think -HLP should have applied without -R: > > -H cpointed_to > -L cpointed_to (same as -H; already implemented in ls(1) and file(1)) > -P cslink (same as default) > -h cslink (same as default, deprecated) > >> 4. The correct interaction of -h with the other flags is not clear. > > > >According to symlink(7) -h and -R[HL] cannot be given together on > >the command line. > > I can't find this. symlink.7 seperates case 2: ``commands not traversing a file tree'' from case 3: ``commands traversing a file tree'' and the -h flag is to be used only for case 2. If commands optionally traverse a file tree (triggert by -R) the behaviour should be governed by the -[HLP] options solely. At least that's how I understand symlink.7. > >If you agree, I'd implement the 4.4BSD suggestions (r1.11 didn't, > >with -R alone the pointed to files were affected instead of the > >symlinks themselves). > > -R actually ignores symlinks deep in the tree as well as on the > command line. It should handle all symlinks the same (only the > -H flag give different handling of symlinks on the command line). > I think it should change the symlinks (NOT as in symlink.7). So you suggest this table? flags affected ----------------------------------------- cslink -h, cslink (deprecated by you) -H, cpointed_to -L, cpointed_to -P, cslink -R, cslink, rslink -RH, cpointed_to, rslink -RL, cpointed_to, rpointed_to -RP, cslink, rslink Wolfgang To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 07:59:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA07934 for cvs-all-outgoing; Sun, 3 May 1998 07:59:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA07923; Sun, 3 May 1998 07:59:46 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA19624; Sun, 3 May 1998 07:57:27 -0700 (PDT) Date: Sun, 3 May 1998 07:57:27 -0700 (PDT) Message-Id: <199805031457.HAA19624@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/ElectricFence Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/05/03 07:57:27 PDT Modified files: devel/ElectricFence Makefile Log: Fails to build under current. Revision Changes Path 1.4 +6 -1 ports/devel/ElectricFence/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 08:14:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA09297 for cvs-all-outgoing; Sun, 3 May 1998 08:14:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA09292; Sun, 3 May 1998 08:14:56 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA19722; Sun, 3 May 1998 08:12:38 -0700 (PDT) Date: Sun, 3 May 1998 08:12:38 -0700 (PDT) Message-Id: <199805031512.IAA19722@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/tkdesk Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/05/03 08:12:38 PDT Modified files: x11/tkdesk Makefile Log: If DISPLAY isn't defined, mark as BROKEN. Revision Changes Path 1.7 +5 -1 ports/x11/tkdesk/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 08:42:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA11940 for cvs-all-outgoing; Sun, 3 May 1998 08:42:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA11933; Sun, 3 May 1998 08:42:24 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA19823; Sun, 3 May 1998 08:40:06 -0700 (PDT) Date: Sun, 3 May 1998 08:40:06 -0700 (PDT) Message-Id: <199805031540.IAA19823@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/editors/cooledit Makefile ports/editors/cooledit/files ltconfig-1.2 ltmain.sh-1.2 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/05/03 08:40:05 PDT Modified files: editors/cooledit Makefile Added files: editors/cooledit/files ltconfig-1.2 ltmain.sh-1.2 Log: Make this port use libtool v1.2 instead of the included 1.0. This fixes building on current. I have sent a message to the developer of cooledit, so hopefully this won't be needed for long. Revision Changes Path 1.2 +5 -1 ports/editors/cooledit/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 09:31:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA17758 for cvs-all-outgoing; Sun, 3 May 1998 09:31:29 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA17752; Sun, 3 May 1998 09:31:27 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA20214; Sun, 3 May 1998 09:29:08 -0700 (PDT) Date: Sun, 3 May 1998 09:29:08 -0700 (PDT) Message-Id: <199805031629.JAA20214@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-libexec@FreeBSD.ORG Subject: cvs commit: src/libexec/telnetd utility.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/03 09:29:07 PDT Modified files: libexec/telnetd utility.c Log: Avoid stairstep effect on output of 'if=...' file. PR: part of 6492 Submitted by: Chip Norkus via Doug White Revision Changes Path 1.12 +6 -2 src/libexec/telnetd/utility.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 09:35:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA18277 for cvs-all-outgoing; Sun, 3 May 1998 09:35:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA18272; Sun, 3 May 1998 09:35:54 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA20304; Sun, 3 May 1998 09:33:35 -0700 (PDT) Date: Sun, 3 May 1998 09:33:35 -0700 (PDT) Message-Id: <199805031633.JAA20304@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-libexec@FreeBSD.ORG Subject: cvs commit: src/libexec/telnetd telnetd.c utility.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/03 09:33:35 PDT Modified files: (Branch: RELENG_2_2) libexec/telnetd telnetd.c utility.c Log: MFC: Support for reading 'if' file from /etc/gettytab. PR: 6492 Submitted by: Doug White Revision Changes Path 1.7.2.5 +19 -1 src/libexec/telnetd/telnetd.c 1.5.2.4 +6 -2 src/libexec/telnetd/utility.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 10:57:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA27641 for cvs-all-outgoing; Sun, 3 May 1998 10:57:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA27636; Sun, 3 May 1998 10:57:07 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA20707; Sun, 3 May 1998 10:54:48 -0700 (PDT) Date: Sun, 3 May 1998 10:54:48 -0700 (PDT) Message-Id: <199805031754.KAA20707@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/dclock Makefile ports/x11/dclock/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/03 10:54:48 PDT Modified files: x11/dclock Makefile x11/dclock/files md5 Log: Point to a new MASTERSITE and portlint clean. PR: 6489 Submitted by: Ian Struble Revision Changes Path 1.3 +4 -6 ports/x11/dclock/Makefile 1.2 +1 -1 ports/x11/dclock/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 11:00:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA28224 for cvs-all-outgoing; Sun, 3 May 1998 11:00:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA28157; Sun, 3 May 1998 10:59:59 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA20769; Sun, 3 May 1998 10:57:40 -0700 (PDT) Date: Sun, 3 May 1998 10:57:40 -0700 (PDT) Message-Id: <199805031757.KAA20769@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/man/man5 kernfs.5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/03 10:57:40 PDT Modified files: share/man/man5 kernfs.5 Log: Typo and grammer fixes. PR: 6482 Submitted by: Allen Campbell Revision Changes Path 1.5 +7 -7 src/share/man/man5/kernfs.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 11:02:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA28706 for cvs-all-outgoing; Sun, 3 May 1998 11:02:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA28695; Sun, 3 May 1998 11:02:13 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA20835; Sun, 3 May 1998 10:59:53 -0700 (PDT) Date: Sun, 3 May 1998 10:59:53 -0700 (PDT) Message-Id: <199805031759.KAA20835@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/man/man5 kernfs.5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/03 10:59:53 PDT Modified files: (Branch: RELENG_2_2) share/man/man5 kernfs.5 Log: MFC: typo fixes. Revision Changes Path 1.2.2.2 +7 -7 src/share/man/man5/kernfs.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 11:05:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA29222 for cvs-all-outgoing; Sun, 3 May 1998 11:05:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA29216; Sun, 3 May 1998 11:05:54 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA20981; Sun, 3 May 1998 11:03:35 -0700 (PDT) Date: Sun, 3 May 1998 11:03:35 -0700 (PDT) Message-Id: <199805031803.LAA20981@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/lang/rexx-imc Makefile ports/lang/rexx-imc/files md5 ports/lang/rexx-imc/pkg DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/03 11:03:35 PDT Modified files: lang/rexx-imc Makefile lang/rexx-imc/files md5 lang/rexx-imc/pkg DESCR PLIST Log: Install rexxsaa.h and portlint clean. PR: 6478 Submitted by: Pedro Giffuni Revision Changes Path 1.4 +5 -4 ports/lang/rexx-imc/Makefile 1.4 +1 -1 ports/lang/rexx-imc/files/md5 1.2 +0 -1 ports/lang/rexx-imc/pkg/DESCR 1.2 +1 -0 ports/lang/rexx-imc/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 11:31:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA02596 for cvs-all-outgoing; Sun, 3 May 1998 11:31:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA02589; Sun, 3 May 1998 11:31:30 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA21121; Sun, 3 May 1998 11:29:10 -0700 (PDT) Date: Sun, 3 May 1998 11:29:10 -0700 (PDT) Message-Id: <199805031829.LAA21121@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook eresources.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/05/03 11:29:10 PDT Modified files: handbook eresources.sgml Log: Add FreeBSD-Net. Revision Changes Path 1.43 +2 -1 doc/handbook/eresources.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 11:52:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA05710 for cvs-all-outgoing; Sun, 3 May 1998 11:52:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA05562; Sun, 3 May 1998 11:51:52 -0700 (PDT) (envelope-from j@uriah.heep.sax.de) Received: (from uucp@localhost) by sax.sax.de (8.8.8/8.8.8) with UUCP id UAA06643; Sun, 3 May 1998 20:51:19 +0200 (CEST) (envelope-from j@uriah.heep.sax.de) Received: (from j@localhost) by uriah.heep.sax.de (8.8.8/8.8.5) id UAA02398; Sun, 3 May 1998 20:30:46 +0200 (MET DST) Message-ID: <19980503203046.41055@uriah.heep.sax.de> Date: Sun, 3 May 1998 20:30:46 +0200 From: J Wunsch To: Andreas Klemm Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-contrib@FreeBSD.ORG Subject: Re: cvs commit: src/contrib/bc - Imported sources Reply-To: Joerg Wunsch References: <199804292153.OAA22535@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.88 In-Reply-To: <199804292153.OAA22535@freefall.freebsd.org>; from Andreas Klemm on Wed, Apr 29, 1998 at 02:53:02PM -0700 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk As Andreas Klemm wrote: > andreas 1998/04/29 14:53:02 PDT > > src/contrib/bc - Imported sources > Update of /home/ncvs/src/contrib/bc > In directory freefall.freebsd.org:/d/users/andreas/work/bc-1.04 > > Log Message: > Import GNU bc 1.04 ... > N src/contrib/bc/doc/bc.1 > N src/contrib/bc/doc/dc.1 > I src/contrib/bc/doc/dc.info Has it been your intention to ignore this file upon import, Andreas? -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 12:28:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA10469 for cvs-all-outgoing; Sun, 3 May 1998 12:28:03 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from news1.gtn.com (news1.gtn.com [194.77.0.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA10387; Sun, 3 May 1998 12:27:50 -0700 (PDT) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by news1.gtn.com (8.8.6/8.8.6) with UUCP id VAA01537; Sun, 3 May 1998 21:15:08 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.8.8/8.8.8) id VAA00787; Sun, 3 May 1998 21:07:36 +0200 (CEST) (envelope-from andreas) Message-ID: <19980503210735.A750@klemm.gtn.com> Date: Sun, 3 May 1998 21:07:35 +0200 From: Andreas Klemm To: Joerg Wunsch , Andreas Klemm Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-contrib@FreeBSD.ORG Subject: Re: cvs commit: src/contrib/bc - Imported sources References: <199804292153.OAA22535@freefall.freebsd.org> <19980503203046.41055@uriah.heep.sax.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <19980503203046.41055@uriah.heep.sax.de>; from J Wunsch on Sun, May 03, 1998 at 08:30:46PM +0200 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, May 03, 1998 at 08:30:46PM +0200, J Wunsch wrote: > As Andreas Klemm wrote: > > > andreas 1998/04/29 14:53:02 PDT > > > > src/contrib/bc - Imported sources > > Update of /home/ncvs/src/contrib/bc > > In directory freefall.freebsd.org:/d/users/andreas/work/bc-1.04 > > > > Log Message: > > Import GNU bc 1.04 > ... > > N src/contrib/bc/doc/bc.1 > > N src/contrib/bc/doc/dc.1 > > I src/contrib/bc/doc/dc.info > > Has it been your intention to ignore this file upon import, Andreas? No, but it doesn't hurt, since it will be build by makeinfo. BTW, is there a general rule that *.info files get ignored ? I imported that on freefall. I have no .cvs init file in my home dir. -- Andreas Klemm http://www.FreeBSD.ORG/~andreas What gives you 90% more speed, for example in kernel compilation ? http://www.FreeBSD.ORG/~fsmp/SMP/akgraph-a/graph1.html "NT = Not Today" (Maggie Biggs) ``powered by FreeBSD SMP'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 12:29:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA10704 for cvs-all-outgoing; Sun, 3 May 1998 12:29:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA10697; Sun, 3 May 1998 12:29:19 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA21318; Sun, 3 May 1998 12:26:59 -0700 (PDT) Date: Sun, 3 May 1998 12:26:59 -0700 (PDT) Message-Id: <199805031926.MAA21318@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/databases/p5-DBD-Pg Makefile ports/databases/p5-DBD-Pg/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/03 12:26:59 PDT Modified files: databases/p5-DBD-Pg Makefile databases/p5-DBD-Pg/files md5 Log: Upgrade to version 0.72. PR: 6461 Submitted by: Dnaiel J. O'Connor Revision Changes Path 1.5 +4 -4 ports/databases/p5-DBD-Pg/Makefile 1.3 +1 -1 ports/databases/p5-DBD-Pg/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 13:27:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA20351 for cvs-all-outgoing; Sun, 3 May 1998 13:27:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA20323; Sun, 3 May 1998 13:27:30 -0700 (PDT) (envelope-from jmz@FreeBSD.org) From: Jean-Marc Zucconi Received: (from jmz@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA21543; Sun, 3 May 1998 13:25:09 -0700 (PDT) Date: Sun, 3 May 1998 13:25:09 -0700 (PDT) Message-Id: <199805032025.NAA21543@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libf2c Makefile src/lib/libF77 exit.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jmz 1998/05/03 13:25:09 PDT Modified files: (Branch: RELENG_2_2) lib/libf2c Makefile Added files: (Branch: RELENG_2_2) lib/libF77 exit.c Log: MFC: restore exit.c Revision Changes Path 1.6.2.2 +1 -1 src/lib/libf2c/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 13:44:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA23251 for cvs-all-outgoing; Sun, 3 May 1998 13:44:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA23246; Sun, 3 May 1998 13:44:47 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA21784; Sun, 3 May 1998 13:42:26 -0700 (PDT) Date: Sun, 3 May 1998 13:42:26 -0700 (PDT) Message-Id: <199805032042.NAA21784@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/lang/cim Makefile ports/lang/cim/files md5 ports/lang/cim/patches patch-aa patch-01 ports/lang/cim/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/03 13:42:26 PDT Modified files: lang/cim Makefile lang/cim/files md5 lang/cim/pkg PLIST Added files: lang/cim/patches patch-aa Removed files: lang/cim/patches patch-01 Log: Upgrade to version 2.10. PR: 6459 Submitted by: Pedro Giffuni Revision Changes Path 1.6 +13 -18 ports/lang/cim/Makefile 1.3 +1 -1 ports/lang/cim/files/md5 1.3 +10 -5 ports/lang/cim/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 13:47:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA23631 for cvs-all-outgoing; Sun, 3 May 1998 13:47:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA23593; Sun, 3 May 1998 13:47:19 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA21869; Sun, 3 May 1998 13:44:58 -0700 (PDT) Date: Sun, 3 May 1998 13:44:58 -0700 (PDT) Message-Id: <199805032044.NAA21869@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/korean/hanterm Makefile ports/korean/hanterm/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/03 13:44:58 PDT Modified files: korean/hanterm Makefile korean/hanterm/files md5 Log: Upgrader to version 304beta7. PR: 6452 Submitted by: maintainer Revision Changes Path 1.4 +8 -7 ports/korean/hanterm/Makefile 1.3 +1 -1 ports/korean/hanterm/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 13:49:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA24206 for cvs-all-outgoing; Sun, 3 May 1998 13:49:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA24201; Sun, 3 May 1998 13:49:35 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA21958; Sun, 3 May 1998 13:47:15 -0700 (PDT) Date: Sun, 3 May 1998 13:47:15 -0700 (PDT) Message-Id: <199805032047.NAA21958@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/korean/hanterm-xf86 Makefile ports/korean/hanterm-xf86/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/03 13:47:15 PDT Modified files: korean/hanterm-xf86 Makefile korean/hanterm-xf86/files md5 Log: Update to patchlevel 13. PR: 6450 Submitted by: maintainer Revision Changes Path 1.5 +4 -4 ports/korean/hanterm-xf86/Makefile 1.4 +1 -1 ports/korean/hanterm-xf86/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 13:52:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA25013 for cvs-all-outgoing; Sun, 3 May 1998 13:52:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA24997; Sun, 3 May 1998 13:52:33 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA22037; Sun, 3 May 1998 13:50:13 -0700 (PDT) Date: Sun, 3 May 1998 13:50:13 -0700 (PDT) Message-Id: <199805032050.NAA22037@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/03 13:50:12 PDT Modified files: . modules Log: ijb --> ports/www/ijb Revision Changes Path 1.1974 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 13:54:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA25264 for cvs-all-outgoing; Sun, 3 May 1998 13:54:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA25158; Sun, 3 May 1998 13:54:02 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA22058; Sun, 3 May 1998 13:51:41 -0700 (PDT) Date: Sun, 3 May 1998 13:51:41 -0700 (PDT) Message-Id: <199805032051.NAA22058@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/ijb - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/03 13:51:40 PDT ports/www/ijb - Imported sources Update of /home/ncvs/ports/www/ijb In directory freefall.freebsd.org:/d/users/mph/junkbuster Log Message: Import of ijb, the Internet Junkbuster. It's an HTTP proxy that strips advertisements and so on. PR: 6488 Submitted by: Ian Struble Status: Vendor Tag: STRUBLE Release Tags: v2_0 N ports/www/ijb/Makefile I ports/www/ijb/CVS N ports/www/ijb/files/md5 N ports/www/ijb/pkg/COMMENT N ports/www/ijb/pkg/DESCR N ports/www/ijb/pkg/PLIST N ports/www/ijb/patches/patch-aa N ports/www/ijb/patches/patch-ab N ports/www/ijb/patches/patch-ac N ports/www/ijb/patches/patch-ad N ports/www/ijb/patches/patch-ae N ports/www/ijb/patches/patch-af N ports/www/ijb/patches/patch-ag No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 13:54:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA25304 for cvs-all-outgoing; Sun, 3 May 1998 13:54:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA25209; Sun, 3 May 1998 13:54:07 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA22086; Sun, 3 May 1998 13:51:47 -0700 (PDT) Date: Sun, 3 May 1998 13:51:47 -0700 (PDT) Message-Id: <199805032051.NAA22086@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/03 13:51:47 PDT Modified files: www Makefile Log: Activate ijb, the Internet Junkbuster. Revision Changes Path 1.74 +2 -1 ports/www/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 14:00:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA26681 for cvs-all-outgoing; Sun, 3 May 1998 14:00:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from fly.HiWAAY.net (sprice@fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA26241; Sun, 3 May 1998 13:58:52 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by fly.HiWAAY.net (8.8.8/8.8.6) with SMTP id PAA26936; Sun, 3 May 1998 15:58:49 -0500 (CDT) Date: Sun, 3 May 1998 15:58:49 -0500 (CDT) From: Steve Price To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-libexec@FreeBSD.ORG Subject: Re: cvs commit: src/libexec/telnetd telnetd.c utility.c In-Reply-To: <199805031633.JAA20304@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, 3 May 1998, Steve Price wrote: # steve 1998/05/03 09:33:35 PDT # # Modified files: (Branch: RELENG_2_2) # libexec/telnetd telnetd.c utility.c # Log: # MFC: Support for reading 'if' file from /etc/gettytab. # # PR: 6492 # Submitted by: Doug White Oops! My sincerest apologies to both Doug Barton and Doug White. This should have been attributed to Doug Barton. I really need to see a professional about my continuous finger fumbles. :) Steve # Revision Changes Path # 1.7.2.5 +19 -1 src/libexec/telnetd/telnetd.c # 1.5.2.4 +6 -2 src/libexec/telnetd/utility.c # To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 14:05:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA27390 for cvs-all-outgoing; Sun, 3 May 1998 14:05:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ns1.yes.no (ns1.yes.no [195.119.24.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA27316; Sun, 3 May 1998 14:05:02 -0700 (PDT) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [194.198.43.36]) by ns1.yes.no (8.8.7/8.8.7) with ESMTP id VAA03442; Sun, 3 May 1998 21:05:01 GMT Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id XAA13579; Sun, 3 May 1998 23:04:38 +0200 (MET DST) Message-ID: <19980503230438.48318@follo.net> Date: Sun, 3 May 1998 23:04:38 +0200 From: Eivind Eklund To: Matthew Hunt , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/www/ijb - Imported sources References: <199805032051.NAA22058@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <199805032051.NAA22058@freefall.freebsd.org>; from Matthew Hunt on Sun, May 03, 1998 at 01:51:41PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, May 03, 1998 at 01:51:41PM -0700, Matthew Hunt wrote: > mph 1998/05/03 13:51:40 PDT > > ports/www/ijb - Imported sources > Update of /home/ncvs/ports/www/ijb > In directory freefall.freebsd.org:/d/users/mph/junkbuster > > Log Message: > Import of ijb, the Internet Junkbuster. It's an HTTP proxy that > strips advertisements and so on. Should't this be under ATT (for "Automated Theft Tool")? ;-) Refusing to download ads from the WWW is very bad practice. Those ads are paying for the service you're using. I'm not even certain we should have the above program as a port - I don't think we'd have a 'automated crack-on-download' tool, for instance, and this is actually fairly similar. Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 14:13:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA28296 for cvs-all-outgoing; Sun, 3 May 1998 14:13:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mph124.rh.psu.edu (mph@MPH124.rh.psu.edu [128.118.126.83]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA28291; Sun, 3 May 1998 14:13:04 -0700 (PDT) (envelope-from mph@mph124.rh.psu.edu) Received: (from mph@localhost) by mph124.rh.psu.edu (8.8.8/8.8.8) id RAA13175; Sun, 3 May 1998 17:13:05 -0400 (EDT) (envelope-from mph) Message-ID: <19980503171304.A11838@mph124.rh.psu.edu> Date: Sun, 3 May 1998 17:13:04 -0400 From: Matthew Hunt To: Eivind Eklund , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/www/ijb - Imported sources Mail-Followup-To: Eivind Eklund , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG References: <199805032051.NAA22058@freefall.freebsd.org> <19980503230438.48318@follo.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <19980503230438.48318@follo.net>; from Eivind Eklund on Sun, May 03, 1998 at 11:04:38PM +0200 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, May 03, 1998 at 11:04:38PM +0200, Eivind Eklund wrote: > > Log Message: > > Import of ijb, the Internet Junkbuster. It's an HTTP proxy that > > strips advertisements and so on. [...] > Refusing to download ads from the WWW is very bad practice. Those ads are > paying for the service you're using. I'm not even certain we should have > the above program as a port - I don't think we'd have a 'automated > crack-on-download' tool, for instance, and this is actually fairly similar. I would like to point out that the "and so on" includes unwanted cookies, animated GIFs, and other things besides ads that some folks would consider to be "junk". In fact, it seems to be a very general tool. I would point out that we have lots of tools that can be used for good or evil, including netcat, satan, and crack. As long as there is some legitimate use for these products, I do not think it is our place to make it inconvenient to get them. Matt -- Matthew Hunt * Stay close to the Vorlon. http://mph124.rh.psu.edu/~mph/pgp.key for PGP public key 0x67203349. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 14:35:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA02089 for cvs-all-outgoing; Sun, 3 May 1998 14:35:20 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ns1.yes.no (ns1.yes.no [195.119.24.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA02065; Sun, 3 May 1998 14:35:04 -0700 (PDT) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [194.198.43.36]) by ns1.yes.no (8.8.7/8.8.7) with ESMTP id VAA04037; Sun, 3 May 1998 21:35:04 GMT Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id XAA00431; Sun, 3 May 1998 23:35:03 +0200 (MET DST) Message-ID: <19980503233502.29031@follo.net> Date: Sun, 3 May 1998 23:35:02 +0200 From: Eivind Eklund To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/www/ijb - Imported sources References: <199805032051.NAA22058@freefall.freebsd.org> <19980503230438.48318@follo.net> <19980503171304.A11838@mph124.rh.psu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <19980503171304.A11838@mph124.rh.psu.edu>; from Matthew Hunt on Sun, May 03, 1998 at 05:13:04PM -0400 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, May 03, 1998 at 05:13:04PM -0400, Matthew Hunt wrote: > On Sun, May 03, 1998 at 11:04:38PM +0200, Eivind Eklund wrote: > > > > Log Message: > > > Import of ijb, the Internet Junkbuster. It's an HTTP proxy that > > > strips advertisements and so on. > [...] > > Refusing to download ads from the WWW is very bad practice. Those ads are > > paying for the service you're using. I'm not even certain we should have > > the above program as a port - I don't think we'd have a 'automated > > crack-on-download' tool, for instance, and this is actually fairly similar. > > I would like to point out that the "and so on" includes unwanted > cookies, animated GIFs, and other things besides ads that some folks > would consider to be "junk". In fact, it seems to be a very general > tool. Sounds like it could be useful - can I then assume that the default configuration will _not_ be to strip advertisements, and that the description will not include this as an area of use? Just as we don't describe SATAN as 'A tool for crackers. Might also be useful for system administrators to check their security.' or cp as 'Program for making copies of commercial software. Can also be used to copy data files and free software.' Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 14:37:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA02230 for cvs-all-outgoing; Sun, 3 May 1998 14:37:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA02225; Sun, 3 May 1998 14:36:57 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA22287; Sun, 3 May 1998 14:34:36 -0700 (PDT) Date: Sun, 3 May 1998 14:34:36 -0700 (PDT) Message-Id: <199805032134.OAA22287@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/netstat netstat.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/03 14:34:36 PDT Modified files: usr.bin/netstat netstat.1 Log: Remove (now) invalid .Xr trsp 8 PR: 6494 Submitted by: Don Morrison Revision Changes Path 1.11 +0 -1 src/usr.bin/netstat/netstat.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 14:38:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA02413 for cvs-all-outgoing; Sun, 3 May 1998 14:38:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA02383; Sun, 3 May 1998 14:38:28 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA22339; Sun, 3 May 1998 14:36:07 -0700 (PDT) Date: Sun, 3 May 1998 14:36:07 -0700 (PDT) Message-Id: <199805032136.OAA22339@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/netstat netstat.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/03 14:36:07 PDT Modified files: (Branch: RELENG_2_2) usr.bin/netstat netstat.1 Log: MFC: remove invalid .Xr trsp 8 Revision Changes Path 1.9.2.1 +0 -1 src/usr.bin/netstat/netstat.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 14:43:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA03266 for cvs-all-outgoing; Sun, 3 May 1998 14:43:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA03253; Sun, 3 May 1998 14:42:54 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-28.ix.netcom.com [207.93.143.156]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id OAA08334; Sun, 3 May 1998 14:42:35 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id OAA01122; Sun, 3 May 1998 14:42:28 -0700 (PDT) Date: Sun, 3 May 1998 14:42:28 -0700 (PDT) Message-Id: <199805032142.OAA01122@silvia.HIP.Berkeley.EDU> To: mph@pobox.com CC: eivind@yes.no, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <19980503171304.A11838@mph124.rh.psu.edu> (message from Matthew Hunt on Sun, 3 May 1998 17:13:04 -0400) Subject: Re: cvs commit: ports/www/ijb - Imported sources From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * I would like to point out that the "and so on" includes unwanted * cookies, animated GIFs, and other things besides ads that some folks * would consider to be "junk". In fact, it seems to be a very general * tool. * * I would point out that we have lots of tools that can be used for * good or evil, including netcat, satan, and crack. As long as * there is some legitimate use for these products, I do not think it * is our place to make it inconvenient to get them. (Well, we don't have a satan port yet, but anyway....) For what it's worth, I agree. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 15:01:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA06335 for cvs-all-outgoing; Sun, 3 May 1998 15:01:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA06267; Sun, 3 May 1998 15:01:11 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id AAA12393; Mon, 4 May 1998 00:00:35 +0200 (CEST) To: Eivind Eklund cc: Matthew Hunt , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/www/ijb - Imported sources In-reply-to: Your message of "Sun, 03 May 1998 23:04:38 +0200." <19980503230438.48318@follo.net> Date: Mon, 04 May 1998 00:00:35 +0200 Message-ID: <12391.894232835@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In message <19980503230438.48318@follo.net>, Eivind Eklund writes: >> Log Message: >> Import of ijb, the Internet Junkbuster. It's an HTTP proxy that >> strips advertisements and so on. > >Should't this be under ATT (for "Automated Theft Tool")? ;-) > >Refusing to download ads from the WWW is very bad practice. Those ads are >paying for the service you're using. I'm not even certain we should have >the above program as a port - I don't think we'd have a 'automated >crack-on-download' tool, for instance, and this is actually fairly similar. I disagree with you on this: First: ------ If I used Lynx I wouldn't see the ads. From this we can deduce that people pay for having their ads placed, but not for having them read. (This is exactly the same as the ads in any magazine, the magzine publishes the ads, but they do not guarantee that I will not simply skip those pages when I read the magazine.) Second: ------- As this is an "opt-in" thing, I can always choose to see the ads if I want to. I'm not wilfully depriving anybody of their daily dosis of fancy animated graphics promising creditcards being offered exclusively to just about anybody, hair-growth formula or domain hosting on linux servers in somebodys bedroom. Third: ------ FreeBSD is in the business of providing tools for people, we're not in the business of setting their policies. So I welcome ijb to the ports collection, and I'm going to install it first thing in the morning :-) -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "ttyv0" -- What UNIX calls a $20K state-of-the-art, 3D, hi-res color terminal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 15:06:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA07338 for cvs-all-outgoing; Sun, 3 May 1998 15:06:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA07320; Sun, 3 May 1998 15:06:16 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA22570; Sun, 3 May 1998 15:03:55 -0700 (PDT) Date: Sun, 3 May 1998 15:03:55 -0700 (PDT) Message-Id: <199805032203.PAA22570@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/misc/git Makefile ports/misc/git/files md5 gitrc.cons25.patch ports/misc/git/patches patch-ac patch-ab ports/misc/git/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/05/03 15:03:55 PDT Modified files: misc/git Makefile misc/git/files md5 misc/git/patches patch-ab misc/git/pkg PLIST Added files: misc/git/patches patch-ac Removed files: misc/git/files gitrc.cons25.patch Log: Upgrade to git-4.3.17 Change MAINTAINER from ports->me Revision Changes Path 1.10 +5 -6 ports/misc/git/Makefile 1.4 +1 -1 ports/misc/git/files/md5 1.3 +7 -7 ports/misc/git/patches/patch-ab 1.5 +22 -0 ports/misc/git/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 15:15:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA08866 for cvs-all-outgoing; Sun, 3 May 1998 15:15:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA08860; Sun, 3 May 1998 15:15:36 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA22647; Sun, 3 May 1998 15:13:16 -0700 (PDT) Date: Sun, 3 May 1998 15:13:16 -0700 (PDT) Message-Id: <199805032213.PAA22647@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c mp.c mp.h ppp.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/05/03 15:13:15 PDT Modified files: (Branch: MP) usr.sbin/ppp bundle.c mp.c mp.h ppp.8 Log: o Display current link throughput in `show links' (assuming throughput measurement is enabled). o Load balance the links based on weight *and* on a round-robin basis. This makes things fairly even on an output basis. We don't try to allow for the peer sending all his data down one link (and try to send ours back up the other). o Show the number of pending input buffers that can't be processed in ``show mp''. o Fix a typo in the man page. Revision Changes Path 1.1.2.70 +8 -3 src/usr.sbin/ppp/Attic/bundle.c 1.1.2.21 +72 -40 src/usr.sbin/ppp/Attic/mp.c 1.1.2.12 +6 -2 src/usr.sbin/ppp/Attic/mp.h 1.97.2.27 +2 -2 src/usr.sbin/ppp/ppp.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 15:26:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA11352 for cvs-all-outgoing; Sun, 3 May 1998 15:26:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: (from jmb@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA11331; Sun, 3 May 1998 15:26:24 -0700 (PDT) (envelope-from jmb) From: "Jonathan M. Bresler" Message-Id: <199805032226.PAA11331@hub.freebsd.org> Subject: Re: cvs commit: ports/www/ijb - Imported sources In-Reply-To: <19980503230438.48318@follo.net> from Eivind Eklund at "May 3, 98 11:04:38 pm" To: eivind@yes.no (Eivind Eklund) Date: Sun, 3 May 1998 15:26:23 -0700 (PDT) Cc: mph@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Eivind Eklund wrote: > On Sun, May 03, 1998 at 01:51:41PM -0700, Matthew Hunt wrote: > > mph 1998/05/03 13:51:40 PDT > > > > ports/www/ijb - Imported sources > > Update of /home/ncvs/ports/www/ijb > > In directory freefall.freebsd.org:/d/users/mph/junkbuster > > > > Log Message: > > Import of ijb, the Internet Junkbuster. It's an HTTP proxy that > > strips advertisements and so on. > > Should't this be under ATT (for "Automated Theft Tool")? ;-) > > Refusing to download ads from the WWW is very bad practice. Those ads are > paying for the service you're using. I'm not even certain we should have > the above program as a port - I don't think we'd have a 'automated > crack-on-download' tool, for instance, and this is actually fairly similar. > Eivind, hmm....if i understand what you are saying then 1. i should watch the commercials on TV rather than getting a sandwich or changing the channel. 2. if i record a program of TV, i shouldnt fast-forward thru the commercials. the commericals are paying for the program that i am watching. nonetheless, i dont believe that its theft. jmb To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 15:29:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA11736 for cvs-all-outgoing; Sun, 3 May 1998 15:29:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA11730; Sun, 3 May 1998 15:29:51 -0700 (PDT) (envelope-from jraynard@FreeBSD.org) From: James Raynard Received: (from jraynard@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA22722; Sun, 3 May 1998 15:27:30 -0700 (PDT) Date: Sun, 3 May 1998 15:27:30 -0700 (PDT) Message-Id: <199805032227.PAA22722@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/compat-43 sigvec.2 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jraynard 1998/05/03 15:27:30 PDT Modified files: lib/libc/compat-43 sigvec.2 Log: Don't imply sigset_t == int. Revision Changes Path 1.7 +1 -1 src/lib/libc/compat-43/sigvec.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 15:34:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA12946 for cvs-all-outgoing; Sun, 3 May 1998 15:34:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ns1.yes.no (ns1.yes.no [195.119.24.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA12676; Sun, 3 May 1998 15:34:04 -0700 (PDT) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [194.198.43.36]) by ns1.yes.no (8.8.7/8.8.7) with ESMTP id WAA05199; Sun, 3 May 1998 22:33:59 GMT Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id AAA00659; Mon, 4 May 1998 00:33:57 +0200 (MET DST) Message-ID: <19980504003356.43232@follo.net> Date: Mon, 4 May 1998 00:33:56 +0200 From: Eivind Eklund To: Poul-Henning Kamp Cc: Matthew Hunt , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/www/ijb - Imported sources References: <19980503230438.48318@follo.net> <12391.894232835@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <12391.894232835@critter.freebsd.dk>; from Poul-Henning Kamp on Mon, May 04, 1998 at 12:00:35AM +0200 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Mon, May 04, 1998 at 12:00:35AM +0200, Poul-Henning Kamp wrote: > In message <19980503230438.48318@follo.net>, Eivind Eklund writes: >>> Log Message: >>> Import of ijb, the Internet Junkbuster. It's an HTTP proxy that >>> strips advertisements and so on. >> >> Should't this be under ATT (for "Automated Theft Tool")? ;-) >> >> Refusing to download ads from the WWW is very bad practice. Those ads are >> paying for the service you're using. I'm not even certain we should have >> the above program as a port - I don't think we'd have a 'automated >> crack-on-download' tool, for instance, and this is actually fairly similar. > > I disagree with you on this: > > First: > ------ > If I used Lynx I wouldn't see the ads. From this we can deduce that > people pay for having their ads placed, but not for having them read. This is quite incorrect. There are three advertising models in broad use on the web today - pay per impression (usually counted in thosands as 'CPM'), pay per click-through, and pay per action. Pay-per-impression is counted by seeing how many times the advert is downloaded, and paying for each of these. Here you're robbing the web-site you're visiting of direct revenue. 'Pay-per-click-through' is payment made for each time you go through a banner. This is (wild estimate) perhaps 3% the size of pay-per-impression, counted in dollars. Ads under this model tend to generate between 1/2 and 1/10 the revenue of the pay-per-impression model (in my experience, which is admittedly limited). Pay-per-action is payment made against the originating site when you actually do a purchase. This is e.g. the model Amazon uses for its partners - each time somebody buy a book through an Amazon partner, the partner get part of the revenue. Another wild estimate: 1% the size of the pay-per-impression market, in dollars. > (This is exactly the same as the ads in any magazine, the magzine > publishes the ads, but they do not guarantee that I will not simply > skip those pages when I read the magazine.) They give a statistical average for how many 'impressions' the ad will generate - how many people that will see it. In some cases, they're in on a pay-per-action deal, but that is more common on television (e.g, the CNN hotels adverts and almost certainly the MTV collections CD adverts). A paper or magazine without adverts would cost you 3 times what you pay now; a commercial web-site without advertising either would cost money or wouldn't be there. > Second: > ------- > As this is an "opt-in" thing, I can always choose to see the ads if > I want to. I'm not wilfully depriving anybody of their daily dosis > of fancy animated graphics promising creditcards being offered > exclusively to just about anybody, hair-growth formula or domain > hosting on linux servers in somebodys bedroom. Of course not. You're denying them (in the long term) getting such services as Yahoo! and Netscape Netcenter for free, or at least making that business model less viable. I'm not saying we shouldn't provide the choice of being stupid (ie, not supporting the web-sites you read), but I think we shouldn't actively promote it. > Third: > ------ > FreeBSD is in the business of providing tools for people, we're not > in the business of setting their policies. I disagree. We're clearly in the business of setting policies - ie, which tools we include in the base system is part of setting policy for the sites that install it, and not having rootkits in the ports collection is setting policy. The question is how far we should go in setting policy - and I believe that encouraging people to block advertisments on the web is clearly destructive, and contrary to our purposes (limiting the use of the web for advertising for FreeBSD). I won't say that we shouldn't have ijb in the ports collection, but I don't think we should have it with a description encouraging people to 'pirate websites' - ie, browse without giving the site their advertising displays. Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 15:42:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA13625 for cvs-all-outgoing; Sun, 3 May 1998 15:42:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ns1.yes.no (ns1.yes.no [195.119.24.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA13545; Sun, 3 May 1998 15:41:56 -0700 (PDT) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [194.198.43.36]) by ns1.yes.no (8.8.7/8.8.7) with ESMTP id WAA05352; Sun, 3 May 1998 22:41:54 GMT Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id AAA00692; Mon, 4 May 1998 00:41:54 +0200 (MET DST) Message-ID: <19980504004154.04264@follo.net> Date: Mon, 4 May 1998 00:41:54 +0200 From: Eivind Eklund To: "Jonathan M. Bresler" Cc: mph@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/www/ijb - Imported sources References: <19980503230438.48318@follo.net> <199805032226.PAA11331@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <199805032226.PAA11331@hub.freebsd.org>; from Jonathan M. Bresler on Sun, May 03, 1998 at 03:26:23PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, May 03, 1998 at 03:26:23PM -0700, Jonathan M. Bresler wrote: > Eivind Eklund wrote: > > On Sun, May 03, 1998 at 01:51:41PM -0700, Matthew Hunt wrote: > > > mph 1998/05/03 13:51:40 PDT > > > > > > ports/www/ijb - Imported sources > > > Update of /home/ncvs/ports/www/ijb > > > In directory freefall.freebsd.org:/d/users/mph/junkbuster > > > > > > Log Message: > > > Import of ijb, the Internet Junkbuster. It's an HTTP proxy that > > > strips advertisements and so on. > > > > Should't this be under ATT (for "Automated Theft Tool")? ;-) > > > > Refusing to download ads from the WWW is very bad practice. Those ads are > > paying for the service you're using. I'm not even certain we should have > > the above program as a port - I don't think we'd have a 'automated > > crack-on-download' tool, for instance, and this is actually fairly similar. > > > > Eivind, > > hmm....if i understand what you are saying then > 1. i should watch the commercials on TV rather than getting > a sandwich or changing the channel. > 2. if i record a program of TV, i shouldnt fast-forward thru > the commercials. Let me rephrase this for TV: If you're a producer of TV-sets, including an option to automatically remove all advertising so that all programs run continously[1] would be unwise, as it would be bad for the health of the medium. As a consumer, skipping on a case-by-case basis is (of course) OK. Besides, the payment system for TV is different from the one for web-sites. Websites are paid per display of an advert (ie, per viewer) - TV channels are paid bulk or per slot they display the ad in (which reach an unknown number of viewers). Eivind. [1] Yes, this is impossible for TV, but it is just what ijb does for web-sites. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 15:45:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA13989 for cvs-all-outgoing; Sun, 3 May 1998 15:45:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA13983; Sun, 3 May 1998 15:45:08 -0700 (PDT) (envelope-from jraynard@FreeBSD.org) From: James Raynard Received: (from jraynard@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA22793; Sun, 3 May 1998 15:42:47 -0700 (PDT) Date: Sun, 3 May 1998 15:42:47 -0700 (PDT) Message-Id: <199805032242.PAA22793@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/string strmode.3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jraynard 1998/05/03 15:42:47 PDT Modified files: lib/libc/string strmode.3 Log: Pedantry (NULL -> NUL). Revision Changes Path 1.4 +1 -1 src/lib/libc/string/strmode.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 15:52:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA14967 for cvs-all-outgoing; Sun, 3 May 1998 15:52:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA14962; Sun, 3 May 1998 15:52:37 -0700 (PDT) (envelope-from jraynard@FreeBSD.org) From: James Raynard Received: (from jraynard@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA22840; Sun, 3 May 1998 15:50:15 -0700 (PDT) Date: Sun, 3 May 1998 15:50:15 -0700 (PDT) Message-Id: <199805032250.PAA22840@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/sys nanosleep.2 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jraynard 1998/05/03 15:50:15 PDT Modified files: lib/libc/sys nanosleep.2 Log: Typo fix. Revision Changes Path 1.5 +2 -2 src/lib/libc/sys/nanosleep.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 15:56:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA15422 for cvs-all-outgoing; Sun, 3 May 1998 15:56:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: (from jmb@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA15279; Sun, 3 May 1998 15:55:57 -0700 (PDT) (envelope-from jmb) From: "Jonathan M. Bresler" Message-Id: <199805032255.PAA15279@hub.freebsd.org> Subject: Re: cvs commit: ports/www/ijb - Imported sources In-Reply-To: <19980504004154.04264@follo.net> from Eivind Eklund at "May 4, 98 00:41:54 am" To: eivind@yes.no (Eivind Eklund) Date: Sun, 3 May 1998 15:55:56 -0700 (PDT) Cc: jmb@FreeBSD.ORG, mph@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORGjmb@FreeBSD.ORG, mph@FreeBSD.ORG, chat@FreeBSD.ORG, cvs-committers@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk [lets move this to chat] Eivind Eklund wrote: > > Let me rephrase this for TV: > > If you're a producer of TV-sets, including an option to automatically > remove all advertising so that all programs run continously[1] would > be unwise, as it would be bad for the health of the medium. As a > consumer, skipping on a case-by-case basis is (of course) OK. its excellent for the health of the medium. in the USA its called public television. due to advertizing and the sensitivities of corporations, american TV has degenerated into a handful of programs: sitcoms, soap operas (including LA Law, Dallas, All My Children), sports, news, Oprah-style material and very little else. retch.. this is why Fred Friendly, former CBS executive, left commercial TV and went to PBS....he wanted to do journalism again. to make matter worse, the quantity of commericals constantly increase.... > Besides, the payment system for TV is different from the one for > web-sites. Websites are paid per display of an advert (ie, per > viewer) - TV channels are paid bulk or per slot they display the ad in > (which reach an unknown number of viewers). ratings provide the seller/buyer with an approximation or the number of viewers....super bowl ads are more expensive that those shown during the Erol Flynn version of Captain Blood (old hollywood pirate film from the '50s(?)). > > Eivind. > > [1] Yes, this is impossible for TV, but it is just what ijb does for > web-sites. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 16:03:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA16642 for cvs-all-outgoing; Sun, 3 May 1998 16:03:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA16536; Sun, 3 May 1998 16:02:15 -0700 (PDT) (envelope-from jraynard@FreeBSD.org) From: James Raynard Received: (from jraynard@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA22881; Sun, 3 May 1998 15:59:48 -0700 (PDT) Date: Sun, 3 May 1998 15:59:48 -0700 (PDT) Message-Id: <199805032259.PAA22881@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc_r/man pthread_create.3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jraynard 1998/05/03 15:59:48 PDT Modified files: lib/libc_r/man pthread_create.3 Log: Typo fixes Revision Changes Path 1.3 +3 -2 src/lib/libc_r/man/pthread_create.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 16:21:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA20461 for cvs-all-outgoing; Sun, 3 May 1998 16:21:49 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA20413; Sun, 3 May 1998 16:21:40 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA23208; Sun, 3 May 1998 16:19:17 -0700 (PDT) Date: Sun, 3 May 1998 16:19:17 -0700 (PDT) Message-Id: <199805032319.QAA23208@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/last last.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/03 16:19:17 PDT Modified files: usr.bin/last last.c Log: Add the year to the 'wtmp begins...' line. PR: 6421 Submitted by: phk Revision Changes Path 1.8 +2 -2 src/usr.bin/last/last.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 16:25:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA21257 for cvs-all-outgoing; Sun, 3 May 1998 16:25:01 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA21249; Sun, 3 May 1998 16:25:00 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA23282; Sun, 3 May 1998 16:22:39 -0700 (PDT) Date: Sun, 3 May 1998 16:22:39 -0700 (PDT) Message-Id: <199805032322.QAA23282@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/rwho rwho.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/03 16:22:38 PDT Modified files: usr.bin/rwho rwho.c Log: Be picky about the format of the commandline and cleanup a warning related to qsort. PR: 6420 Submitted by: Ruslan Ermilov Revision Changes Path 1.12 +16 -6 src/usr.bin/rwho/rwho.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 16:26:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA21552 for cvs-all-outgoing; Sun, 3 May 1998 16:26:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA21528; Sun, 3 May 1998 16:26:33 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA23330; Sun, 3 May 1998 16:24:11 -0700 (PDT) Date: Sun, 3 May 1998 16:24:11 -0700 (PDT) Message-Id: <199805032324.QAA23330@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/rwho rwho.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/03 16:24:11 PDT Modified files: (Branch: RELENG_2_2) usr.bin/rwho rwho.c Log: MFC: be picky about commandline and coverup a compiler warning. Revision Changes Path 1.7.2.4 +16 -6 src/usr.bin/rwho/rwho.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 16:28:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA22217 for cvs-all-outgoing; Sun, 3 May 1998 16:28:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA22204; Sun, 3 May 1998 16:28:39 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA23412; Sun, 3 May 1998 16:26:18 -0700 (PDT) Date: Sun, 3 May 1998 16:26:18 -0700 (PDT) Message-Id: <199805032326.QAA23412@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/03 16:26:17 PDT Modified files: . modules Log: 3dc --> ports/games/3dc Revision Changes Path 1.1975 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 16:30:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA22469 for cvs-all-outgoing; Sun, 3 May 1998 16:30:01 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA22461; Sun, 3 May 1998 16:29:59 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA23438; Sun, 3 May 1998 16:27:37 -0700 (PDT) Date: Sun, 3 May 1998 16:27:37 -0700 (PDT) Message-Id: <199805032327.QAA23438@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/3dc - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/03 16:27:37 PDT ports/games/3dc - Imported sources Update of /home/ncvs/ports/games/3dc In directory freefall.freebsd.org:/d/users/mph/3Dc-0.8.1 Log Message: Import of 3dc, a three-dimensional chess game for X11. PR: 6491 Submitted by: Andrey Zakhvatov Status: Vendor Tag: ZAKHVATOV Release Tags: v0_8_1 N ports/games/3dc/Makefile I ports/games/3dc/CVS N ports/games/3dc/files/md5 N ports/games/3dc/patches/patch-aa N ports/games/3dc/pkg/PLIST N ports/games/3dc/pkg/COMMENT N ports/games/3dc/pkg/DESCR No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 16:30:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA22607 for cvs-all-outgoing; Sun, 3 May 1998 16:30:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA22559; Sun, 3 May 1998 16:30:04 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA23466; Sun, 3 May 1998 16:27:42 -0700 (PDT) Date: Sun, 3 May 1998 16:27:42 -0700 (PDT) Message-Id: <199805032327.QAA23466@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/03 16:27:42 PDT Modified files: games Makefile Log: Activate 3dc. Revision Changes Path 1.129 +2 -1 ports/games/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 16:37:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA23852 for cvs-all-outgoing; Sun, 3 May 1998 16:37:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from hwcn.org (ac199@james.hwcn.org [199.212.94.66]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA23833; Sun, 3 May 1998 16:37:49 -0700 (PDT) (envelope-from hoek@hwcn.org) Received: from localhost (ac199@localhost) by hwcn.org (8.8.8/8.8.8) with SMTP id TAA08466; Sun, 3 May 1998 19:33:03 -0400 (EDT) Date: Sun, 3 May 1998 19:33:03 -0400 (EDT) From: Tim Vanderhoek To: "Jonathan M. Bresler" cc: Eivind Eklund , mph@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/www/ijb - Imported sources In-Reply-To: <199805032226.PAA11331@hub.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, 3 May 1998, Jonathan M. Bresler wrote: > hmm....if i understand what you are saying then > 1. i should watch the commercials on TV rather than getting > a sandwich or changing the channel. > 2. if i record a program of TV, i shouldnt fast-forward thru > the commercials. There is a difference between complete and systematic ad-removal and casual. A big difference, actually. :) -- Outnumbered? Maybe. Outspoken? Never! tIM...HOEk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 16:46:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA25130 for cvs-all-outgoing; Sun, 3 May 1998 16:46:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from fallout.campusview.indiana.edu (fallout.campusview.indiana.edu [149.159.1.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA25107; Sun, 3 May 1998 16:46:18 -0700 (PDT) (envelope-from jfieber@indiana.edu) Received: from localhost (jfieber@localhost) by fallout.campusview.indiana.edu (8.8.8/8.8.7) with SMTP id SAA09656; Sun, 3 May 1998 18:46:16 -0500 (EST) Date: Sun, 3 May 1998 18:46:15 -0500 (EST) From: John Fieber To: Eivind Eklund cc: Matthew Hunt , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/www/ijb - Imported sources In-Reply-To: <19980503230438.48318@follo.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, 3 May 1998, Eivind Eklund wrote: > Refusing to download ads from the WWW is very bad practice. Those ads are > paying for the service you're using. I'm not even certain we should have > the above program as a port Yikes! The economics of the Internet are very young and far from being well understood. In other words, they are in that critical period of being formulated and are quite maleable. Are you actually proposing that we consumers should just sit on our collective ass and just take whatever we get force-fed? I couldn't possibly disagree more. I think consumers should be empowered to define the economics of the internet. -john To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 17:00:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA27578 for cvs-all-outgoing; Sun, 3 May 1998 17:00:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA27571; Sun, 3 May 1998 17:00:23 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA23727; Sun, 3 May 1998 16:58:01 -0700 (PDT) Date: Sun, 3 May 1998 16:58:01 -0700 (PDT) Message-Id: <199805032358.QAA23727@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/misc/xdelta Makefile ports/misc/xdelta/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/03 16:58:01 PDT Modified files: misc/xdelta Makefile Added files: misc/xdelta/patches patch-aa Log: Don't override ${CC}, instead patch ltconfig as done in a couple of other ports. PR: 6423 Revision Changes Path 1.9 +1 -4 ports/misc/xdelta/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 17:59:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA07772 for cvs-all-outgoing; Sun, 3 May 1998 17:59:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from sasami.jurai.net (winter@sasami.jurai.net [207.153.65.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA07738; Sun, 3 May 1998 17:59:40 -0700 (PDT) (envelope-from winter@jurai.net) Received: from localhost (winter@localhost) by sasami.jurai.net (8.8.8/8.8.7) with SMTP id UAA26455; Sun, 3 May 1998 20:59:32 -0400 (EDT) Date: Sun, 3 May 1998 20:59:31 -0400 (EDT) From: "Matthew N. Dodd" To: Eivind Eklund cc: Matthew Hunt , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/www/ijb - Imported sources In-Reply-To: <19980503230438.48318@follo.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, 3 May 1998, Eivind Eklund wrote: > Should't this be under ATT (for "Automated Theft Tool")? ;-) > > Refusing to download ads from the WWW is very bad practice. Those ads are > paying for the service you're using. I'm not even certain we should have > the above program as a port - I don't think we'd have a 'automated > crack-on-download' tool, for instance, and this is actually fairly similar. I strongly disagree. The only reason I have a problem with banners is that they break caching at times and are hosted on separate sites than the content and often stall the loading of the web page. I'm on a 28.8 with 3 other people and about 8 to 16 systems. The last thing I need is some lame ass animated GIF banner cloging my line. /* Matthew N. Dodd | A memory retaining a love you had for life winter@jurai.net | As cruel as it seems nothing ever seems to http://www.jurai.net/~winter | go right - FLA M 3.1:53 */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 18:01:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA08108 for cvs-all-outgoing; Sun, 3 May 1998 18:01:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA08072; Sun, 3 May 1998 18:00:58 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA23934; Sun, 3 May 1998 17:58:34 -0700 (PDT) Date: Sun, 3 May 1998 17:58:34 -0700 (PDT) Message-Id: <199805040058.RAA23934@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf majors.pc98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/05/03 17:58:34 PDT Modified files: (Branch: RELENG_2_2) sys/pc98/conf majors.pc98 Log: Sync with sys/i386/conf/majors.i386 revision 1.9.2.10. Submitted by: NOKUBI Hirotaka Revision Changes Path 1.5.2.10 +3 -3 src/sys/pc98/conf/majors.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 18:02:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA08331 for cvs-all-outgoing; Sun, 3 May 1998 18:02:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA08247; Sun, 3 May 1998 18:01:56 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA23978; Sun, 3 May 1998 17:59:34 -0700 (PDT) Date: Sun, 3 May 1998 17:59:34 -0700 (PDT) Message-Id: <199805040059.RAA23978@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 wd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/05/03 17:59:33 PDT Modified files: (Branch: RELENG_2_2) sys/pc98/pc98 wd.c Log: Sync with sys/i386/isa/wd.c revision 1.119.2.11. Submitted by: NOKUBI Hirotaka Revision Changes Path 1.9.2.15 +64 -25 src/sys/pc98/pc98/wd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 18:09:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA09799 for cvs-all-outgoing; Sun, 3 May 1998 18:09:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from sasami.jurai.net (winter@sasami.jurai.net [207.153.65.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA09746; Sun, 3 May 1998 18:08:42 -0700 (PDT) (envelope-from winter@jurai.net) Received: from localhost (winter@localhost) by sasami.jurai.net (8.8.8/8.8.7) with SMTP id VAA26547; Sun, 3 May 1998 21:08:38 -0400 (EDT) Date: Sun, 3 May 1998 21:08:37 -0400 (EDT) From: "Matthew N. Dodd" To: Eivind Eklund cc: "Jonathan M. Bresler" , mph@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/www/ijb - Imported sources In-Reply-To: <19980504004154.04264@follo.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk You're making it quite obvious that you're not from the US here. (no offense) Free Enterprise produced several different devices that did TV advertisment blocking based on audio track level. Typically commercials were louder than the program. I can't seem to remember the name of the outfit that started this business but the devices they sell now are quite complex and aparently work fairly well even though broadcasters have stoped making commercials so easy to spot. On Mon, 4 May 1998, Eivind Eklund wrote: > Let me rephrase this for TV: > > If you're a producer of TV-sets, including an option to automatically > remove all advertising so that all programs run continously[1] would > be unwise, as it would be bad for the health of the medium. As a > consumer, skipping on a case-by-case basis is (of course) OK. > > Besides, the payment system for TV is different from the one for > web-sites. Websites are paid per display of an advert (ie, per > viewer) - TV channels are paid bulk or per slot they display the ad in > (which reach an unknown number of viewers). > > Eivind. > > [1] Yes, this is impossible for TV, but it is just what ijb does for > web-sites. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe cvs-all" in the body of the message > /* Matthew N. Dodd | A memory retaining a love you had for life winter@jurai.net | As cruel as it seems nothing ever seems to http://www.jurai.net/~winter | go right - FLA M 3.1:53 */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 18:42:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA14715 for cvs-all-outgoing; Sun, 3 May 1998 18:42:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA14688; Sun, 3 May 1998 18:42:12 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA24137; Sun, 3 May 1998 18:39:50 -0700 (PDT) Date: Sun, 3 May 1998 18:39:50 -0700 (PDT) Message-Id: <199805040139.SAA24137@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pci pcisupport.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/05/03 18:39:50 PDT Modified files: sys/pci pcisupport.c Log: Add NEC PC-98 chipsets. Revision Changes Path 1.65 +18 -1 src/sys/pci/pcisupport.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 19:08:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA19140 for cvs-all-outgoing; Sun, 3 May 1998 19:08:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA19129; Sun, 3 May 1998 19:08:32 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA24222; Sun, 3 May 1998 19:06:10 -0700 (PDT) Date: Sun, 3 May 1998 19:06:10 -0700 (PDT) Message-Id: <199805040206.TAA24222@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/csu/alpha Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/03 19:06:10 PDT Modified files: lib/csu/alpha Makefile Log: Force BOOTSTRAP mode all the time while the headers are broken on alpha as the result of i386 changes. Revision Changes Path 1.5 +5 -1 src/lib/csu/alpha/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 19:14:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA20189 for cvs-all-outgoing; Sun, 3 May 1998 19:14:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from roma.coe.ufrj.br (jonny@roma.coe.ufrj.br [146.164.53.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA20080; Sun, 3 May 1998 19:14:17 -0700 (PDT) (envelope-from jonny@coe.ufrj.br) Received: (from jonny@localhost) by roma.coe.ufrj.br (8.8.8/8.8.8) id XAA17250; Sun, 3 May 1998 23:13:37 -0300 (EST) (envelope-from jonny) From: Joao Carlos Mendes Luis Message-Id: <199805040213.XAA17250@roma.coe.ufrj.br> Subject: Re: cvs commit: ports/www/ijb - Imported sources In-Reply-To: from "Matthew N. Dodd" at "May 3, 98 09:08:37 pm" To: winter@jurai.net (Matthew N. Dodd) Date: Sun, 3 May 1998 23:13:36 -0300 (EST) Cc: eivind@yes.no, jmb@FreeBSD.ORG, mph@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL40 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk #define quoting(Matthew N. Dodd) // You're making it quite obvious that you're not from the US here. (no // offense) // // Free Enterprise produced several different devices that did TV // advertisment blocking based on audio track level. Typically commercials // were louder than the program. Hey !!! Do they have a homepage ? I'd love to test this device here in Brazil ! :) And please, stop this thread about what is ethical or not about web commercials. I hate all this web marketing. It's getting almost as annoying as spam. Even search engines are getting overwhelmed. Some times I have to explicitly add "-sex" to altavista keywords to avoid those marketing spammers. Maybe, just not to make too easy, you could mark this ijb tool as NO_PACKAGE. At least it would not be installed by those maniacs that install the whole CD just "to take a look"... Jonny -- Joao Carlos Mendes Luis jonny@gta.ufrj.br +55 21 290-4698 ( Job ) jonny@coppe.ufrj.br M.Sc. Student Electrical Engineering Universidade Federal do Rio de Janeiro To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 19:33:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA23715 for cvs-all-outgoing; Sun, 3 May 1998 19:33:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA23701; Sun, 3 May 1998 19:33:31 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA24318; Sun, 3 May 1998 19:31:09 -0700 (PDT) Date: Sun, 3 May 1998 19:31:09 -0700 (PDT) Message-Id: <199805040231.TAA24318@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/japanese/less/patches patch-ab Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/03 19:31:09 PDT Added files: japanese/less/patches patch-ab Log: Fix a setlocale problem by compiling with libxpg4. PR: 6390 Submitted by: maintainer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 19:39:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA24805 for cvs-all-outgoing; Sun, 3 May 1998 19:39:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA24796; Sun, 3 May 1998 19:39:52 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA24433; Sun, 3 May 1998 19:37:30 -0700 (PDT) Date: Sun, 3 May 1998 19:37:30 -0700 (PDT) Message-Id: <199805040237.TAA24433@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-libexec@FreeBSD.ORG Subject: cvs commit: src/libexec/getty gettytab.5 src/libexec/telnetd telnetd.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/03 19:37:29 PDT Modified files: libexec/getty gettytab.5 libexec/telnetd telnetd.8 Log: Clarify use of 'if' capability. PR: 6499 Submitted by: Doug Barton Revision Changes Path 1.17 +6 -5 src/libexec/getty/gettytab.5 1.12 +26 -1 src/libexec/telnetd/telnetd.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 19:44:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA25530 for cvs-all-outgoing; Sun, 3 May 1998 19:44:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA25428; Sun, 3 May 1998 19:44:02 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA24563; Sun, 3 May 1998 19:41:39 -0700 (PDT) Date: Sun, 3 May 1998 19:41:39 -0700 (PDT) Message-Id: <199805040241.TAA24563@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-libexec@FreeBSD.ORG Subject: cvs commit: src/libexec/getty gettytab.5 src/libexec/telnetd telnetd.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/03 19:41:39 PDT Modified files: (Branch: RELENG_2_2) libexec/getty gettytab.5 libexec/telnetd telnetd.8 Log: MFC: clarify use of 'if' capability. Revision Changes Path 1.7.2.7 +6 -5 src/libexec/getty/gettytab.5 1.5.2.4 +26 -1 src/libexec/telnetd/telnetd.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 19:44:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA25597 for cvs-all-outgoing; Sun, 3 May 1998 19:44:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA25549; Sun, 3 May 1998 19:44:19 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA24591; Sun, 3 May 1998 19:41:53 -0700 (PDT) Date: Sun, 3 May 1998 19:41:53 -0700 (PDT) Message-Id: <199805040241.TAA24591@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/autoconf Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/05/03 19:41:53 PDT Modified files: devel/autoconf Makefile Log: portlint. Revision Changes Path 1.13 +3 -3 ports/devel/autoconf/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 19:58:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA27833 for cvs-all-outgoing; Sun, 3 May 1998 19:58:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA27764; Sun, 3 May 1998 19:58:04 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id TAA01824; Sun, 3 May 1998 19:57:42 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Eivind Eklund cc: Matthew Hunt , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/www/ijb - Imported sources In-reply-to: Your message of "Sun, 03 May 1998 23:04:38 +0200." <19980503230438.48318@follo.net> Date: Sun, 03 May 1998 19:57:41 -0700 Message-ID: <1820.894250661@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Refusing to download ads from the WWW is very bad practice. Those ads are > paying for the service you're using. I'm not even certain we should have > the above program as a port - I don't think we'd have a 'automated I don't think it's our position to judge for anything which isn't clearly illegal or causes problems for the average user (e.g. automated spamming software, though some would claim that sendmail already matches that description :-). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 20:02:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA28750 for cvs-all-outgoing; Sun, 3 May 1998 20:02:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA28734; Sun, 3 May 1998 20:02:33 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA24705; Sun, 3 May 1998 20:00:10 -0700 (PDT) Date: Sun, 3 May 1998 20:00:10 -0700 (PDT) Message-Id: <199805040300.UAA24705@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp hdlc.c mp.c vjcomp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/05/03 20:00:10 PDT Modified files: (Branch: MP) usr.sbin/ppp hdlc.c mp.c vjcomp.c Log: o Increment expected MP fragment numbers correctly, according to SHORTSEQ negotiation. o Don't forget to attach incoming fragments with a number greater than everything else in the queue (rather than leaking memory). o Output the link name with the ``other'' hdlc diagnostic message. o Correct a VJ diagnostic (`COMPPROTO', not `proto'). Revision Changes Path 1.28.2.33 +3 -2 src/usr.sbin/ppp/hdlc.c 1.1.2.22 +14 -15 src/usr.sbin/ppp/Attic/mp.c 1.16.2.17 +2 -2 src/usr.sbin/ppp/vjcomp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 20:03:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA28989 for cvs-all-outgoing; Sun, 3 May 1998 20:03:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA28961; Sun, 3 May 1998 20:03:15 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA24761; Sun, 3 May 1998 20:00:52 -0700 (PDT) Date: Sun, 3 May 1998 20:00:52 -0700 (PDT) Message-Id: <199805040300.UAA24761@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/astro/xearth Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/05/03 20:00:52 PDT Modified files: astro/xearth Makefile Log: Add MAINTAINER tag. Revision Changes Path 1.9 +3 -1 ports/astro/xearth/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 20:04:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA29167 for cvs-all-outgoing; Sun, 3 May 1998 20:04:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA29145; Sun, 3 May 1998 20:03:58 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA24791; Sun, 3 May 1998 20:01:35 -0700 (PDT) Date: Sun, 3 May 1998 20:01:35 -0700 (PDT) Message-Id: <199805040301.UAA24791@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/05/03 20:01:35 PDT Modified files: (Branch: MP) usr.sbin/ppp Makefile Log: Keep DPADD and LDADD consistent. Revision Changes Path 1.36.2.12 +3 -2 src/usr.sbin/ppp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 20:04:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA29358 for cvs-all-outgoing; Sun, 3 May 1998 20:04:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA29300; Sun, 3 May 1998 20:04:08 -0700 (PDT) (envelope-from dyson@FreeBSD.org) From: John Dyson Received: (from dyson@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA24829; Sun, 3 May 1998 20:01:45 -0700 (PDT) Date: Sun, 3 May 1998 20:01:45 -0700 (PDT) Message-Id: <199805040301.UAA24829@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern sysv_shm.c src/sys/vm swap_pager.c vm_fault.c vm_map.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dyson 1998/05/03 20:01:45 PDT Modified files: sys/kern sysv_shm.c sys/vm swap_pager.c vm_fault.c vm_map.c Log: Work around some VM bugs, the worst being an overly aggressive swap space free calculation. More complete fixes will be forthcoming, in a week. Revision Changes Path 1.36 +5 -1 src/sys/kern/sysv_shm.c 1.95 +11 -8 src/sys/vm/swap_pager.c 1.83 +3 -2 src/sys/vm/vm_fault.c 1.124 +25 -15 src/sys/vm/vm_map.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 20:06:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA29819 for cvs-all-outgoing; Sun, 3 May 1998 20:06:20 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA29747; Sun, 3 May 1998 20:06:03 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA24926; Sun, 3 May 1998 20:03:36 -0700 (PDT) Date: Sun, 3 May 1998 20:03:36 -0700 (PDT) Message-Id: <199805040303.UAA24926@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/automake Makefile ports/devel/automake/files md5 ports/devel/automake/patches patch-aa patch-ab ports/devel/automake/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/05/03 20:03:36 PDT Modified files: devel/automake Makefile devel/automake/files md5 devel/automake/patches patch-aa patch-ab devel/automake/pkg PLIST Log: Upgrade to 1.3, remove @dirrm share/aclocal on pkg/PLIST, because another package use the directory too (guile) Revision Changes Path 1.6 +3 -3 ports/devel/automake/Makefile 1.3 +1 -1 ports/devel/automake/files/md5 1.5 +4 -4 ports/devel/automake/patches/patch-aa 1.4 +3 -3 ports/devel/automake/patches/patch-ab 1.5 +6 -1 ports/devel/automake/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 20:37:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA05190 for cvs-all-outgoing; Sun, 3 May 1998 20:37:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA05176; Sun, 3 May 1998 20:37:21 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA25091; Sun, 3 May 1998 20:34:58 -0700 (PDT) Date: Sun, 3 May 1998 20:34:58 -0700 (PDT) Message-Id: <199805040334.UAA25091@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/xview-config Makefile ports/x11/xview-config/patches patch-ab patch-ac patch-ad patch-ae patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/03 20:34:58 PDT Modified files: x11/xview-config Makefile x11/xview-config/patches patch-aa Added files: x11/xview-config/patches patch-ab patch-ac patch-ad patch-ae Log: Remove the _Use macro as it conflicts with the one supplied by X11R6. Also portlin clean and separate patches out so there is one file per patch. PR: 6411 Submitted by: Dom Mitchell Revision Changes Path 1.9 +5 -3 ports/x11/xview-config/Makefile 1.3 +0 -279 ports/x11/xview-config/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 20:51:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA06906 for cvs-all-outgoing; Sun, 3 May 1998 20:51:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA06897; Sun, 3 May 1998 20:51:43 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA25178; Sun, 3 May 1998 20:49:20 -0700 (PDT) Date: Sun, 3 May 1998 20:49:20 -0700 (PDT) Message-Id: <199805040349.UAA25178@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/03 20:49:20 PDT Modified files: . modules Log: p5-PGP-Sign --> ports/security/p5-PGP-Sign Revision Changes Path 1.1976 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 20:53:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA07204 for cvs-all-outgoing; Sun, 3 May 1998 20:53:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA07183; Sun, 3 May 1998 20:53:09 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA25199; Sun, 3 May 1998 20:50:46 -0700 (PDT) Date: Sun, 3 May 1998 20:50:46 -0700 (PDT) Message-Id: <199805040350.UAA25199@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/security/p5-PGP-Sign - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/03 20:50:46 PDT ports/security/p5-PGP-Sign - Imported sources Update of /home/ncvs/ports/security/p5-PGP-Sign In directory freefall.freebsd.org:/d/users/mph/p5-PGP-Sign Log Message: Import of the PGP::Sign module for Perl 5. Provides an interface to PGP signature generation. PR: 6498 Submitted by: Don Croyle Status: Vendor Tag: CROYLE Release Tags: v0_08 N ports/security/p5-PGP-Sign/Makefile I ports/security/p5-PGP-Sign/CVS N ports/security/p5-PGP-Sign/pkg/COMMENT N ports/security/p5-PGP-Sign/pkg/DESCR N ports/security/p5-PGP-Sign/pkg/PLIST N ports/security/p5-PGP-Sign/files/md5 No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 20:57:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA07892 for cvs-all-outgoing; Sun, 3 May 1998 20:57:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from xcf.berkeley.edu (scam.XCF.Berkeley.EDU [128.32.43.201]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id UAA07869 for ; Sun, 3 May 1998 20:57:38 -0700 (PDT) (envelope-from nordwick@xcf.berkeley.edu) Received: (qmail 2948 invoked by uid 27268); 4 May 1998 03:58:54 -0000 Date: 4 May 1998 03:58:54 -0000 Message-ID: <19980504035854.2947.qmail@xcf.berkeley.edu> From: Jason Nordwick MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: "Vanilla I. Shu" Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/devel/automake Makefile ports/devel/automake/files md5 ports/devel/automake/patches patch-aa patch-ab ports/devel/automake/pkg PLIST In-Reply-To: vanilla@FreeBSD.ORG on 5/3/1998 to cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG <199805040303.UAA24926@freefall.freebsd.org> References: <199805040303.UAA24926@freefall.freebsd.org> X-Mailer: VM 6.32 under Emacs 19.34.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Vanilla I. Shu, on Sun 5/3/1998, wrote the following: > > vanilla 1998/05/03 20:03:36 PDT > > Modified files: > devel/automake Makefile > devel/automake/files md5 > devel/automake/patches patch-aa patch-ab > devel/automake/pkg PLIST > Log: > Upgrade to 1.3, > remove @dirrm share/aclocal on pkg/PLIST, > because another package use the directory too (guile) > Then it wont be empty and wont go away, right ? jay -- Join the FreeBSD Revolution. Support the FSF, buy GNU. http://xcf.berkeley.edu/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 20:57:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA07899 for cvs-all-outgoing; Sun, 3 May 1998 20:57:48 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from xcf.berkeley.edu (scam.XCF.Berkeley.EDU [128.32.43.201]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id UAA07870 for ; Sun, 3 May 1998 20:57:38 -0700 (PDT) (envelope-from nordwick@xcf.berkeley.edu) Received: (qmail 2948 invoked by uid 27268); 4 May 1998 03:58:54 -0000 Date: 4 May 1998 03:58:54 -0000 Message-ID: <19980504035854.2947.qmail@xcf.berkeley.edu> From: Jason Nordwick MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: "Vanilla I. Shu" Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/devel/automake Makefile ports/devel/automake/files md5 ports/devel/automake/patches patch-aa patch-ab ports/devel/automake/pkg PLIST In-Reply-To: vanilla@FreeBSD.ORG on 5/3/1998 to cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG <199805040303.UAA24926@freefall.freebsd.org> References: <199805040303.UAA24926@freefall.freebsd.org> X-Mailer: VM 6.32 under Emacs 19.34.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Vanilla I. Shu, on Sun 5/3/1998, wrote the following: > > vanilla 1998/05/03 20:03:36 PDT > > Modified files: > devel/automake Makefile > devel/automake/files md5 > devel/automake/patches patch-aa patch-ab > devel/automake/pkg PLIST > Log: > Upgrade to 1.3, > remove @dirrm share/aclocal on pkg/PLIST, > because another package use the directory too (guile) > Then it wont be empty and wont go away, right ? jay -- Join the FreeBSD Revolution. Support the FSF, buy GNU. http://xcf.berkeley.edu/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 21:03:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA09323 for cvs-all-outgoing; Sun, 3 May 1998 21:03:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA09312; Sun, 3 May 1998 21:03:53 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA25379; Sun, 3 May 1998 21:01:28 -0700 (PDT) Date: Sun, 3 May 1998 21:01:28 -0700 (PDT) Message-Id: <199805040401.VAA25379@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/mk bsd.port.mk Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/03 21:01:28 PDT Modified files: share/mk bsd.port.mk Log: Change a couple 'make' to '${MAKE}'. PR: 6341 Submitted by: Niall Smart Revision Changes Path 1.274 +6 -6 src/share/mk/bsd.port.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 21:43:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA16214 for cvs-all-outgoing; Sun, 3 May 1998 21:43:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA16200; Sun, 3 May 1998 21:43:49 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA25621; Sun, 3 May 1998 21:41:26 -0700 (PDT) Date: Sun, 3 May 1998 21:41:26 -0700 (PDT) Message-Id: <199805040441.VAA25621@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 epsonio.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/05/03 21:41:25 PDT Modified files: sys/pc98/pc98 epsonio.h Log: Support compiling with `gcc -ansi'. Revision Changes Path 1.4 +4 -4 src/sys/pc98/pc98/epsonio.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 21:58:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA18691 for cvs-all-outgoing; Sun, 3 May 1998 21:58:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA18618; Sun, 3 May 1998 21:58:05 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA25762; Sun, 3 May 1998 21:55:40 -0700 (PDT) Date: Sun, 3 May 1998 21:55:40 -0700 (PDT) Message-Id: <199805040455.VAA25762@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 wd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/05/03 21:55:40 PDT Modified files: sys/pc98/pc98 wd.c Log: Support compiling with `gcc -ansi'. Revision Changes Path 1.52 +2 -2 src/sys/pc98/pc98/wd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 22:15:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA21790 for cvs-all-outgoing; Sun, 3 May 1998 22:15:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA21784; Sun, 3 May 1998 22:15:13 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA25886; Sun, 3 May 1998 22:12:50 -0700 (PDT) Date: Sun, 3 May 1998 22:12:50 -0700 (PDT) Message-Id: <199805040512.WAA25886@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-libexec@FreeBSD.ORG Subject: cvs commit: src/libexec/named-xfer Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/05/03 22:12:50 PDT Modified files: libexec/named-xfer Makefile Log: Argh, forgot to commit the update here for bind-8.. Sorry folks... Prompted by: John Hay Revision Changes Path 1.7 +6 -12 src/libexec/named-xfer/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 22:29:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA23744 for cvs-all-outgoing; Sun, 3 May 1998 22:29:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA23735; Sun, 3 May 1998 22:29:12 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA25939; Sun, 3 May 1998 22:26:47 -0700 (PDT) Date: Sun, 3 May 1998 22:26:47 -0700 (PDT) Message-Id: <199805040526.WAA25939@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc rc.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/05/03 22:26:47 PDT Modified files: etc rc.conf Log: Update the named hooks. Revision Changes Path 1.48 +4 -3 src/etc/rc.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 23:07:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA27943 for cvs-all-outgoing; Sun, 3 May 1998 23:07:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA27915; Sun, 3 May 1998 23:06:58 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id IAA13404; Mon, 4 May 1998 08:06:30 +0200 (CEST) To: Eivind Eklund cc: Matthew Hunt , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/www/ijb - Imported sources In-reply-to: Your message of "Mon, 04 May 1998 00:33:56 +0200." <19980504003356.43232@follo.net> Date: Mon, 04 May 1998 08:06:30 +0200 Message-ID: <13402.894261990@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >> First: >> ------ >> If I used Lynx I wouldn't see the ads. From this we can deduce that >> people pay for having their ads placed, but not for having them read. > >This is quite incorrect. There are three advertising models in broad >use on the web today - pay per impression (usually counted in >thosands as 'CPM'), pay per click-through, and pay per action. But you must admit that all this is purely unintersting if I run Lynx, right ? >> (This is exactly the same as the ads in any magazine, the magzine >> publishes the ads, but they do not guarantee that I will not simply >> skip those pages when I read the magazine.) > >They give a statistical average for how many 'impressions' the ad will >generate - how many people that will see it. In some cases, they're >in on a pay-per-action deal, but that is more common on television >(e.g, the CNN hotels adverts and almost certainly the MTV collections >CD adverts). This is not television, but a user-controlled medium. >> Third: >> ------ >> FreeBSD is in the business of providing tools for people, we're not >> in the business of setting their policies. > >I disagree. We're clearly in the business of setting policies - ie, >which tools we include in the base system is part of setting policy >for the sites that install it, and not having rootkits in the ports >collection is setting policy. Well Eivind, you're not setting policy, -core is, and last time we discussed this, -core agreed on the above. -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "ttyv0" -- What UNIX calls a $20K state-of-the-art, 3D, hi-res color terminal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 23:08:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA28183 for cvs-all-outgoing; Sun, 3 May 1998 23:08:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA28129; Sun, 3 May 1998 23:08:04 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id IAA13417; Mon, 4 May 1998 08:07:39 +0200 (CEST) To: Eivind Eklund cc: "Jonathan M. Bresler" , mph@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/www/ijb - Imported sources In-reply-to: Your message of "Mon, 04 May 1998 00:41:54 +0200." <19980504004154.04264@follo.net> Date: Mon, 04 May 1998 08:07:39 +0200 Message-ID: <13415.894262059@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In message <19980504004154.04264@follo.net>, Eivind Eklund writes: >> > Refusing to download ads from the WWW is very bad practice. Those ads are >> > paying for the service you're using. I'm not even certain we should have >> > the above program as a port - I don't think we'd have a 'automated >> > crack-on-download' tool, for instance, and this is actually fairly similar. >> > >> >> Eivind, >> >> hmm....if i understand what you are saying then >> 1. i should watch the commercials on TV rather than getting >> a sandwich or changing the channel. >> 2. if i record a program of TV, i shouldnt fast-forward thru >> the commercials. > >Let me rephrase this for TV: > >If you're a producer of TV-sets, including an option to automatically >remove all advertising so that all programs run continously[1] would >be unwise, as it would be bad for the health of the medium. As a >consumer, skipping on a case-by-case basis is (of course) OK. I think there is pretty good data supporting that television would be much better without the advertising, because they could concentrate on contents instead of ratings. PBS is a case in point. -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "ttyv0" -- What UNIX calls a $20K state-of-the-art, 3D, hi-res color terminal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun May 3 23:55:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA03673 for cvs-all-outgoing; Sun, 3 May 1998 23:55:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: (from sos@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA03662; Sun, 3 May 1998 23:55:29 -0700 (PDT) (envelope-from sos) Message-Id: <199805040655.XAA03662@hub.freebsd.org> Subject: Re: cvs commit: ports/www/ijb - Imported sources In-Reply-To: <19980503230438.48318@follo.net> from Eivind Eklund at "May 3, 98 11:04:38 pm" To: eivind@yes.no (Eivind Eklund) Date: Sun, 3 May 1998 23:55:29 -0700 (PDT) Cc: mph@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG From: sos@FreeBSD.ORG Reply-to: sos@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In reply to Eivind Eklund who wrote: > On Sun, May 03, 1998 at 01:51:41PM -0700, Matthew Hunt wrote: > > mph 1998/05/03 13:51:40 PDT > > > > ports/www/ijb - Imported sources > > Update of /home/ncvs/ports/www/ijb > > In directory freefall.freebsd.org:/d/users/mph/junkbuster > > > > Log Message: > > Import of ijb, the Internet Junkbuster. It's an HTTP proxy that > > strips advertisements and so on. > > Should't this be under ATT (for "Automated Theft Tool")? ;-) > > Refusing to download ads from the WWW is very bad practice. Those ads are > paying for the service you're using. I'm not even certain we should have > the above program as a port - I don't think we'd have a 'automated > crack-on-download' tool, for instance, and this is actually fairly similar. I beg your pardon ?? What planet are you from ?? I think that those that put adds on the pages are the bad guys, they STEAL my bandwith and MY money form the extra connection time it takes to download, so it should be under AATT ('Automated Anti Theft Tool!) I welcome this exiting new piece of very usefull software, and its going to be installed here as soon as I get the time to do it. I'm pretty sure this will be a hit amongst alot of our users... In fact I think that alot of ISP's will take this as a gift from heaven :) -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Soren Schmidt (sos@FreeBSD.org) FreeBSD Core Team So much code to hack -- so little time. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 00:09:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA05154 for cvs-all-outgoing; Mon, 4 May 1998 00:09:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA05146; Mon, 4 May 1998 00:09:00 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id RAA00024; Mon, 4 May 1998 17:00:26 +1000 Date: Mon, 4 May 1998 17:00:26 +1000 From: Bruce Evans Message-Id: <199805040700.RAA00024@godzilla.zeta.org.au> To: andreas@FreeBSD.ORG, andreas@klemm.gtn.com, joerg_wunsch@uriah.heep.sax.de Subject: Re: cvs commit: src/contrib/bc - Imported sources Cc: cvs-committers@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >> > I src/contrib/bc/doc/dc.info >> >> Has it been your intention to ignore this file upon import, Andreas? > >No, but it doesn't hurt, since it will be build by makeinfo. It is missing from the list of removed files, and will cause extra work for future imports. >BTW, is there a general rule that *.info files get ignored ? >I imported that on freefall. I have no .cvs init file in my >home dir. Yes, there is such a rule in cvsignore, at least in -current. So ignore what I said above about dc.info causing extra work for future imports - it will be ignored in future imports, as if it never existed, and it is easiest to pretend that it never existed in the list of remvoed files too. We currently have only a few .info,v files in the repository, mostly in attics. There's even an old dc.info,v. Unfortunately, the rule usually misses big info files since they are split. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 00:22:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA06826 for cvs-all-outgoing; Mon, 4 May 1998 00:22:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA06793; Mon, 4 May 1998 00:22:25 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-28.ix.netcom.com [207.93.143.156]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id AAA08793; Mon, 4 May 1998 00:22:21 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id AAA02285; Mon, 4 May 1998 00:22:17 -0700 (PDT) Date: Mon, 4 May 1998 00:22:17 -0700 (PDT) Message-Id: <199805040722.AAA02285@silvia.HIP.Berkeley.EDU> To: phk@critter.freebsd.dk CC: eivind@yes.no, mph@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <13402.894261990@critter.freebsd.dk> (message from Poul-Henning Kamp on Mon, 04 May 1998 08:06:30 +0200) Subject: Re: cvs commit: ports/www/ijb - Imported sources From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Hey guys, can we stop this madness now? ijb is going to stay in the tree. That does not mean we are all going to agree with the principles behind it or anything, it's because whether a ported software is "desirable" or not is not for us to judge. Those who argue that this shouldn't be in there (or should be modified to enforce whatever policy we think is "right"), or those who are arguing how useful this is and how annoying the dancing ads are, are both completely missing the point. We're just providing easy ways to install tools, the users will decide. Let this discussion die, and can we now move back to our regularly scheduled tcl/java flamewar? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 00:26:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA07402 for cvs-all-outgoing; Mon, 4 May 1998 00:26:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA07386; Mon, 4 May 1998 00:26:35 -0700 (PDT) (envelope-from cracauer@FreeBSD.org) From: Martin Cracauer Received: (from cracauer@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA26352; Mon, 4 May 1998 00:24:12 -0700 (PDT) Date: Mon, 4 May 1998 00:24:12 -0700 (PDT) Message-Id: <199805040724.AAA26352@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-bin@FreeBSD.ORG Subject: cvs commit: src/bin/sh eval.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk cracauer 1998/05/04 00:24:11 PDT Modified files: bin/sh eval.c Log: When calling a shell function, remember whether exit status is tested. This is needed for the '-e' option. See the PR for more details. PR: 6047 Reviewed by: PR submitter, silence on review request. Revision Changes Path 1.14 +5 -2 src/bin/sh/eval.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 00:28:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA07742 for cvs-all-outgoing; Mon, 4 May 1998 00:28:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA07713; Mon, 4 May 1998 00:28:24 -0700 (PDT) (envelope-from cracauer@FreeBSD.org) From: Martin Cracauer Received: (from cracauer@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA26477; Mon, 4 May 1998 00:26:00 -0700 (PDT) Date: Mon, 4 May 1998 00:26:00 -0700 (PDT) Message-Id: <199805040726.AAA26477@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-bin@FreeBSD.ORG Subject: cvs commit: src/bin/sh eval.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk cracauer 1998/05/04 00:25:59 PDT Modified files: (Branch: RELENG_2_2) bin/sh eval.c Log: MFC: When calling a shell function, remember whether exit status is tested. This is needed for the '-e' option. See the PR for more details. PR: 6047 Revision Changes Path 1.7.2.4 +5 -2 src/bin/sh/eval.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 00:36:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA08849 for cvs-all-outgoing; Mon, 4 May 1998 00:36:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA08804; Mon, 4 May 1998 00:36:00 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA26607; Mon, 4 May 1998 00:33:33 -0700 (PDT) Date: Mon, 4 May 1998 00:33:33 -0700 (PDT) Message-Id: <199805040733.AAA26607@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 npx.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/05/04 00:33:32 PDT Modified files: sys/pc98/pc98 npx.c Log: Use `0xf8' instead of `IO_NPX' macro to support compiling with `SMP' option. Revision Changes Path 1.37 +3 -3 src/sys/pc98/pc98/npx.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 00:50:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA10024 for cvs-all-outgoing; Mon, 4 May 1998 00:50:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA09972; Mon, 4 May 1998 00:49:59 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA26704; Mon, 4 May 1998 00:47:35 -0700 (PDT) Date: Mon, 4 May 1998 00:47:35 -0700 (PDT) Message-Id: <199805040747.AAA26704@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf GENERIC98 src/sys/pc98/pc98 clock.c syscons.c syscons.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/05/04 00:47:35 PDT Modified files: sys/pc98/conf GENERIC98 sys/pc98/pc98 clock.c syscons.c syscons.h Log: System clock speed is always detected automatically. Revision Changes Path 1.37 +1 -2 src/sys/pc98/conf/GENERIC98 1.53 +1 -29 src/sys/pc98/pc98/clock.c 1.85 +1 -3 src/sys/pc98/pc98/syscons.c 1.23 +1 -9 src/sys/pc98/pc98/syscons.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 00:54:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA10539 for cvs-all-outgoing; Mon, 4 May 1998 00:54:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: (from sos@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA10518; Mon, 4 May 1998 00:54:43 -0700 (PDT) (envelope-from sos) Message-Id: <199805040754.AAA10518@hub.freebsd.org> Subject: Re: cvs commit: ports/www/ijb - Imported sources In-Reply-To: <199805040722.AAA02285@silvia.HIP.Berkeley.EDU> from Satoshi Asami at "May 4, 98 00:22:17 am" To: asami@FreeBSD.ORG (Satoshi Asami) Date: Mon, 4 May 1998 00:54:43 -0700 (PDT) Cc: phk@critter.freebsd.dk, eivind@yes.no, mph@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG From: sos@FreeBSD.ORG Reply-to: sos@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In reply to Satoshi Asami who wrote: > Hey guys, can we stop this madness now? ijb is going to stay in the > tree. That does not mean we are all going to agree with the > principles behind it or anything, it's because whether a ported > software is "desirable" or not is not for us to judge. > > Those who argue that this shouldn't be in there (or should be modified > to enforce whatever policy we think is "right"), or those who are > arguing how useful this is and how annoying the dancing ads are, are > both completely missing the point. We're just providing easy ways to > install tools, the users will decide. > > Let this discussion die, and can we now move back to our regularly > scheduled tcl/java flamewar? Sure, but statements as those Eivind came up with shouldn't stand alone. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Soren Schmidt (sos@FreeBSD.org) FreeBSD Core Team So much code to hack -- so little time. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 01:01:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA11275 for cvs-all-outgoing; Mon, 4 May 1998 01:01:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA11225; Mon, 4 May 1998 01:01:03 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA26765; Mon, 4 May 1998 00:58:37 -0700 (PDT) Date: Mon, 4 May 1998 00:58:37 -0700 (PDT) Message-Id: <199805040758.AAA26765@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf SMP-GENERIC98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/05/04 00:58:36 PDT Added files: sys/pc98/conf SMP-GENERIC98 Log: Added SMP kernel configuration file for PC-98 machine. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 01:18:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA13604 for cvs-all-outgoing; Mon, 4 May 1998 01:18:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA13593; Mon, 4 May 1998 01:18:33 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA26838; Mon, 4 May 1998 01:16:05 -0700 (PDT) Date: Mon, 4 May 1998 01:16:05 -0700 (PDT) Message-Id: <199805040816.BAA26838@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pci pcisupport.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/05/04 01:16:05 PDT Modified files: sys/pci pcisupport.c Log: Added another PCI to C-bus (ISA bus like 16 bit bus of PC-98) bridge. Revision Changes Path 1.66 +3 -1 src/sys/pci/pcisupport.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 01:50:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA16177 for cvs-all-outgoing; Mon, 4 May 1998 01:50:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA16172; Mon, 4 May 1998 01:50:53 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA26941; Mon, 4 May 1998 01:48:29 -0700 (PDT) Date: Mon, 4 May 1998 01:48:29 -0700 (PDT) Message-Id: <199805040848.BAA26941@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf GENERIC98 SMP-GENERIC98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/05/04 01:48:28 PDT Modified files: sys/pc98/conf GENERIC98 SMP-GENERIC98 Log: Added amd controller to support MELCO IFC-DP SCSI card. Revision Changes Path 1.38 +2 -1 src/sys/pc98/conf/GENERIC98 1.2 +2 -1 src/sys/pc98/conf/SMP-GENERIC98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 01:52:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA16366 for cvs-all-outgoing; Mon, 4 May 1998 01:52:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA16361; Mon, 4 May 1998 01:52:16 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA26973; Mon, 4 May 1998 01:49:52 -0700 (PDT) Date: Mon, 4 May 1998 01:49:52 -0700 (PDT) Message-Id: <199805040849.BAA26973@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf GENERIC98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/05/04 01:49:52 PDT Modified files: (Branch: RELENG_2_2) sys/pc98/conf GENERIC98 Log: MFC: Added amd controller. Revision Changes Path 1.8.2.22 +2 -1 src/sys/pc98/conf/GENERIC98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 02:17:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA18736 for cvs-all-outgoing; Mon, 4 May 1998 02:17:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA18731; Mon, 4 May 1998 02:17:32 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA27191; Mon, 4 May 1998 02:15:08 -0700 (PDT) Date: Mon, 4 May 1998 02:15:08 -0700 (PDT) Message-Id: <199805040915.CAA27191@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/mk bsd.port.mk Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/04 02:15:07 PDT Modified files: (Branch: RELENG_2_2) share/mk bsd.port.mk Log: MFC: make -> ${MAKE} Ok'd by: Satoshi Revision Changes Path 1.227.2.36 +6 -6 src/share/mk/bsd.port.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 02:28:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA20286 for cvs-all-outgoing; Mon, 4 May 1998 02:28:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA20263; Mon, 4 May 1998 02:28:15 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA27264; Mon, 4 May 1998 02:25:50 -0700 (PDT) Date: Mon, 4 May 1998 02:25:50 -0700 (PDT) Message-Id: <199805040925.CAA27264@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/mk bsd.port.mk Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/05/04 02:25:50 PDT Modified files: (Branch: RELENG_2_1_0) share/mk bsd.port.mk Log: Merge from 1.274 Revision Changes Path 1.165.2.36 +6 -6 src/share/mk/bsd.port.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 03:12:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA26158 for cvs-all-outgoing; Mon, 4 May 1998 03:12:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA26149; Mon, 4 May 1998 03:12:54 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA27590; Mon, 4 May 1998 03:10:30 -0700 (PDT) Date: Mon, 4 May 1998 03:10:30 -0700 (PDT) Message-Id: <199805041010.DAA27590@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data send-pr.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/05/04 03:10:29 PDT Modified files: data send-pr.sgml Log: Add category 'sparc' and 'alpha' Revision Changes Path 1.5 +4 -2 www/data/send-pr.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 03:15:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA26560 for cvs-all-outgoing; Mon, 4 May 1998 03:15:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA26550; Mon, 4 May 1998 03:15:34 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA27646; Mon, 4 May 1998 03:13:09 -0700 (PDT) Date: Mon, 4 May 1998 03:13:09 -0700 (PDT) Message-Id: <199805041013.DAA27646@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/send-pr categories Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/05/04 03:13:09 PDT Modified files: gnu/usr.bin/send-pr categories Log: Added a alpha category to the list. Revision Changes Path 1.7 +1 -0 src/gnu/usr.bin/send-pr/categories To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 03:16:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA26785 for cvs-all-outgoing; Mon, 4 May 1998 03:16:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA26774; Mon, 4 May 1998 03:16:09 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA27675; Mon, 4 May 1998 03:13:44 -0700 (PDT) Date: Mon, 4 May 1998 03:13:44 -0700 (PDT) Message-Id: <199805041013.DAA27675@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data newsflash.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/05/04 03:13:44 PDT Modified files: data newsflash.sgml Log: Add anoncvs. Revision Changes Path 1.75 +14 -2 www/data/newsflash.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 03:37:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA29331 for cvs-all-outgoing; Mon, 4 May 1998 03:37:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA29312; Mon, 4 May 1998 03:37:44 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA27760; Mon, 4 May 1998 03:35:19 -0700 (PDT) Date: Mon, 4 May 1998 03:35:19 -0700 (PDT) Message-Id: <199805041035.DAA27760@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa sio.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/05/04 03:35:18 PDT Modified files: sys/i386/isa sio.c Log: Detect USR PnP x2 modem. PR: 6496 Reviewed by: phk Submitted by: Kurt D. Zeilenga Revision Changes Path 1.200 +2 -1 src/sys/i386/isa/sio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 03:45:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA00378 for cvs-all-outgoing; Mon, 4 May 1998 03:45:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ns11.rim.or.jp (root@ns11.rim.or.jp [202.247.130.230]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA00346; Mon, 4 May 1998 03:45:05 -0700 (PDT) (envelope-from masafumi@aslm.rim.or.jp) Received: from rayearth.rim.or.jp (rayearth.rim.or.jp [202.247.130.242]) by ns11.rim.or.jp (8.8.5/3.5Wpl2-ns11/RIMNET-2) with ESMTP id TAA21367; Mon, 4 May 1998 19:45:02 +0900 (JST) Received: (from uucp@localhost) by rayearth.rim.or.jp (8.8.5/3.5Wpl2-uucp1/RIMNET) with UUCP id TAA02913; Mon, 4 May 1998 19:45:02 +0900 (JST) Received: from localhost (localhost [127.0.0.1]) by mail.aslm.rim.or.jp (8.8.8/3.5Wpl3-SMTP) with ESMTP id TAA16403; Mon, 4 May 1998 19:39:52 +0900 (JST) To: eivind@yes.no Cc: phk@critter.freebsd.dk, mph@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Cc: max@wide.ad.jp Subject: Re: cvs commit: ports/www/ijb - Imported sources From: Masafumi NAKANE/=?iso-2022-jp?B?GyRCQ2Y6LDJtSjgbKEI=?= In-Reply-To: Your message of "Mon, 4 May 1998 00:33:56 +0200" <19980504003356.43232@follo.net> References: <19980504003356.43232@follo.net> X-Mailer: Mew version 1.92.4 on Emacs 20.2 / Mule 3.0 (MOMIJINOGA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <19980504193952S.masafumi@aslm.rim.or.jp> Date: Mon, 04 May 1998 19:39:52 +0900 X-Dispatcher: imput version 971024 Lines: 20 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > The question is how far we should go in setting policy - and I > believe that encouraging people to block advertisments on the > web is clearly destructive, and contrary to our purposes > (limiting the use of the web for advertising for FreeBSD). I > won't say that we shouldn't have ijb in the ports collection, > but I don't think we should have it with a description > encouraging people to 'pirate websites' - ie, browse without > giving the site their advertising displays. I believe including some ports in our collection does not mean we are encouraging people to use them. It just means that they have an option to use them. And what's wrong with including true fact in the description? And as I see the COMMENT and the DESCR files, they are not encouraging anyone to do anything, they are just stating what the port is for. And of course, it is totally up to each user how the program is going to be used after installation. Cheers, Max To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 04:26:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA09395 for cvs-all-outgoing; Mon, 4 May 1998 04:26:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA09377; Mon, 4 May 1998 04:26:32 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA29344; Mon, 4 May 1998 04:24:06 -0700 (PDT) Date: Mon, 4 May 1998 04:24:06 -0700 (PDT) Message-Id: <199805041124.EAA29344@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/syscons/fonts swiss-8x16.fnt swiss-8x8.fnt Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/05/04 04:24:06 PDT Modified files: share/syscons/fonts Makefile Added files: share/syscons/fonts swiss-8x16.fnt swiss-8x8.fnt Log: Just the sans-serif console font that I use on my system; I've made the letters one pixel taller, and the ()[]{} are more distinct. Nice if your monitor is small. 8x16 and 8x8 fonts included. PR: 4208 Reviewed by: phk Submitted by: Dan Nelson Revision Changes Path 1.17 +2 -1 src/share/syscons/fonts/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 04:27:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA09577 for cvs-all-outgoing; Mon, 4 May 1998 04:27:49 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA09562; Mon, 4 May 1998 04:27:44 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA29476; Mon, 4 May 1998 04:25:18 -0700 (PDT) Date: Mon, 4 May 1998 04:25:18 -0700 (PDT) Message-Id: <199805041125.EAA29476@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 sio.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/05/04 04:25:18 PDT Modified files: sys/pc98/pc98 sio.c Log: Sync with sys/i386/isa/sio.c revision 1.200. Revision Changes Path 1.55 +2 -1 src/sys/pc98/pc98/sio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 06:57:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA03093 for cvs-all-outgoing; Mon, 4 May 1998 06:57:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA03078; Mon, 4 May 1998 06:57:08 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA24500; Mon, 4 May 1998 06:54:42 -0700 (PDT) Date: Mon, 4 May 1998 06:54:42 -0700 (PDT) Message-Id: <199805041354.GAA24500@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/mk bsd.prog.mk Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/04 06:54:41 PDT Modified files: share/mk bsd.prog.mk Log: Generate explicit rules and other infrastructure for lex and yacc sources. This will be used to fix `make -jN' races in many Makefiles in /usr/src, and to simplify these and other Makefiles. To get the fixes and simplifications, application Makefiles should put the raw lex and yacc source names (foo.l and bar.y) in SRCS and not put the names of any generated files in SRCS or CLEANFILES. A few Makefiles already do this, although it didn't actually work before (mkdep couldn't create complete dependencies because there is no intermediate .c file for the .y.o and .l.o implicit rules). Complications: if bar.y is in SRCS and -d is in YFLAGS, then bar.h will be generated whether or not it is used, even if this clobbers a real source file. This is so that bar.c can be generated using the -j-safe and debugger-friendly -o option to YACC. There are smaller warts for handling y.tab.h. y.tab.c and lex.yy.c are not supported. Revision Changes Path 1.68 +27 -1 src/share/mk/bsd.prog.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 07:57:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA12070 for cvs-all-outgoing; Mon, 4 May 1998 07:57:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA12065; Mon, 4 May 1998 07:57:53 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA24946; Mon, 4 May 1998 07:55:27 -0700 (PDT) Date: Mon, 4 May 1998 07:55:27 -0700 (PDT) Message-Id: <199805041455.HAA24946@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/04 07:55:26 PDT Modified files: . modules Log: p5-News-Article --> ports/news/p5-News-Article Revision Changes Path 1.1977 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 07:59:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA12413 for cvs-all-outgoing; Mon, 4 May 1998 07:59:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA12399; Mon, 4 May 1998 07:59:00 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA24985; Mon, 4 May 1998 07:56:34 -0700 (PDT) Date: Mon, 4 May 1998 07:56:34 -0700 (PDT) Message-Id: <199805041456.HAA24985@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/news/p5-News-Article - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/04 07:56:33 PDT ports/news/p5-News-Article - Imported sources Update of /home/ncvs/ports/news/p5-News-Article In directory freefall.freebsd.org:/d/users/mph/p5-News-Article Log Message: Import of p5-News-Article, a Perl 5 module for dealing with news articles (surprise, surprise). PR: 6500 Submitted by: Don Croyle Status: Vendor Tag: CROYLE Release Tags: v1_14 N ports/news/p5-News-Article/Makefile I ports/news/p5-News-Article/CVS N ports/news/p5-News-Article/pkg/COMMENT N ports/news/p5-News-Article/pkg/DESCR N ports/news/p5-News-Article/pkg/PLIST N ports/news/p5-News-Article/files/md5 No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 08:00:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA12683 for cvs-all-outgoing; Mon, 4 May 1998 08:00:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA12637; Mon, 4 May 1998 07:59:55 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA25091; Mon, 4 May 1998 07:57:28 -0700 (PDT) Date: Mon, 4 May 1998 07:57:28 -0700 (PDT) Message-Id: <199805041457.HAA25091@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/news Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/04 07:57:28 PDT Modified files: news Makefile Log: Activate p5-News-Article. Revision Changes Path 1.34 +2 -1 ports/news/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 08:13:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA15074 for cvs-all-outgoing; Mon, 4 May 1998 08:13:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA15060; Mon, 4 May 1998 08:12:57 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA25227; Mon, 4 May 1998 08:10:24 -0700 (PDT) Date: Mon, 4 May 1998 08:10:24 -0700 (PDT) Message-Id: <199805041510.IAA25227@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/04 08:10:24 PDT Modified files: . modules Log: p5-Gateway --> ports/news/p5-Gateway Revision Changes Path 1.1978 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 08:13:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA15233 for cvs-all-outgoing; Mon, 4 May 1998 08:13:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA15207; Mon, 4 May 1998 08:13:50 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA25265; Mon, 4 May 1998 08:11:24 -0700 (PDT) Date: Mon, 4 May 1998 08:11:24 -0700 (PDT) Message-Id: <199805041511.IAA25265@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/news Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/04 08:11:24 PDT Modified files: news Makefile Log: Activate p5-Gateway. Revision Changes Path 1.35 +2 -1 ports/news/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 08:14:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA15492 for cvs-all-outgoing; Mon, 4 May 1998 08:14:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA15416; Mon, 4 May 1998 08:14:08 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA25276; Mon, 4 May 1998 08:11:41 -0700 (PDT) Date: Mon, 4 May 1998 08:11:41 -0700 (PDT) Message-Id: <199805041511.IAA25276@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/news/p5-Gateway - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/04 08:11:41 PDT ports/news/p5-Gateway - Imported sources Update of /home/ncvs/ports/news/p5-Gateway In directory freefall.freebsd.org:/d/users/mph/p5-Gateway Log Message: Import of p5-Gateway, a Perl 5 module that provides a framework for Netnews moderation and gateway scripts. PR: 6501 Submitted by: Don Croyle Status: Vendor Tag: CROYLE Release Tags: v0_42 N ports/news/p5-Gateway/Makefile I ports/news/p5-Gateway/CVS N ports/news/p5-Gateway/pkg/COMMENT N ports/news/p5-Gateway/pkg/DESCR N ports/news/p5-Gateway/pkg/PLIST N ports/news/p5-Gateway/files/md5 No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 08:35:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA20061 for cvs-all-outgoing; Mon, 4 May 1998 08:35:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA20039; Mon, 4 May 1998 08:35:32 -0700 (PDT) (envelope-from max@FreeBSD.org) From: Masafumi NAKANE Received: (from max@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA25523; Mon, 4 May 1998 08:33:05 -0700 (PDT) Date: Mon, 4 May 1998 08:33:05 -0700 (PDT) Message-Id: <199805041533.IAA25523@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/japanese/perl5 Makefile ports/japanese/perl5/files md5 ports/japanese/perl5/patches patch-ad ports/japanese/perl5/pkg DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk max 1998/05/04 08:33:04 PDT Modified files: japanese/perl5 Makefile japanese/perl5/files md5 japanese/perl5/patches patch-ad japanese/perl5/pkg DESCR PLIST Log: Upgrade, 5.004_01 -> 5.004_04. Maintainer changed to Shigeyuki FUKUSHIMA Submitted by: new maintainer PR: 6486 Revision Changes Path 1.11 +10 -7 ports/japanese/perl5/Makefile 1.3 +2 -2 ports/japanese/perl5/files/md5 1.3 +4 -3 ports/japanese/perl5/patches/patch-ad 1.5 +5 -2 ports/japanese/perl5/pkg/DESCR 1.3 +249 -247 ports/japanese/perl5/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 08:47:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA22353 for cvs-all-outgoing; Mon, 4 May 1998 08:47:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA22341; Mon, 4 May 1998 08:47:19 -0700 (PDT) (envelope-from max@FreeBSD.org) From: Masafumi NAKANE Received: (from max@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA25659; Mon, 4 May 1998 08:44:53 -0700 (PDT) Date: Mon, 4 May 1998 08:44:53 -0700 (PDT) Message-Id: <199805041544.IAA25659@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook submitters.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk max 1998/05/04 08:44:53 PDT Modified files: handbook submitters.sgml Log: Add Shigeyuki FUKUSHIMA to the additional contributor list for his update of ports/japanese/perl5 and its maintainance. Revision Changes Path 1.182 +3 -1 doc/handbook/submitters.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 09:02:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA25101 for cvs-all-outgoing; Mon, 4 May 1998 09:02:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA25093; Mon, 4 May 1998 09:02:36 -0700 (PDT) (envelope-from nate@FreeBSD.org) From: Nate Williams Received: (from nate@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA25752; Mon, 4 May 1998 09:00:10 -0700 (PDT) Date: Mon, 4 May 1998 09:00:10 -0700 (PDT) Message-Id: <199805041600.JAA25752@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook submitters.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nate 1998/05/04 09:00:09 PDT Modified files: handbook submitters.sgml Log: - Added Ted Faber for his CardBUS controllercode of a few months back. Sorry for the delay in adding you here, and thanks for submitting the code. Revision Changes Path 1.183 +3 -1 doc/handbook/submitters.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 09:12:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA27191 for cvs-all-outgoing; Mon, 4 May 1998 09:12:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA27184; Mon, 4 May 1998 09:12:38 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA25858; Mon, 4 May 1998 09:10:11 -0700 (PDT) Date: Mon, 4 May 1998 09:10:11 -0700 (PDT) Message-Id: <199805041610.JAA25858@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data web.atoz support.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/05/04 09:10:11 PDT Modified files: data web.atoz support.sgml Log: Add project `High-precision timekeeping with FreeBSD' Submitted by: phk Revision Changes Path 1.24 +3 -1 www/data/web.atoz 1.67 +5 -4 www/data/support.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 09:21:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA28555 for cvs-all-outgoing; Mon, 4 May 1998 09:21:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA28521; Mon, 4 May 1998 09:21:26 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA25977; Mon, 4 May 1998 09:18:59 -0700 (PDT) Date: Mon, 4 May 1998 09:18:59 -0700 (PDT) Message-Id: <199805041618.JAA25977@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/awk Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/04 09:18:59 PDT Modified files: gnu/usr.bin/awk Makefile Log: Symlink awk.y to awktab.y so that the default yacc rules apply, and use the (new) default yacc rules. This is cosmetic - the special rule was good enough here because y.tab.h is not used. Don't generate y.output. Revision Changes Path 1.11 +6 -6 src/gnu/usr.bin/awk/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 09:25:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA29483 for cvs-all-outgoing; Mon, 4 May 1998 09:25:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA29454; Mon, 4 May 1998 09:24:59 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA26037; Mon, 4 May 1998 09:22:31 -0700 (PDT) Date: Mon, 4 May 1998 09:22:31 -0700 (PDT) Message-Id: <199805041622.JAA26037@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/bc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/04 09:22:31 PDT Modified files: gnu/usr.bin/bc Makefile Log: Fixed races in `make -jN' using new yacc rules. Fixed slightly wrong order of -I's in CFLAGS. FIxed the usual style bugs in DPADD and LDADD. Revision Changes Path 1.14 +5 -18 src/gnu/usr.bin/bc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 09:34:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA00800 for cvs-all-outgoing; Mon, 4 May 1998 09:34:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA00794; Mon, 4 May 1998 09:34:09 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA26159; Mon, 4 May 1998 09:31:42 -0700 (PDT) Date: Mon, 4 May 1998 09:31:42 -0700 (PDT) Message-Id: <199805041631.JAA26159@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/ld Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/04 09:31:42 PDT Modified files: gnu/usr.bin/binutils/ld Makefile Log: Fixed races in `make -jN' using new yacc rules. This also fixes plain `make' (without a previous `make depend'). Revision Changes Path 1.2 +2 -8 src/gnu/usr.bin/binutils/ld/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 09:45:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA02610 for cvs-all-outgoing; Mon, 4 May 1998 09:45:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA02603; Mon, 4 May 1998 09:45:13 -0700 (PDT) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA26269; Mon, 4 May 1998 09:42:46 -0700 (PDT) Date: Mon, 4 May 1998 09:42:46 -0700 (PDT) Message-Id: <199805041642.JAA26269@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/editors/vim5beta Makefile ports/editors/vim5beta/files md5 ports/editors/vim5beta/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/05/04 09:42:46 PDT Modified files: editors/vim5beta Makefile editors/vim5beta/files md5 editors/vim5beta/pkg PLIST Log: upgrade to 5.2b Revision Changes Path 1.26 +3 -3 ports/editors/vim5beta/Makefile 1.23 +2 -2 ports/editors/vim5beta/files/md5 1.17 +6 -0 ports/editors/vim5beta/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 10:01:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA05551 for cvs-all-outgoing; Mon, 4 May 1998 10:01:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA05527; Mon, 4 May 1998 10:01:20 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA26412; Mon, 4 May 1998 09:58:52 -0700 (PDT) Date: Mon, 4 May 1998 09:58:52 -0700 (PDT) Message-Id: <199805041658.JAA26412@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/cc/cpp Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/04 09:58:51 PDT Modified files: gnu/usr.bin/cc/cpp Makefile Log: Simplified using new yacc rules. This is cosmetic - the old rules worked with `make -jN' because they did the right things to generate cexp.h without clobbering cexp.c, and there were no missing dependencies on cexp.h because cexp.h isn't actually used. Fixed style bugs. Revision Changes Path 1.11 +5 -12 src/gnu/usr.bin/cc/cpp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 10:15:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA08983 for cvs-all-outgoing; Mon, 4 May 1998 10:15:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA08956; Mon, 4 May 1998 10:15:21 -0700 (PDT) (envelope-from dyson@FreeBSD.org) From: John Dyson Received: (from dyson@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA26512; Mon, 4 May 1998 10:12:54 -0700 (PDT) Date: Mon, 4 May 1998 10:12:54 -0700 (PDT) Message-Id: <199805041712.KAA26512@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern sysv_shm.c src/sys/vm vm_map.c vm_object.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dyson 1998/05/04 10:12:54 PDT Modified files: sys/kern sysv_shm.c sys/vm vm_map.c vm_object.h Log: Fix the shm panic. I mistakenly used the shadow_count to keep the object from being split, and instead added an OBJ_NOSPLIT. Revision Changes Path 1.37 +2 -3 src/sys/kern/sysv_shm.c 1.125 +3 -3 src/sys/vm/vm_map.c 1.49 +2 -1 src/sys/vm/vm_object.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 10:46:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA15903 for cvs-all-outgoing; Mon, 4 May 1998 10:46:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA15849; Mon, 4 May 1998 10:46:14 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA26636; Mon, 4 May 1998 10:43:47 -0700 (PDT) Date: Mon, 4 May 1998 10:43:47 -0700 (PDT) Message-Id: <199805041743.KAA26636@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/mk bsd.prog.mk Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/04 10:43:46 PDT Modified files: share/mk bsd.prog.mk Log: Fudge local variables better in the yacc rules so that multiple yacc sources are handled properly. Revision Changes Path 1.69 +7 -4 src/share/mk/bsd.prog.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 10:46:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA15913 for cvs-all-outgoing; Mon, 4 May 1998 10:46:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA15891; Mon, 4 May 1998 10:46:18 -0700 (PDT) (envelope-from dyson@FreeBSD.org) From: John Dyson Received: (from dyson@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA26653; Mon, 4 May 1998 10:43:50 -0700 (PDT) Date: Mon, 4 May 1998 10:43:50 -0700 (PDT) Message-Id: <199805041743.KAA26653@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/ufs/ffs ffs_inode.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dyson 1998/05/04 10:43:50 PDT Modified files: sys/ufs/ffs ffs_inode.c Log: Correct an error that I made where the vtruncbuf was changed back to vinvalbuf, but I incorrectly added the "V_SAVE|V_SAVEMETA" flags. Submitted by: Luoqi Chen Revision Changes Path 1.42 +2 -2 src/sys/ufs/ffs/ffs_inode.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 10:55:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA17750 for cvs-all-outgoing; Mon, 4 May 1998 10:55:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA17731; Mon, 4 May 1998 10:54:59 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA26742; Mon, 4 May 1998 10:52:32 -0700 (PDT) Date: Mon, 4 May 1998 10:52:32 -0700 (PDT) Message-Id: <199805041752.KAA26742@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/04 10:52:32 PDT Modified files: . modules Log: r --> ports/math/r Revision Changes Path 1.1979 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 10:56:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA18080 for cvs-all-outgoing; Mon, 4 May 1998 10:56:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA18009; Mon, 4 May 1998 10:56:03 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA26756; Mon, 4 May 1998 10:53:36 -0700 (PDT) Date: Mon, 4 May 1998 10:53:36 -0700 (PDT) Message-Id: <199805041753.KAA26756@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/math/r - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/04 10:53:36 PDT ports/math/r - Imported sources Update of /home/ncvs/ports/math/r In directory freefall.freebsd.org:/d/users/mph/R Log Message: Import of R, a language for mathematical programming. PR: 6503 Submitted by: Maurice Castro Status: Vendor Tag: CASTRO Release Tags: v0_61_2 N ports/math/r/Makefile I ports/math/r/CVS N ports/math/r/files/R N ports/math/r/files/md5 N ports/math/r/patches/patch-aa N ports/math/r/patches/patch-ab N ports/math/r/patches/patch-ac N ports/math/r/pkg/PLIST N ports/math/r/pkg/COMMENT N ports/math/r/pkg/DESCR No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 10:58:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA18664 for cvs-all-outgoing; Mon, 4 May 1998 10:58:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA18656; Mon, 4 May 1998 10:58:12 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA26868; Mon, 4 May 1998 10:55:45 -0700 (PDT) Date: Mon, 4 May 1998 10:55:45 -0700 (PDT) Message-Id: <199805041755.KAA26868@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/math Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/04 10:55:44 PDT Modified files: math Makefile Log: Activate r. Revision Changes Path 1.43 +2 -1 ports/math/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 10:58:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA18842 for cvs-all-outgoing; Mon, 4 May 1998 10:58:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA18826; Mon, 4 May 1998 10:58:51 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA26924; Mon, 4 May 1998 10:56:23 -0700 (PDT) Date: Mon, 4 May 1998 10:56:23 -0700 (PDT) Message-Id: <199805041756.KAA26924@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/gdb/gdb Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/04 10:56:23 PDT Modified files: gnu/usr.bin/gdb/gdb Makefile Log: Simplified using new yacc rules. This is cosmetic - the old rules worked because .ORDER prevented problems from concurrent generation of multiple parsers (and their headers), and there were no missing dependencies because the generated headers were not actually used. Revision Changes Path 1.34 +4 -5 src/gnu/usr.bin/gdb/gdb/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 11:02:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA19784 for cvs-all-outgoing; Mon, 4 May 1998 11:02:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA19700; Mon, 4 May 1998 11:02:25 -0700 (PDT) (envelope-from guido@FreeBSD.org) From: Guido van Rooij Received: (from guido@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA26949; Mon, 4 May 1998 10:59:56 -0700 (PDT) Date: Mon, 4 May 1998 10:59:56 -0700 (PDT) Message-Id: <199805041759.KAA26949@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/netinet tcp_input.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk guido 1998/05/04 10:59:56 PDT Modified files: sys/netinet tcp_input.c Log: Refuse accellerated opens on listening sockets that have not set the TCP_NOPUSH socket option. This disables TAO for those services that do not know about T/TCP. Reviewed by: Garrett Wollman Submitted by: Peter Wemm Revision Changes Path 1.75 +4 -2 src/sys/netinet/tcp_input.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 11:16:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA22677 for cvs-all-outgoing; Mon, 4 May 1998 11:16:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA22592; Mon, 4 May 1998 11:16:24 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA27399; Mon, 4 May 1998 11:13:55 -0700 (PDT) Date: Mon, 4 May 1998 11:13:55 -0700 (PDT) Message-Id: <199805041813.LAA27399@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/tar Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/04 11:13:55 PDT Modified files: gnu/usr.bin/tar Makefile Log: Don't add y.tab.h to CLEANFILES, since this would now be done centrally if y.tab.h were generated. Don't generate y.tab.h, since it is not used. Revision Changes Path 1.10 +1 -1 src/gnu/usr.bin/tar/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 11:22:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA24301 for cvs-all-outgoing; Mon, 4 May 1998 11:22:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA24283; Mon, 4 May 1998 11:22:47 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA27444; Mon, 4 May 1998 11:20:20 -0700 (PDT) Date: Mon, 4 May 1998 11:20:20 -0700 (PDT) Message-Id: <199805041820.LAA27444@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-libexec@FreeBSD.ORG Subject: cvs commit: src/libexec/ftpd Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/04 11:20:19 PDT Modified files: libexec/ftpd Makefile Log: Simplified by using new yacc rules and by not generating y.tab.h. Revision Changes Path 1.24 +3 -4 src/libexec/ftpd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 11:42:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA27494 for cvs-all-outgoing; Mon, 4 May 1998 11:42:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA27473; Mon, 4 May 1998 11:42:49 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA27520; Mon, 4 May 1998 11:40:21 -0700 (PDT) Date: Mon, 4 May 1998 11:40:21 -0700 (PDT) Message-Id: <199805041840.LAA27520@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/compile_et Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/04 11:40:21 PDT Modified files: usr.bin/compile_et Makefile Log: Simplified using new yacc rules and by not generating y.tab.h. The lex source is still handled bogusly. Revision Changes Path 1.9 +4 -3 src/usr.bin/compile_et/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 11:43:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA27633 for cvs-all-outgoing; Mon, 4 May 1998 11:43:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA27619; Mon, 4 May 1998 11:43:45 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA27551; Mon, 4 May 1998 11:41:18 -0700 (PDT) Date: Mon, 4 May 1998 11:41:18 -0700 (PDT) Message-Id: <199805041841.LAA27551@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-bin@FreeBSD.ORG Subject: cvs commit: src/bin/expr Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/04 11:41:17 PDT Modified files: bin/expr Makefile Log: Simplified using new yacc rules and by not generating y.tab.h. Revision Changes Path 1.13 +4 -10 src/bin/expr/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 12:12:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA02823 for cvs-all-outgoing; Mon, 4 May 1998 12:12:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA02810; Mon, 4 May 1998 12:12:48 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA27634; Mon, 4 May 1998 12:10:21 -0700 (PDT) Date: Mon, 4 May 1998 12:10:21 -0700 (PDT) Message-Id: <199805041910.MAA27634@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/lex Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/04 12:10:20 PDT Modified files: usr.bin/lex Makefile Log: Simplified by using new yacc rules. The new lex rules can't be used here, at least without ifdefs for the bootstrap. Revision Changes Path 1.12 +3 -13 src/usr.bin/lex/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 12:28:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA05367 for cvs-all-outgoing; Mon, 4 May 1998 12:28:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA05341; Mon, 4 May 1998 12:28:11 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA27693; Mon, 4 May 1998 12:25:42 -0700 (PDT) Date: Mon, 4 May 1998 12:25:42 -0700 (PDT) Message-Id: <199805041925.MAA27693@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/rdist Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/04 12:25:42 PDT Modified files: usr.bin/rdist Makefile Log: Simplified by using new yacc rules and by not generating y.tab.h. Revision Changes Path 1.5 +3 -3 src/usr.bin/rdist/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 12:42:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA07900 for cvs-all-outgoing; Mon, 4 May 1998 12:42:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA07856; Mon, 4 May 1998 12:42:42 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA27771; Mon, 4 May 1998 12:40:13 -0700 (PDT) Date: Mon, 4 May 1998 12:40:13 -0700 (PDT) Message-Id: <199805041940.MAA27771@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/amd/fsinfo Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/04 12:40:13 PDT Modified files: usr.sbin/amd/fsinfo Makefile Log: Simplified by using new lex and yacc rules. Revision Changes Path 1.7 +2 -17 src/usr.sbin/amd/fsinfo/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 12:53:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA09660 for cvs-all-outgoing; Mon, 4 May 1998 12:53:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA09637; Mon, 4 May 1998 12:53:49 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA27816; Mon, 4 May 1998 12:51:21 -0700 (PDT) Date: Mon, 4 May 1998 12:51:21 -0700 (PDT) Message-Id: <199805041951.MAA27816@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ipsend Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/04 12:51:21 PDT Modified files: usr.sbin/ipsend Makefile Log: Simplified by using new yacc rules. Revision Changes Path 1.4 +1 -3 src/usr.sbin/ipsend/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 12:57:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA10608 for cvs-all-outgoing; Mon, 4 May 1998 12:57:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA10576; Mon, 4 May 1998 12:57:25 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA27849; Mon, 4 May 1998 12:54:57 -0700 (PDT) Date: Mon, 4 May 1998 12:54:57 -0700 (PDT) Message-Id: <199805041954.MAA27849@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/mrouted/mrouted Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/04 12:54:56 PDT Modified files: usr.sbin/mrouted/mrouted Makefile Log: Simplified by using new yacc rules. Revision Changes Path 1.9 +1 -2 src/usr.sbin/mrouted/mrouted/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 13:02:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA11674 for cvs-all-outgoing; Mon, 4 May 1998 13:02:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA11654; Mon, 4 May 1998 13:02:43 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA27894; Mon, 4 May 1998 13:00:15 -0700 (PDT) Date: Mon, 4 May 1998 13:00:15 -0700 (PDT) Message-Id: <199805042000.NAA27894@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/nslookup Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/04 13:00:15 PDT Modified files: usr.sbin/nslookup Makefile Log: Simplified by using new lex rules. Revision Changes Path 1.7 +2 -4 src/usr.sbin/nslookup/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 13:11:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA13790 for cvs-all-outgoing; Mon, 4 May 1998 13:11:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA13763; Mon, 4 May 1998 13:11:35 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA28101; Mon, 4 May 1998 13:09:06 -0700 (PDT) Date: Mon, 4 May 1998 13:09:06 -0700 (PDT) Message-Id: <199805042009.NAA28101@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-bin@FreeBSD.ORG, cvs-games@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/bin/sh Makefile src/games/atc Makefile src/gnu/usr.bin/perl/x2p Makefile src/usr.bin/colldef Makefile src/usr.bin/mk_cmds Makefile src/usr.bin/mklocale Makefile src/usr.bin/xlint/lint1 Makefile src/usr.sbin/config Makefile ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/04 13:09:06 PDT Modified files: bin/sh Makefile games/atc Makefile gnu/usr.bin/perl/x2p Makefile usr.bin/colldef Makefile usr.bin/mk_cmds Makefile usr.bin/mklocale Makefile usr.bin/xlint/lint1 Makefile usr.sbin/config Makefile usr.sbin/pcvt/kbdio Makefile usr.sbin/pcvt/vgaio Makefile Log: Fixed races in `make -jN' using new yacc rules. Revision Changes Path 1.25 +4 -8 src/bin/sh/Makefile 1.10 +1 -2 src/games/atc/Makefile 1.12 +2 -2 src/gnu/usr.bin/perl/x2p/Makefile 1.12 +2 -4 src/usr.bin/colldef/Makefile 1.6 +2 -6 src/usr.bin/mk_cmds/Makefile 1.18 +2 -2 src/usr.bin/mklocale/Makefile 1.5 +2 -6 src/usr.bin/xlint/lint1/Makefile 1.18 +3 -5 src/usr.sbin/config/Makefile 1.6 +1 -2 src/usr.sbin/pcvt/kbdio/Makefile 1.7 +1 -2 src/usr.sbin/pcvt/vgaio/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 13:24:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA16854 for cvs-all-outgoing; Mon, 4 May 1998 13:24:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.95.76.54]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA16804; Mon, 4 May 1998 13:24:32 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.8.8/8.8.5) id NAA22519; Mon, 4 May 1998 13:27:32 -0700 (PDT) From: Steve Kargl Message-Id: <199805042027.NAA22519@troutmask.apl.washington.edu> Subject: Re: cvs commit: ports/math/r - Imported sources In-Reply-To: <199805041753.KAA26756@freefall.freebsd.org> from Matthew Hunt at "May 4, 98 10:53:36 am" To: mph@FreeBSD.ORG (Matthew Hunt) Date: Mon, 4 May 1998 13:27:32 -0700 (PDT) Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk According to Matthew Hunt: > mph 1998/05/04 10:53:36 PDT > > ports/math/r - Imported sources > Update of /home/ncvs/ports/math/r > In directory freefall.freebsd.org:/d/users/mph/R > > Log Message: > Import of R, a language for mathematical programming. > If this is a programming language similar to Fortran, then shouldn't this be be under ports/lang? -- Steve finger kargl@troutmask.apl.washington.edu http://troutmask.apl.washington.edu/~clesceri/kargl.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 13:26:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA17184 for cvs-all-outgoing; Mon, 4 May 1998 13:26:20 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA17097; Mon, 4 May 1998 13:26:02 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA28669; Mon, 4 May 1998 13:23:33 -0700 (PDT) Date: Mon, 4 May 1998 13:23:33 -0700 (PDT) Message-Id: <199805042023.NAA28669@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/graphics/ImageMagick Makefile ports/www/arena Makefile ports/www/chimera2 Makefile ports/graphics/gimp-devel Makefile ports/graphics/hpscan Makefile ports/comms/hylafax Makefile ports/graphics/imlib Makefile ports/graphics/jpeg/patches ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/05/04 13:23:33 PDT Modified files: graphics/ImageMagick Makefile www/arena Makefile www/chimera2 Makefile graphics/gimp-devel Makefile graphics/hpscan Makefile comms/hylafax Makefile graphics/imlib Makefile graphics/jpeg/patches patch-ab x11/kdebase Makefile games/kdegames Makefile graphics/kdegraphics Makefile x11/kdelibs Makefile audio/kdemultimedia Makefile net/kdenetwork Makefile misc/kdeutils Makefile news/knews Makefile comms/kpilot Makefile graphics/tiff34 Makefile x11/tkstep80 Makefile print/transfig Makefile x11/windowmaker Makefile editors/xemacs Makefile editors/xemacs20 Makefile graphics/xfig Makefile graphics/xpaint Makefile graphics/xv Makefile Log: Change JPEG shared library number to 9. This is to make sure that everyone installs the version of the port that uses shared library number 9 and the LIBRARY_VERSION set to the default. Normally this is against our policy (bumping the version number for minor things), however due to the major problems caused with the upgrade, Satoshi and I decided that this was best. Approved by: asami Revision Changes Path 1.38 +2 -2 ports/graphics/ImageMagick/Makefile 1.10 +2 -2 ports/www/arena/Makefile 1.15 +2 -2 ports/www/chimera2/Makefile 1.30 +2 -2 ports/graphics/gimp-devel/Makefile 1.11 +2 -2 ports/graphics/hpscan/Makefile 1.14 +2 -2 ports/comms/hylafax/Makefile 1.20 +2 -2 ports/graphics/imlib/Makefile 1.2 +1 -1 ports/graphics/jpeg/patches/patch-ab 1.12 +2 -2 ports/x11/kdebase/Makefile 1.8 +2 -2 ports/games/kdegames/Makefile 1.5 +2 -2 ports/graphics/kdegraphics/Makefile 1.11 +2 -2 ports/x11/kdelibs/Makefile 1.8 +2 -2 ports/audio/kdemultimedia/Makefile 1.12 +2 -2 ports/net/kdenetwork/Makefile 1.12 +2 -2 ports/misc/kdeutils/Makefile 1.15 +2 -2 ports/news/knews/Makefile 1.4 +2 -2 ports/comms/kpilot/Makefile 1.8 +2 -2 ports/graphics/tiff34/Makefile 1.8 +2 -2 ports/x11/tkstep80/Makefile 1.18 +2 -2 ports/print/transfig/Makefile 1.10 +2 -2 ports/x11/windowmaker/Makefile 1.34 +2 -2 ports/editors/xemacs/Makefile 1.14 +2 -2 ports/editors/xemacs20/Makefile 1.19 +2 -2 ports/graphics/xfig/Makefile 1.21 +2 -2 ports/graphics/xpaint/Makefile 1.19 +2 -2 ports/graphics/xv/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 13:31:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA18255 for cvs-all-outgoing; Mon, 4 May 1998 13:31:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mph124.rh.psu.edu (mph@MPH124.rh.psu.edu [128.118.126.83]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA18243; Mon, 4 May 1998 13:31:35 -0700 (PDT) (envelope-from mph@mph124.rh.psu.edu) Received: (from mph@localhost) by mph124.rh.psu.edu (8.8.8/8.8.8) id QAA25359; Mon, 4 May 1998 16:31:19 -0400 (EDT) (envelope-from mph) Message-ID: <19980504163118.A25290@mph124.rh.psu.edu> Date: Mon, 4 May 1998 16:31:18 -0400 From: Matthew Hunt To: Steve Kargl Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/math/r - Imported sources Mail-Followup-To: Steve Kargl , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG References: <199805041753.KAA26756@freefall.freebsd.org> <199805042027.NAA22519@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199805042027.NAA22519@troutmask.apl.washington.edu>; from Steve Kargl on Mon, May 04, 1998 at 01:27:32PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Mon, May 04, 1998 at 01:27:32PM -0700, Steve Kargl wrote: > If this is a programming language similar to Fortran, > then shouldn't this be be under ports/lang? I will direct you to the message I posted to ports@freebsd.org yesterday, asking if anyone had an opinion one way or another, and the lack of responses I got. I guess everyone's busy arguing about ijb. My thinking is that Matlab is also used for mathematical programming, but we put octave in math. R is, as far as I saw, purely intended for doing math, whereas Fortran is a general purpose language, and putting it in math makes no more sense than putting it in astro, cad, or biology. -- Matthew Hunt * Stay close to the Vorlon. http://mph124.rh.psu.edu/~mph/pgp.key for PGP public key 0x67203349. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 14:13:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA26122 for cvs-all-outgoing; Mon, 4 May 1998 14:13:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA26106; Mon, 4 May 1998 14:13:25 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA28860; Mon, 4 May 1998 14:10:57 -0700 (PDT) Date: Mon, 4 May 1998 14:10:57 -0700 (PDT) Message-Id: <199805042110.OAA28860@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils Makefile.inc0 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 14:10:57 PDT Modified files: gnu/usr.bin/binutils Makefile.inc0 Log: Add makefile support for cross-architectures. Allow CROSS_TOOLS to be defined (in /etc/make.conf, say) and set to the additional architectures that need to be compiled in. So on alpha I set CROSS_TOOLS = i386. On i386 you can't build alpha due to lack of 64-bit support on 32-bit architectures, but that's a GNU problem. This change relies on makefiles in the binutils sub-directories having the extension defined in the CROSS_TOOLS, instead of those makefiles being selected based on the host architecture. Revision Changes Path 1.4 +7 -3 src/gnu/usr.bin/binutils/Makefile.inc0 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 14:16:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA26814 for cvs-all-outgoing; Mon, 4 May 1998 14:16:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA26789; Mon, 4 May 1998 14:16:23 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA28897; Mon, 4 May 1998 14:13:51 -0700 (PDT) Date: Mon, 4 May 1998 14:13:51 -0700 (PDT) Message-Id: <199805042113.OAA28897@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils Makefile.inc Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 14:13:50 PDT Modified files: gnu/usr.bin/binutils Makefile.inc Log: Since the makefiles below binutils with the architecture extension are now included according to the cross-architecture support required, default the BINDIR for i386 to /usr/libexec/elf here instead of in all the i386 specific makefiles. For all other architectures, BINDIR is just /usr/bin. Revision Changes Path 1.2 +5 -1 src/gnu/usr.bin/binutils/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 14:19:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA27518 for cvs-all-outgoing; Mon, 4 May 1998 14:19:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA27483; Mon, 4 May 1998 14:19:18 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA28969; Mon, 4 May 1998 14:16:47 -0700 (PDT) Date: Mon, 4 May 1998 14:16:47 -0700 (PDT) Message-Id: <199805042116.OAA28969@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/libbfd Makefile Makefile.alpha Makefile.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 14:16:47 PDT Modified files: gnu/usr.bin/binutils/libbfd Makefile Makefile.alpha Makefile.i386 Log: Add cross-architecture support. Revision Changes Path 1.4 +21 -1 src/gnu/usr.bin/binutils/libbfd/Makefile 1.2 +6 -16 src/gnu/usr.bin/binutils/libbfd/Makefile.alpha 1.4 +7 -7 src/gnu/usr.bin/binutils/libbfd/Makefile.i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 14:21:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA28006 for cvs-all-outgoing; Mon, 4 May 1998 14:21:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA27955; Mon, 4 May 1998 14:21:18 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA29014; Mon, 4 May 1998 14:18:48 -0700 (PDT) Date: Mon, 4 May 1998 14:18:48 -0700 (PDT) Message-Id: <199805042118.OAA29014@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/libopcodes Makefile.alpha Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 14:18:48 PDT Modified files: gnu/usr.bin/binutils/libopcodes Makefile.alpha Log: Remote i386 cross-architecture support. It's now configurable, and off by default. Revision Changes Path 1.2 +3 -3 src/gnu/usr.bin/binutils/libopcodes/Makefile.alpha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 14:24:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA28565 for cvs-all-outgoing; Mon, 4 May 1998 14:24:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA28484; Mon, 4 May 1998 14:23:51 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA29065; Mon, 4 May 1998 14:21:18 -0700 (PDT) Date: Mon, 4 May 1998 14:21:18 -0700 (PDT) Message-Id: <199805042121.OAA29065@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/libbinutils Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 14:21:18 PDT Modified files: gnu/usr.bin/binutils/libbinutils Makefile Log: Evaluate the TARGET from the architecture. We'll assume that FREEBSD is ELF from here on. Revision Changes Path 1.4 +2 -2 src/gnu/usr.bin/binutils/libbinutils/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 14:26:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA29119 for cvs-all-outgoing; Mon, 4 May 1998 14:26:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA29005; Mon, 4 May 1998 14:25:58 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA29111; Mon, 4 May 1998 14:23:25 -0700 (PDT) Date: Mon, 4 May 1998 14:23:25 -0700 (PDT) Message-Id: <199805042123.OAA29111@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/addr2line Makefile.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 14:23:24 PDT Removed files: gnu/usr.bin/binutils/addr2line Makefile.i386 Log: BIDIR is now specified in a single place. There are no cross-architecture issues with this utility. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 14:28:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA29611 for cvs-all-outgoing; Mon, 4 May 1998 14:28:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA29507; Mon, 4 May 1998 14:28:01 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA29155; Mon, 4 May 1998 14:25:30 -0700 (PDT) Date: Mon, 4 May 1998 14:25:30 -0700 (PDT) Message-Id: <199805042125.OAA29155@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/c++filt Makefile.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 14:25:30 PDT Removed files: gnu/usr.bin/binutils/c++filt Makefile.i386 Log: BINDIR is now specified in a single place. There are no cross-architecture issues with this utility. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 14:30:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA00260 for cvs-all-outgoing; Mon, 4 May 1998 14:30:48 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA29987; Mon, 4 May 1998 14:29:50 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA29209; Mon, 4 May 1998 14:27:17 -0700 (PDT) Date: Mon, 4 May 1998 14:27:17 -0700 (PDT) Message-Id: <199805042127.OAA29209@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/ar Makefile.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 14:27:17 PDT Removed files: gnu/usr.bin/binutils/ar Makefile.i386 Log: BINDIR is now specified in a single place. There are no cross-architecture issues with this utility. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 14:33:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA00781 for cvs-all-outgoing; Mon, 4 May 1998 14:33:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA00588; Mon, 4 May 1998 14:32:33 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA29282; Mon, 4 May 1998 14:29:54 -0700 (PDT) Date: Mon, 4 May 1998 14:29:54 -0700 (PDT) Message-Id: <199805042129.OAA29282@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/ld Makefile.alpha Makefile.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 14:29:54 PDT Modified files: gnu/usr.bin/binutils/ld Makefile.alpha Makefile.i386 Log: Add cross-architecture support. Revision Changes Path 1.2 +11 -8 src/gnu/usr.bin/binutils/ld/Makefile.alpha 1.3 +9 -7 src/gnu/usr.bin/binutils/ld/Makefile.i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 14:41:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA02935 for cvs-all-outgoing; Mon, 4 May 1998 14:41:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA02848; Mon, 4 May 1998 14:41:17 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA29355; Mon, 4 May 1998 14:38:47 -0700 (PDT) Date: Mon, 4 May 1998 14:38:47 -0700 (PDT) Message-Id: <199805042138.OAA29355@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/ld Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 14:38:47 PDT Modified files: gnu/usr.bin/binutils/ld Makefile Log: Work out the list of emulations based on the cross-architectures defined. The TARGET is now set from an included makefile. Revision Changes Path 1.3 +14 -3 src/gnu/usr.bin/binutils/ld/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 14:43:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA03368 for cvs-all-outgoing; Mon, 4 May 1998 14:43:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA03225; Mon, 4 May 1998 14:42:39 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA29403; Mon, 4 May 1998 14:40:09 -0700 (PDT) Date: Mon, 4 May 1998 14:40:09 -0700 (PDT) Message-Id: <199805042140.OAA29403@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/nm Makefile.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 14:40:09 PDT Removed files: gnu/usr.bin/binutils/nm Makefile.i386 Log: BINDIR is now specified in a single place. There are no cross-architecture issues with this utility. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 14:44:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA03768 for cvs-all-outgoing; Mon, 4 May 1998 14:44:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA03643; Mon, 4 May 1998 14:44:01 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA29443; Mon, 4 May 1998 14:41:31 -0700 (PDT) Date: Mon, 4 May 1998 14:41:31 -0700 (PDT) Message-Id: <199805042141.OAA29443@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/objcopy Makefile.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 14:41:31 PDT Removed files: gnu/usr.bin/binutils/objcopy Makefile.i386 Log: BINDIR is now specified in a single place. There are no cross-architecture issues with this utility. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 14:45:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA04162 for cvs-all-outgoing; Mon, 4 May 1998 14:45:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA04085; Mon, 4 May 1998 14:45:13 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA29503; Mon, 4 May 1998 14:42:43 -0700 (PDT) Date: Mon, 4 May 1998 14:42:43 -0700 (PDT) Message-Id: <199805042142.OAA29503@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp mp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/05/04 14:42:42 PDT Modified files: (Branch: MP) usr.sbin/ppp mp.c Log: Allow a 1000 fragment sliding window when placing a new fragment in our inbound multilnk queue. This fixes wrapping problems when something arrives out-of-sequence. Revision Changes Path 1.1.2.23 +10 -3 src/usr.sbin/ppp/Attic/mp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 14:45:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA04291 for cvs-all-outgoing; Mon, 4 May 1998 14:45:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA04210; Mon, 4 May 1998 14:45:36 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA29537; Mon, 4 May 1998 14:43:06 -0700 (PDT) Date: Mon, 4 May 1998 14:43:06 -0700 (PDT) Message-Id: <199805042143.OAA29537@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/objdump Makefile.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 14:43:06 PDT Removed files: gnu/usr.bin/binutils/objdump Makefile.i386 Log: BINDIR is now specified in a single place. There are no cross-architecture issues with this utility. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 14:47:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA04794 for cvs-all-outgoing; Mon, 4 May 1998 14:47:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA04696; Mon, 4 May 1998 14:47:09 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA29593; Mon, 4 May 1998 14:44:37 -0700 (PDT) Date: Mon, 4 May 1998 14:44:37 -0700 (PDT) Message-Id: <199805042144.OAA29593@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/ranlib Makefile.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 14:44:37 PDT Removed files: gnu/usr.bin/binutils/ranlib Makefile.i386 Log: BINDIR is now specified in a single place. There are no cross-architecture issues with this utility. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 14:51:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA05980 for cvs-all-outgoing; Mon, 4 May 1998 14:51:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA05864; Mon, 4 May 1998 14:51:16 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA29651; Mon, 4 May 1998 14:48:44 -0700 (PDT) Date: Mon, 4 May 1998 14:48:44 -0700 (PDT) Message-Id: <199805042148.OAA29651@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/size Makefile.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 14:48:44 PDT Removed files: gnu/usr.bin/binutils/size Makefile.i386 Log: BINDIR is now specified in a single place. There are no cross-architecture issues with this utility. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 14:53:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA06340 for cvs-all-outgoing; Mon, 4 May 1998 14:53:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA06246; Mon, 4 May 1998 14:52:52 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA29700; Mon, 4 May 1998 14:50:20 -0700 (PDT) Date: Mon, 4 May 1998 14:50:20 -0700 (PDT) Message-Id: <199805042150.OAA29700@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/strings Makefile.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 14:50:20 PDT Removed files: gnu/usr.bin/binutils/strings Makefile.i386 Log: BINDIR is now specified in a single place. There are no cross-architecture issues with this utility. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 14:54:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA06709 for cvs-all-outgoing; Mon, 4 May 1998 14:54:48 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA06571; Mon, 4 May 1998 14:54:06 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA29739; Mon, 4 May 1998 14:51:33 -0700 (PDT) Date: Mon, 4 May 1998 14:51:33 -0700 (PDT) Message-Id: <199805042151.OAA29739@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/strip Makefile.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 14:51:33 PDT Removed files: gnu/usr.bin/binutils/strip Makefile.i386 Log: BINDIR is now specified in a single place. There are no cross-architecture issues with this utility. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 15:04:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA09227 for cvs-all-outgoing; Mon, 4 May 1998 15:04:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA09098; Mon, 4 May 1998 15:04:00 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA29832; Mon, 4 May 1998 15:01:28 -0700 (PDT) Date: Mon, 4 May 1998 15:01:28 -0700 (PDT) Message-Id: <199805042201.PAA29832@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/as Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 15:01:28 PDT Modified files: gnu/usr.bin/binutils/as Makefile Log: Add support for cross-architecture gases. Since the GNU code doesn't support more than one architecture at a time, build as from the default for the host and if CROSS_TOOLS defines other architectures, build them as as_${arch} Revision Changes Path 1.3 +6 -19 src/gnu/usr.bin/binutils/as/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 15:05:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA09776 for cvs-all-outgoing; Mon, 4 May 1998 15:05:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA09680; Mon, 4 May 1998 15:05:32 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA29865; Mon, 4 May 1998 15:03:01 -0700 (PDT) Date: Mon, 4 May 1998 15:03:01 -0700 (PDT) Message-Id: <199805042203.PAA29865@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/as Makefile.alpha Makefile.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 15:03:01 PDT Removed files: gnu/usr.bin/binutils/as Makefile.alpha Makefile.i386 Log: Support cross-architectures using sub-directories. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 15:07:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA10372 for cvs-all-outgoing; Mon, 4 May 1998 15:07:48 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA10262; Mon, 4 May 1998 15:07:29 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA29914; Mon, 4 May 1998 15:04:58 -0700 (PDT) Date: Mon, 4 May 1998 15:04:58 -0700 (PDT) Message-Id: <199805042204.PAA29914@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/as/as_alpha Makefile config.h obj-format.h targ-cpu.h targ-env.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 15:04:57 PDT Added files: gnu/usr.bin/binutils/as/as_alpha Makefile config.h obj-format.h targ-cpu.h targ-env.h Log: Alpha gas config files. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 15:09:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA10776 for cvs-all-outgoing; Mon, 4 May 1998 15:09:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA10638; Mon, 4 May 1998 15:08:28 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA29958; Mon, 4 May 1998 15:05:57 -0700 (PDT) Date: Mon, 4 May 1998 15:05:57 -0700 (PDT) Message-Id: <199805042205.PAA29958@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/as/as_i386 Makefile config.h obj-format.h targ-cpu.h targ-env.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 15:05:57 PDT Added files: gnu/usr.bin/binutils/as/as_i386 Makefile config.h obj-format.h targ-cpu.h targ-env.h Log: i386 gas config files. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 15:12:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA11709 for cvs-all-outgoing; Mon, 4 May 1998 15:12:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA11582; Mon, 4 May 1998 15:11:42 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA00131; Mon, 4 May 1998 15:09:11 -0700 (PDT) Date: Mon, 4 May 1998 15:09:11 -0700 (PDT) Message-Id: <199805042209.PAA00131@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/as/alpha config.h obj-format.h targ-cpu.h targ-env.h src/gnu/usr.bin/binutils/as/i386 config.h obj-format.h targ-cpu.h targ-env.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/04 15:09:10 PDT Removed files: gnu/usr.bin/binutils/as/alpha config.h obj-format.h targ-cpu.h targ-env.h gnu/usr.bin/binutils/as/i386 config.h obj-format.h targ-cpu.h targ-env.h Log: Support cross architectures by using specific directories instead of the ones that match the host. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 15:41:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA18696 for cvs-all-outgoing; Mon, 4 May 1998 15:41:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA18677; Mon, 4 May 1998 15:41:33 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA00210; Mon, 4 May 1998 15:26:57 -0700 (PDT) Date: Mon, 4 May 1998 15:26:57 -0700 (PDT) Message-Id: <199805042226.PAA00210@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/what what.1 what.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/05/04 15:26:57 PDT Modified files: usr.bin/what what.1 what.c Log: Make compatible with standard what command: Implement -s option Keep going if a file is not found Append ':' to printed filenames Include backslash in terminal characters Make exit status dependent on a match having been found Revise manpage accordingly Revision Changes Path 1.9 +23 -19 src/usr.bin/what/what.1 1.4 +31 -8 src/usr.bin/what/what.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 16:19:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA25972 for cvs-all-outgoing; Mon, 4 May 1998 16:19:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA25951; Mon, 4 May 1998 16:19:22 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA00444; Mon, 4 May 1998 16:16:52 -0700 (PDT) Date: Mon, 4 May 1998 16:16:52 -0700 (PDT) Message-Id: <199805042316.QAA00444@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/stdlib getopt.3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/05/04 16:16:52 PDT Modified files: lib/libc/stdlib getopt.3 Log: Fix a few nits in quoted code fragments and elsewhere. Revision Changes Path 1.7 +4 -5 src/lib/libc/stdlib/getopt.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 17:14:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA06101 for cvs-all-outgoing; Mon, 4 May 1998 17:14:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA06093; Mon, 4 May 1998 17:14:31 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA00635; Mon, 4 May 1998 17:12:02 -0700 (PDT) Date: Mon, 4 May 1998 17:12:02 -0700 (PDT) Message-Id: <199805050012.RAA00635@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-libexec@FreeBSD.ORG Subject: cvs commit: src/libexec/mknetid mknetid.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/05/04 17:12:02 PDT Modified files: libexec/mknetid mknetid.8 Log: Fix typo. Pointed out by: Junji SAKAI PR 5621 Revision Changes Path 1.6 +2 -2 src/libexec/mknetid/mknetid.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 17:31:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA09269 for cvs-all-outgoing; Mon, 4 May 1998 17:31:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA09186; Mon, 4 May 1998 17:31:28 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA00795; Mon, 4 May 1998 17:28:52 -0700 (PDT) Date: Mon, 4 May 1998 17:28:52 -0700 (PDT) Message-Id: <199805050028.RAA00795@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-libexec@FreeBSD.ORG Subject: cvs commit: src/libexec/rshd rshd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/05/04 17:28:52 PDT Modified files: libexec/rshd rshd.c Log: Replace _exit() with exit() Pointed out by: Nathan Torkington PR 5585 Revision Changes Path 1.21 +2 -2 src/libexec/rshd/rshd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 18:02:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA14881 for cvs-all-outgoing; Mon, 4 May 1998 18:02:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA14767; Mon, 4 May 1998 18:01:43 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA01004; Mon, 4 May 1998 17:59:09 -0700 (PDT) Date: Mon, 4 May 1998 17:59:09 -0700 (PDT) Message-Id: <199805050059.RAA01004@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/04 17:59:08 PDT Modified files: . modules Log: latex2html --> ports/textproc/latex2html Revision Changes Path 1.1980 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 18:03:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA15023 for cvs-all-outgoing; Mon, 4 May 1998 18:03:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA14892; Mon, 4 May 1998 18:02:22 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA01043; Mon, 4 May 1998 17:59:48 -0700 (PDT) Date: Mon, 4 May 1998 17:59:48 -0700 (PDT) Message-Id: <199805050059.RAA01043@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/textproc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/04 17:59:48 PDT Modified files: textproc Makefile Log: Activate latex2html. Revision Changes Path 1.21 +2 -1 ports/textproc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 18:04:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA15168 for cvs-all-outgoing; Mon, 4 May 1998 18:04:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA14990; Mon, 4 May 1998 18:02:59 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA01074; Mon, 4 May 1998 18:00:23 -0700 (PDT) Date: Mon, 4 May 1998 18:00:23 -0700 (PDT) Message-Id: <199805050100.SAA01074@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/textproc/latex2html - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/04 18:00:22 PDT ports/textproc/latex2html - Imported sources Update of /home/ncvs/ports/textproc/latex2html In directory freefall.freebsd.org:/d/users/mph/latex2html Log Message: Import of latex2html, which turns LaTeX into HTML PR: 6502 Submitted by: Brett Taylor Status: Vendor Tag: TAYLOR Release Tags: v98_1p1 N ports/textproc/latex2html/Makefile I ports/textproc/latex2html/CVS N ports/textproc/latex2html/files/md5 N ports/textproc/latex2html/files/local.pm N ports/textproc/latex2html/pkg/PLIST N ports/textproc/latex2html/pkg/DESCR N ports/textproc/latex2html/pkg/COMMENT No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 18:26:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA19268 for cvs-all-outgoing; Mon, 4 May 1998 18:26:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA19110; Mon, 4 May 1998 18:26:03 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA01279; Mon, 4 May 1998 18:23:27 -0700 (PDT) Date: Mon, 4 May 1998 18:23:27 -0700 (PDT) Message-Id: <199805050123.SAA01279@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/04 18:23:26 PDT Modified files: . modules Log: xabacus --> ports/games/xabacus Revision Changes Path 1.1981 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 18:28:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA19458 for cvs-all-outgoing; Mon, 4 May 1998 18:28:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA19234; Mon, 4 May 1998 18:26:42 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA01317; Mon, 4 May 1998 18:24:07 -0700 (PDT) Date: Mon, 4 May 1998 18:24:07 -0700 (PDT) Message-Id: <199805050124.SAA01317@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/04 18:24:07 PDT Modified files: games Makefile Log: Activate xabacus. Revision Changes Path 1.130 +2 -1 ports/games/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 18:28:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA19635 for cvs-all-outgoing; Mon, 4 May 1998 18:28:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA19485; Mon, 4 May 1998 18:28:08 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA01333; Mon, 4 May 1998 18:25:26 -0700 (PDT) Date: Mon, 4 May 1998 18:25:26 -0700 (PDT) Message-Id: <199805050125.SAA01333@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/xabacus - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/04 18:25:26 PDT ports/games/xabacus - Imported sources Update of /home/ncvs/ports/games/xabacus In directory freefall.freebsd.org:/d/users/mph/xabacus-5.4.4 Log Message: Import of xabacus, an abacus for X11 with Motif. PR: 6511 Submitted by: Andrey Zakhvatov Completes life of: jkh Status: Vendor Tag: ZAKHVATOV Release Tags: v5_4_4 N ports/games/xabacus/Makefile I ports/games/xabacus/CVS N ports/games/xabacus/files/md5 N ports/games/xabacus/patches/patch-aa N ports/games/xabacus/pkg/PLIST N ports/games/xabacus/pkg/COMMENT N ports/games/xabacus/pkg/DESCR No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 18:55:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA23904 for cvs-all-outgoing; Mon, 4 May 1998 18:55:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA23889; Mon, 4 May 1998 18:55:45 -0700 (PDT) (envelope-from alex@FreeBSD.org) From: Alex Nash Received: (from alex@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA01507; Mon, 4 May 1998 18:53:16 -0700 (PDT) Date: Mon, 4 May 1998 18:53:16 -0700 (PDT) Message-Id: <199805050153.SAA01507@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/at parsetime.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk alex 1998/05/04 18:53:15 PDT Modified files: usr.bin/at parsetime.c Log: Permit double digit year values to be used in the next millenium. Revision Changes Path 1.12 +17 -1 src/usr.bin/at/parsetime.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 20:04:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA07409 for cvs-all-outgoing; Mon, 4 May 1998 20:04:20 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA07324; Mon, 4 May 1998 20:04:05 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA01758; Mon, 4 May 1998 20:01:34 -0700 (PDT) Date: Mon, 4 May 1998 20:01:34 -0700 (PDT) Message-Id: <199805050301.UAA01758@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c modem.c tun.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/05/04 20:01:34 PDT Modified files: (Branch: MP) usr.sbin/ppp bundle.c modem.c tun.c Log: o Use a tun speed of 115200 for each network link. o Display the link weight in `show links', and only show throughput for open links. Revision Changes Path 1.1.2.71 +6 -4 src/usr.sbin/ppp/Attic/bundle.c 1.77.2.66 +4 -1 src/usr.sbin/ppp/modem.c 1.6.4.17 +2 -1 src/usr.sbin/ppp/tun.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 21:02:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA14660 for cvs-all-outgoing; Mon, 4 May 1998 21:02:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA14619; Mon, 4 May 1998 21:01:59 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA01914; Mon, 4 May 1998 20:59:28 -0700 (PDT) Date: Mon, 4 May 1998 20:59:28 -0700 (PDT) Message-Id: <199805050359.UAA01914@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/mk bsd.prog.mk Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/04 20:59:28 PDT Modified files: share/mk bsd.prog.mk Log: Oops, the symlink from y.tab.h doesn't work until its target exists. Revision Changes Path 1.70 +2 -2 src/share/mk/bsd.prog.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 21:02:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA14667 for cvs-all-outgoing; Mon, 4 May 1998 21:02:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA14621; Mon, 4 May 1998 21:01:59 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA01926; Mon, 4 May 1998 20:59:29 -0700 (PDT) Date: Mon, 4 May 1998 20:59:29 -0700 (PDT) Message-Id: <199805050359.UAA01926@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/textproc/latex2html Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/04 20:59:29 PDT Modified files: textproc/latex2html Makefile Log: Configure the program, then install it. Submitted by: Brett Taylor Revision Changes Path 1.2 +2 -2 ports/textproc/latex2html/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 21:07:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA15485 for cvs-all-outgoing; Mon, 4 May 1998 21:07:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA15474; Mon, 4 May 1998 21:07:39 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA01988; Mon, 4 May 1998 21:05:08 -0700 (PDT) Date: Mon, 4 May 1998 21:05:08 -0700 (PDT) Message-Id: <199805050405.VAA01988@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/print/teTeX/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/04 21:05:08 PDT Modified files: print/teTeX/pkg DESCR Log: Modify the description to make it clear that teTeX includes LaTeX and some other nice things. The PR was due to user installing teTeX then LaTeX, not realizing it was included. PR: 6515 Submitted by: Nathan Dorfman Revision Changes Path 1.5 +3 -2 ports/print/teTeX/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 22:08:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA24630 for cvs-all-outgoing; Mon, 4 May 1998 22:08:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA24623; Mon, 4 May 1998 22:08:51 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA02373; Mon, 4 May 1998 22:06:20 -0700 (PDT) Date: Mon, 4 May 1998 22:06:20 -0700 (PDT) Message-Id: <199805050506.WAA02373@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/04 22:06:20 PDT Modified files: . modules Log: ftnchek --> ports/devel/ftnchek Revision Changes Path 1.1982 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 22:10:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA24970 for cvs-all-outgoing; Mon, 4 May 1998 22:10:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA24965; Mon, 4 May 1998 22:10:20 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA02396; Mon, 4 May 1998 22:07:49 -0700 (PDT) Date: Mon, 4 May 1998 22:07:49 -0700 (PDT) Message-Id: <199805050507.WAA02396@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/ftnchek - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/04 22:07:49 PDT ports/devel/ftnchek - Imported sources Update of /home/ncvs/ports/devel/ftnchek In directory freefall.freebsd.org:/d/users/mph/ftnchek Log Message: Import of ftnchek, a lint-like program for Fortran 77. PR: 6517 Submitted by: Steven G. Kargl Status: Vendor Tag: KARGL Release Tags: v2_9_5 N ports/devel/ftnchek/Makefile I ports/devel/ftnchek/CVS N ports/devel/ftnchek/pkg/COMMENT N ports/devel/ftnchek/pkg/DESCR N ports/devel/ftnchek/pkg/PLIST N ports/devel/ftnchek/files/md5 N ports/devel/ftnchek/files/Makefile No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 22:11:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA25094 for cvs-all-outgoing; Mon, 4 May 1998 22:11:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA25086; Mon, 4 May 1998 22:11:11 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA02456; Mon, 4 May 1998 22:08:40 -0700 (PDT) Date: Mon, 4 May 1998 22:08:40 -0700 (PDT) Message-Id: <199805050508.WAA02456@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/04 22:08:40 PDT Modified files: devel Makefile Log: Activate ftnchek. Revision Changes Path 1.103 +2 -1 ports/devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 22:16:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA25763 for cvs-all-outgoing; Mon, 4 May 1998 22:16:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA25757; Mon, 4 May 1998 22:16:35 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA02544; Mon, 4 May 1998 22:14:04 -0700 (PDT) Date: Mon, 4 May 1998 22:14:04 -0700 (PDT) Message-Id: <199805050514.WAA02544@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/textproc/latex2html Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/04 22:14:04 PDT Modified files: textproc/latex2html Makefile Log: Copy the properly configured script to ${PREFIX}/bin, hopefully for real this time. :-) Submitted by: Brett Taylor Revision Changes Path 1.3 +2 -2 ports/textproc/latex2html/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 22:27:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA27320 for cvs-all-outgoing; Mon, 4 May 1998 22:27:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA27315; Mon, 4 May 1998 22:27:53 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA02597; Mon, 4 May 1998 22:25:23 -0700 (PDT) Date: Mon, 4 May 1998 22:25:23 -0700 (PDT) Message-Id: <199805050525.WAA02597@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/perl/x2p Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/04 22:25:22 PDT Modified files: gnu/usr.bin/perl/x2p Makefile Log: Don't generate a2p.h or y.tab.h from a2p.y. Neither is actually used, and building a2p.h clobbered the unrelated source file a2p.h if ${.OBJDIR} == ${.CURDIR}. Revision Changes Path 1.13 +2 -1 src/gnu/usr.bin/perl/x2p/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 23:16:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA02655 for cvs-all-outgoing; Mon, 4 May 1998 23:16:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA02646; Mon, 4 May 1998 23:16:24 -0700 (PDT) (envelope-from charnier@FreeBSD.org) From: Philippe Charnier Received: (from charnier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA02753; Mon, 4 May 1998 23:13:49 -0700 (PDT) Date: Mon, 4 May 1998 23:13:49 -0700 (PDT) Message-Id: <199805050613.XAA02753@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/mktemp mktemp.1 mktemp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk charnier 1998/05/04 23:13:48 PDT Modified files: usr.bin/mktemp mktemp.1 mktemp.c Log: Add usage() and rcsid. Remove unused #include. -Wall. Revision Changes Path 1.2 +6 -5 src/usr.bin/mktemp/mktemp.1 1.2 +22 -15 src/usr.bin/mktemp/mktemp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 23:22:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA03409 for cvs-all-outgoing; Mon, 4 May 1998 23:22:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA03391; Mon, 4 May 1998 23:22:04 -0700 (PDT) (envelope-from charnier@FreeBSD.org) From: Philippe Charnier Received: (from charnier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA02841; Mon, 4 May 1998 23:19:33 -0700 (PDT) Date: Mon, 4 May 1998 23:19:33 -0700 (PDT) Message-Id: <199805050619.XAA02841@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk charnier 1998/05/04 23:19:33 PDT Modified files: . modules Log: Add nos-tun. Revision Changes Path 1.1983 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 23:26:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA03823 for cvs-all-outgoing; Mon, 4 May 1998 23:26:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA03816; Mon, 4 May 1998 23:26:50 -0700 (PDT) (envelope-from charnier@FreeBSD.org) From: Philippe Charnier Received: (from charnier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA02899; Mon, 4 May 1998 23:24:19 -0700 (PDT) Date: Mon, 4 May 1998 23:24:19 -0700 (PDT) Message-Id: <199805050624.XAA02899@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG Subject: cvs commit: src/sbin/nos-tun nos-tun.8 nos-tun.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk charnier 1998/05/04 23:24:18 PDT Modified files: sbin/nos-tun nos-tun.8 nos-tun.c Log: Add usage() and rcsid. Getopt() returns -1 not EOF. Remove unused #includes. Use .An/.Aq in man page. Revision Changes Path 1.2 +18 -12 src/sbin/nos-tun/nos-tun.8 1.2 +20 -10 src/sbin/nos-tun/nos-tun.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 23:37:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA05136 for cvs-all-outgoing; Mon, 4 May 1998 23:37:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA05131; Mon, 4 May 1998 23:37:20 -0700 (PDT) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA03005; Mon, 4 May 1998 23:34:49 -0700 (PDT) Date: Mon, 4 May 1998 23:34:49 -0700 (PDT) Message-Id: <199805050634.XAA03005@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/lang/egcs Makefile ports/lang/egcs/files md5 ports/lang/egcs/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/05/04 23:34:48 PDT Modified files: lang/egcs Makefile lang/egcs/files md5 lang/egcs/pkg PLIST Log: Upgrade to the May 2nd 1998 snapshot version. Revision Changes Path 1.17 +14 -13 ports/lang/egcs/Makefile 1.7 +1 -1 ports/lang/egcs/files/md5 1.9 +31 -51 ports/lang/egcs/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 23:46:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA06025 for cvs-all-outgoing; Mon, 4 May 1998 23:46:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ns11.rim.or.jp (root@ns11.rim.or.jp [202.247.130.230]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA06017; Mon, 4 May 1998 23:46:19 -0700 (PDT) (envelope-from masafumi@aslm.rim.or.jp) Received: from rayearth.rim.or.jp (rayearth.rim.or.jp [202.247.130.242]) by ns11.rim.or.jp (8.8.5/3.5Wpl2-ns11/RIMNET-2) with ESMTP id PAA28883; Tue, 5 May 1998 15:46:19 +0900 (JST) Received: (from uucp@localhost) by rayearth.rim.or.jp (8.8.5/3.5Wpl2-uucp1/RIMNET) with UUCP id PAA25865; Tue, 5 May 1998 15:46:18 +0900 (JST) Received: from localhost (localhost [127.0.0.1]) by mail.aslm.rim.or.jp (8.8.8/3.5Wpl3-SMTP) with ESMTP id PAA28130; Tue, 5 May 1998 15:42:19 +0900 (JST) To: mph@FreeBSD.ORG Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Cc: max@wide.ad.jp Subject: Re: cvs commit: ports/devel/ftnchek - Imported sources From: Masafumi NAKANE/=?iso-2022-jp?B?GyRCQ2Y6LDJtSjgbKEI=?= In-Reply-To: Your message of "Mon, 4 May 1998 22:07:49 -0700 (PDT)" <199805050507.WAA02396@freefall.freebsd.org> References: <199805050507.WAA02396@freefall.freebsd.org> X-Mailer: Mew version 1.92.4 on Emacs 20.2 / Mule 3.0 (MOMIJINOGA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <19980505154218B.masafumi@aslm.rim.or.jp> Date: Tue, 05 May 1998 15:42:18 +0900 X-Dispatcher: imput version 971024 Lines: 9 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Submitted by: Steven G. Kargl Please don't forget to make sure that this person is in the contributors list in the handbook. Since you've been importing many new ports lately, you might want to go back to each port you imported and make sure all the submitters are listed in the handbook. Cheers, Max To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon May 4 23:54:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA06953 for cvs-all-outgoing; Mon, 4 May 1998 23:54:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA06948; Mon, 4 May 1998 23:54:45 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA03101; Mon, 4 May 1998 23:52:14 -0700 (PDT) Date: Mon, 4 May 1998 23:52:14 -0700 (PDT) Message-Id: <199805050652.XAA03101@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pcvt/vgaio Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/04 23:52:13 PDT Modified files: usr.sbin/pcvt/vgaio Makefile Log: Backed out previous change. Generating vgaio.h from vgaio.y clobbered the source file vgaio.h, and y.tab.h is used so we can't simply avoid generating the yacc header. Revision Changes Path 1.8 +2 -1 src/usr.sbin/pcvt/vgaio/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 00:04:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA07872 for cvs-all-outgoing; Tue, 5 May 1998 00:04:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA07866; Tue, 5 May 1998 00:04:14 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA03191; Tue, 5 May 1998 00:01:43 -0700 (PDT) Date: Tue, 5 May 1998 00:01:43 -0700 (PDT) Message-Id: <199805050701.AAA03191@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-user@FreeBSD.ORG Subject: cvs commit: src Makefile.alpha Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/05 00:01:42 PDT Modified files: . Makefile.alpha Log: Add a message about editing /etc/group to the beginning of the build. FreeBSD needs a few groups that NetBSD doesn't provide by default. This is annoying because it is the only thing that you need to do to a NetBSD/Alpha system to bootstrap build FreeBSD/Alpha. Oh well, it wouldn't be Unix without gratuitous differences, would it? Revision Changes Path 1.9 +5 -1 src/Makefile.alpha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 00:39:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA13657 for cvs-all-outgoing; Tue, 5 May 1998 00:39:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA13652; Tue, 5 May 1998 00:39:29 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA03331; Tue, 5 May 1998 00:36:56 -0700 (PDT) Date: Tue, 5 May 1998 00:36:56 -0700 (PDT) Message-Id: <199805050736.AAA03331@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG, cvs-bin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/config Makefile src/bin/sh Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/05 00:36:56 PDT Modified files: usr.sbin/config Makefile bin/sh Makefile Log: Backed out previous commit. It was tested, but not for the case where a separate object tree doesn't exist. Crufty makefiles will have to put y.tab.h in SRCS so that we know not to create foo.h from foo.y. Revision Changes Path 1.19 +5 -3 src/usr.sbin/config/Makefile 1.26 +8 -4 src/bin/sh/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 01:03:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA18001 for cvs-all-outgoing; Tue, 5 May 1998 01:03:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA17967; Tue, 5 May 1998 01:03:04 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA03528; Tue, 5 May 1998 01:00:31 -0700 (PDT) Date: Tue, 5 May 1998 01:00:31 -0700 (PDT) Message-Id: <199805050800.BAA03528@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/awele - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/05/05 01:00:31 PDT ports/games/awele - Imported sources Update of /home/ncvs/ports/games/awele In directory freefall.freebsd.org:/tmp/cvs-serv3508 Log Message: New port awele. awele is an african board game. Status: Vendor Tag: TG Release Tags: awele_1_0 N ports/games/awele/Makefile N ports/games/awele/files/md5 N ports/games/awele/patches/patch-ab N ports/games/awele/patches/patch-aa N ports/games/awele/patches/patch-ac N ports/games/awele/pkg/COMMENT N ports/games/awele/pkg/DESCR N ports/games/awele/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 01:04:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA18227 for cvs-all-outgoing; Tue, 5 May 1998 01:04:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA18189; Tue, 5 May 1998 01:04:33 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA03575; Tue, 5 May 1998 01:01:59 -0700 (PDT) Date: Tue, 5 May 1998 01:01:59 -0700 (PDT) Message-Id: <199805050801.BAA03575@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/05/05 01:01:59 PDT Modified files: . modules Log: awele --> ports/games/awele Revision Changes Path 1.1984 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 01:05:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA18317 for cvs-all-outgoing; Tue, 5 May 1998 01:05:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA18294; Tue, 5 May 1998 01:05:10 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA03610; Tue, 5 May 1998 01:02:38 -0700 (PDT) Date: Tue, 5 May 1998 01:02:38 -0700 (PDT) Message-Id: <199805050802.BAA03610@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/05/05 01:02:38 PDT Modified files: games Makefile Log: Activate awele. Revision Changes Path 1.131 +2 -1 ports/games/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 01:22:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA22276 for cvs-all-outgoing; Tue, 5 May 1998 01:22:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA22168; Tue, 5 May 1998 01:22:13 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA04432; Tue, 5 May 1998 01:19:39 -0700 (PDT) Date: Tue, 5 May 1998 01:19:39 -0700 (PDT) Message-Id: <199805050819.BAA04432@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data web.atoz support.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/05/05 01:19:39 PDT Modified files: data web.atoz support.sgml Log: Add projects ALTQ: bandwidth management for applications Vinum: a logical volume manager BSD ATM: implementation of ATM internetworking under 4.4BSD Revision Changes Path 1.25 +10 -1 www/data/web.atoz 1.68 +5 -2 www/data/support.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 01:33:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA24840 for cvs-all-outgoing; Tue, 5 May 1998 01:33:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA24765; Tue, 5 May 1998 01:33:27 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA04593; Tue, 5 May 1998 01:30:51 -0700 (PDT) Date: Tue, 5 May 1998 01:30:51 -0700 (PDT) Message-Id: <199805050830.BAA04593@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/print/xmgr Makefile ports/print/xmgr/files md5 ports/print/xmgr/patches patch-aa ports/print/xmgr/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/05/05 01:30:51 PDT Removed files: print/xmgr Makefile print/xmgr/files md5 print/xmgr/patches patch-aa print/xmgr/pkg COMMENT DESCR PLIST Log: Remove print/xmgr, it has been moved to math. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 01:43:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA27243 for cvs-all-outgoing; Tue, 5 May 1998 01:43:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA27231; Tue, 5 May 1998 01:43:12 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA04656; Tue, 5 May 1998 01:40:40 -0700 (PDT) Date: Tue, 5 May 1998 01:40:40 -0700 (PDT) Message-Id: <199805050840.BAA04656@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-user@FreeBSD.ORG Subject: cvs commit: src Makefile.alpha Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/05 01:40:40 PDT Modified files: . Makefile.alpha Log: Gas build for i386 requires env as a build tool. Revision Changes Path 1.10 +2 -1 src/Makefile.alpha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 01:47:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA28008 for cvs-all-outgoing; Tue, 5 May 1998 01:47:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from nlsystems.com (nlsys.demon.co.uk [158.152.125.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA27960; Tue, 5 May 1998 01:46:49 -0700 (PDT) (envelope-from dfr@nlsystems.com) Received: from herring.nlsystems.com (herring.nlsystems.com [10.0.0.2]) by nlsystems.com (8.8.8/8.8.5) with SMTP id JAA26278; Tue, 5 May 1998 09:49:35 +0100 (BST) Date: Tue, 5 May 1998 09:49:35 +0100 (BST) From: Doug Rabson To: John Birrell cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: Re: cvs commit: src/gnu/usr.bin/binutils Makefile.inc0 In-Reply-To: <199805042110.OAA28860@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Mon, 4 May 1998, John Birrell wrote: > jb 1998/05/04 14:10:57 PDT > > Modified files: > gnu/usr.bin/binutils Makefile.inc0 > Log: > Add makefile support for cross-architectures. Allow CROSS_TOOLS to > be defined (in /etc/make.conf, say) and set to the additional architectures > that need to be compiled in. So on alpha I set CROSS_TOOLS = i386. > On i386 you can't build alpha due to lack of 64-bit support on 32-bit > architectures, but that's a GNU problem. Actually I made some headway with building alpha tools on i386 current by tweaking the bfd.h which came out of configure. When I get back from my trip, I will have another look at it. While you are in this area, how about importing binutils 2.9.x? It fixes a bunch of ELF linking problems for i386 at least and probably others. -- Doug Rabson Mail: dfr@nlsystems.com Nonlinear Systems Ltd. Phone: +44 181 951 1891 Fax: +44 181 381 1039 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 01:53:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA28962 for cvs-all-outgoing; Tue, 5 May 1998 01:53:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA28941; Tue, 5 May 1998 01:53:00 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA04730; Tue, 5 May 1998 01:50:26 -0700 (PDT) Date: Tue, 5 May 1998 01:50:26 -0700 (PDT) Message-Id: <199805050850.BAA04730@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data web.atoz Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/05/05 01:50:26 PDT Modified files: data web.atoz Log: Add forgotten project 'The "PAO" Mobile Computing page' Revision Changes Path 1.26 +4 -2 www/data/web.atoz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 01:55:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA29340 for cvs-all-outgoing; Tue, 5 May 1998 01:55:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from cimlogic.com.au (cimlog.lnk.telstra.net [139.130.51.31]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA29122; Tue, 5 May 1998 01:54:15 -0700 (PDT) (envelope-from jb@cimlogic.com.au) Received: (from jb@localhost) by cimlogic.com.au (8.8.8/8.8.7) id SAA21832; Tue, 5 May 1998 18:56:51 +1000 (EST) (envelope-from jb) From: John Birrell Message-Id: <199805050856.SAA21832@cimlogic.com.au> Subject: Re: cvs commit: src/gnu/usr.bin/binutils Makefile.inc0 In-Reply-To: from Doug Rabson at "May 5, 98 09:49:35 am" To: dfr@nlsystems.com (Doug Rabson) Date: Tue, 5 May 1998 18:56:50 +1000 (EST) Cc: jb@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Doug Rabson wrote: > Actually I made some headway with building alpha tools on i386 current by > tweaking the bfd.h which came out of configure. When I get back from my > trip, I will have another look at it. I thought there were compile issues about not having 64 bit variables. I'd be happy if I was wrong 'cause my alphas are a bit slow. > > While you are in this area, how about importing binutils 2.9.x? It fixes > a bunch of ELF linking problems for i386 at least and probably others. Umm, that needs to be referred to sos, jdp and peter. I don't want to destabilize their work, though I might have in this case. I just wanted to get this stuff into the tree to (a) stop cvs from breaking it on me; and (b) stop Bruce from breaking it on me. 8-) -- John Birrell - jb@cimlogic.com.au; jb@freebsd.org http://www.cimlogic.com.au/ CIMlogic Pty Ltd, GPO Box 117A, Melbourne Vic 3001, Australia +61 418 353 137 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 01:56:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA29542 for cvs-all-outgoing; Tue, 5 May 1998 01:56:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA29441; Tue, 5 May 1998 01:56:03 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA04836; Tue, 5 May 1998 01:53:29 -0700 (PDT) Date: Tue, 5 May 1998 01:53:29 -0700 (PDT) Message-Id: <199805050853.BAA04836@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/as Makefile.inc0 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/05 01:53:29 PDT Added files: gnu/usr.bin/binutils/as Makefile.inc0 Log: Oops, missed the common part of gas. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 01:56:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA29559 for cvs-all-outgoing; Tue, 5 May 1998 01:56:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA29459; Tue, 5 May 1998 01:56:08 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA04853; Tue, 5 May 1998 01:53:31 -0700 (PDT) Date: Tue, 5 May 1998 01:53:31 -0700 (PDT) Message-Id: <199805050853.BAA04853@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/lang/python Makefile ports/lang/python/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/05/05 01:53:31 PDT Modified files: lang/python Makefile lang/python/files md5 Log: Bring in latest official patches. Use `-pthread' to avoid linking with libc in the threaded interpreter. Revision Changes Path 1.29 +6 -5 ports/lang/python/Makefile 1.12 +3 -0 ports/lang/python/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 01:59:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA00202 for cvs-all-outgoing; Tue, 5 May 1998 01:59:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA00142; Tue, 5 May 1998 01:59:01 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA04938; Tue, 5 May 1998 01:56:25 -0700 (PDT) Date: Tue, 5 May 1998 01:56:25 -0700 (PDT) Message-Id: <199805050856.BAA04938@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/as/as_alpha Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/05 01:56:25 PDT Modified files: gnu/usr.bin/binutils/as/as_alpha Makefile Log: The BINDIR definition is an extra directory level away, so include it explicitly. Revision Changes Path 1.2 +4 -1 src/gnu/usr.bin/binutils/as/as_alpha/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 02:00:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA00432 for cvs-all-outgoing; Tue, 5 May 1998 02:00:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA00301; Tue, 5 May 1998 01:59:49 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA04974; Tue, 5 May 1998 01:57:13 -0700 (PDT) Date: Tue, 5 May 1998 01:57:13 -0700 (PDT) Message-Id: <199805050857.BAA04974@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/as/as_i386 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/05 01:57:13 PDT Modified files: gnu/usr.bin/binutils/as/as_i386 Makefile Log: The BINDIR definition is an extra directory level away, so include it explicitly. Revision Changes Path 1.2 +4 -1 src/gnu/usr.bin/binutils/as/as_i386/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 02:07:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA02018 for cvs-all-outgoing; Tue, 5 May 1998 02:07:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA02012; Tue, 5 May 1998 02:07:40 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA05155; Tue, 5 May 1998 02:05:07 -0700 (PDT) Date: Tue, 5 May 1998 02:05:07 -0700 (PDT) Message-Id: <199805050905.CAA05155@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data support.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/05/05 02:05:07 PDT Modified files: data support.sgml Log: Split the list of projects into the lists Documentation Applications Kernel, networking, security Device drivers Architecture Misc Revision Changes Path 1.69 +44 -40 www/data/support.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 02:36:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA05719 for cvs-all-outgoing; Tue, 5 May 1998 02:36:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA05628; Tue, 5 May 1998 02:36:24 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id TAA08184; Tue, 5 May 1998 19:32:51 +1000 Date: Tue, 5 May 1998 19:32:51 +1000 From: Bruce Evans Message-Id: <199805050932.TAA08184@godzilla.zeta.org.au> To: cvs-committers@FreeBSD.ORG, jb@FreeBSD.ORG Subject: Re: cvs commit: src/gnu/usr.bin/binutils/as/as_i386 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Modified files: > gnu/usr.bin/binutils/as/as_i386 Makefile > Log: > The BINDIR definition is an extra directory level away, so include it > explicitly. Wrong fix. Deep directories should always have a Makefile.inc in the directory above them, and that Makefile.inc should include "../Makefile.inc" which to get the Makefile.inc above it, etc. Note that "../Makefile.inc" is sometimes quite different from "${.CURDIR}/../Makefile.inc". The latter is an absolute pathname, while the former is relative and is searched for beginning in the directory of the file that does the inclusion (or does it begin in in the object directory?). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 03:30:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA12280 for cvs-all-outgoing; Tue, 5 May 1998 03:30:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA12247; Tue, 5 May 1998 03:30:16 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA05522; Tue, 5 May 1998 03:27:42 -0700 (PDT) Date: Tue, 5 May 1998 03:27:42 -0700 (PDT) Message-Id: <199805051027.DAA05522@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/as Makefile.inc Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/05 03:27:41 PDT Added files: gnu/usr.bin/binutils/as Makefile.inc Log: One of those silently included files that just about guarantee that nobody has any idea how something like BINDIR gets defined. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 03:34:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA13157 for cvs-all-outgoing; Tue, 5 May 1998 03:34:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA13151; Tue, 5 May 1998 03:34:25 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA05579; Tue, 5 May 1998 03:31:53 -0700 (PDT) Date: Tue, 5 May 1998 03:31:53 -0700 (PDT) Message-Id: <199805051031.DAA05579@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/as/as_i386 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/05 03:31:53 PDT Modified files: gnu/usr.bin/binutils/as/as_i386 Makefile Log: Specify an absolute include path. Backout the previous commit in favour of the Makefile.inc added to the parent directory. Revision Changes Path 1.3 +2 -5 src/gnu/usr.bin/binutils/as/as_i386/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 03:35:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA13356 for cvs-all-outgoing; Tue, 5 May 1998 03:35:29 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA13337; Tue, 5 May 1998 03:35:22 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA05613; Tue, 5 May 1998 03:32:48 -0700 (PDT) Date: Tue, 5 May 1998 03:32:48 -0700 (PDT) Message-Id: <199805051032.DAA05613@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/as/as_alpha Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/05 03:32:48 PDT Modified files: gnu/usr.bin/binutils/as/as_alpha Makefile Log: Specify an absolute include path. Backout the previous commit in favour of the Makefile.inc added to the parent directory. Revision Changes Path 1.3 +2 -5 src/gnu/usr.bin/binutils/as/as_alpha/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 05:35:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA02673 for cvs-all-outgoing; Tue, 5 May 1998 05:35:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA02666; Tue, 5 May 1998 05:35:55 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA06153; Tue, 5 May 1998 05:33:22 -0700 (PDT) Date: Tue, 5 May 1998 05:33:22 -0700 (PDT) Message-Id: <199805051233.FAA06153@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/binutils/as Makefile.inc Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/05 05:33:22 PDT Modified files: gnu/usr.bin/binutils/as Makefile.inc Log: Fix the path. Revision Changes Path 1.2 +2 -2 src/gnu/usr.bin/binutils/as/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 06:03:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA05971 for cvs-all-outgoing; Tue, 5 May 1998 06:03:03 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA05965; Tue, 5 May 1998 06:03:02 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA06265; Tue, 5 May 1998 06:00:28 -0700 (PDT) Date: Tue, 5 May 1998 06:00:28 -0700 (PDT) Message-Id: <199805051300.GAA06265@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/xlint/lint1 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/05 06:00:28 PDT Modified files: usr.bin/xlint/lint1 Makefile Log: Put y.tab.h back in SRCS. This used to be the best way to get dependencies on y.tab.h generated. It will soon be used to tell bsd.dep.mk that y.tab.h itself needs to be generated. Revision Changes Path 1.6 +2 -1 src/usr.bin/xlint/lint1/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 06:19:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA09137 for cvs-all-outgoing; Tue, 5 May 1998 06:19:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA09102; Tue, 5 May 1998 06:19:12 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA07490; Tue, 5 May 1998 06:16:37 -0700 (PDT) Date: Tue, 5 May 1998 06:16:37 -0700 (PDT) Message-Id: <199805051316.GAA07490@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/games/atc Makefile src/usr.bin/colldef Makefile src/usr.bin/mk_cmds Makefile src/usr.bin/mklocale Makefile src/usr.sbin/ipsend Makefile src/usr.sbin/pcvt/kbdio Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/05 06:16:36 PDT Modified files: games/atc Makefile usr.bin/colldef Makefile usr.bin/mk_cmds Makefile usr.bin/mklocale Makefile usr.sbin/ipsend Makefile usr.sbin/pcvt/kbdio Makefile Log: Added y.tab.h to SRCS. This should have been used to get dependencies on y.tab.h generated. It will soon be used to tell bsd.dep.mk that y.tab.h itself needs to be generated. Revision Changes Path 1.11 +1 -1 src/games/atc/Makefile 1.13 +2 -2 src/usr.bin/colldef/Makefile 1.7 +2 -2 src/usr.bin/mk_cmds/Makefile 1.19 +2 -2 src/usr.bin/mklocale/Makefile 1.5 +3 -2 src/usr.sbin/ipsend/Makefile 1.7 +1 -1 src/usr.sbin/pcvt/kbdio/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 06:21:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA09946 for cvs-all-outgoing; Tue, 5 May 1998 06:21:48 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA09871; Tue, 5 May 1998 06:21:32 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA07755; Tue, 5 May 1998 06:18:58 -0700 (PDT) Date: Tue, 5 May 1998 06:18:58 -0700 (PDT) Message-Id: <199805051318.GAA07755@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/graphics/ImageMagick/pkg PLIST ports/graphics/Mesa/pkg PLIST ports/x11/XFree86/pkg PLIST ports/x11/Xaw3d/pkg PLIST ports/print/a2ps/pkg PLIST ports/misc/amanda24/pkg PLIST ports/math/blas/pkg PLIST ports/x11/blt/pkg PLIST ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/05/05 06:18:57 PDT Modified files: graphics/ImageMagick/pkg PLIST graphics/Mesa/pkg PLIST x11/XFree86/pkg PLIST x11/Xaw3d/pkg PLIST print/a2ps/pkg PLIST misc/amanda24/pkg PLIST math/blas/pkg PLIST x11/blt/pkg PLIST math/eispack/pkg PLIST mail/faces/pkg PLIST math/fftpack/pkg PLIST print/freetype/pkg PLIST audio/gsm/pkg PLIST lang/itcl/pkg PLIST x11/iv/pkg PLIST japanese/Canna/pkg PLIST japanese/vflib/pkg PLIST graphics/jbigkit/pkg PLIST graphics/jpeg/pkg PLIST lang/kaffe/pkg PLIST math/lapack/pkg PLIST x11/lesstif/pkg PLIST devel/libdlmalloc/pkg PLIST x11/libdnd/pkg PLIST devel/libmalloc/pkg PLIST math/libranlib/pkg PLIST devel/libslang/pkg PLIST net/libsocket++/pkg PLIST www/libwww/pkg PLIST math/linpack/pkg PLIST lang/modula-3/pkg PLIST lang/modula-3-lib/pkg PLIST graphics/mpeg-lib/pkg PLIST net/ncftp3/pkg PLIST x11/neXtaw/pkg PLIST math/octave/pkg PLIST devel/omniORB/pkg PLIST graphics/pgplot/pkg PLIST graphics/png/pkg PLIST x11/qt/pkg PLIST lang/rexx-imc/pkg PLIST security/rsaref/pkg PLIST graphics/sane/pkg PLIST devel/sawt/pkg PLIST lang/schemetoc/pkg PLIST math/simpack/pkg PLIST net/socks5/pkg PLIST lang/tcl75/pkg PLIST lang/tcl80/pkg PLIST lang/tcl81/pkg PLIST lang/tclX75/pkg PLIST security/tcp_wrapper/pkg PLIST graphics/tiff34/pkg PLIST x11/tix/pkg PLIST x11/tk41/pkg PLIST x11/tk80/pkg PLIST x11/tk81/pkg PLIST x11/tkstep80/pkg PLIST devel/tvision/pkg PLIST converters/uulib/pkg PLIST x11/xbae/pkg PLIST x11/xforms/pkg PLIST graphics/xpm/pkg PLIST x11/xview-lib/pkg PLIST Log: Execute `ldconfig -R' at the pkg_delete step. PR: 6281 Submitted by: SADA Kenji Revision Changes Path 1.21 +2 -1 ports/graphics/ImageMagick/pkg/PLIST 1.11 +2 -1 ports/graphics/Mesa/pkg/PLIST 1.15 +1 -0 ports/x11/XFree86/pkg/PLIST 1.7 +1 -0 ports/x11/Xaw3d/pkg/PLIST 1.8 +1 -0 ports/print/a2ps/pkg/PLIST 1.8 +1 -0 ports/misc/amanda24/pkg/PLIST 1.6 +1 -0 ports/math/blas/pkg/PLIST 1.4 +1 -0 ports/x11/blt/pkg/PLIST 1.4 +1 -0 ports/math/eispack/pkg/PLIST 1.5 +1 -0 ports/mail/faces/pkg/PLIST 1.5 +1 -0 ports/math/fftpack/pkg/PLIST 1.4 +1 -0 ports/print/freetype/pkg/PLIST 1.5 +1 -0 ports/audio/gsm/pkg/PLIST 1.6 +1 -0 ports/lang/itcl/pkg/PLIST 1.4 +2 -0 ports/x11/iv/pkg/PLIST 1.10 +1 -0 ports/japanese/Canna/pkg/PLIST 1.6 +1 -0 ports/japanese/vflib/pkg/PLIST 1.2 +1 -0 ports/graphics/jbigkit/pkg/PLIST 1.12 +1 -0 ports/graphics/jpeg/pkg/PLIST 1.23 +1 -0 ports/lang/kaffe/pkg/PLIST 1.3 +1 -0 ports/math/lapack/pkg/PLIST 1.12 +1 -0 ports/x11/lesstif/pkg/PLIST 1.5 +1 -0 ports/devel/libdlmalloc/pkg/PLIST 1.3 +2 -1 ports/x11/libdnd/pkg/PLIST 1.7 +1 -0 ports/devel/libmalloc/pkg/PLIST 1.4 +1 -0 ports/math/libranlib/pkg/PLIST 1.8 +1 -0 ports/devel/libslang/pkg/PLIST 1.2 +1 -0 ports/net/libsocket++/pkg/PLIST 1.8 +2 -1 ports/www/libwww/pkg/PLIST 1.4 +1 -0 ports/math/linpack/pkg/PLIST 1.13 +1 -0 ports/lang/modula-3/pkg/PLIST 1.9 +1 -0 ports/lang/modula-3-lib/pkg/PLIST 1.5 +1 -0 ports/graphics/mpeg-lib/pkg/PLIST 1.6 +1 -0 ports/net/ncftp3/pkg/PLIST 1.3 +1 -0 ports/x11/neXtaw/pkg/PLIST 1.13 +1 -0 ports/math/octave/pkg/PLIST 1.2 +1 -0 ports/devel/omniORB/pkg/PLIST 1.4 +1 -0 ports/graphics/pgplot/pkg/PLIST 1.11 +1 -0 ports/graphics/png/pkg/PLIST 1.9 +1 -0 ports/x11/qt/pkg/PLIST 1.3 +1 -0 ports/lang/rexx-imc/pkg/PLIST 1.4 +1 -0 ports/security/rsaref/pkg/PLIST 1.4 +1 -0 ports/graphics/sane/pkg/PLIST 1.2 +1 -0 ports/devel/sawt/pkg/PLIST 1.6 +1 -0 ports/lang/schemetoc/pkg/PLIST 1.2 +1 -0 ports/math/simpack/pkg/PLIST 1.4 +1 -0 ports/net/socks5/pkg/PLIST 1.7 +1 -0 ports/lang/tcl75/pkg/PLIST 1.8 +1 -0 ports/lang/tcl80/pkg/PLIST 1.10 +1 -0 ports/lang/tcl81/pkg/PLIST 1.9 +1 -0 ports/lang/tclX75/pkg/PLIST 1.11 +1 -0 ports/security/tcp_wrapper/pkg/PLIST 1.6 +1 -0 ports/graphics/tiff34/pkg/PLIST 1.11 +1 -0 ports/x11/tix/pkg/PLIST 1.13 +1 -0 ports/x11/tk41/pkg/PLIST 1.6 +1 -0 ports/x11/tk80/pkg/PLIST 1.8 +1 -0 ports/x11/tk81/pkg/PLIST 1.3 +1 -0 ports/x11/tkstep80/pkg/PLIST 1.3 +1 -0 ports/devel/tvision/pkg/PLIST 1.4 +1 -0 ports/converters/uulib/pkg/PLIST 1.3 +1 -0 ports/x11/xbae/pkg/PLIST 1.12 +1 -0 ports/x11/xforms/pkg/PLIST 1.13 +1 -0 ports/graphics/xpm/pkg/PLIST 1.7 +1 -0 ports/x11/xview-lib/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 06:22:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA10024 for cvs-all-outgoing; Tue, 5 May 1998 06:22:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA09963; Tue, 5 May 1998 06:21:51 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA07796; Tue, 5 May 1998 06:19:15 -0700 (PDT) Date: Tue, 5 May 1998 06:19:15 -0700 (PDT) Message-Id: <199805051319.GAA07796@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/mrouted/mrouted Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/05 06:19:15 PDT Modified files: usr.sbin/mrouted/mrouted Makefile Log: Don't generate y.tab.h, since it is not used. Revision Changes Path 1.10 +2 -1 src/usr.sbin/mrouted/mrouted/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 06:22:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA10270 for cvs-all-outgoing; Tue, 5 May 1998 06:22:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA10127; Tue, 5 May 1998 06:22:13 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA07812; Tue, 5 May 1998 06:19:38 -0700 (PDT) Date: Tue, 5 May 1998 06:19:38 -0700 (PDT) Message-Id: <199805051319.GAA07812@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf files.pc98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/05/05 06:19:38 PDT Modified files: sys/pc98/conf files.pc98 Log: Deleted unused item. Revision Changes Path 1.63 +1 -2 src/sys/pc98/conf/files.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 06:24:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA10682 for cvs-all-outgoing; Tue, 5 May 1998 06:24:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA10603; Tue, 5 May 1998 06:23:48 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA07854; Tue, 5 May 1998 06:21:11 -0700 (PDT) Date: Tue, 5 May 1998 06:21:11 -0700 (PDT) Message-Id: <199805051321.GAA07854@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pccard pccard.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/05/05 06:21:11 PDT Modified files: sys/pccard pccard.c Log: Include pc98.h instead of isa.h when PC98 is defined. Revision Changes Path 1.60 +5 -1 src/sys/pccard/pccard.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 06:50:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA17866 for cvs-all-outgoing; Tue, 5 May 1998 06:50:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA17834; Tue, 5 May 1998 06:50:36 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA02569; Tue, 5 May 1998 06:48:02 -0700 (PDT) Date: Tue, 5 May 1998 06:48:02 -0700 (PDT) Message-Id: <199805051348.GAA02569@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data support.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/05/05 06:48:02 PDT Modified files: data support.sgml Log: Fix Lites link. Submitted by: Josh Gilliam Revision Changes Path 1.70 +3 -3 www/data/support.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 07:23:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA22965 for cvs-all-outgoing; Tue, 5 May 1998 07:23:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA22960; Tue, 5 May 1998 07:23:05 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA03240; Tue, 5 May 1998 07:20:31 -0700 (PDT) Date: Tue, 5 May 1998 07:20:31 -0700 (PDT) Message-Id: <199805051420.HAA03240@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/05/05 07:20:31 PDT Modified files: . modules Log: ko-kaistfonts --> ports/korean/kaistfonts Revision Changes Path 1.1985 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 07:24:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA23079 for cvs-all-outgoing; Tue, 5 May 1998 07:24:20 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA23074; Tue, 5 May 1998 07:24:19 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA03254; Tue, 5 May 1998 07:21:45 -0700 (PDT) Date: Tue, 5 May 1998 07:21:45 -0700 (PDT) Message-Id: <199805051421.HAA03254@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/korean/kaistfonts - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/05/05 07:21:45 PDT ports/korean/kaistfonts - Imported sources Update of /home/ncvs/ports/korean/kaistfonts In directory freefall.freebsd.org:/d/users/kuriyama/kaistfonts Log Message: X11 KAIST font(ksc5601.1987-0 encoding) collection PR: ports/6143 Submitted by: CHOI Junho Status: Vendor Tag: JUNKER Release Tags: v1_0 N ports/korean/kaistfonts/Makefile I ports/korean/kaistfonts/CVS N ports/korean/kaistfonts/files/md5 N ports/korean/kaistfonts/patches/patch-aa N ports/korean/kaistfonts/pkg/COMMENT N ports/korean/kaistfonts/pkg/DESCR N ports/korean/kaistfonts/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 07:25:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA23231 for cvs-all-outgoing; Tue, 5 May 1998 07:25:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA23198; Tue, 5 May 1998 07:25:38 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA03288; Tue, 5 May 1998 07:23:03 -0700 (PDT) Date: Tue, 5 May 1998 07:23:03 -0700 (PDT) Message-Id: <199805051423.HAA03288@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/korean Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/05/05 07:23:03 PDT Modified files: korean Makefile Log: Activate kaistfonts. Revision Changes Path 1.20 +2 -1 ports/korean/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 07:30:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA23886 for cvs-all-outgoing; Tue, 5 May 1998 07:30:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA23874; Tue, 5 May 1998 07:30:03 -0700 (PDT) (envelope-from sos@FreeBSD.org) From: Søren Schmidt Received: (from sos@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA03418; Tue, 5 May 1998 07:27:29 -0700 (PDT) Date: Tue, 5 May 1998 07:27:29 -0700 (PDT) Message-Id: <199805051427.HAA03418@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa wd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sos 1998/05/05 07:27:28 PDT Modified files: sys/i386/isa wd.c Log: Fix the 4-8G LBA geometry it was wrong. Support >8G drives in CHS mode. This is done by guesstimating the cylinder count from the LBA size reported. It works on my shiny new Maxtor 11.5G drive, YMMV. Reports from users of other big drives (read Quantum bigfoot's) are welcome... Revision Changes Path 1.164 +7 -2 src/sys/i386/isa/wd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 09:08:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA11411 for cvs-all-outgoing; Tue, 5 May 1998 09:08:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA11405; Tue, 5 May 1998 09:08:08 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA03694; Tue, 5 May 1998 09:05:34 -0700 (PDT) Date: Tue, 5 May 1998 09:05:34 -0700 (PDT) Message-Id: <199805051605.JAA03694@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data/cgi cvsweb.cgi Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/05/05 09:05:33 PDT Modified files: data/cgi cvsweb.cgi Log: Add link to the FreeBSD-current sources of the cvsweb.cgi script (self-referencing url ;-) Revision Changes Path 1.17 +2 -1 www/data/cgi/cvsweb.cgi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 09:09:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA11667 for cvs-all-outgoing; Tue, 5 May 1998 09:09:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA11660; Tue, 5 May 1998 09:09:31 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA03736; Tue, 5 May 1998 09:06:57 -0700 (PDT) Date: Tue, 5 May 1998 09:06:57 -0700 (PDT) Message-Id: <199805051606.JAA03736@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook submitters.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/05 09:06:56 PDT Modified files: handbook submitters.sgml Log: Add Steven G. Kargl for his port of ftnchek. Reminded by: max Revision Changes Path 1.184 +4 -1 doc/handbook/submitters.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 11:17:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA07777 for cvs-all-outgoing; Tue, 5 May 1998 11:17:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA07715; Tue, 5 May 1998 11:16:47 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id TAA02010; Tue, 5 May 1998 19:19:51 +0200 (CEST) To: Julian Elischer cc: Bruce Evans , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern vfs_cluster.c In-reply-to: Your message of "Fri, 01 May 1998 09:39:37 PDT." Date: Tue, 05 May 1998 19:19:50 +0200 Message-ID: <2008.894388790@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk It should really be a mount-option, shouldn't it ? Poul-Henning In message , Juli an Elischer writes: >Talking of clusterring.. > >One problem with clustering is the fact that the flag that dissallows >CLUSTERING is stored in the BDEVSW entry. > >from sys/conf.h: >#define D_NOCLUSTERR 0x10000 /* disables cluter read */ >#define D_NOCLUSTERW 0x20000 /* disables cluster write */ >#define D_NOCLUSTERRW (D_NOCLUSTERR | D_NOCLUSTERW) > > which is patently the wrong place for it. for several reasons: > >1/ different SCSI devices may have different ideas about clustering.. >2/ in DEVFS/SLICE, all disks come in through the same major number/devfs[] >entry no matter which driver they eventually get passed to. >3/ [bc]devsw entries will totally go away anyhow. -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "ttyv0" -- What UNIX calls a $20K state-of-the-art, 3D, hi-res color terminal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 12:04:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA16013 for cvs-all-outgoing; Tue, 5 May 1998 12:04:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA16000; Tue, 5 May 1998 12:04:38 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA05104; Tue, 5 May 1998 12:02:03 -0700 (PDT) Date: Tue, 5 May 1998 12:02:03 -0700 (PDT) Message-Id: <199805051902.MAA05104@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/kbdcontrol kbdcontrol.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/05/05 12:02:02 PDT Modified files: usr.sbin/kbdcontrol kbdcontrol.c Log: Fix the search sequence for keymaps. PR: bin/6522 Submitted by: Rudolf Cejka Revision Changes Path 1.14 +3 -3 src/usr.sbin/kbdcontrol/kbdcontrol.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 12:25:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA19497 for cvs-all-outgoing; Tue, 5 May 1998 12:25:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA19402; Tue, 5 May 1998 12:24:59 -0700 (PDT) (envelope-from julian@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id MAA18789; Tue, 5 May 1998 12:17:17 -0700 (PDT) Received: from current1.whistle.com(207.76.205.22) via SMTP by alpo.whistle.com, id smtpd018772; Tue May 5 19:17:11 1998 Message-ID: <354F65AA.41C67EA6@whistle.com> Date: Tue, 05 May 1998 12:16:58 -0700 From: Julian Elischer Organization: Whistle Communications X-Mailer: Mozilla 3.0Gold (X11; I; FreeBSD 2.2.5-RELEASE i386) MIME-Version: 1.0 To: Poul-Henning Kamp CC: Bruce Evans , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern vfs_cluster.c References: <2008.894388790@critter.freebsd.dk> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Poul-Henning Kamp wrote: > > It should really be a mount-option, shouldn't it ? well, maybe more than that. Is it really a question of whether the underlying device can handle a larger IO? I'm not sure what the author of those bits had in mind when they added them. I'm thinking of adding the capacity in the SLICE code for larger IO requests to be broken up transparently (ala physio()) (or possibly similar to ccd, (I'm not sure yet) or for a "report your capabilities" method which would report.. slice size block size optimum IO size minimum IO size Maximum IO size ? CLUSTER capabilities (as per this discussion)? maybe both. now that soft updates is slowing down I may have some time for such niceties again. > > Poul-Henning > > In message , Juli > an Elischer writes: > >Talking of clusterring.. > > > >One problem with clustering is the fact that the flag that dissallows > >CLUSTERING is stored in the BDEVSW entry. > > > >from sys/conf.h: > >#define D_NOCLUSTERR 0x10000 /* disables cluter read */ > >#define D_NOCLUSTERW 0x20000 /* disables cluster write */ > >#define D_NOCLUSTERRW (D_NOCLUSTERR | D_NOCLUSTERW) > > > > which is patently the wrong place for it. for several reasons: > > > >1/ different SCSI devices may have different ideas about clustering.. > >2/ in DEVFS/SLICE, all disks come in through the same major number/devfs[] > >entry no matter which driver they eventually get passed to. > >3/ [bc]devsw entries will totally go away anyhow. > > -- > Poul-Henning Kamp FreeBSD coreteam member > phk@FreeBSD.ORG "Real hackers run -current on their laptop." > "ttyv0" -- What UNIX calls a $20K state-of-the-art, 3D, hi-res color terminal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 13:04:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA26065 for cvs-all-outgoing; Tue, 5 May 1998 13:04:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA26043; Tue, 5 May 1998 13:04:29 -0700 (PDT) (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA05346; Tue, 5 May 1998 13:01:53 -0700 (PDT) Date: Tue, 5 May 1998 13:01:53 -0700 (PDT) Message-Id: <199805052001.NAA05346@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/05/05 13:01:53 PDT Modified files: . modules Log: ntp --> ports/net/ntp Revision Changes Path 1.1986 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 13:08:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA26799 for cvs-all-outgoing; Tue, 5 May 1998 13:08:03 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA26754; Tue, 5 May 1998 13:07:59 -0700 (PDT) (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA05385; Tue, 5 May 1998 13:05:23 -0700 (PDT) Date: Tue, 5 May 1998 13:05:23 -0700 (PDT) Message-Id: <199805052005.NAA05385@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/ntp - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/05/05 13:05:23 PDT ports/net/ntp - Imported sources Update of /home/ncvs/ports/net/ntp In directory freefall.freebsd.org:/d/users/andreas/newports/ntp Log Message: Import of ntp v4 It's the latest release of ntp software Many new features, but not as mature as v3, therefore some of the new features have been included into v3. After v4 is better tested or stable, we could import it into -current under /contrib. Pouls nice idea to make a port out of it to test ntp v4. Status: Vendor Tag: DAVID Release Tags: v4_0_72g I ports/net/ntp/CVS N ports/net/ntp/Makefile N ports/net/ntp/files/md5 N ports/net/ntp/pkg/COMMENT N ports/net/ntp/pkg/DESCR N ports/net/ntp/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 13:10:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA27075 for cvs-all-outgoing; Tue, 5 May 1998 13:10:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA27069; Tue, 5 May 1998 13:10:37 -0700 (PDT) (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA05428; Tue, 5 May 1998 13:08:01 -0700 (PDT) Date: Tue, 5 May 1998 13:08:01 -0700 (PDT) Message-Id: <199805052008.NAA05428@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/05/05 13:08:01 PDT Modified files: net Makefile Log: activate ntp .. tic .. tic .. tic .. ;-) Revision Changes Path 1.156 +2 -1 ports/net/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 13:28:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA29551 for cvs-all-outgoing; Tue, 5 May 1998 13:28:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from austin.polstra.com (austin.polstra.com [206.213.73.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA29475; Tue, 5 May 1998 13:27:54 -0700 (PDT) (envelope-from jdp@austin.polstra.com) Received: from austin.polstra.com (jdp@localhost) by austin.polstra.com (8.8.8/8.8.8) with ESMTP id NAA00256; Tue, 5 May 1998 13:27:44 -0700 (PDT) (envelope-from jdp) Message-Id: <199805052027.NAA00256@austin.polstra.com> To: Andreas Klemm cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/net/cvsup-bin Makefile ports/net/cvsup-bin/files md5 In-reply-to: Your message of "Fri, 01 May 1998 14:47:52 +0200." <19980501144752.A23778@klemm.gtn.com> Date: Tue, 05 May 1998 13:27:44 -0700 From: John Polstra Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > > It _is_ static. > > > > > and without GUI ? > > > > No. Some people like the GUI, and it doesn't hurt anything (except > > the size of the executable) for those who don't want to use it. > > It wouldn't run on machines, that doesn't have X11 installed. > It complains about missing libXaw. It will run just fine on those machines, because it is statically linked. If you are getting complaints about missing libraries, then you are not using the cvsup-bin port. -- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Self-knowledge is always bad news." -- John Barth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 13:33:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA00592 for cvs-all-outgoing; Tue, 5 May 1998 13:33:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA00475; Tue, 5 May 1998 13:32:15 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id WAA00743; Tue, 5 May 1998 22:31:47 +0200 (CEST) To: Andreas Klemm cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/net/ntp - Imported sources In-reply-to: Your message of "Tue, 05 May 1998 13:05:23 PDT." <199805052005.NAA05385@freefall.freebsd.org> Date: Tue, 05 May 1998 22:31:46 +0200 Message-ID: <741.894400306@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In message <199805052005.NAA05385@freefall.freebsd.org>, Andreas Klemm writes: >andreas 1998/05/05 13:05:23 PDT > > Log Message: > Import of ntp v4 You don't waste much time do you :-) Thanks! -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "ttyv0" -- What UNIX calls a $20K state-of-the-art, 3D, hi-res color terminal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 13:40:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA02233 for cvs-all-outgoing; Tue, 5 May 1998 13:40:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA02228; Tue, 5 May 1998 13:40:48 -0700 (PDT) (envelope-from chuckr@FreeBSD.org) From: Chuck Robey Received: (from chuckr@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA05619; Tue, 5 May 1998 13:38:12 -0700 (PDT) Date: Tue, 5 May 1998 13:38:12 -0700 (PDT) Message-Id: <199805052038.NAA05619@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/math/octave Makefile ports/math/octave/files md5 ports/math/octave/patches patch-aa patch-ab ports/math/octave/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk chuckr 1998/05/05 13:38:12 PDT Modified files: math/octave Makefile math/octave/files md5 math/octave/patches patch-aa patch-ab math/octave/pkg PLIST Log: Update octave to 2.0.12 Revision Changes Path 1.13 +15 -23 ports/math/octave/Makefile 1.5 +1 -1 ports/math/octave/files/md5 1.3 +20 -25 ports/math/octave/patches/patch-aa 1.3 +11 -19 ports/math/octave/patches/patch-ab 1.14 +500 -496 ports/math/octave/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 13:55:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA05975 for cvs-all-outgoing; Tue, 5 May 1998 13:55:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from news1.gtn.com (news1.gtn.com [194.77.0.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA05817; Tue, 5 May 1998 13:54:32 -0700 (PDT) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by news1.gtn.com (8.8.6/8.8.6) with UUCP id WAA00290; Tue, 5 May 1998 22:45:22 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.8.8/8.8.8) id WAA00767; Tue, 5 May 1998 22:45:10 +0200 (CEST) (envelope-from andreas) Message-ID: <19980505224510.A754@klemm.gtn.com> Date: Tue, 5 May 1998 22:45:10 +0200 From: Andreas Klemm To: John Polstra Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/net/cvsup-bin Makefile ports/net/cvsup-bin/files md5 References: <19980501144752.A23778@klemm.gtn.com> <199805052027.NAA00256@austin.polstra.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199805052027.NAA00256@austin.polstra.com>; from John Polstra on Tue, May 05, 1998 at 01:27:44PM -0700 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Tue, May 05, 1998 at 01:27:44PM -0700, John Polstra wrote: > > > It _is_ static. > > > > > > > and without GUI ? > > > > > > No. Some people like the GUI, and it doesn't hurt anything (except > > > the size of the executable) for those who don't want to use it. > > > > It wouldn't run on machines, that doesn't have X11 installed. > > It complains about missing libXaw. > > It will run just fine on those machines, because it is statically > linked. If you are getting complaints about missing libraries, then > you are not using the cvsup-bin port. Ok that sounds reasonable, sorry. -- Andreas Klemm http://www.FreeBSD.ORG/~andreas What gives you 90% more speed, for example in kernel compilation ? http://www.FreeBSD.ORG/~fsmp/SMP/akgraph-a/graph1.html "NT = Not Today" (Maggie Biggs) ``powered by FreeBSD SMP'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 14:17:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA12511 for cvs-all-outgoing; Tue, 5 May 1998 14:17:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA12485; Tue, 5 May 1998 14:17:05 -0700 (PDT) (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA05740; Tue, 5 May 1998 14:14:28 -0700 (PDT) Date: Tue, 5 May 1998 14:14:28 -0700 (PDT) Message-Id: <199805052114.OAA05740@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc rc.conf rc.network Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/05/05 14:14:28 PDT Modified files: etc rc.conf rc.network Log: Add variables for the ntpdate and xntpd program, you might want to run the binaries from the new ntp v4 port. Revision Changes Path 1.49 +3 -1 src/etc/rc.conf 1.24 +3 -3 src/etc/rc.network To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 14:17:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA12686 for cvs-all-outgoing; Tue, 5 May 1998 14:17:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from news1.gtn.com (news1.gtn.com [192.109.159.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA12556; Tue, 5 May 1998 14:17:21 -0700 (PDT) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by news1.gtn.com (8.8.6/8.8.6) with UUCP id XAA01160; Tue, 5 May 1998 23:00:08 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.8.8/8.8.8) id WAA01065; Tue, 5 May 1998 22:46:09 +0200 (CEST) (envelope-from andreas) Message-ID: <19980505224609.B754@klemm.gtn.com> Date: Tue, 5 May 1998 22:46:09 +0200 From: Andreas Klemm To: Poul-Henning Kamp , Andreas Klemm Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/net/ntp - Imported sources References: <199805052005.NAA05385@freefall.freebsd.org> <741.894400306@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <741.894400306@critter.freebsd.dk>; from Poul-Henning Kamp on Tue, May 05, 1998 at 10:31:46PM +0200 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Tue, May 05, 1998 at 10:31:46PM +0200, Poul-Henning Kamp wrote: > In message <199805052005.NAA05385@freefall.freebsd.org>, Andreas Klemm writes: > > >andreas 1998/05/05 13:05:23 PDT > > > > Log Message: > > Import of ntp v4 > > You don't waste much time do you :-) In this case it was really trivial, the porting was nearly a "one liner" and went smoothly ;-) -- Andreas Klemm http://www.FreeBSD.ORG/~andreas What gives you 90% more speed, for example in kernel compilation ? http://www.FreeBSD.ORG/~fsmp/SMP/akgraph-a/graph1.html "NT = Not Today" (Maggie Biggs) ``powered by FreeBSD SMP'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 14:42:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA18476 for cvs-all-outgoing; Tue, 5 May 1998 14:42:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA18389; Tue, 5 May 1998 14:42:26 -0700 (PDT) (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA05826; Tue, 5 May 1998 14:39:46 -0700 (PDT) Date: Tue, 5 May 1998 14:39:46 -0700 (PDT) Message-Id: <199805052139.OAA05826@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc rc.conf rc.network Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/05/05 14:39:46 PDT Modified files: (Branch: RELENG_2_2) etc rc.conf rc.network Log: Merged in changes from current config option to specify the path for ntpdate and xntpd program Revision Changes Path 1.1.2.41 +3 -1 src/etc/rc.conf 1.1.2.19 +3 -3 src/etc/rc.network To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 14:49:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA19767 for cvs-all-outgoing; Tue, 5 May 1998 14:49:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA19757; Tue, 5 May 1998 14:49:07 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA05955; Tue, 5 May 1998 14:46:31 -0700 (PDT) Date: Tue, 5 May 1998 14:46:31 -0700 (PDT) Message-Id: <199805052146.OAA05955@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/include spinlock.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/05 14:46:31 PDT Modified files: lib/libc/include spinlock.h Log: In a threaded library, expect the lock field to be declared volatile, so provide function prototypes that respect that, avoiding a gcc warning that `volatile' is being thrown away. Revision Changes Path 1.2 +5 -5 src/lib/libc/include/spinlock.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 14:50:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA20180 for cvs-all-outgoing; Tue, 5 May 1998 14:50:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA20042; Tue, 5 May 1998 14:50:10 -0700 (PDT) (envelope-from jmz@FreeBSD.org) From: Jean-Marc Zucconi Received: (from jmz@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA05990; Tue, 5 May 1998 14:47:34 -0700 (PDT) Date: Tue, 5 May 1998 14:47:34 -0700 (PDT) Message-Id: <199805052147.OAA05990@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/XFree86 Makefile ports/x11/XFree86/files md5 ports/x11/XFree86/patches patch-ag Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jmz 1998/05/05 14:47:34 PDT Modified files: x11/XFree86 Makefile x11/XFree86/files md5 Removed files: x11/XFree86/patches patch-ag Log: This is bugfix patch number 1 for XFree86 3.3.2. This patch fixes the following problems: - xterm utmp handling problem. - exploitable buffer overflows in xterm related to the preeditType, inputMethod and *Keymap resources. - fix xterm's mishandling of the -vb command line option. - fix an invisible cursor problem with xterm. - exploitable buffer overflows in setuid programs using the Xaw library which are related to the preeditType and inputMethod resources. Revision Changes Path 1.41 +9 -1 ports/x11/XFree86/Makefile 1.14 +1 -0 ports/x11/XFree86/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 14:51:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA20258 for cvs-all-outgoing; Tue, 5 May 1998 14:51:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA20179; Tue, 5 May 1998 14:50:41 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA06023; Tue, 5 May 1998 14:47:59 -0700 (PDT) Date: Tue, 5 May 1998 14:47:59 -0700 (PDT) Message-Id: <199805052147.OAA06023@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc_r/uthread uthread_spinlock.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/05 14:47:59 PDT Modified files: lib/libc_r/uthread uthread_spinlock.c Log: Treat the lock value as volatile. Revision Changes Path 1.2 +2 -2 src/lib/libc_r/uthread/uthread_spinlock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 14:52:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA20605 for cvs-all-outgoing; Tue, 5 May 1998 14:52:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA20509; Tue, 5 May 1998 14:52:16 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA06058; Tue, 5 May 1998 14:49:39 -0700 (PDT) Date: Tue, 5 May 1998 14:49:39 -0700 (PDT) Message-Id: <199805052149.OAA06058@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/sys termios.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/05 14:49:38 PDT Modified files: sys/sys termios.h Log: Change a couple of long types to int to match NetBSD so that termios works on alpha without any modifications. Revision Changes Path 1.11 +3 -3 src/sys/sys/termios.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 14:57:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA21203 for cvs-all-outgoing; Tue, 5 May 1998 14:57:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA21196; Tue, 5 May 1998 14:57:03 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA06118; Tue, 5 May 1998 14:54:26 -0700 (PDT) Date: Tue, 5 May 1998 14:54:26 -0700 (PDT) Message-Id: <199805052154.OAA06118@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libtermcap termcap.h termcap.3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/05 14:54:26 PDT Modified files: lib/libtermcap termcap.h termcap.3 Log: The __set_ospeed() function is coded against the speed_t type declared in termios.h, but it's prototype in termcap.h and the main file use the underlying definition (which is now an int, not a long for compatibility with NetBSD). Really termcap.h should use speed_t too, but I guess that this might break sources that don't include termios.h first. Revision Changes Path 1.13 +2 -2 src/lib/libtermcap/termcap.h 1.11 +1 -1 src/lib/libtermcap/termcap.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 14:59:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA21506 for cvs-all-outgoing; Tue, 5 May 1998 14:59:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA21500; Tue, 5 May 1998 14:59:19 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA06163; Tue, 5 May 1998 14:56:43 -0700 (PDT) Date: Tue, 5 May 1998 14:56:43 -0700 (PDT) Message-Id: <199805052156.OAA06163@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/stdio _flock_stub.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/05 14:56:43 PDT Modified files: lib/libc/stdio _flock_stub.c Log: Remove leading underscores for the functions (weak symbols here) that POSIX defines. Revision Changes Path 1.2 +7 -4 src/lib/libc/stdio/_flock_stub.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 15:01:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA21759 for cvs-all-outgoing; Tue, 5 May 1998 15:01:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA21754; Tue, 5 May 1998 15:01:56 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA06199; Tue, 5 May 1998 14:59:20 -0700 (PDT) Date: Tue, 5 May 1998 14:59:20 -0700 (PDT) Message-Id: <199805052159.OAA06199@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-include@FreeBSD.ORG Subject: cvs commit: src/include stdio.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/05 14:59:20 PDT Modified files: include stdio.h Log: I have a long list of issues to address here, mostly related to namespace and revision levels of ANSI and POSIX. This change only removes the leading underscrore from the FILE locking functions that POSIX defines. Revision Changes Path 1.17 +4 -6 src/include/stdio.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 15:05:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA22144 for cvs-all-outgoing; Tue, 5 May 1998 15:05:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA22130; Tue, 5 May 1998 15:05:08 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA06265; Tue, 5 May 1998 15:02:30 -0700 (PDT) Date: Tue, 5 May 1998 15:02:30 -0700 (PDT) Message-Id: <199805052202.PAA06265@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/include libc_private.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/05 15:02:30 PDT Modified files: lib/libc/include libc_private.h Log: Remove leading underscores from the FILE lock functions that POSIX specifies. Revision Changes Path 1.2 +3 -3 src/lib/libc/include/libc_private.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 15:06:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA22415 for cvs-all-outgoing; Tue, 5 May 1998 15:06:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA22407; Tue, 5 May 1998 15:06:51 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA06310; Tue, 5 May 1998 15:04:14 -0700 (PDT) Date: Tue, 5 May 1998 15:04:14 -0700 (PDT) Message-Id: <199805052204.PAA06310@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/gen nice.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/05 15:04:14 PDT Modified files: lib/libc/gen nice.c Log: Remove extern int errno and #include to get the proper definition. Revision Changes Path 1.2 +1 -1 src/lib/libc/gen/nice.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 15:08:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA22765 for cvs-all-outgoing; Tue, 5 May 1998 15:08:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA22757; Tue, 5 May 1998 15:08:53 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA06349; Tue, 5 May 1998 15:06:16 -0700 (PDT) Date: Tue, 5 May 1998 15:06:16 -0700 (PDT) Message-Id: <199805052206.PAA06349@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/i386 SYS.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/05 15:06:16 PDT Modified files: lib/libc/i386 SYS.h Log: Build the syscalls (in libc, not libc_r) with weak symbols so that libpthread can override them as required. Revision Changes Path 1.12 +9 -3 src/lib/libc/i386/SYS.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 15:09:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA22927 for cvs-all-outgoing; Tue, 5 May 1998 15:09:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA22917; Tue, 5 May 1998 15:09:39 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA06383; Tue, 5 May 1998 15:07:03 -0700 (PDT) Date: Tue, 5 May 1998 15:07:03 -0700 (PDT) Message-Id: <199805052207.PAA06383@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/i386/sys Ovfork.S Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/05 15:07:02 PDT Modified files: lib/libc/i386/sys Ovfork.S Log: Use the thread-aware errno definition all the time. Revision Changes Path 1.7 +3 -22 src/lib/libc/i386/sys/Ovfork.S To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 15:15:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA23926 for cvs-all-outgoing; Tue, 5 May 1998 15:15:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA23920; Tue, 5 May 1998 15:15:19 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA06461; Tue, 5 May 1998 15:12:43 -0700 (PDT) Date: Tue, 5 May 1998 15:12:43 -0700 (PDT) Message-Id: <199805052212.PAA06461@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/freeciv Makefile ports/games/freeciv/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/05 15:12:43 PDT Modified files: games/freeciv Makefile games/freeciv/files md5 Log: Trivially upgrade from 1.53 to 1.54. Revision Changes Path 1.8 +5 -6 ports/games/freeciv/Makefile 1.6 +1 -1 ports/games/freeciv/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 15:35:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA27444 for cvs-all-outgoing; Tue, 5 May 1998 15:35:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ns11.rim.or.jp (root@ns11.rim.or.jp [202.247.130.230]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA27436; Tue, 5 May 1998 15:35:37 -0700 (PDT) (envelope-from masafumi@aslm.rim.or.jp) Received: from rayearth.rim.or.jp (rayearth.rim.or.jp [202.247.130.242]) by ns11.rim.or.jp (8.8.5/3.5Wpl2-ns11/RIMNET-2) with ESMTP id HAA04849; Wed, 6 May 1998 07:35:36 +0900 (JST) Received: (from uucp@localhost) by rayearth.rim.or.jp (8.8.5/3.5Wpl2-uucp1/RIMNET) with UUCP id HAA11177; Wed, 6 May 1998 07:35:36 +0900 (JST) Received: from localhost (localhost [127.0.0.1]) by mail.aslm.rim.or.jp (8.8.8/3.5Wpl3-SMTP) with ESMTP id HAA04133; Wed, 6 May 1998 07:34:26 +0900 (JST) To: andreas@FreeBSD.ORG Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Cc: max@wide.ad.jp Subject: Re: cvs commit: src/etc rc.conf rc.network From: Masafumi NAKANE/=?iso-2022-jp?B?GyRCQ2Y6LDJtSjgbKEI=?= In-Reply-To: Your message of "Tue, 5 May 1998 14:14:28 -0700 (PDT)" <199805052114.OAA05740@freefall.freebsd.org> References: <199805052114.OAA05740@freefall.freebsd.org> X-Mailer: Mew version 1.92.4 on Emacs 20.2 / Mule 3.0 (MOMIJINOGA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <19980506073425X.masafumi@aslm.rim.or.jp> Date: Wed, 06 May 1998 07:34:25 +0900 X-Dispatcher: imput version 971024 Lines: 11 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > andreas 1998/05/05 14:14:28 PDT > Modified files: > etc rc.conf rc.network > Log: > Add variables for the ntpdate and xntpd program, you might want > to run the binaries from the new ntp v4 port. Please don't forget to update the rc.conf.5 man page. Cheers, Max To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 16:33:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA08572 for cvs-all-outgoing; Tue, 5 May 1998 16:33:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA08556; Tue, 5 May 1998 16:32:54 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA06716; Tue, 5 May 1998 16:30:17 -0700 (PDT) Date: Tue, 5 May 1998 16:30:17 -0700 (PDT) Message-Id: <199805052330.QAA06716@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c bundle.h command.c ipcp.c ipcp.h ppp.8 route.c route.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/05/05 16:30:16 PDT Modified files: (Branch: MP) usr.sbin/ppp bundle.c bundle.h command.c ipcp.c ipcp.h ppp.8 route.c route.h Log: Create `struct sticky_route'. Any `add' or `delete' command that uses MYADDR or HISADDR will be added to the sticky route list (show ipcp). When MYADDR or HISADDR change due to IPCP negotiations, and if `sroutes' is enabled (the default), all sticky route entries are updated in the routing table. The end result is that `add default hisaddr' will ``stick'', as will ``add myaddr 255.255.255.255 127.0.0.1'' and ``add 1.2.3.4 255.255.255.0 hisaddr''. Revision Changes Path 1.1.2.72 +25 -17 src/usr.sbin/ppp/Attic/bundle.c 1.1.2.36 +6 -5 src/usr.sbin/ppp/Attic/bundle.h 1.131.2.78 +38 -22 src/usr.sbin/ppp/command.c 1.50.2.50 +35 -28 src/usr.sbin/ppp/ipcp.c 1.18.2.26 +4 -1 src/usr.sbin/ppp/ipcp.h 1.97.2.28 +105 -91 src/usr.sbin/ppp/ppp.8 1.42.2.22 +127 -1 src/usr.sbin/ppp/route.c 1.10.2.6 +24 -1 src/usr.sbin/ppp/route.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 16:34:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA08856 for cvs-all-outgoing; Tue, 5 May 1998 16:34:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA08840; Tue, 5 May 1998 16:34:23 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA06758; Tue, 5 May 1998 16:31:46 -0700 (PDT) Date: Tue, 5 May 1998 16:31:46 -0700 (PDT) Message-Id: <199805052331.QAA06758@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc/ppp ppp.conf.sample ppp.linkup.sample Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/05/05 16:31:46 PDT Modified files: (Branch: MP) etc/ppp ppp.conf.sample ppp.linkup.sample Log: Mention sticky routes. Also, complete the comment about the dial command in the multilink example. Suggested by: Martin Cracauer Revision Changes Path 1.28.2.6 +16 -22 src/etc/ppp/ppp.conf.sample 1.13.2.1 +8 -14 src/etc/ppp/ppp.linkup.sample To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 17:03:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA13815 for cvs-all-outgoing; Tue, 5 May 1998 17:03:29 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA13662; Tue, 5 May 1998 17:02:39 -0700 (PDT) (envelope-from julian@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id QAA29709; Tue, 5 May 1998 16:54:21 -0700 (PDT) Received: from current1.whistle.com(207.76.205.22) via SMTP by alpo.whistle.com, id smtpd029679; Tue May 5 23:54:11 1998 Message-ID: <354FA697.1CFBAE39@whistle.com> Date: Tue, 05 May 1998 16:53:59 -0700 From: Julian Elischer Organization: Whistle Communications X-Mailer: Mozilla 3.0Gold (X11; I; FreeBSD 2.2.5-RELEASE i386) MIME-Version: 1.0 To: KATO Takenori CC: phk@critter.freebsd.dk, bde@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern vfs_cluster.c References: <354F65AA.41C67EA6@whistle.com> <19980506083028M.kato@gneiss.eps.nagoya-u.ac.jp> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Ahh, then there may be a problem in vn under devfs/slice because of course those bits are not on the SLICE devsw entry, even though vn is ONE of the possible bottom layers. julian KATO Takenori wrote: > > Julian Elischer wrote: > > > I'm not sure what the author of those bits had in mind when they > > added them. > > Puropose of those bits is to disable clustered read/write in vn > driver. Clustered I/O put to much pressure on the vn when they were > added. > > -----------------------------------------------+--------------------------+ > Kato Takenori | FreeBSD | > Dept. Earth Planet. Sci, Nagoya Univ. | The powere to serve! | > Nagoya, 464-8602, Japan | http://www.FreeBSD.org/ | > ++++ FreeBSD(98) 2.2.6: Rev. 02 available! +==========================+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 17:41:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA17632 for cvs-all-outgoing; Tue, 5 May 1998 17:41:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA17616; Tue, 5 May 1998 17:41:36 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA06943; Tue, 5 May 1998 17:38:57 -0700 (PDT) Date: Tue, 5 May 1998 17:38:57 -0700 (PDT) Message-Id: <199805060038.RAA06943@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp route.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/05/05 17:38:56 PDT Modified files: (Branch: MP) usr.sbin/ppp route.c Log: Don't allow duplicate sticky routes. Revision Changes Path 1.42.2.23 +3 -2 src/usr.sbin/ppp/route.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 18:05:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA22590 for cvs-all-outgoing; Tue, 5 May 1998 18:05:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA22511; Tue, 5 May 1998 18:04:37 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (wck-ca22-48.ix.netcom.com [207.92.174.176]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id SAA11159; Tue, 5 May 1998 18:04:19 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id SAA08208; Tue, 5 May 1998 18:04:16 -0700 (PDT) Date: Tue, 5 May 1998 18:04:16 -0700 (PDT) Message-Id: <199805060104.SAA08208@silvia.HIP.Berkeley.EDU> To: mph@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <199805050125.SAA01333@freefall.freebsd.org> (message from Matthew Hunt on Mon, 4 May 1998 18:25:26 -0700 (PDT)) Subject: Re: cvs commit: ports/games/xabacus - Imported sources From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Import of xabacus, an abacus for X11 with Motif. Does this work for you? The "m" version doesn't work here (linkage error with static lib, runtime error with dynamic lib). This is with Motif 1.2. Satoshi ------- ===> Building for xabacus-5.4.4 cc -c -DHAVE_FCNTL_H=1 -DHAVE_SYS_SELECT_H=1 -DHAVE_SYS_TIME_H=1 -DHAVE_UNISTD_H=1 -I/usr/X11R6/include -I. -I. -O2 -pipe Abacus.c cc -c -DHAVE_FCNTL_H=1 -DHAVE_SYS_SELECT_H=1 -DHAVE_SYS_TIME_H=1 -DHAVE_UNISTD_H=1 -I/usr/X11R6/include -I. -I. -O2 -pipe xabacus.c cc -o xabacus Abacus.o xabacus.o -L/usr/X11R6/lib -lSM -lICE -lXt -lX11 xabacus BUILD COMPLETE cc -c -DHAVE_FCNTL_H=1 -DHAVE_SYS_SELECT_H=1 -DHAVE_SYS_TIME_H=1 -DHAVE_UNISTD_H=1 -I/usr/X11R6/include -I/usr/X11R6/include -I. -I. -O2 -pipe xmabacus.c cc -o xmabacus Abacus.o xmabacus.o -L/usr/X11R6/lib -L/usr/X11R6/lib -lXm -lSM -lICE -lXt -lX11 -lSM -lICE -lXt -lX11 Display.o: Undefined symbol `_XShapeQueryExtension' referenced from text segment DragOverS.o: Undefined symbol `_XShapeCombineRectangles' referenced from text segment DragOverS.o: Undefined symbol `_XShapeCombineMask' referenced from text segment DragOverS.o: Undefined symbol `_XShapeCombineMask' referenced from text segment DragOverS.o: Undefined symbol `_XShapeCombineRectangles' referenced from text segment *** Error code 1 Stop. *** Error code 1 Stop. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 18:47:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA00159 for cvs-all-outgoing; Tue, 5 May 1998 18:47:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA29970; Tue, 5 May 1998 18:46:52 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) From: "Justin T. Gibbs" Received: (from gibbs@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA07126; Tue, 5 May 1998 18:44:14 -0700 (PDT) Date: Tue, 5 May 1998 18:44:14 -0700 (PDT) Message-Id: <199805060144.SAA07126@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/sys buf.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk gibbs 1998/05/05 18:44:14 PDT Modified files: sys/sys buf.h Log: Now that we have a TAILQ_PREV() that returns the previous object, simplify some of the buf_queue inline functions. Revision Changes Path 1.51 +7 -18 src/sys/sys/buf.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 18:48:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA00475 for cvs-all-outgoing; Tue, 5 May 1998 18:48:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA00411; Tue, 5 May 1998 18:48:36 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) From: "Justin T. Gibbs" Received: (from gibbs@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA07183; Tue, 5 May 1998 18:45:56 -0700 (PDT) Date: Tue, 5 May 1998 18:45:56 -0700 (PDT) Message-Id: <199805060145.SAA07183@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/include bus.h src/sys/i386/i386 busdma_machdep.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk gibbs 1998/05/05 18:45:56 PDT Modified files: sys/i386/include bus.h sys/i386/i386 busdma_machdep.c Log: Implement bus_dmamem_* functions and correct a few nits reported by Peter Wemm. Revision Changes Path 1.3 +27 -10 src/sys/i386/include/bus.h 1.6 +88 -21 src/sys/i386/i386/busdma_machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 22:32:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA09719 for cvs-all-outgoing; Tue, 5 May 1998 22:32:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA09673; Tue, 5 May 1998 22:32:23 -0700 (PDT) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA08101; Tue, 5 May 1998 22:29:42 -0700 (PDT) Date: Tue, 5 May 1998 22:29:42 -0700 (PDT) Message-Id: <199805060529.WAA08101@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/gnu/ext2fs ext2_vfsops.c src/sys/isofs/cd9660 cd9660_vfsops.c src/sys/kern vfs_default.c src/sys/miscfs/devfs devfs_vfsops.c src/sys/miscfs/fdesc fdesc_vfsops.c src/sys/miscfs/kernfs kernfs.h kernfs_vfsops.c ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/05/05 22:29:41 PDT Modified files: sys/gnu/ext2fs ext2_vfsops.c sys/isofs/cd9660 cd9660_vfsops.c sys/kern vfs_default.c sys/miscfs/devfs devfs_vfsops.c sys/miscfs/fdesc fdesc_vfsops.c sys/miscfs/kernfs kernfs.h kernfs_vfsops.c sys/miscfs/nullfs null_vfsops.c sys/miscfs/portal portal_vfsops.c sys/miscfs/procfs procfs_vfsops.c sys/miscfs/umapfs umap_vfsops.c sys/miscfs/union union_vfsops.c sys/msdosfs msdosfs_vfsops.c sys/nfs nfs_vfsops.c sys/sys mount.h sys/ufs/ffs ffs_vfsops.c sys/ufs/mfs mfs_vfsops.c Log: As described by the submitter: Reverse the VFS_VRELE patch. Reference counting of vnodes does not need to be done per-fs. I noticed this while fixing vfs layering violations. Doing reference counting in generic code is also the preference cited by John Heidemann in recent discussions with him. The implementation of alternative vnode management per-fs is still a valid requirement for some filesystems but will be revisited sometime later, most likely using a different framework. Submitted by: Michael Hancock Revision Changes Path 1.32 +0 -1 src/sys/gnu/ext2fs/ext2_vfsops.c 1.39 +1 -16 src/sys/isofs/cd9660/cd9660_vfsops.c 1.14 +0 -23 src/sys/kern/vfs_default.c 1.30 +1 -2 src/sys/miscfs/devfs/devfs_vfsops.c 1.15 +1 -5 src/sys/miscfs/fdesc/fdesc_vfsops.c 1.10 +1 -3 src/sys/miscfs/kernfs/kernfs.h 1.22 +1 -2 src/sys/miscfs/kernfs/kernfs_vfsops.c 1.26 +1 -21 src/sys/miscfs/nullfs/null_vfsops.c 1.21 +1 -4 src/sys/miscfs/portal/portal_vfsops.c 1.21 +1 -4 src/sys/miscfs/procfs/procfs_vfsops.c 1.22 +1 -17 src/sys/miscfs/umapfs/umap_vfsops.c 1.29 +1 -18 src/sys/miscfs/union/union_vfsops.c 1.35 +1 -2 src/sys/msdosfs/msdosfs_vfsops.c 1.58 +1 -2 src/sys/nfs/nfs_vfsops.c 1.62 +1 -4 src/sys/sys/mount.h 1.81 +1 -2 src/sys/ufs/ffs/ffs_vfsops.c 1.42 +1 -2 src/sys/ufs/mfs/mfs_vfsops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 22:48:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA13161 for cvs-all-outgoing; Tue, 5 May 1998 22:48:01 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA13138; Tue, 5 May 1998 22:47:57 -0700 (PDT) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA08193; Tue, 5 May 1998 22:45:18 -0700 (PDT) Date: Tue, 5 May 1998 22:45:18 -0700 (PDT) Message-Id: <199805060545.WAA08193@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-tools@FreeBSD.ORG Subject: cvs commit: src/tools/tools/kdrv KernelDriver sample.drvinfo Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/05/05 22:45:18 PDT Modified files: tools/tools/kdrv KernelDriver sample.drvinfo Log: Updates to support adding driver files outside the i386 area. Submitted by: Daniel O'Connor Revision Changes Path 1.3 +344 -84 src/tools/tools/kdrv/KernelDriver 1.2 +13 -8 src/tools/tools/kdrv/sample.drvinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 22:49:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA13422 for cvs-all-outgoing; Tue, 5 May 1998 22:49:01 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA13408; Tue, 5 May 1998 22:48:56 -0700 (PDT) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA08233; Tue, 5 May 1998 22:46:17 -0700 (PDT) Date: Tue, 5 May 1998 22:46:17 -0700 (PDT) Message-Id: <199805060546.WAA08233@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-tools@FreeBSD.ORG Subject: cvs commit: src/tools/tools/kdrv KernelDriver sample.drvinfo Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/05/05 22:46:17 PDT Modified files: (Branch: RELENG_2_2) tools/tools/kdrv KernelDriver sample.drvinfo Log: MFC - updates to handle files outside i386/ Submitted by: Daniel O'Connor Revision Changes Path 1.1.1.1.2.1 +375 -97 src/tools/tools/kdrv/KernelDriver 1.1.1.1.2.1 +13 -8 src/tools/tools/kdrv/sample.drvinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 23:34:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA22680 for cvs-all-outgoing; Tue, 5 May 1998 23:34:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from news1.gtn.com (news1.gtn.com [192.109.159.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA22646; Tue, 5 May 1998 23:33:59 -0700 (PDT) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by news1.gtn.com (8.8.6/8.8.6) with UUCP id IAA08183; Wed, 6 May 1998 08:30:10 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.8.8/8.8.8) id IAA00921; Wed, 6 May 1998 08:15:16 +0200 (CEST) (envelope-from andreas) Message-ID: <19980506081516.A743@klemm.gtn.com> Date: Wed, 6 May 1998 08:15:16 +0200 From: Andreas Klemm To: "Masafumi NAKANE/?$BCf:,2mJ8?(B" , andreas@FreeBSD.ORG Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: Re: cvs commit: src/etc rc.conf rc.network References: <199805052114.OAA05740@freefall.freebsd.org> <19980506073425X.masafumi@aslm.rim.or.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <19980506073425X.masafumi@aslm.rim.or.jp>; from Masafumi NAKANE/?$BCf:,2mJ8?(B on Wed, May 06, 1998 at 07:34:25AM +0900 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Wed, May 06, 1998 at 07:34:25AM +0900, Masafumi NAKANE/?$BCf:,2mJ8?(B wrote: > > andreas 1998/05/05 14:14:28 PDT > > Modified files: > > etc rc.conf rc.network > > Log: > > Add variables for the ntpdate and xntpd program, you might want > > to run the binaries from the new ntp v4 port. > > Please don't forget to update the rc.conf.5 man page. Ah, thanks for reminding me ! -- Andreas Klemm http://www.FreeBSD.ORG/~andreas What gives you 90% more speed, for example in kernel compilation ? http://www.FreeBSD.ORG/~fsmp/SMP/akgraph-a/graph1.html "NT = Not Today" (Maggie Biggs) ``powered by FreeBSD SMP'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue May 5 23:54:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA24790 for cvs-all-outgoing; Tue, 5 May 1998 23:54:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA24782; Tue, 5 May 1998 23:54:23 -0700 (PDT) (envelope-from charnier@FreeBSD.org) From: Philippe Charnier Received: (from charnier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA08790; Tue, 5 May 1998 23:51:44 -0700 (PDT) Date: Tue, 5 May 1998 23:51:44 -0700 (PDT) Message-Id: <199805060651.XAA08790@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-bin@FreeBSD.ORG Subject: cvs commit: src/bin/cat cat.1 cat.c src/bin/chio chio.1 chio.c src/bin/chmod chmod.1 chmod.c src/bin/cp cp.1 cp.c utils.c src/bin/csh alloc.c csh.1 dol.c err.c exec.c exp.c file.c glob.c hist.c lex.c misc.c parse.c proc.c sem.c set.c src/bin/date date.1 ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk charnier 1998/05/05 23:51:44 PDT Modified files: bin/cat cat.1 cat.c Log: Correct use of .Nm, .An and other cosmetics. Add rcsid. Remove unused #inc. Revision Changes Path 1.7 +11 -9 src/bin/cat/cat.1 1.10 +4 -4 src/bin/cat/cat.c Modified files: bin/chio chio.1 chio.c bin/chmod chmod.1 chmod.c bin/cp cp.1 cp.c utils.c bin/csh alloc.c csh.1 dol.c err.c exec.c exp.c file.c glob.c hist.c lex.c misc.c parse.c proc.c sem.c set.c bin/date date.1 date.c netdate.c vary.c bin/dd args.c conv.c conv_tab.c dd.1 dd.c misc.c position.c Log: Correct use of .Nm and other cosmetics. Add rcsid. Remove unused #inc. Revision Changes Path 1.5 +49 -48 src/bin/chio/chio.1 1.5 +5 -6 src/bin/chio/chio.c 1.9 +5 -5 src/bin/chmod/chmod.1 1.10 +4 -3 src/bin/chmod/chmod.c 1.10 +11 -11 src/bin/cp/cp.1 1.15 +4 -8 src/bin/cp/cp.c 1.17 +6 -5 src/bin/cp/utils.c 1.8 +1 -2 src/bin/csh/alloc.c 1.10 +71 -70 src/bin/csh/csh.1 1.7 +1 -2 src/bin/csh/dol.c 1.7 +1 -3 src/bin/csh/err.c 1.10 +1 -2 src/bin/csh/exec.c 1.6 +1 -6 src/bin/csh/exp.c 1.9 +1 -5 src/bin/csh/file.c 1.11 +1 -3 src/bin/csh/glob.c 1.7 +1 -3 src/bin/csh/hist.c 1.9 +1 -3 src/bin/csh/lex.c 1.7 +1 -3 src/bin/csh/misc.c 1.7 +1 -3 src/bin/csh/parse.c 1.9 +1 -2 src/bin/csh/proc.c 1.8 +1 -2 src/bin/csh/sem.c 1.9 +1 -6 src/bin/csh/set.c 1.24 +12 -12 src/bin/date/date.1 1.24 +4 -5 src/bin/date/date.c 1.9 +4 -3 src/bin/date/netdate.c 1.4 +5 -2 src/bin/date/vary.c 1.12 +4 -3 src/bin/dd/args.c 1.9 +4 -2 src/bin/dd/conv.c 1.7 +4 -2 src/bin/dd/conv_tab.c 1.7 +9 -9 src/bin/dd/dd.1 1.14 +4 -4 src/bin/dd/dd.c 1.13 +4 -7 src/bin/dd/misc.c 1.7 +4 -7 src/bin/dd/position.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 00:17:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA27564 for cvs-all-outgoing; Wed, 6 May 1998 00:17:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA27533; Wed, 6 May 1998 00:16:34 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id RAA00161; Wed, 6 May 1998 17:10:21 +1000 Date: Wed, 6 May 1998 17:10:21 +1000 From: Bruce Evans Message-Id: <199805060710.RAA00161@godzilla.zeta.org.au> To: julian@whistle.com, phk@critter.freebsd.dk Subject: Re: cvs commit: src/sys/kern vfs_cluster.c Cc: bde@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >It should really be a mount-option, shouldn't it ? Sort of. Mostly not. Clustering is already a mount option, following a suggestion a few months ago by someone named phk. However, vn needs an anti-clustering flag to prevent multiple layers of clustering, and all devices need to to specify their minimum, best and maximum block sizes better. >>Talking of clusterring.. >> >>One problem with clustering is the fact that the flag that dissallows >>CLUSTERING is stored in the BDEVSW entry. >> >>from sys/conf.h: >>#define D_NOCLUSTERR 0x10000 /* disables cluter read */ >>#define D_NOCLUSTERW 0x20000 /* disables cluster write */ >>#define D_NOCLUSTERRW (D_NOCLUSTERR | D_NOCLUSTERW) >> >> which is patently the wrong place for it. for several reasons: >> >>1/ different SCSI devices may have different ideas about clustering.. Only vn needs it here, so this isn't a problem. d_maxio is a problem. >>2/ in DEVFS/SLICE, all disks come in through the same major number/devfs[] >>entry no matter which driver they eventually get passed to. DEVFS/SLICE could easily have bugs like that :-). >>3/ [bc]devsw entries will totally go away anyhow. Maybe. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 00:23:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA28733 for cvs-all-outgoing; Wed, 6 May 1998 00:23:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA28727; Wed, 6 May 1998 00:23:26 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA08887; Wed, 6 May 1998 00:20:47 -0700 (PDT) Date: Wed, 6 May 1998 00:20:47 -0700 (PDT) Message-Id: <199805060720.AAA08887@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/p5-Gtk Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/05/06 00:20:46 PDT Modified files: x11/p5-Gtk Makefile Log: Change my Address to vanilla@FreeBSD.ORG Revision Changes Path 1.4 +2 -2 ports/x11/p5-Gtk/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 00:26:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA29326 for cvs-all-outgoing; Wed, 6 May 1998 00:26:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA29282; Wed, 6 May 1998 00:26:20 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (wck-ca22-48.ix.netcom.com [207.92.174.176]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id AAA11566; Wed, 6 May 1998 00:26:14 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id AAA29426; Wed, 6 May 1998 00:26:11 -0700 (PDT) Date: Wed, 6 May 1998 00:26:11 -0700 (PDT) Message-Id: <199805060726.AAA29426@silvia.HIP.Berkeley.EDU> To: andreas@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <199805052005.NAA05385@freefall.freebsd.org> (message from Andreas Klemm on Tue, 5 May 1998 13:05:23 -0700 (PDT)) Subject: Re: cvs commit: ports/net/ntp - Imported sources From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Import of ntp v4 Thanks, but doesn't build here (-stable). Is this a current-only thing? Satoshi ------- cc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -O2 -pipe -Wall -Wshadow -Wwrite-strings -Wconversion -Wpointer-arith -Wcast-qual -Wstrict-prototypes -pipe -c ntpd.c In file included from ntpd.c:40: /usr/include/sys/lock.h:50: field `lk_interlock' has incomplete type ntpd.c: In function `xntpdmain': ntpd.c:203: warning: passing arg 1 of `umask' with different width due to prototype ntpd.c:205: warning: passing arg 1 of `umask' with different width due to prototype ntpd.c:207: warning: passing arg 1 of `umask' with different width due to prototype *** Error code 1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 00:57:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA03468 for cvs-all-outgoing; Wed, 6 May 1998 00:57:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from helios.dnttm.ru (root@dnttm-gw.rssi.ru [193.232.0.205]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA03376; Wed, 6 May 1998 00:56:20 -0700 (PDT) (envelope-from dima@tejblum.dnttm.rssi.ru) Received: (from uucp@localhost) by helios.dnttm.ru (8.8.5/8.8.5/IP-3) with UUCP id LAA17704; Wed, 6 May 1998 11:46:06 +0400 Received: from tejblum.dnttm.rssi.ru (localhost [127.0.0.1]) by tejblum.dnttm.rssi.ru (8.8.8/8.8.7) with ESMTP id LAA01320; Wed, 6 May 1998 11:46:29 +0400 (MSD) (envelope-from dima@tejblum.dnttm.rssi.ru) Message-Id: <199805060746.LAA01320@tejblum.dnttm.rssi.ru> X-Mailer: exmh version 2.0gamma 1/27/96 To: asami@FreeBSD.ORG (Satoshi Asami) cc: andreas@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/net/ntp - Imported sources In-reply-to: Your message of "Wed, 06 May 1998 00:26:11 PDT." <199805060726.AAA29426@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 06 May 1998 11:46:29 +0400 From: Dmitrij Tejblum Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Satoshi Asami wrote: > * Import of ntp v4 > > Thanks, but doesn't build here (-stable). Is this a current-only thing? > > Satoshi > ------- > cc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -O2 -pipe -Wall -Wshadow -Wwrite-strings -Wconversion -Wpointer-arith -Wcast-qual -Wstrict-prototypes -pipe -c ntpd.c > In file included from ntpd.c:40: > /usr/include/sys/lock.h:50: field `lk_interlock' has incomplete type FWIW, doesn't exists in -stable. It is current-only thing :-) Dima To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 01:12:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA06370 for cvs-all-outgoing; Wed, 6 May 1998 01:12:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA06362; Wed, 6 May 1998 01:12:44 -0700 (PDT) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA09142; Wed, 6 May 1998 01:10:04 -0700 (PDT) Date: Wed, 6 May 1998 01:10:04 -0700 (PDT) Message-Id: <199805060810.BAA09142@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/05/06 01:10:04 PDT Modified files: . modules Log: rftp --> ports/mail/rftp Revision Changes Path 1.1987 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 01:13:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA06499 for cvs-all-outgoing; Wed, 6 May 1998 01:13:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA06491; Wed, 6 May 1998 01:13:40 -0700 (PDT) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA09156; Wed, 6 May 1998 01:11:01 -0700 (PDT) Date: Wed, 6 May 1998 01:11:01 -0700 (PDT) Message-Id: <199805060811.BAA09156@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/mail/rftp - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/05/06 01:11:01 PDT ports/mail/rftp - Imported sources Update of /home/ncvs/ports/mail/rftp In directory freefall.freebsd.org:/d/users/obrien/new/rftp Log Message: This program is for any user who retrieves ftp files via ftpmail or bitftp servers. PR: ports/6134 Submitted by: Gary Kline (reworked by me) Status: Vendor Tag: KLINE Release Tags: rftp_1_2 N ports/mail/rftp/Makefile I ports/mail/rftp/CVS N ports/mail/rftp/pkg/PLIST N ports/mail/rftp/pkg/DESCR N ports/mail/rftp/pkg/COMMENT N ports/mail/rftp/patches/patch-01 N ports/mail/rftp/files/md5 No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 01:13:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA06541 for cvs-all-outgoing; Wed, 6 May 1998 01:13:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ghpc8.ihf.rwth-aachen.de (ghpc8.ihf.RWTH-Aachen.DE [134.130.90.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA06504; Wed, 6 May 1998 01:13:42 -0700 (PDT) (envelope-from tg@ghpc8.ihf.rwth-aachen.de) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.rwth-aachen.de [134.130.90.6]) by ghpc8.ihf.rwth-aachen.de (8.8.8/8.8.6) with ESMTP id KAA19067; Wed, 6 May 1998 10:13:33 +0200 (CEST) Received: (from tg@localhost) by ghpc6.ihf.rwth-aachen.de (8.8.8/8.8.5) id KAA02854; Wed, 6 May 1998 10:13:32 +0200 (CEST) To: "David E. O'Brien" Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/net/am-utils Makefile References: <199804300759.AAA08827@freefall.freebsd.org> From: Thomas Gellekum Date: 06 May 1998 10:13:32 +0200 In-Reply-To: "David E. O'Brien"'s message of "Thu, 30 Apr 1998 00:59:39 -0700 (PDT)" Message-ID: <87lnsfzuj7.fsf@ghpc6.ihf.rwth-aachen.de> Lines: 12 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "David E. O'Brien" writes: > obrien 1998/04/30 00:59:39 PDT > > Modified files: > net/am-utils Makefile > Log: > Mark broken only for 2.2.6. Builds fine under 2.2.5. am-utils builds fine for me on 2.2.6-stable. What's your problem? tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 01:14:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA06757 for cvs-all-outgoing; Wed, 6 May 1998 01:14:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA06735; Wed, 6 May 1998 01:14:31 -0700 (PDT) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA09204; Wed, 6 May 1998 01:11:51 -0700 (PDT) Date: Wed, 6 May 1998 01:11:51 -0700 (PDT) Message-Id: <199805060811.BAA09204@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/mail Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/05/06 01:11:51 PDT Modified files: mail Makefile Log: add rftp. PR: ports/6134 Revision Changes Path 1.61 +2 -1 ports/mail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 01:20:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA08107 for cvs-all-outgoing; Wed, 6 May 1998 01:20:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA08034; Wed, 6 May 1998 01:20:22 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id SAA03744; Wed, 6 May 1998 18:17:12 +1000 Date: Wed, 6 May 1998 18:17:12 +1000 From: Bruce Evans Message-Id: <199805060817.SAA03744@godzilla.zeta.org.au> To: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-sys@FreeBSD.ORG, jb@FreeBSD.ORG Subject: Re: cvs commit: src/sys/sys termios.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Modified files: > sys/sys termios.h > Log: > Change a couple of long types to int to match NetBSD so that termios > works on alpha without any modifications. Unsigned long was correct (*). Unsigned int is incorrect because ints may be 16-bit. NetBSD should be more concerned about this than us. (*) but not best. speed_t and tcflag_t should be u_int if ints have about 32 bits or more, otherwise u_long. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 01:28:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA09566 for cvs-all-outgoing; Wed, 6 May 1998 01:28:48 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA09546; Wed, 6 May 1998 01:28:41 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA09351; Wed, 6 May 1998 01:26:01 -0700 (PDT) Date: Wed, 6 May 1998 01:26:01 -0700 (PDT) Message-Id: <199805060826.BAA09351@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 wd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/05/06 01:26:01 PDT Modified files: sys/pc98/pc98 wd.c Log: Sync with sys/i386/isa/wd.c revision 1.164. Revision Changes Path 1.53 +7 -2 src/sys/pc98/pc98/wd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 02:08:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA16512 for cvs-all-outgoing; Wed, 6 May 1998 02:08:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA16482; Wed, 6 May 1998 02:08:42 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA10005; Wed, 6 May 1998 02:06:01 -0700 (PDT) Date: Wed, 6 May 1998 02:06:01 -0700 (PDT) Message-Id: <199805060906.CAA10005@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/lang/cim/pkg PLIST ports/x11/iv/pkg PLIST ports/japanese/iv/pkg PLIST ports/japanese/mh/pkg PLIST ports/japanese/pine/pkg PLIST ports/japanese/tcl76/pkg PLIST ports/japanese/tk42/pkg PLIST ports/korean/pine/pkg PLIST ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/05/06 02:06:01 PDT Modified files: lang/cim/pkg PLIST x11/iv/pkg PLIST japanese/iv/pkg PLIST japanese/mh/pkg PLIST japanese/pine/pkg PLIST japanese/tcl76/pkg PLIST japanese/tk42/pkg PLIST korean/pine/pkg PLIST mail/mh/pkg PLIST math/octave/pkg PLIST mail/pine/pkg PLIST x11/qt133/pkg PLIST lang/tcl76/pkg PLIST x11/tk42/pkg PLIST chinese/pine/pkg PLIST Log: Add a few more `ldconfig -R' I forgot yesterday. Remove duplicates from octave and iv. Revision Changes Path 1.4 +1 -0 ports/lang/cim/pkg/PLIST 1.5 +0 -1 ports/x11/iv/pkg/PLIST 1.2 +1 -0 ports/japanese/iv/pkg/PLIST 1.6 +1 -0 ports/japanese/mh/pkg/PLIST 1.4 +1 -0 ports/japanese/pine/pkg/PLIST 1.2 +1 -0 ports/japanese/tcl76/pkg/PLIST 1.3 +1 -0 ports/japanese/tk42/pkg/PLIST 1.3 +1 -0 ports/korean/pine/pkg/PLIST 1.9 +1 -0 ports/mail/mh/pkg/PLIST 1.15 +0 -1 ports/math/octave/pkg/PLIST 1.9 +1 -0 ports/mail/pine/pkg/PLIST 1.10 +1 -0 ports/x11/qt133/pkg/PLIST 1.2 +1 -0 ports/lang/tcl76/pkg/PLIST 1.4 +1 -0 ports/x11/tk42/pkg/PLIST 1.3 +1 -0 ports/chinese/pine/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 02:14:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA17597 for cvs-all-outgoing; Wed, 6 May 1998 02:14:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA17497; Wed, 6 May 1998 02:14:05 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA10075; Wed, 6 May 1998 02:11:21 -0700 (PDT) Date: Wed, 6 May 1998 02:11:21 -0700 (PDT) Message-Id: <199805060911.CAA10075@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/scsi ch.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/05/06 02:11:21 PDT Modified files: sys/scsi ch.c Log: The CHIOGSTATUS ioctl of the SCSI media changer driver (sys/scsi/ch.c) is broken. It omits the SCSI_DATA_IN flag in the SCSI READ ELEMENT STATUS command, which makes the 'chio status' command fail. PR: 6528 Reviewed by: phk Submitted by: Hans Huebner Revision Changes Path 1.45 +2 -2 src/sys/scsi/ch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 02:17:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA18148 for cvs-all-outgoing; Wed, 6 May 1998 02:17:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA18046; Wed, 6 May 1998 02:16:37 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA10181; Wed, 6 May 1998 02:13:54 -0700 (PDT) Date: Wed, 6 May 1998 02:13:54 -0700 (PDT) Message-Id: <199805060913.CAA10181@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/man/man9 devfs_add_devswf.9 devfs_link.9 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/05/06 02:13:54 PDT Modified files: share/man/man9 devfs_add_devswf.9 devfs_link.9 Log: devfs_add_devswf(9) and devfs_link(9) don't tell you how to remove the device once it's added or linked. PR: 6524 Reviewed by: phk Submitted by: Brian Cully Revision Changes Path 1.7 +4 -2 src/share/man/man9/devfs_add_devswf.9 1.9 +2 -1 src/share/man/man9/devfs_link.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 02:49:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA25389 for cvs-all-outgoing; Wed, 6 May 1998 02:49:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA25381; Wed, 6 May 1998 02:49:10 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA10868; Wed, 6 May 1998 02:46:30 -0700 (PDT) Date: Wed, 6 May 1998 02:46:30 -0700 (PDT) Message-Id: <199805060946.CAA10868@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/gtk Makefile ports/x11/gtk/files md5 ports/x11/gtk/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/05/06 02:46:30 PDT Modified files: x11/gtk Makefile x11/gtk/files md5 x11/gtk/pkg PLIST Log: Upgrade to 1.0.1. Revision Changes Path 1.16 +4 -4 ports/x11/gtk/Makefile 1.13 +1 -1 ports/x11/gtk/files/md5 1.20 +3 -4 ports/x11/gtk/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 04:12:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA09090 for cvs-all-outgoing; Wed, 6 May 1998 04:12:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA09081; Wed, 6 May 1998 04:12:36 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA11408; Wed, 6 May 1998 04:09:55 -0700 (PDT) Date: Wed, 6 May 1998 04:09:55 -0700 (PDT) Message-Id: <199805061109.EAA11408@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/kbdcontrol kbdcontrol.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/05/06 04:09:55 PDT Modified files: (Branch: RELENG_2_2) usr.sbin/kbdcontrol kbdcontrol.c Log: MFC (submitter says the patch to current is working fine) PR: bin/6522 Submitted by: Rudolf Cejka Revision Changes Path 1.7.4.4 +3 -3 src/usr.sbin/kbdcontrol/kbdcontrol.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 04:17:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA09833 for cvs-all-outgoing; Wed, 6 May 1998 04:17:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA09828 for ; Wed, 6 May 1998 04:17:37 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from grjottunagard.ifi.uio.no (2602@grjottunagard.ifi.uio.no [129.240.64.131]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with ESMTP id NAA18873 for ; Wed, 6 May 1998 13:17:37 +0200 (MET DST) Received: (from dag-erli@localhost) by grjottunagard.ifi.uio.no ; Wed, 6 May 1998 13:17:36 +0200 (MET DST) Mime-Version: 1.0 To: committers@FreeBSD.ORG Subject: MFC ls Organization: Gutteklubben Terrasse / KRST / PUMS / YASMW X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-Stop-Spam: http://www.cauce.org From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 06 May 1998 13:17:36 +0200 Message-ID: Lines: 9 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk I looked through ls today with the intention to MFC, but there are more changes between -stable and -current than those I introduced (and ache's cleanup of my poor excuse of a fix) and I don't feel comfor- table enough with CVS yet to start mucking around with ls. Could somebody pretty please with saccharose on top MFC so I can close the PRs? -- Noone else has a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 04:59:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA15985 for cvs-all-outgoing; Wed, 6 May 1998 04:59:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA15963; Wed, 6 May 1998 04:59:07 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (wck-ca22-48.ix.netcom.com [207.92.174.176]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id EAA11845; Wed, 6 May 1998 04:59:06 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id EAA29922; Wed, 6 May 1998 04:59:03 -0700 (PDT) Date: Wed, 6 May 1998 04:59:03 -0700 (PDT) Message-Id: <199805061159.EAA29922@silvia.HIP.Berkeley.EDU> To: dima@tejblum.dnttm.rssi.ru CC: andreas@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <199805060746.LAA01320@tejblum.dnttm.rssi.ru> (message from Dmitrij Tejblum on Wed, 06 May 1998 11:46:29 +0400) Subject: Re: cvs commit: ports/net/ntp - Imported sources From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * FWIW, doesn't exists in -stable. It is current-only thing :-) You're right, I deleted that file and it works now. Thanks! Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 05:04:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA16790 for cvs-all-outgoing; Wed, 6 May 1998 05:04:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA16699; Wed, 6 May 1998 05:04:04 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA11664; Wed, 6 May 1998 05:01:22 -0700 (PDT) Date: Wed, 6 May 1998 05:01:22 -0700 (PDT) Message-Id: <199805061201.FAA11664@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall menus.c sysinstall.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/05/06 05:01:22 PDT Modified files: release/sysinstall menus.c sysinstall.8 Log: XFree86 3.3.1 -> 3.3.2 Revision Changes Path 1.165 +7 -7 src/release/sysinstall/menus.c 1.8 +90 -90 src/release/sysinstall/sysinstall.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 05:11:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA18006 for cvs-all-outgoing; Wed, 6 May 1998 05:11:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA17964; Wed, 6 May 1998 05:11:19 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (wck-ca22-48.ix.netcom.com [207.92.174.176]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id FAA11865; Wed, 6 May 1998 05:11:19 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id FAA29965; Wed, 6 May 1998 05:11:16 -0700 (PDT) Date: Wed, 6 May 1998 05:11:16 -0700 (PDT) Message-Id: <199805061211.FAA29965@silvia.HIP.Berkeley.EDU> To: ache@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <199804301115.EAA11201@freefall.freebsd.org> (ache@FreeBSD.ORG) Subject: Re: cvs commit: ports/shells/tcsh/patches patch-ag From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk I can't build tcsh now. ======= ===> Building for tcsh-6.07.02 grep 'ERR_' sh.err.c | grep '^#define' >> sh.err.h cc -E -I. -I.. -D_h_tc_const tc.const.c | grep 'Char STR' | sed -e 's/Char \([a-zA-Z0-9_]*\)\[\].*/extern Char \1[];/' | sort >> tc.const.h cc -c -I. -I.. -O2 -pipe sh.c cc -c -I. -I.. -O2 -pipe sh.dir.c cc -c -I. -I.. -O2 -pipe sh.dol.c cc -c -I. -I.. -O2 -pipe sh.err.c cc -c -I. -I.. -O2 -pipe sh.exec.c cc -c -I. -I.. -O2 -pipe sh.char.c cc -c -I. -I.. -O2 -pipe sh.exp.c cc -c -I. -I.. -O2 -pipe sh.func.c sh.func.c: In function `nlsinit': sh.func.c:2272: `NL_CAT_LOCALE' undeclared (first use this function) sh.func.c:2272: (Each undeclared identifier is reported only once sh.func.c:2272: for each function it appears in.) *** Error code 1 ======= I recall a discussion of whether this breaks -stable or not, will it work if I do a make world? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 05:13:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA18326 for cvs-all-outgoing; Wed, 6 May 1998 05:13:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA18320; Wed, 6 May 1998 05:13:13 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA11875; Wed, 6 May 1998 05:10:32 -0700 (PDT) Date: Wed, 6 May 1998 05:10:32 -0700 (PDT) Message-Id: <199805061210.FAA11875@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data newsflash.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/05/06 05:10:32 PDT Modified files: data newsflash.sgml Log: SGML typo from last commit. Revision Changes Path 1.76 +3 -3 www/data/newsflash.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 05:15:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA18710 for cvs-all-outgoing; Wed, 6 May 1998 05:15:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA18701; Wed, 6 May 1998 05:15:21 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA11922; Wed, 6 May 1998 05:12:40 -0700 (PDT) Date: Wed, 6 May 1998 05:12:40 -0700 (PDT) Message-Id: <199805061212.FAA11922@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data web.atoz support.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/05/06 05:12:40 PDT Modified files: data web.atoz support.sgml Log: Add projects Point to Point Protocol (PPP) GLOBAL common source code tag system Metacomputing Revision Changes Path 1.27 +4 -1 www/data/web.atoz 1.71 +5 -2 www/data/support.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 05:16:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA18974 for cvs-all-outgoing; Wed, 6 May 1998 05:16:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA18969; Wed, 6 May 1998 05:16:33 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA11940; Wed, 6 May 1998 05:13:52 -0700 (PDT) Date: Wed, 6 May 1998 05:13:52 -0700 (PDT) Message-Id: <199805061213.FAA11940@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/offix-clipboard - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/05/06 05:13:52 PDT ports/x11/offix-clipboard - Imported sources Update of /home/ncvs/ports/x11/offix-clipboard In directory freefall.freebsd.org:/tmp/cvs-serv11931 Log Message: New port: Clipboard from the OffiX package. PR: part of 3991 Submitted by: Ruslan Shevchenko Status: Vendor Tag: RUSLAN Release Tags: clipboard_2_4 N ports/x11/offix-clipboard/Makefile N ports/x11/offix-clipboard/files/md5 N ports/x11/offix-clipboard/pkg/PLIST N ports/x11/offix-clipboard/pkg/COMMENT N ports/x11/offix-clipboard/pkg/DESCR No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 05:21:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA19782 for cvs-all-outgoing; Wed, 6 May 1998 05:21:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA19772; Wed, 6 May 1998 05:21:07 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA11992; Wed, 6 May 1998 05:18:26 -0700 (PDT) Date: Wed, 6 May 1998 05:18:26 -0700 (PDT) Message-Id: <199805061218.FAA11992@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/editors/offix-editor - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/05/06 05:18:25 PDT ports/editors/offix-editor - Imported sources Update of /home/ncvs/ports/editors/offix-editor In directory freefall.freebsd.org:/tmp/cvs-serv11969 Log Message: New port: Editor from the OffiX package. PR: part of 3991 Submitted by: Ruslan Shevchenko Status: Vendor Tag: RUSLAN Release Tags: editor_2_4 N ports/editors/offix-editor/Makefile N ports/editors/offix-editor/files/md5 N ports/editors/offix-editor/pkg/PLIST N ports/editors/offix-editor/pkg/COMMENT N ports/editors/offix-editor/pkg/DESCR No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 05:25:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA20774 for cvs-all-outgoing; Wed, 6 May 1998 05:25:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA20734; Wed, 6 May 1998 05:25:26 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA12105; Wed, 6 May 1998 05:22:45 -0700 (PDT) Date: Wed, 6 May 1998 05:22:45 -0700 (PDT) Message-Id: <199805061222.FAA12105@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/offix-execute - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/05/06 05:22:44 PDT ports/x11/offix-execute - Imported sources Update of /home/ncvs/ports/x11/offix-execute In directory freefall.freebsd.org:/tmp/cvs-serv12096 Log Message: New port: Execute from the OffiX package. Execute runs programs and redirects stdout/stderr to a window. PR: part of 3991 Submitted by: Ruslan Shevchenko Status: Vendor Tag: RUSLAN Release Tags: execute_2_4 N ports/x11/offix-execute/Makefile N ports/x11/offix-execute/files/md5 N ports/x11/offix-execute/pkg/PLIST N ports/x11/offix-execute/pkg/COMMENT N ports/x11/offix-execute/pkg/DESCR No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 05:29:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA21480 for cvs-all-outgoing; Wed, 6 May 1998 05:29:48 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA21475; Wed, 6 May 1998 05:29:46 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA12134; Wed, 6 May 1998 05:27:05 -0700 (PDT) Date: Wed, 6 May 1998 05:27:05 -0700 (PDT) Message-Id: <199805061227.FAA12134@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/offix-files - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/05/06 05:27:05 PDT ports/x11/offix-files - Imported sources Update of /home/ncvs/ports/x11/offix-files In directory freefall.freebsd.org:/tmp/cvs-serv12125 Log Message: New port: Files from the OffiX package. Yet another file manager. PR: part of 3991 Submitted by: Ruslan Shevchenko Status: Vendor Tag: RUSLAN Release Tags: files_2_4 N ports/x11/offix-files/Makefile N ports/x11/offix-files/patches/patch-aa N ports/x11/offix-files/pkg/PLIST N ports/x11/offix-files/pkg/COMMENT N ports/x11/offix-files/pkg/DESCR N ports/x11/offix-files/files/md5 No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 05:33:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA22082 for cvs-all-outgoing; Wed, 6 May 1998 05:33:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA22076; Wed, 6 May 1998 05:33:29 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA12179; Wed, 6 May 1998 05:30:48 -0700 (PDT) Date: Wed, 6 May 1998 05:30:48 -0700 (PDT) Message-Id: <199805061230.FAA12179@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/print/offix-printer - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/05/06 05:30:48 PDT ports/print/offix-printer - Imported sources Update of /home/ncvs/ports/print/offix-printer In directory freefall.freebsd.org:/tmp/cvs-serv12154 Log Message: New port: Printer from the OffiX package. Windowed interface to lpr. PR: part of 3991 Submitted by: Ruslan Shevchenko Status: Vendor Tag: RUSLAN Release Tags: printer_2_4 N ports/print/offix-printer/Makefile N ports/print/offix-printer/files/md5 N ports/print/offix-printer/pkg/COMMENT N ports/print/offix-printer/pkg/DESCR N ports/print/offix-printer/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 05:37:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA22518 for cvs-all-outgoing; Wed, 6 May 1998 05:37:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA22513; Wed, 6 May 1998 05:37:43 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA12216; Wed, 6 May 1998 05:35:02 -0700 (PDT) Date: Wed, 6 May 1998 05:35:02 -0700 (PDT) Message-Id: <199805061235.FAA12216@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/misc/offix-trash - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/05/06 05:35:01 PDT ports/misc/offix-trash - Imported sources Update of /home/ncvs/ports/misc/offix-trash In directory freefall.freebsd.org:/tmp/cvs-serv12204 Log Message: New port: Trash from the OffiX package. Trashcan for Unix/X. PR: final part of 3991 Submitted by: Ruslan Shevchenko Status: Vendor Tag: RUSLAN Release Tags: trash_2_4 N ports/misc/offix-trash/Makefile N ports/misc/offix-trash/files/md5 N ports/misc/offix-trash/pkg/PLIST N ports/misc/offix-trash/pkg/COMMENT N ports/misc/offix-trash/pkg/DESCR No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 05:40:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA22791 for cvs-all-outgoing; Wed, 6 May 1998 05:40:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA22786; Wed, 6 May 1998 05:40:57 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA12355; Wed, 6 May 1998 05:38:17 -0700 (PDT) Date: Wed, 6 May 1998 05:38:17 -0700 (PDT) Message-Id: <199805061238.FAA12355@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/05/06 05:38:16 PDT Modified files: . modules Log: offix-clipboard --> ports/x11/offix-clipboard offix-editor --> ports/editors/offix-editor offix-execute --> ports/x11/offix-execute offix-files --> ports/x11/offix-files offix-printer --> ports/print/offix-printer offix-trash --> ports/misc/offix-trash Revision Changes Path 1.1988 +7 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 05:45:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA23073 for cvs-all-outgoing; Wed, 6 May 1998 05:45:16 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA23063; Wed, 6 May 1998 05:45:13 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA12458; Wed, 6 May 1998 05:42:28 -0700 (PDT) Date: Wed, 6 May 1998 05:42:28 -0700 (PDT) Message-Id: <199805061242.FAA12458@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/05/06 05:42:28 PDT Modified files: x11 Makefile Log: Activate offix-clipboard, offix-execute and offix-files. Revision Changes Path 1.200 +4 -1 ports/x11/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 05:45:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA23146 for cvs-all-outgoing; Wed, 6 May 1998 05:45:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA23136; Wed, 6 May 1998 05:45:44 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA12493; Wed, 6 May 1998 05:43:03 -0700 (PDT) Date: Wed, 6 May 1998 05:43:03 -0700 (PDT) Message-Id: <199805061243.FAA12493@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/editors Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/05/06 05:43:03 PDT Modified files: editors Makefile Log: Activate offix-editor. Revision Changes Path 1.52 +2 -1 ports/editors/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 05:46:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA23229 for cvs-all-outgoing; Wed, 6 May 1998 05:46:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA23224; Wed, 6 May 1998 05:46:29 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA12523; Wed, 6 May 1998 05:43:48 -0700 (PDT) Date: Wed, 6 May 1998 05:43:48 -0700 (PDT) Message-Id: <199805061243.FAA12523@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data press.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/05/06 05:43:47 PDT Modified files: data press.sgml Log: Addded: NC World, May 1997; The Politics of NC Computing According to Oracle Computer Bits Online, August 1997; The Network Community DV Live Magazine: April 98; Who's Serving Who? Revision Changes Path 1.4 +25 -2 www/data/press.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 05:46:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA23280 for cvs-all-outgoing; Wed, 6 May 1998 05:46:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA23275; Wed, 6 May 1998 05:46:39 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA12557; Wed, 6 May 1998 05:43:58 -0700 (PDT) Date: Wed, 6 May 1998 05:43:58 -0700 (PDT) Message-Id: <199805061243.FAA12557@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/print Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/05/06 05:43:58 PDT Modified files: print Makefile Log: Activate offix-printer. Revision Changes Path 1.59 +2 -1 ports/print/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 05:48:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA23555 for cvs-all-outgoing; Wed, 6 May 1998 05:48:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA23510; Wed, 6 May 1998 05:48:00 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA12595; Wed, 6 May 1998 05:45:17 -0700 (PDT) Date: Wed, 6 May 1998 05:45:17 -0700 (PDT) Message-Id: <199805061245.FAA12595@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/misc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/05/06 05:45:17 PDT Modified files: misc Makefile Log: Activate offix-trash. Revision Changes Path 1.142 +2 -1 ports/misc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 06:26:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA28196 for cvs-all-outgoing; Wed, 6 May 1998 06:26:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA28191; Wed, 6 May 1998 06:26:22 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA12808; Wed, 6 May 1998 06:23:40 -0700 (PDT) Date: Wed, 6 May 1998 06:23:40 -0700 (PDT) Message-Id: <199805061323.GAA12808@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/named Makefile.inc Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/06 06:23:40 PDT Modified files: usr.sbin/named Makefile.inc Log: Use `foo/bar.a' instead of `-Lfoo -lbar' for linking to static internal libraries, so that `ld -f' in can create correct dependencies for yet-to-be-built libraries. Use `DIR!= cd ...libbind; make -V .OBJDIR' to find libbind's object dir if it doesn't seem to be in its usual place relative to ${.OBJDIR}. This fixes `cd /usr/src/usr.sbin/nslookup; mkdir obj; make'. Revision Changes Path 1.7 +7 -5 src/usr.sbin/named/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 08:04:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA11453 for cvs-all-outgoing; Wed, 6 May 1998 08:04:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA11366; Wed, 6 May 1998 08:04:01 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA07681; Wed, 6 May 1998 08:01:19 -0700 (PDT) Date: Wed, 6 May 1998 08:01:19 -0700 (PDT) Message-Id: <199805061501.IAA07681@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/mk bsd.prog.mk Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/06 08:01:19 PDT Modified files: share/mk bsd.prog.mk Log: Regress to generating foo.c from foo.y via y.tab.c for crufty applications that want a y.tab.h file. This want must be specified by putting y.tab.h in SRCS (and defaulting to or putting -d in YFLAGS). This only works if there is only one yacc parser, of course. One improvement: copy y.tab.c to foo.c instead of renaming it, so that `#line...y.tab.c' statements in it refer to an existing file. Regress to not generating explicit rules for .l and .y sources containing slashes. This case is unusual and hard to handle properly. Don't generate an unused dependency when -d is not in YFLAGS. Revision Changes Path 1.71 +20 -12 src/share/mk/bsd.prog.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 08:22:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA14049 for cvs-all-outgoing; Wed, 6 May 1998 08:22:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from pluto.plutotech.com (mail.plutotech.com [206.168.67.137]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA13983; Wed, 6 May 1998 08:22:31 -0700 (PDT) (envelope-from gibbs@plutotech.com) Received: from narnia.plutotech.com (narnia.plutotech.com [206.168.67.130]) by pluto.plutotech.com (8.8.7/8.8.5) with ESMTP id JAA03326; Wed, 6 May 1998 09:22:27 -0600 (MDT) Message-Id: <199805061522.JAA03326@pluto.plutotech.com> X-Mailer: exmh version 2.0.1 12/23/97 To: Bruce Evans cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-sys@FreeBSD.ORG, jb@FreeBSD.ORG Subject: Re: cvs commit: src/sys/sys termios.h In-reply-to: Your message of "Wed, 06 May 1998 18:17:12 +1000." <199805060817.SAA03744@godzilla.zeta.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 06 May 1998 09:18:40 -0600 From: "Justin T. Gibbs" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >> Modified files: >> sys/sys termios.h >> Log: >> Change a couple of long types to int to match NetBSD so that termios >> works on alpha without any modifications. > >Unsigned long was correct (*). Unsigned int is incorrect because ints >may be 16-bit. NetBSD should be more concerned about this than us. I believe that NetBSD decided that ints would be >= 32bits on all platforms some time ago. -- Justin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 08:26:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA14664 for cvs-all-outgoing; Wed, 6 May 1998 08:26:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA14655; Wed, 6 May 1998 08:26:36 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA07770; Wed, 6 May 1998 08:23:54 -0700 (PDT) Date: Wed, 6 May 1998 08:23:54 -0700 (PDT) Message-Id: <199805061523.IAA07770@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pcvt/vgaio Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/06 08:23:54 PDT Modified files: usr.sbin/pcvt/vgaio Makefile Log: Backed out previous backout. Added y.tab.h to SRCS. Dependencies on it were missing until recently. Revision Changes Path 1.9 +3 -2 src/usr.sbin/pcvt/vgaio/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 08:30:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA15337 for cvs-all-outgoing; Wed, 6 May 1998 08:30:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA15323; Wed, 6 May 1998 08:30:41 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA07812; Wed, 6 May 1998 08:27:59 -0700 (PDT) Date: Wed, 6 May 1998 08:27:59 -0700 (PDT) Message-Id: <199805061527.IAA07812@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/config Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/06 08:27:59 PDT Modified files: usr.sbin/config Makefile Log: Backed out previous backout. Put y.tab.h back in SRCS. Revision Changes Path 1.20 +2 -4 src/usr.sbin/config/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 08:36:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA16107 for cvs-all-outgoing; Wed, 6 May 1998 08:36:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA16099; Wed, 6 May 1998 08:36:43 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA07851; Wed, 6 May 1998 08:34:01 -0700 (PDT) Date: Wed, 6 May 1998 08:34:01 -0700 (PDT) Message-Id: <199805061534.IAA07851@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-bin@FreeBSD.ORG Subject: cvs commit: src/bin/sh Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/06 08:34:00 PDT Modified files: bin/sh Makefile Log: Backed out previous backout. Put y.tab.h back in SRCS. Revision Changes Path 1.27 +6 -10 src/bin/sh/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 09:08:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA21316 for cvs-all-outgoing; Wed, 6 May 1998 09:08:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mph124.rh.psu.edu (mph@MPH124.rh.psu.edu [128.118.126.83]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA21295; Wed, 6 May 1998 09:08:26 -0700 (PDT) (envelope-from mph@mph124.rh.psu.edu) Received: (from mph@localhost) by mph124.rh.psu.edu (8.8.8/8.8.8) id MAA15962; Wed, 6 May 1998 12:08:26 -0400 (EDT) (envelope-from mph) Message-ID: <19980506120826.A15949@mph124.rh.psu.edu> Date: Wed, 6 May 1998 12:08:26 -0400 From: Matthew Hunt To: Satoshi Asami Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/games/xabacus - Imported sources Mail-Followup-To: Satoshi Asami , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG References: <199805050125.SAA01333@freefall.freebsd.org> <199805060104.SAA08208@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199805060104.SAA08208@silvia.HIP.Berkeley.EDU>; from Satoshi Asami on Tue, May 05, 1998 at 06:04:16PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Tue, May 05, 1998 at 06:04:16PM -0700, Satoshi Asami wrote: > Does this work for you? The "m" version doesn't work here (linkage > error with static lib, runtime error with dynamic lib). Bah, forgot to run the Motif version. Fixed by adding -lXext to the libraries. -- Matthew Hunt * Stay close to the Vorlon. http://mph124.rh.psu.edu/~mph/pgp.key for PGP public key 0x67203349. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 09:08:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA21395 for cvs-all-outgoing; Wed, 6 May 1998 09:08:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA21378; Wed, 6 May 1998 09:08:52 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA08084; Wed, 6 May 1998 09:06:10 -0700 (PDT) Date: Wed, 6 May 1998 09:06:10 -0700 (PDT) Message-Id: <199805061606.JAA08084@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/xabacus/patches patch-ab Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/06 09:06:10 PDT Added files: games/xabacus/patches patch-ab Log: Patch "configure" to add "-lXext" to the Motif libraries. Pointed out by: asami To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 09:14:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA22376 for cvs-all-outgoing; Wed, 6 May 1998 09:14:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from lsd.relcom.eu.net (ache@lsd.relcom.eu.net [193.125.27.73]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA22366; Wed, 6 May 1998 09:14:41 -0700 (PDT) (envelope-from ache@lsd.relcom.eu.net) Received: (from ache@localhost) by lsd.relcom.eu.net (8.8.8/8.8.8) id UAA23128; Wed, 6 May 1998 20:14:38 +0400 (MSD) (envelope-from ache) Message-ID: <19980506201437.A23063@nagual.pp.ru> Date: Wed, 6 May 1998 20:14:37 +0400 From: =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= To: Satoshi Asami Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/shells/tcsh/patches patch-ag Mail-Followup-To: Satoshi Asami , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG References: <199804301115.EAA11201@freefall.freebsd.org> <199805061211.FAA29965@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199805061211.FAA29965@silvia.HIP.Berkeley.EDU>; from asami@FreeBSD.ORG on Wed, May 06, 1998 at 05:11:16AM -0700 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Wed, May 06, 1998 at 05:11:16AM -0700, Satoshi Asami wrote: > sh.func.c:2272: `NL_CAT_LOCALE' undeclared (first use this function) > sh.func.c:2272: (Each undeclared identifier is reported only once > sh.func.c:2272: for each function it appears in.) > *** Error code 1 > ======= > > I recall a discussion of whether this breaks -stable or not, will it > work if I do a make world? For -stable: 1) cd /usr/src/includes 2) make install -- Andrey A. Chernov http://www.nagual.pp.ru/~ache/ MTH/SH/HE S-- W-- N+ PEC>+ D A a++ C G>+ QH+(++) 666+>++ Y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 09:56:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA29884 for cvs-all-outgoing; Wed, 6 May 1998 09:56:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA29878; Wed, 6 May 1998 09:56:37 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA08203; Wed, 6 May 1998 09:53:54 -0700 (PDT) Date: Wed, 6 May 1998 09:53:54 -0700 (PDT) Message-Id: <199805061653.JAA08203@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/mk bsd.subdir.mk Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/05/06 09:53:54 PDT Modified files: share/mk bsd.subdir.mk Log: Delete stale comment. Pointed out by: bde Revision Changes Path 1.24 +2 -4 src/share/mk/bsd.subdir.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 10:29:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA04788 for cvs-all-outgoing; Wed, 6 May 1998 10:29:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA04769; Wed, 6 May 1998 10:29:33 -0700 (PDT) (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA08298; Wed, 6 May 1998 10:26:49 -0700 (PDT) Date: Wed, 6 May 1998 10:26:49 -0700 (PDT) Message-Id: <199805061726.KAA08298@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/man/man5 rc.conf.5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/05/06 10:26:49 PDT Modified files: share/man/man5 rc.conf.5 Log: document ntpdate_prog and xntpd_prog fix: named_program -> named_prog to reflect "real life" (I suggest keeping this shorter name convention as it is actually used in the config file) Revision Changes Path 1.18 +12 -2 src/share/man/man5/rc.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 10:33:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA05470 for cvs-all-outgoing; Wed, 6 May 1998 10:33:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA05451; Wed, 6 May 1998 10:33:19 -0700 (PDT) (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA08340; Wed, 6 May 1998 10:30:34 -0700 (PDT) Date: Wed, 6 May 1998 10:30:34 -0700 (PDT) Message-Id: <199805061730.KAA08340@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/man/man5 rc.conf.5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/05/06 10:30:34 PDT Modified files: (Branch: RELENG_2_2) share/man/man5 rc.conf.5 Log: MFC: document ntpdate_prog and xntpd_prog fix: named_program -> named_prog Revision Changes Path 1.1.2.9 +12 -2 src/share/man/man5/rc.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 10:39:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA06442 for cvs-all-outgoing; Wed, 6 May 1998 10:39:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA06428; Wed, 6 May 1998 10:39:00 -0700 (PDT) (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA08405; Wed, 6 May 1998 10:36:17 -0700 (PDT) Date: Wed, 6 May 1998 10:36:17 -0700 (PDT) Message-Id: <199805061736.KAA08405@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/etc rc.conf rc.network src/share/man/man5 rc.conf.5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/05/06 10:36:17 PDT Modified files: etc rc.conf rc.network share/man/man5 rc.conf.5 Log: Overlooked, that newer naming convention is xxx_program instead of xxx_prog. So changed it to ntpdate_program and xntpd_program. Backout last change, now we have again named_program, sorry. Revision Changes Path 1.50 +3 -3 src/etc/rc.conf 1.25 +3 -3 src/etc/rc.network 1.19 +4 -4 src/share/man/man5/rc.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 10:45:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA07890 for cvs-all-outgoing; Wed, 6 May 1998 10:45:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA07882; Wed, 6 May 1998 10:45:45 -0700 (PDT) (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA08536; Wed, 6 May 1998 10:43:02 -0700 (PDT) Date: Wed, 6 May 1998 10:43:02 -0700 (PDT) Message-Id: <199805061743.KAA08536@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/etc rc.conf rc.network src/share/man/man5 rc.conf.5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/05/06 10:43:02 PDT Modified files: (Branch: RELENG_2_2) etc rc.conf rc.network share/man/man5 rc.conf.5 Log: MFC: xxx_prog -> xxx_program, overlooked this new style of var names. backout last change "named_prog" Revision Changes Path 1.1.2.42 +3 -3 src/etc/rc.conf 1.1.2.20 +3 -3 src/etc/rc.network 1.1.2.10 +4 -4 src/share/man/man5/rc.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 11:46:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA20878 for cvs-all-outgoing; Wed, 6 May 1998 11:46:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA20852; Wed, 6 May 1998 11:46:49 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA08784; Wed, 6 May 1998 11:44:06 -0700 (PDT) Date: Wed, 6 May 1998 11:44:06 -0700 (PDT) Message-Id: <199805061844.LAA08784@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/mk bsd.dep.mk bsd.doc.mk bsd.info.mk bsd.obj.mk bsd.sgml.mk Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/06 11:44:06 PDT Modified files: share/mk bsd.dep.mk bsd.doc.mk bsd.info.mk bsd.obj.mk bsd.sgml.mk Log: Only include bsd.dep.mk in `mk'files that handle C sources. Abuse bsd.obj.mk instead of bsd.dep.mk for defining the _SUBDIR target and a default tags target. Abuse bsd.obj.mk for defining default cleandepend and depend targets. Revision Changes Path 1.20 +1 -14 src/share/mk/bsd.dep.mk 1.44 +1 -6 src/share/mk/bsd.doc.mk 1.50 +1 -7 src/share/mk/bsd.info.mk 1.24 +24 -1 src/share/mk/bsd.obj.mk 1.24 +2 -3 src/share/mk/bsd.sgml.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 11:52:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA22178 for cvs-all-outgoing; Wed, 6 May 1998 11:52:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA22142; Wed, 6 May 1998 11:52:32 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA08889; Wed, 6 May 1998 11:49:48 -0700 (PDT) Date: Wed, 6 May 1998 11:49:48 -0700 (PDT) Message-Id: <199805061849.LAA08889@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c datalink.c main.c modem.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/05/06 11:49:48 PDT Modified files: (Branch: MP) usr.sbin/ppp bundle.c datalink.c main.c modem.c Log: o Don't enter phase TERMINATE in the LCP TLD, leave it exclusively for the last NCP TLF. o Move tun reading from the main loop into the bundle descriptor handling routines. o Cosmetic: Add a few `const's and make some diagnostics clearer. Revision Changes Path 1.1.2.73 +93 -15 src/usr.sbin/ppp/Attic/bundle.c 1.1.2.55 +4 -4 src/usr.sbin/ppp/Attic/datalink.c 1.121.2.55 +4 -90 src/usr.sbin/ppp/main.c 1.77.2.67 +6 -6 src/usr.sbin/ppp/modem.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 11:53:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA22291 for cvs-all-outgoing; Wed, 6 May 1998 11:53:16 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA22252; Wed, 6 May 1998 11:53:00 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA08957; Wed, 6 May 1998 11:50:14 -0700 (PDT) Date: Wed, 6 May 1998 11:50:14 -0700 (PDT) Message-Id: <199805061850.LAA08957@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c bundle.h defs.c main.c mp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/05/06 11:50:14 PDT Modified files: (Branch: MP) usr.sbin/ppp bundle.c bundle.h defs.c main.c mp.c Log: o Make sure we don't dereference NULL when we've lost all our links. o Use srandomdev() for __FreeBSD__ >= 2, not just >2. o Use srandom((time(NULL)^getpid())+random()), random() when we haven't got srandomdev(). Revision Changes Path 1.1.2.74 +23 -7 src/usr.sbin/ppp/Attic/bundle.c 1.1.2.37 +2 -1 src/usr.sbin/ppp/Attic/bundle.h 1.11.4.11 +3 -3 src/usr.sbin/ppp/defs.c 1.121.2.56 +4 -6 src/usr.sbin/ppp/main.c 1.1.2.24 +4 -2 src/usr.sbin/ppp/Attic/mp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 12:19:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA27166 for cvs-all-outgoing; Wed, 6 May 1998 12:19:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA27142; Wed, 6 May 1998 12:19:28 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) From: "Justin T. Gibbs" Received: (from gibbs@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA09625; Wed, 6 May 1998 12:16:45 -0700 (PDT) Date: Wed, 6 May 1998 12:16:45 -0700 (PDT) Message-Id: <199805061916.MAA09625@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/dev/dpt dpt.h dpt_scsi.c src/sys/i386/conf files.i386 src/sys/i386/eisa 3c5x9.c aha1742.c aic7770.c bt74x.c eisaconf.c eisaconf.h if_vx_eisa.c src/sys/i386/i386 busdma_machdep.c autoconf.c machdep.c trap.c userconfig.c ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk gibbs 1998/05/06 12:16:44 PDT Modified files: (Branch: RELENG_2_2) sys/dev/dpt dpt.h dpt_scsi.c Log: Switch to using the CAM SWI interface. Revision Changes Path 1.1.2.4 +1 -5 src/sys/dev/dpt/Attic/dpt.h 1.4.2.3 +1 -14 src/sys/dev/dpt/dpt_scsi.c Modified files: (Branch: RELENG_2_2) sys/i386/conf files.i386 Log: Add busdma interfaces to -stable. Revision Changes Path 1.141.2.21 +2 -1 src/sys/i386/conf/files.i386 Modified files: (Branch: RELENG_2_2) sys/i386/eisa 3c5x9.c aha1742.c aic7770.c bt74x.c eisaconf.c eisaconf.h if_vx_eisa.c Log: MFC - Eisaconf interface changes. Interrupt specification and attach changed to allow shared interrupts. Shared EISA interrupts don't work in -stable though because we need the new interrupt code from current. Match routines now deal with const strings. Revision Changes Path 1.7.2.1 +8 -4 src/sys/i386/eisa/3c5x9.c 1.55.2.1 +9 -4 src/sys/i386/eisa/aha1742.c 1.34.2.7 +9 -4 src/sys/i386/eisa/aic7770.c 1.7.2.1 +9 -4 src/sys/i386/eisa/bt74x.c 1.23.2.3 +111 -85 src/sys/i386/eisa/eisaconf.c 1.12.2.3 +15 -5 src/sys/i386/eisa/eisaconf.h 1.2.2.1 +11 -8 src/sys/i386/eisa/if_vx_eisa.c Modified files: (Branch: RELENG_2_2) sys/i386/i386 autoconf.c machdep.c trap.c userconfig.c vm_machdep.c Added files: (Branch: RELENG_2_2) sys/i386/i386 busdma_machdep.c Log: MFC autoconf.c: Add interrupt driven config hook mechanism. Split out mountroot and dumpconf code so it occurs after config hooks run. machdep.c: Clean out old DPT SWI mechanism. trap.c: Add CAM SWI mechanism, remove DPT SWI mechanism. userconfig.c: Remove DPTOPT. The dpt driver is now standard. vm_machdep.c: Add the VM SWI with hooks to call the bus dma code. busdma_machdep.c: Add bus dma functionality. Interrupt specification and attach changed to allow shared interrupts. Shared EISA interrupts don't work in -stable though because we need the new interrupt code from current. Match routines now deal with const strings. Revision Changes Path 1.56.2.14 +49 -11 src/sys/i386/i386/autoconf.c 1.209.2.23 +1 -41 src/sys/i386/i386/machdep.c 1.83.2.7 +3 -5 src/sys/i386/i386/trap.c 1.63.2.26 +2 -4 src/sys/i386/i386/userconfig.c 1.71.2.5 +11 -1 src/sys/i386/i386/vm_machdep.c Modified files: (Branch: RELENG_2_2) sys/i386/include cpufunc.h md_var.h spl.h Added files: (Branch: RELENG_2_2) sys/i386/include bus.h bus_memio.h bus_pio.h Log: MFC cpufunc.h: const poisening. md_var.h: Add definitions of busdma_swi() and swi_vm(). Remove DPT SWI code. trap.c: Add CAM SWI mechanism, remove DPT SWI mechanism. spl.h: Remove DPT SWI mechanism - add cam SWI mechanism. bus.h: bus_memeio.h: bus_pio.h: Add bus space and bus dma code. Revision Changes Path 1.59.2.2 +4 -4 src/sys/i386/include/cpufunc.h 1.10.2.4 +4 -4 src/sys/i386/include/md_var.h 1.15.2.2 +25 -27 src/sys/i386/include/Attic/spl.h Modified files: (Branch: RELENG_2_2) sys/i386/isa fd.c icu.s isa.c isa_device.h mcd.c pcibus.c scd.c sio.c vector.s wcd.c wd.c wfd.c Log: MFC fd.c: mcd.c: scd.c: wcd.c: wd.c: wfd.c: Convert to using new buf queue fucntions. icu.s: isa.c: isa_device.h: vector.s: Remove DPT SWI code. Add CAM SWI code. sio.c: Remove bogus DPTOPT code. pcibus.c: Add functions for extracting the bus, device, and function from old style pcici_ts. Revision Changes Path 1.92.2.6 +8 -8 src/sys/i386/isa/fd.c 1.26.2.3 +9 -45 src/sys/i386/isa/Attic/icu.s 1.74.2.6 +14 -1 src/sys/i386/isa/isa.c 1.33.2.2 +2 -1 src/sys/i386/isa/isa_device.h 1.83.2.1 +5 -5 src/sys/i386/isa/mcd.c 1.27.2.2 +65 -1 src/sys/i386/isa/pcibus.c 1.25.2.1 +5 -5 src/sys/i386/isa/scd.c 1.147.2.15 +1 -5 src/sys/i386/isa/sio.c 1.21.2.4 +9 -15 src/sys/i386/isa/vector.s 1.39.2.1 +5 -3 src/sys/i386/isa/wcd.c 1.119.2.12 +13 -13 src/sys/i386/isa/wd.c 1.1.2.6 +7 -6 src/sys/i386/isa/wfd.c Modified files: (Branch: RELENG_2_2) sys/i386/isa/matcd matcd.c Log: MFC - Convert to using new buf queue fucntions. Revision Changes Path 1.20.2.2 +5 -5 src/sys/i386/isa/matcd/matcd.c Modified files: (Branch: RELENG_2_2) sys/kern init_main.c kern_shutdown.c subr_autoconf.c vfs_bio.c Log: init_main.c: kern_shutdown.c: subr_autoconf.c: MFC - Add interrupt driven config hook mechanism and split out mountroot and dumpconf. vfs_bio.c: Cleanup B_ORDERED buffer handling. Revision Changes Path 1.51.2.7 +12 -2 src/sys/kern/init_main.c 1.10.2.2 +11 -1 src/sys/kern/kern_shutdown.c 1.2.12.1 +81 -1 src/sys/kern/subr_autoconf.c 1.104.2.9 +5 -41 src/sys/kern/vfs_bio.c Modified files: (Branch: RELENG_2_2) sys/pc98/i386 machdep.c trap.c userconfig.c Log: Remove DPT SWI code. unifdef DPTOPT. Revision Changes Path 1.11.2.25 +1 -41 src/sys/pc98/i386/machdep.c 1.8.2.8 +3 -5 src/sys/pc98/i386/trap.c 1.10.2.20 +2 -5 src/sys/pc98/i386/userconfig.c Modified files: (Branch: RELENG_2_2) sys/pc98/pc98 sio.c Log: Remove bogus DPTOPT code. Revision Changes Path 1.8.2.18 +1 -5 src/sys/pc98/pc98/sio.c Modified files: (Branch: RELENG_2_2) sys/pci pci.c pcibus.h pcivar.h Log: Add support for extracting the bus, device, and function from a pcici_t. Revision Changes Path 1.57.2.8 +39 -1 src/sys/pci/pci.c 1.4.4.2 +4 -1 src/sys/pci/Attic/pcibus.h 1.13.2.1 +7 -1 src/sys/pci/pcivar.h Modified files: (Branch: RELENG_2_2) sys/scsi cd.c od.c sd.c st.c Log: Convert to new buf queue routines. Revision Changes Path 1.73.2.6 +5 -5 src/sys/scsi/cd.c 1.22.2.3 +5 -5 src/sys/scsi/od.c 1.95.2.9 +6 -6 src/sys/scsi/sd.c 1.73.2.2 +5 -5 src/sys/scsi/st.c Modified files: (Branch: RELENG_2_2) sys/sys buf.h device.h disklabel.h kernel.h param.h queue.h systm.h Log: buf.h: MFC - Add new buf queue routines. device.h: kernel.h: param.h: systm.h: MFC - Interrupt driven config hook support. disklabel.h MFC - bufqdisksort replaces tqdisksort. queue.h: MFC. Revision Changes Path 1.34.2.2 +55 -3 src/sys/sys/buf.h 1.4.4.1 +10 -1 src/sys/sys/device.h 1.24.2.3 +2 -2 src/sys/sys/disklabel.h 1.22.2.1 +5 -2 src/sys/sys/kernel.h 1.15.2.3 +2 -1 src/sys/sys/param.h 1.10.2.2 +120 -57 src/sys/sys/queue.h 1.47.2.3 +3 -1 src/sys/sys/systm.h Modified files: (Branch: RELENG_2_2) sys/ufs/ufs ufs_disksubr.c Log: MFC - bufqdisksort replaces tqdisksort. Revision Changes Path 1.26.2.1 +61 -84 src/sys/ufs/ufs/ufs_disksubr.c Modified files: (Branch: RELENG_2_2) sys/vm vm_object.c Log: Small change in DDB function code to deal with new definition of TAILQ_PREV. Revision Changes Path 1.82.2.2 +3 -2 src/sys/vm/vm_object.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 12:28:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA29289 for cvs-all-outgoing; Wed, 6 May 1998 12:28:16 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from awfulhak.org (awfulhak.force9.co.uk [195.166.136.63]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA29040; Wed, 6 May 1998 12:27:41 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from gate.lan.awfulhak.org (localhost [127.0.0.1]) by awfulhak.org (8.8.8/8.8.8) with ESMTP id UAA19850; Wed, 6 May 1998 20:26:57 +0100 (BST) (envelope-from brian@gate.lan.awfulhak.org) Message-Id: <199805061926.UAA19850@awfulhak.org> X-Mailer: exmh version 2.0.1 12/23/97 To: "Justin T. Gibbs" cc: Bruce Evans , cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-sys@FreeBSD.ORG, jb@FreeBSD.ORG Subject: Re: cvs commit: src/sys/sys termios.h In-reply-to: Your message of "Wed, 06 May 1998 09:18:40 MDT." <199805061522.JAA03326@pluto.plutotech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 06 May 1998 20:26:57 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > >> Modified files: > >> sys/sys termios.h > >> Log: > >> Change a couple of long types to int to match NetBSD so that termios > >> works on alpha without any modifications. > > > >Unsigned long was correct (*). Unsigned int is incorrect because ints > >may be 16-bit. NetBSD should be more concerned about this than us. > > I believe that NetBSD decided that ints would be >= 32bits on all platforms > some time ago. Same with the OpenBSD crowd. > -- > Justin > > -- Brian , , Don't _EVER_ lose your sense of humour.... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 12:29:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA29512 for cvs-all-outgoing; Wed, 6 May 1998 12:29:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from awfulhak.org (awfulhak.force9.co.uk [195.166.136.63]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA29468 for ; Wed, 6 May 1998 12:28:57 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from gate.lan.awfulhak.org (localhost [127.0.0.1]) by awfulhak.org (8.8.8/8.8.8) with ESMTP id UAA20132; Wed, 6 May 1998 20:28:35 +0100 (BST) (envelope-from brian@gate.lan.awfulhak.org) Message-Id: <199805061928.UAA20132@awfulhak.org> X-Mailer: exmh version 2.0.1 12/23/97 To: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) cc: committers@FreeBSD.ORG Subject: Re: MFC ls In-reply-to: Your message of "06 May 1998 13:17:36 +0200." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 06 May 1998 20:28:34 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > I looked through ls today with the intention to MFC, but there are > more changes between -stable and -current than those I introduced (and > ache's cleanup of my poor excuse of a fix) and I don't feel comfor- > table enough with CVS yet to start mucking around with ls. Could > somebody pretty please with saccharose on top MFC so I can close the > PRs? Ya gotta learn yourself some time :-) > -- > Noone else has a .sig like this one. -- Brian , , Don't _EVER_ lose your sense of humour.... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 12:35:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA00889 for cvs-all-outgoing; Wed, 6 May 1998 12:35:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA00869; Wed, 6 May 1998 12:35:01 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) From: "Justin T. Gibbs" Received: (from gibbs@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA09699; Wed, 6 May 1998 12:32:18 -0700 (PDT) Date: Wed, 6 May 1998 12:32:18 -0700 (PDT) Message-Id: <199805061932.MAA09699@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/config config.y lang.l mkglue.c mkioconf.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk gibbs 1998/05/06 12:32:17 PDT Modified files: (Branch: RELENG_2_2) usr.sbin/config config.y lang.l mkglue.c mkioconf.c Log: Add CAM interrupt support. Revision Changes Path 1.13.2.3 +3 -0 src/usr.sbin/config/config.y 1.11.2.2 +1 -0 src/usr.sbin/config/lang.l 1.10.2.2 +2 -1 src/usr.sbin/config/mkglue.c 1.25.2.3 +2 -1 src/usr.sbin/config/mkioconf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 12:45:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA03323 for cvs-all-outgoing; Wed, 6 May 1998 12:45:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: (from hsu@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA03276; Wed, 6 May 1998 12:44:49 -0700 (PDT) (envelope-from hsu) Date: Wed, 6 May 1998 12:44:49 -0700 (PDT) From: Jeffrey Hsu Message-Id: <199805061944.MAA03276@hub.freebsd.org> To: jkh Subject: Re: cvs commit: src/share/mk sys.mk Cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-share@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Modified files: > share/mk sys.mk > Log: > Add -pipe to default CFLAGS. The optimization it provides is cheap > and does not require any special action on the part of the user to > take advantage of it. And no, it probably won't work with c89. Cry me > a river! Aside from "it's harder", why not change the gcc configuration to make -pipe the default unless it's turned off with another commandline option? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 13:10:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA09667 for cvs-all-outgoing; Wed, 6 May 1998 13:10:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA09595; Wed, 6 May 1998 13:10:11 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) From: "Justin T. Gibbs" Received: (from gibbs@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA09841; Wed, 6 May 1998 13:07:27 -0700 (PDT) Date: Wed, 6 May 1998 13:07:27 -0700 (PDT) Message-Id: <199805062007.NAA09841@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/conf files src/sys/dev/dpt dpt_scsi.c src/sys/i386/conf GENERIC LINT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk gibbs 1998/05/06 13:07:27 PDT Modified files: (Branch: RELENG_2_2) sys/conf files Log: MFC - subr_autoconf.c is now mandatory (for config hooks). Revision Changes Path 1.80.2.19 +1 -0 src/sys/conf/files Modified files: (Branch: RELENG_2_2) sys/dev/dpt dpt_scsi.c Log: Clean up some compile warnings. The diff looks much worse than what I did. Some inline function definitions were moved so they would be in scope when called (so they could be inlined), and some code was rearranged to ensure that variables where initialized before being used. Revision Changes Path 1.4.2.4 +921 -924 src/sys/dev/dpt/dpt_scsi.c Modified files: (Branch: RELENG_2_2) sys/i386/conf GENERIC LINT Log: The dpt driver is now standard equipment. Revision Changes Path 1.77.2.23 +3 -10 src/sys/i386/conf/GENERIC 1.286.2.52 +1 -3 src/sys/i386/conf/LINT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 13:15:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA10733 for cvs-all-outgoing; Wed, 6 May 1998 13:15:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA10706; Wed, 6 May 1998 13:15:19 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) From: "Justin T. Gibbs" Received: (from gibbs@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA09898; Wed, 6 May 1998 13:12:34 -0700 (PDT) Date: Wed, 6 May 1998 13:12:34 -0700 (PDT) Message-Id: <199805062012.NAA09898@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 fd.c wd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk gibbs 1998/05/06 13:12:34 PDT Modified files: (Branch: RELENG_2_2) sys/pc98/pc98 fd.c wd.c Log: MFC - buf queue changes for PC98. Revision Changes Path 1.7.2.10 +8 -8 src/sys/pc98/pc98/fd.c 1.9.2.16 +13 -13 src/sys/pc98/pc98/wd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 13:54:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA19797 for cvs-all-outgoing; Wed, 6 May 1998 13:54:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA19780; Wed, 6 May 1998 13:53:51 -0700 (PDT) (envelope-from dima@FreeBSD.org) From: Dima Ruban Received: (from dima@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA10037; Wed, 6 May 1998 13:51:07 -0700 (PDT) Date: Wed, 6 May 1998 13:51:07 -0700 (PDT) Message-Id: <199805062051.NAA10037@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/comms/pilot-link Makefile ports/comms/pilot-link/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dima 1998/05/06 13:51:06 PDT Modified files: comms/pilot-link Makefile comms/pilot-link/files md5 Log: 0.8.9 -> 0.8.11 Revision Changes Path 1.15 +3 -3 ports/comms/pilot-link/Makefile 1.3 +1 -1 ports/comms/pilot-link/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 15:01:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA29230 for cvs-all-outgoing; Wed, 6 May 1998 15:01:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from cimlogic.com.au (cimlog.lnk.telstra.net [139.130.51.31] (may be forged)) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA29217 for ; Wed, 6 May 1998 15:01:19 -0700 (PDT) (envelope-from jb@cimlogic.com.au) Received: (from jb@localhost) by cimlogic.com.au (8.8.8/8.8.7) id IAA26919 for committers@freebsd.org; Thu, 7 May 1998 08:03:12 +1000 (EST) (envelope-from jb) From: John Birrell Message-Id: <199805062203.IAA26919@cimlogic.com.au> Subject: Re: cvs commit: src/sys/sys termios.h In-Reply-To: <199805061522.JAA03326@pluto.plutotech.com> from "Justin T. Gibbs" at "May 6, 98 09:18:40 am" To: committers@FreeBSD.ORG Date: Thu, 7 May 1998 08:03:12 +1000 (EST) X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Justin T. Gibbs wrote: > >> Modified files: > >> sys/sys termios.h > >> Log: > >> Change a couple of long types to int to match NetBSD so that termios > >> works on alpha without any modifications. > > > >Unsigned long was correct (*). Unsigned int is incorrect because ints > >may be 16-bit. NetBSD should be more concerned about this than us. > > I believe that NetBSD decided that ints would be >= 32bits on all platforms > some time ago. I guess I should explain the theory behind these sort of changes. I'm not making any decisions about the "correctness" of code in FreeBSD's source tree for any mythical machines. As far as I am concerned, FreeBSD supports Intel i386 and above. That means int and long are 32 bits. To get a working FreeBSD/Alpha using a NetBSD kernel, I want to make as few changes to FreeBSD sources as possible, and avoid destabilizing i386 in the process. On alpha, that means int is 32 bits, long is 64 bits. Where there are variables in user-space that are passed to the kernel in FreeBSD/NetBSD and the size of these variables differs when compiled on alpha, I change the variable so that there is no effective change to i386. This commonly means that things coded as long and used as 32-bit integers are changed to int. And pointers that are cast to int are changed to cast to long. I am preparing a web page that lists the working status of programs and libraries on FreeBSD/Alpha. It won't be long before I start working on the kernel end. To do that, it would be helpful to be able to use the bus code that Mike Smith says that Justin will be/is using with CAM. I think this will simplfy the porting of NetBSD's alpha devices. -- John Birrell - jb@cimlogic.com.au; jb@freebsd.org http://www.cimlogic.com.au/ CIMlogic Pty Ltd, GPO Box 117A, Melbourne Vic 3001, Australia +61 418 353 137 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 15:17:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA02275 for cvs-all-outgoing; Wed, 6 May 1998 15:17:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA02239; Wed, 6 May 1998 15:17:37 -0700 (PDT) (envelope-from julian@FreeBSD.org) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA10386; Wed, 6 May 1998 15:14:50 -0700 (PDT) Date: Wed, 6 May 1998 15:14:50 -0700 (PDT) Message-Id: <199805062214.PAA10386@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/dev/slice disklabel.c mbr.c slice.h slice_device.c src/sys/dev/vn vn.c src/sys/i386/i386 autoconf.c src/sys/i386/isa fd.c wd.c src/sys/scsi sd.c src/sys/kern kern_shutdown.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk julian 1998/05/06 15:14:50 PDT Modified files: sys/dev/slice disklabel.c mbr.c slice.h slice_device.c sys/dev/vn vn.c sys/i386/i386 autoconf.c sys/i386/isa fd.c wd.c sys/scsi sd.c sys/kern kern_shutdown.c Log: Add dump support to the DEVFS/slice code. now we can actually catch our crashes :-) Submitted by: Luoqi Chen (the man who's everywhere) Revision Changes Path 1.4 +20 -2 src/sys/dev/slice/disklabel.c 1.4 +20 -2 src/sys/dev/slice/mbr.c 1.2 +3 -1 src/sys/dev/slice/slice.h 1.5 +25 -4 src/sys/dev/slice/slice_device.c 1.59 +17 -2 src/sys/dev/vn/vn.c 1.96 +5 -2 src/sys/i386/i386/autoconf.c 1.111 +3 -3 src/sys/i386/isa/fd.c 1.165 +158 -3 src/sys/i386/isa/wd.c 1.127 +101 -2 src/sys/scsi/sd.c 1.30 +8 -3 src/sys/kern/kern_shutdown.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 15:49:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA09048 for cvs-all-outgoing; Wed, 6 May 1998 15:49:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA09024; Wed, 6 May 1998 15:49:45 -0700 (PDT) (envelope-from julian@FreeBSD.org) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA10658; Wed, 6 May 1998 15:47:00 -0700 (PDT) Date: Wed, 6 May 1998 15:47:00 -0700 (PDT) Message-Id: <199805062247.PAA10658@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libftpio ftpio.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk julian 1998/05/06 15:47:00 PDT Modified files: (Branch: RELENG_2_2) lib/libftpio ftpio.c Log: Reviewed by: phk Submitted by: archie@whistle.com MFC: bring up to 1.30 Revision Changes Path 1.15.2.6 +3 -1 src/lib/libftpio/ftpio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 16:18:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA13446 for cvs-all-outgoing; Wed, 6 May 1998 16:18:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA13413; Wed, 6 May 1998 16:17:59 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA10749; Wed, 6 May 1998 16:15:13 -0700 (PDT) Date: Wed, 6 May 1998 16:15:13 -0700 (PDT) Message-Id: <199805062315.QAA10749@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/graphics/jpeg/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/05/06 16:15:12 PDT Modified files: graphics/jpeg/pkg PLIST Log: Fix PLIST. Revision Changes Path 1.13 +1 -1 ports/graphics/jpeg/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 16:35:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA15612 for cvs-all-outgoing; Wed, 6 May 1998 16:35:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA15596; Wed, 6 May 1998 16:35:34 -0700 (PDT) (envelope-from julian@FreeBSD.org) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA10835; Wed, 6 May 1998 16:32:49 -0700 (PDT) Date: Wed, 6 May 1998 16:32:49 -0700 (PDT) Message-Id: <199805062332.QAA10835@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/dev/slice disklabel.c mbr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk julian 1998/05/06 16:32:48 PDT Modified files: sys/dev/slice disklabel.c mbr.c Log: Don't call a dump routine if there isn't one. (e.g. in floppy driver) Revision Changes Path 1.5 +6 -2 src/sys/dev/slice/disklabel.c 1.5 +6 -2 src/sys/dev/slice/mbr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 16:38:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA16022 for cvs-all-outgoing; Wed, 6 May 1998 16:38:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA16010; Wed, 6 May 1998 16:38:22 -0700 (PDT) (envelope-from julian@FreeBSD.org) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA10873; Wed, 6 May 1998 16:35:37 -0700 (PDT) Date: Wed, 6 May 1998 16:35:37 -0700 (PDT) Message-Id: <199805062335.QAA10873@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa fd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk julian 1998/05/06 16:35:37 PDT Modified files: sys/i386/isa fd.c Log: There is no dump routine for fd so give it an explicit NULL entry in the SLICE table. Revision Changes Path 1.112 +3 -2 src/sys/i386/isa/fd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 16:47:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA17334 for cvs-all-outgoing; Wed, 6 May 1998 16:47:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from cimlogic.com.au (cimlog.lnk.telstra.net [139.130.51.31]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA17323 for ; Wed, 6 May 1998 16:47:29 -0700 (PDT) (envelope-from jb@cimlogic.com.au) Received: (from jb@localhost) by cimlogic.com.au (8.8.8/8.8.7) id JAA27192; Thu, 7 May 1998 09:50:41 +1000 (EST) (envelope-from jb) From: John Birrell Message-Id: <199805062350.JAA27192@cimlogic.com.au> Subject: Re: cvs commit: src/sys/sys termios.h In-Reply-To: <199805062234.PAA00632@antipodes.cdrom.com> from Mike Smith at "May 6, 98 03:34:51 pm" To: mike@smith.net.au (Mike Smith) Date: Thu, 7 May 1998 09:50:41 +1000 (EST) Cc: jb@cimlogic.com.au, committers@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Mike Smith wrote: > Is there a serious impediment to using *int32_t/*int64_t instead? > These give you explicitly-sized storage, and make it clear that you > mean them to stay that way... For things like 32-bit variables in networking code, I think that explicitly-sized storage is the way to go (I'll commit src/sys/netinet/in.h with a change like that soon). There are many things where I don't mean them to stay that way necessarily (meaning I don't care - like termios), but I need to be consistent with what the NetBSD kernel expects. Bruce tends to react badly to almost every one of these. 8-( -- John Birrell - jb@cimlogic.com.au; jb@freebsd.org http://www.cimlogic.com.au/ CIMlogic Pty Ltd, GPO Box 117A, Melbourne Vic 3001, Australia +61 418 353 137 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 16:53:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA18376 for cvs-all-outgoing; Wed, 6 May 1998 16:53:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA18237; Wed, 6 May 1998 16:52:24 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA10955; Wed, 6 May 1998 16:49:36 -0700 (PDT) Date: Wed, 6 May 1998 16:49:36 -0700 (PDT) Message-Id: <199805062349.QAA10955@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c datalink.c datalink.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/05/06 16:49:36 PDT Modified files: (Branch: MP) usr.sbin/ppp bundle.c datalink.c datalink.h Log: Log link name changes correctly. Revision Changes Path 1.1.2.75 +14 -3 src/usr.sbin/ppp/Attic/bundle.c 1.1.2.56 +6 -6 src/usr.sbin/ppp/Attic/datalink.c 1.1.2.23 +2 -2 src/usr.sbin/ppp/Attic/datalink.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 16:53:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA18394 for cvs-all-outgoing; Wed, 6 May 1998 16:53:16 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA18310; Wed, 6 May 1998 16:52:42 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA10991; Wed, 6 May 1998 16:49:51 -0700 (PDT) Date: Wed, 6 May 1998 16:49:51 -0700 (PDT) Message-Id: <199805062349.QAA10991@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp lcp.c mp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/05/06 16:49:51 PDT Modified files: (Branch: MP) usr.sbin/ppp lcp.c mp.c Log: o Behave correctly when short sequence numbers are denied. o Determine if one seq is less than the other correctly, given the point at which they wrap (again). Revision Changes Path 1.55.2.53 +2 -1 src/usr.sbin/ppp/lcp.c 1.1.2.25 +14 -5 src/usr.sbin/ppp/Attic/mp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 16:53:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA18492 for cvs-all-outgoing; Wed, 6 May 1998 16:53:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA18401; Wed, 6 May 1998 16:53:16 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA11070; Wed, 6 May 1998 16:50:29 -0700 (PDT) Date: Wed, 6 May 1998 16:50:29 -0700 (PDT) Message-Id: <199805062350.QAA11070@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c bundle.h command.c ip.c ipcp.c route.c tun.c tun.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/05/06 16:50:28 PDT Modified files: (Branch: MP) usr.sbin/ppp bundle.c bundle.h command.c ip.c ipcp.c route.c tun.c tun.h Log: Categorize the fields in struct bundle, and make the tunnel device speed available in ``show bundle''. Revision Changes Path 1.1.2.76 +57 -52 src/usr.sbin/ppp/Attic/bundle.c 1.1.2.38 +14 -6 src/usr.sbin/ppp/Attic/bundle.h 1.131.2.79 +3 -3 src/usr.sbin/ppp/command.c 1.38.2.26 +4 -4 src/usr.sbin/ppp/ip.c 1.50.2.51 +3 -3 src/usr.sbin/ppp/ipcp.c 1.42.2.24 +3 -3 src/usr.sbin/ppp/route.c 1.6.4.18 +4 -5 src/usr.sbin/ppp/tun.c 1.3.4.3 +2 -2 src/usr.sbin/ppp/tun.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 17:00:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA19909 for cvs-all-outgoing; Wed, 6 May 1998 17:00:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from antipodes.cdrom.com (a04m.cet.co.jp [202.32.65.68]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA19767 for ; Wed, 6 May 1998 17:00:10 -0700 (PDT) (envelope-from mike@antipodes.cdrom.com) Received: from antipodes.cdrom.com (localhost [127.0.0.1]) by antipodes.cdrom.com (8.8.8/8.8.5) with ESMTP id PAA00632; Wed, 6 May 1998 15:34:52 -0700 (PDT) Message-Id: <199805062234.PAA00632@antipodes.cdrom.com> X-Mailer: exmh version 2.0zeta 7/24/97 To: John Birrell cc: committers@FreeBSD.ORG Subject: Re: cvs commit: src/sys/sys termios.h In-reply-to: Your message of "Thu, 07 May 1998 08:03:12 +1000." <199805062203.IAA26919@cimlogic.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 06 May 1998 15:34:51 -0700 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > To get a working FreeBSD/Alpha using a NetBSD kernel, I want to make as > few changes to FreeBSD sources as possible, and avoid destabilizing i386 > in the process. On alpha, that means int is 32 bits, long is 64 bits. > Where there are variables in user-space that are passed to the kernel in > FreeBSD/NetBSD and the size of these variables differs when compiled on > alpha, I change the variable so that there is no effective change to i386. > This commonly means that things coded as long and used as 32-bit integers > are changed to int. And pointers that are cast to int are changed to cast > to long. Is there a serious impediment to using *int32_t/*int64_t instead? These give you explicitly-sized storage, and make it clear that you mean them to stay that way... -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 17:33:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA26766 for cvs-all-outgoing; Wed, 6 May 1998 17:33:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA26650; Wed, 6 May 1998 17:32:36 -0700 (PDT) (envelope-from eivind@FreeBSD.org) From: Eivind Eklund Received: (from eivind@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA11213; Wed, 6 May 1998 17:29:50 -0700 (PDT) Date: Wed, 6 May 1998 17:29:50 -0700 (PDT) Message-Id: <199805070029.RAA11213@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/xscavenger Makefile ports/games/xscavenger/files md5 ports/games/xscavenger/patches patch-aa patch-ab patch-ac patch-ad Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk eivind 1998/05/06 17:29:49 PDT Modified files: games/xscavenger Makefile games/xscavenger/files md5 Removed files: games/xscavenger/patches patch-aa patch-ab patch-ac patch-ad Log: Upgrade to version 1.3.3 (which consist of just 1.3.2 with all our patches rolled into the main distribution). Revision Changes Path 1.6 +4 -4 ports/games/xscavenger/Makefile 1.3 +1 -1 ports/games/xscavenger/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 17:43:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA28998 for cvs-all-outgoing; Wed, 6 May 1998 17:43:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA28874; Wed, 6 May 1998 17:42:45 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA11278; Wed, 6 May 1998 17:39:58 -0700 (PDT) Date: Wed, 6 May 1998 17:39:58 -0700 (PDT) Message-Id: <199805070039.RAA11278@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/syslogd syslogd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/05/06 17:39:58 PDT Modified files: usr.sbin/syslogd syslogd.c Log: Make syslogd function in non-secure mode. Log the correct ^2 packet as per the last commit comment. Revision Changes Path 1.31 +4 -4 src/usr.sbin/syslogd/syslogd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 17:46:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA29492 for cvs-all-outgoing; Wed, 6 May 1998 17:46:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA29353; Wed, 6 May 1998 17:45:18 -0700 (PDT) (envelope-from eivind@FreeBSD.org) From: Eivind Eklund Received: (from eivind@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA11323; Wed, 6 May 1998 17:42:26 -0700 (PDT) Date: Wed, 6 May 1998 17:42:26 -0700 (PDT) Message-Id: <199805070042.RAA11323@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/linux linux_sysvec.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk eivind 1998/05/06 17:42:26 PDT Modified files: sys/i386/linux linux_sysvec.c Log: Unbotch whitespace and change switch with two cases to if. Noticed by: bde Revision Changes Path 1.29 +9 -12 src/sys/i386/linux/linux_sysvec.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 18:18:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA04720 for cvs-all-outgoing; Wed, 6 May 1998 18:18:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA04693; Wed, 6 May 1998 18:18:17 -0700 (PDT) (envelope-from julian@FreeBSD.org) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA11437; Wed, 6 May 1998 18:15:28 -0700 (PDT) Date: Wed, 6 May 1998 18:15:28 -0700 (PDT) Message-Id: <199805070115.SAA11437@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa wd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk julian 1998/05/06 18:15:28 PDT Modified files: sys/i386/isa wd.c Log: cleanup: take out duplicated dump code Revision Changes Path 1.166 +62 -184 src/sys/i386/isa/wd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 18:30:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA06529 for cvs-all-outgoing; Wed, 6 May 1998 18:30:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from awfulhak.org (awfulhak.demon.co.uk [158.152.17.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA06420 for ; Wed, 6 May 1998 18:29:58 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from gate.lan.awfulhak.org (localhost [127.0.0.1]) by awfulhak.org (8.8.8/8.8.8) with ESMTP id BAA05083; Thu, 7 May 1998 01:58:26 +0100 (BST) (envelope-from brian@gate.lan.awfulhak.org) Message-Id: <199805070058.BAA05083@awfulhak.org> X-Mailer: exmh version 2.0.1 12/23/97 To: Mike Smith cc: John Birrell , committers@FreeBSD.ORG Subject: Re: cvs commit: src/sys/sys termios.h In-reply-to: Your message of "Wed, 06 May 1998 15:34:51 PDT." <199805062234.PAA00632@antipodes.cdrom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 07 May 1998 01:58:26 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > > To get a working FreeBSD/Alpha using a NetBSD kernel, I want to make as > > few changes to FreeBSD sources as possible, and avoid destabilizing i386 > > in the process. On alpha, that means int is 32 bits, long is 64 bits. > > Where there are variables in user-space that are passed to the kernel in > > FreeBSD/NetBSD and the size of these variables differs when compiled on > > alpha, I change the variable so that there is no effective change to i386. > > This commonly means that things coded as long and used as 32-bit integers > > are changed to int. And pointers that are cast to int are changed to cast > > to long. > > Is there a serious impediment to using *int32_t/*int64_t instead? > These give you explicitly-sized storage, and make it clear that you > mean them to stay that way... The one *real* pain in the a** about int32_t/int64_t is that they must be cast in printf()/scanf()s. > -- > \\ Sometimes you're ahead, \\ Mike Smith > \\ sometimes you're behind. \\ mike@smith.net.au > \\ The race is long, and in the \\ msmith@freebsd.org > \\ end it's only with yourself. \\ msmith@cdrom.com -- Brian , , Don't _EVER_ lose your sense of humour.... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 18:45:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA08824 for cvs-all-outgoing; Wed, 6 May 1998 18:45:20 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA08760; Wed, 6 May 1998 18:44:48 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id SAA26758; Wed, 6 May 1998 18:44:48 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Julian Elischer cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c In-reply-to: Your message of "Wed, 06 May 1998 15:47:00 PDT." <199805062247.PAA10658@freefall.freebsd.org> Date: Wed, 06 May 1998 18:44:48 -0700 Message-ID: <26754.894505488@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Now if we could only find someone willing to: 1. Move all the code for handling file: and http: style URLs from fetch(1) into this library and change the API to be less FTP-centric. 2. Rename it to "libfetch" or something more suitably descriptive of its new abilities. 3. Make fetch(1) use the new library. I'd also dive in and make pkg_add and sysinstall use it, bringing the ability to use fetch(1)'s full repertoire of URL handling to those tools as well. Any takers out among our hacker population? :-) - Jordan > julian 1998/05/06 15:47:00 PDT > > Modified files: (Branch: RELENG_2_2) > lib/libftpio ftpio.c > Log: > Reviewed by: phk > Submitted by: archie@whistle.com > MFC: bring up to 1.30 > > Revision Changes Path > 1.15.2.6 +3 -1 src/lib/libftpio/ftpio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 18:59:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA11664 for cvs-all-outgoing; Wed, 6 May 1998 18:59:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA11655; Wed, 6 May 1998 18:59:20 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA11568; Wed, 6 May 1998 18:56:34 -0700 (PDT) Date: Wed, 6 May 1998 18:56:34 -0700 (PDT) Message-Id: <199805070156.SAA11568@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/chinese/ted Makefile ports/chinese/ted/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/05/06 18:56:34 PDT Modified files: chinese/ted Makefile chinese/ted/files md5 Log: Upgrade to 4.2e. Revision Changes Path 1.12 +4 -4 ports/chinese/ted/Makefile 1.8 +1 -1 ports/chinese/ted/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 19:02:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA12247 for cvs-all-outgoing; Wed, 6 May 1998 19:02:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA12234; Wed, 6 May 1998 19:02:14 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA11689; Wed, 6 May 1998 18:59:29 -0700 (PDT) Date: Wed, 6 May 1998 18:59:29 -0700 (PDT) Message-Id: <199805070159.SAA11689@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/emulators/mtools Makefile ports/emulators/mtools/files md5 ports/emulators/mtools/patches patch-2 patch-a patch-b patch-d ports/emulators/mtools/pkg DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/05/06 18:59:28 PDT Modified files: emulators/mtools Makefile emulators/mtools/files md5 emulators/mtools/patches patch-2 patch-a patch-b patch-d emulators/mtools/pkg DESCR PLIST Log: Upgrade to 3.9, and portlint. Revision Changes Path 1.20 +10 -15 ports/emulators/mtools/Makefile 1.9 +1 -2 ports/emulators/mtools/files/md5 1.4 +38 -25 ports/emulators/mtools/patches/patch-2 1.3 +26 -36 ports/emulators/mtools/patches/patch-a 1.5 +13 -15 ports/emulators/mtools/patches/patch-b 1.2 +11 -11 ports/emulators/mtools/patches/patch-d 1.3 +0 -1 ports/emulators/mtools/pkg/DESCR 1.10 +10 -12 ports/emulators/mtools/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 19:03:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA12390 for cvs-all-outgoing; Wed, 6 May 1998 19:03:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA12383; Wed, 6 May 1998 19:03:42 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA11739; Wed, 6 May 1998 19:00:56 -0700 (PDT) Date: Wed, 6 May 1998 19:00:56 -0700 (PDT) Message-Id: <199805070200.TAA11739@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/security/pidentd/patches patch-ab Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/05/06 19:00:56 PDT Modified files: security/pidentd/patches patch-ab Log: Strip binary now. Revision Changes Path 1.11 +16 -5 ports/security/pidentd/patches/patch-ab To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 19:08:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA13087 for cvs-all-outgoing; Wed, 6 May 1998 19:08:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA13082; Wed, 6 May 1998 19:08:08 -0700 (PDT) (envelope-from julian@FreeBSD.org) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA11800; Wed, 6 May 1998 19:05:23 -0700 (PDT) Date: Wed, 6 May 1998 19:05:23 -0700 (PDT) Message-Id: <199805070205.TAA11800@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/scsi sd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk julian 1998/05/06 19:05:22 PDT Modified files: sys/scsi sd.c Log: cleanup: remove duplicated dump code. fix oversight on SLICE ioctl code. Revision Changes Path 1.128 +39 -125 src/sys/scsi/sd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 19:08:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA13117 for cvs-all-outgoing; Wed, 6 May 1998 19:08:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA13110; Wed, 6 May 1998 19:08:22 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA11845; Wed, 6 May 1998 19:05:36 -0700 (PDT) Date: Wed, 6 May 1998 19:05:36 -0700 (PDT) Message-Id: <199805070205.TAA11845@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/trafshow/files patch-ae ports/net/trafshow/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/05/06 19:05:36 PDT Modified files: net/trafshow/patches patch-aa Removed files: net/trafshow/files patch-ae Log: Remove files/patch-ae, it's obsolete. Revision Changes Path 1.4 +54 -85 ports/net/trafshow/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 22:01:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA13517 for cvs-all-outgoing; Wed, 6 May 1998 22:01:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA13491; Wed, 6 May 1998 22:01:47 -0700 (PDT) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA12434; Wed, 6 May 1998 21:59:00 -0700 (PDT) Date: Wed, 6 May 1998 21:59:00 -0700 (PDT) Message-Id: <199805070459.VAA12434@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/gnu/ext2fs ext2_vnops.c src/sys/kern uipc_usrreq.c vfs_syscalls.c vfs_vnops.c vnode_if.src src/sys/miscfs/devfs devfs_vnops.c src/sys/miscfs/union union_subr.c union_vnops.c src/sys/msdosfs msdosfs_vnops.c ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/05/06 21:59:00 PDT Modified files: sys/gnu/ext2fs ext2_vnops.c sys/kern uipc_usrreq.c vfs_syscalls.c vfs_vnops.c vnode_if.src sys/miscfs/devfs devfs_vnops.c sys/miscfs/union union_subr.c union_vnops.c sys/msdosfs msdosfs_vnops.c sys/netinet mlf_ipl.c sys/nfs nfs_serv.c nfs_vnops.c sys/ufs/ufs ufs_vnops.c Log: In the words of the submitter: --------- Make callers of namei() responsible for releasing references or locks instead of having the underlying filesystems do it. This eliminates redundancy in all terminal filesystems and makes it possible for stacked transport layers such as umapfs or nullfs to operate correctly. Quality testing was done with testvn, and lat_fs from the lmbench suite. Some NFS client testing courtesy of Patrik Kudo. vop_mknod and vop_symlink still release the returned vpp. vop_rename still releases 4 vnode arguments before it returns. These remaining cases will be corrected in the next set of patches. --------- Submitted by: Michael Hancock Revision Changes Path 1.38 +13 -22 src/sys/gnu/ext2fs/ext2_vnops.c 1.34 +4 -2 src/sys/kern/uipc_usrreq.c 1.100 +23 -17 src/sys/kern/vfs_syscalls.c 1.57 +5 -3 src/sys/kern/vfs_vnops.c 1.17 +20 -20 src/sys/kern/vnode_if.src 1.55 +11 -26 src/sys/miscfs/devfs/devfs_vnops.c 1.30 +5 -2 src/sys/miscfs/union/union_subr.c 1.57 +73 -72 src/sys/miscfs/union/union_vnops.c 1.68 +13 -27 src/sys/msdosfs/msdosfs_vnops.c 1.7 +7 -0 src/sys/netinet/mlf_ipl.c 1.60 +24 -13 src/sys/nfs/nfs_serv.c 1.84 +1 -21 src/sys/nfs/nfs_vnops.c 1.84 +9 -18 src/sys/ufs/ufs/ufs_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 22:20:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA16049 for cvs-all-outgoing; Wed, 6 May 1998 22:20:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA16044; Wed, 6 May 1998 22:20:49 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA12535; Wed, 6 May 1998 22:18:03 -0700 (PDT) Date: Wed, 6 May 1998 22:18:03 -0700 (PDT) Message-Id: <199805070518.WAA12535@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/06 22:18:02 PDT Modified files: . modules Log: sirc --> ports/net/sirc Revision Changes Path 1.1989 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 22:23:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA16284 for cvs-all-outgoing; Wed, 6 May 1998 22:23:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA16276; Wed, 6 May 1998 22:23:10 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA12556; Wed, 6 May 1998 22:20:23 -0700 (PDT) Date: Wed, 6 May 1998 22:20:23 -0700 (PDT) Message-Id: <199805070520.WAA12556@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/sirc - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/06 22:20:22 PDT ports/net/sirc - Imported sources Update of /home/ncvs/ports/net/sirc In directory freefall.freebsd.org:/d/users/mph/sirc Log Message: Import of sirc, Yet Another IRC Client. (Is this the "net" equivalent of Minesweeper in "games"?) This one is written in Perl, so it is convenient for people who would like to script in Perl. PR: 6535 Submitted by: Studded@dal.net Status: Vendor Tag: STUDDED Release Tags: v2_211 N ports/net/sirc/Makefile I ports/net/sirc/CVS N ports/net/sirc/pkg/COMMENT N ports/net/sirc/pkg/DESCR N ports/net/sirc/pkg/PLIST N ports/net/sirc/files/md5 N ports/net/sirc/scripts/sirc-proto N ports/net/sirc/patches/patch-aa No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 22:23:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA16337 for cvs-all-outgoing; Wed, 6 May 1998 22:23:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA16331; Wed, 6 May 1998 22:23:37 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA12591; Wed, 6 May 1998 22:20:51 -0700 (PDT) Date: Wed, 6 May 1998 22:20:51 -0700 (PDT) Message-Id: <199805070520.WAA12591@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/06 22:20:51 PDT Modified files: net Makefile Log: Activate sirc. Revision Changes Path 1.157 +2 -1 ports/net/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 22:45:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA18794 for cvs-all-outgoing; Wed, 6 May 1998 22:45:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA18789; Wed, 6 May 1998 22:45:28 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA12734; Wed, 6 May 1998 22:42:41 -0700 (PDT) Date: Wed, 6 May 1998 22:42:41 -0700 (PDT) Message-Id: <199805070542.WAA12734@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook porting.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/06 22:42:40 PDT Modified files: handbook porting.sgml Log: Clarify some issues about package names. Revision Changes Path 1.96 +10 -4 doc/handbook/porting.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed May 6 23:11:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA21563 for cvs-all-outgoing; Wed, 6 May 1998 23:11:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA21552; Wed, 6 May 1998 23:11:13 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA12831; Wed, 6 May 1998 23:08:26 -0700 (PDT) Date: Wed, 6 May 1998 23:08:26 -0700 (PDT) Message-Id: <199805070608.XAA12831@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/math/r Makefile ports/math/r/files R Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/06 23:08:26 PDT Modified files: math/r Makefile math/r/files R Log: Change package name from "r" to "R" (after discussion with Mark Murray and Satoshi Asami). Correct the handling of paper sizes. PR: 6520 Submitted by: Maurice Castro Revision Changes Path 1.2 +3 -3 ports/math/r/Makefile 1.2 +1 -1 ports/math/r/files/R To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 00:28:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA01066 for cvs-all-outgoing; Thu, 7 May 1998 00:28:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA01061; Thu, 7 May 1998 00:28:32 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA13226; Thu, 7 May 1998 00:25:44 -0700 (PDT) Date: Thu, 7 May 1998 00:25:44 -0700 (PDT) Message-Id: <199805070725.AAA13226@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc_r/uthread uthread_fork.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/05/07 00:25:44 PDT Modified files: (Branch: RELENG_2_2) lib/libc_r/uthread uthread_fork.c Log: MFC: clean up in the child, not the parent. Revision Changes Path 1.2.2.2 +1 -1 src/lib/libc_r/uthread/uthread_fork.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 01:25:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA06913 for cvs-all-outgoing; Thu, 7 May 1998 01:25:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA06906; Thu, 7 May 1998 01:25:02 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA13474; Thu, 7 May 1998 01:22:14 -0700 (PDT) Date: Thu, 7 May 1998 01:22:14 -0700 (PDT) Message-Id: <199805070822.BAA13474@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/lang/python Makefile ports/lang/python/files plat-freebsd2.sh plat-freebsd3.sh md5 ports/lang/python/patches patch-ac ports/lang/python/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/05/07 01:22:14 PDT Modified files: lang/python Makefile lang/python/files md5 lang/python/pkg PLIST Added files: lang/python/files plat-freebsd2.sh plat-freebsd3.sh Removed files: lang/python/patches patch-ac Log: Don't throw away OS version number, some scripts need it. Pick up latest official patches while I'm here. Revision Changes Path 1.30 +23 -3 ports/lang/python/Makefile 1.13 +3 -1 ports/lang/python/files/md5 1.15 +28 -14 ports/lang/python/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 01:39:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA08552 for cvs-all-outgoing; Thu, 7 May 1998 01:39:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA08524; Thu, 7 May 1998 01:39:39 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA13555; Thu, 7 May 1998 01:36:51 -0700 (PDT) Date: Thu, 7 May 1998 01:36:51 -0700 (PDT) Message-Id: <199805070836.BAA13555@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 fd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/05/07 01:36:51 PDT Modified files: sys/pc98/pc98 fd.c Log: Sync with sys/i386/isa/fd.c revision 1.112. Revision Changes Path 1.31 +5 -4 src/sys/pc98/pc98/fd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 01:40:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA08722 for cvs-all-outgoing; Thu, 7 May 1998 01:40:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA08716; Thu, 7 May 1998 01:40:18 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA13587; Thu, 7 May 1998 01:37:30 -0700 (PDT) Date: Thu, 7 May 1998 01:37:30 -0700 (PDT) Message-Id: <199805070837.BAA13587@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 wd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/05/07 01:37:30 PDT Modified files: sys/pc98/pc98 wd.c Log: Sync with sys/i386/isa/wd.c revision 1.166. Revision Changes Path 1.54 +64 -31 src/sys/pc98/pc98/wd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 02:55:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA17991 for cvs-all-outgoing; Thu, 7 May 1998 02:55:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA17986; Thu, 7 May 1998 02:55:26 -0700 (PDT) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA14083; Thu, 7 May 1998 02:52:38 -0700 (PDT) Date: Thu, 7 May 1998 02:52:38 -0700 (PDT) Message-Id: <199805070952.CAA14083@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/emulators/mtools Makefile ports/emulators/mtools/files md5 ports/emulators/mtools/patches patch-2 patch-a ports/emulators/mtools/pkg DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/05/07 02:52:38 PDT Modified files: emulators/mtools Makefile emulators/mtools/files md5 emulators/mtools/patches patch-2 patch-a emulators/mtools/pkg DESCR PLIST Log: vanilla just barely beat me on upgrading this. Merging parts of my upgrade. Revision Changes Path 1.21 +13 -5 ports/emulators/mtools/Makefile 1.10 +1 -0 ports/emulators/mtools/files/md5 1.5 +14 -49 ports/emulators/mtools/patches/patch-2 1.4 +5 -5 ports/emulators/mtools/patches/patch-a 1.4 +1 -0 ports/emulators/mtools/pkg/DESCR 1.11 +4 -0 ports/emulators/mtools/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 05:16:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA05224 for cvs-all-outgoing; Thu, 7 May 1998 05:16:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA05218; Thu, 7 May 1998 05:16:37 -0700 (PDT) (envelope-from julian@FreeBSD.org) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA14576; Thu, 7 May 1998 05:13:48 -0700 (PDT) Date: Thu, 7 May 1998 05:13:48 -0700 (PDT) Message-Id: <199805071213.FAA14576@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/scsi sd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk julian 1998/05/07 05:13:48 PDT Modified files: sys/scsi sd.c Log: An effort to make SLICE/DEVFS play with SCSI. Apparently I didn't make my plans to make dev_t and devsw[] go away under DEVFS quite clear enough to Peter Dufault as he stitched the SCSI system together using them when he redid the configuration side of things. This made is rather an effort to remove all vestiges of dev_t and devsw[] entries from sd.c in DEVFS/SLICE mode. Revision Changes Path 1.129 +102 -79 src/sys/scsi/sd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 07:16:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA18492 for cvs-all-outgoing; Thu, 7 May 1998 07:16:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA18474; Thu, 7 May 1998 07:16:07 -0700 (PDT) (envelope-from jmg@FreeBSD.org) From: John-Mark Gurney Received: (from jmg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA09701; Thu, 7 May 1998 07:13:17 -0700 (PDT) Date: Thu, 7 May 1998 07:13:17 -0700 (PDT) Message-Id: <199805071413.HAA09701@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/mixer mixer.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jmg 1998/05/07 07:13:17 PDT Modified files: usr.sbin/mixer mixer.c Log: fix a core dump problem when you don't give -f a parameter... also compare results of strcmp against 0 instead of !'ing results... Closes PR: 6538 Revision Changes Path 1.9 +2 -2 src/usr.sbin/mixer/mixer.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 07:48:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA24406 for cvs-all-outgoing; Thu, 7 May 1998 07:48:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from hda.hda.com (hda-bicnet.bicnet.net [208.220.66.37]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA24394 for ; Thu, 7 May 1998 07:48:42 -0700 (PDT) (envelope-from dufault@hda.hda.com) Received: (from dufault@localhost) by hda.hda.com (8.8.5/8.8.5) id FAA08739; Thu, 7 May 1998 05:46:21 -0400 (EDT) From: Peter Dufault Message-Id: <199805070946.FAA08739@hda.hda.com> Subject: Re: cvs commit: src/sys/sys termios.h In-Reply-To: <199805062234.PAA00632@antipodes.cdrom.com> from Mike Smith at "May 6, 98 03:34:51 pm" To: mike@smith.net.au (Mike Smith) Date: Thu, 7 May 1998 05:46:21 -0400 (EDT) Cc: jb@cimlogic.com.au, committers@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL25 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > > To get a working FreeBSD/Alpha using a NetBSD kernel, I want to make as > > few changes to FreeBSD sources as possible, and avoid destabilizing i386 > > in the process. On alpha, that means int is 32 bits, long is 64 bits. > > Where there are variables in user-space that are passed to the kernel in > > FreeBSD/NetBSD and the size of these variables differs when compiled on > > alpha, I change the variable so that there is no effective change to i386. > > This commonly means that things coded as long and used as 32-bit integers > > are changed to int. And pointers that are cast to int are changed to cast > > to long. > > Is there a serious impediment to using *int32_t/*int64_t instead? > These give you explicitly-sized storage, and make it clear that you > mean them to stay that way... (I'm actually USING termios.h in a 16 bit environment right now, but it is a moot point since I'll never upgrade the one I'm using.) Changing to "naked int" to mean "signed 32 bit" is backwards. It is discarding information. In system headers where the language doesn't require int behavior, I agree that using typedefs for the two cases you describe is in order. Expecting int to be >= 32 bits for new stuff is fine. If there aren't many typedefs to change I'd make up descriptive typedefs. If there are lots or I don't want to trouble my brain, I'd not worry, be happy, and use int32_t. Peter "1s and 0s?!? We had to use only letter Os!" Dufault -- Peter Dufault (dufault@hda.com) Realtime development, Machine control, HD Associates, Inc. Safety critical systems, Agency approval To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 07:48:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA24439 for cvs-all-outgoing; Thu, 7 May 1998 07:48:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from hda.hda.com (hda-bicnet.bicnet.net [208.220.66.37]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA24383; Thu, 7 May 1998 07:48:35 -0700 (PDT) (envelope-from dufault@hda.hda.com) Received: (from dufault@localhost) by hda.hda.com (8.8.5/8.8.5) id IAA08972; Thu, 7 May 1998 08:42:46 -0400 (EDT) From: Peter Dufault Message-Id: <199805071242.IAA08972@hda.hda.com> Subject: Re: cvs commit: src/sys/scsi sd.c In-Reply-To: <199805071213.FAA14576@freefall.freebsd.org> from Julian Elischer at "May 7, 98 05:13:48 am" To: julian@FreeBSD.ORG (Julian Elischer) Date: Thu, 7 May 1998 08:42:46 -0400 (EDT) Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL25 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Apparently I didn't make my plans to make dev_t and devsw[] go away > under DEVFS quite clear enough to Peter Dufault as he stitched the SCSI > system together using them when he redid the configuration side of things. > This made is rather an effort to remove all vestiges of dev_t and > devsw[] entries from sd.c in DEVFS/SLICE mode. Be fair, Julian: > revision 1.51 > date: 1995/03/01 22:24:45; author: dufault; state: Exp; lines: +104 -189 > Reviewed by: gibbs@freefall.cdrom.com julian@freefall.cdrom.com > 1. Support for fixed device configuration > 2. Hoisted common code to scsi_driver > 3. SCSI busses dynamically allocated at boot > 4. Reorg'd for LKMs I think much devfs stuff went in well after that. Peter -- Peter Dufault (dufault@hda.com) Realtime development, Machine control, HD Associates, Inc. Safety critical systems, Agency approval To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 08:52:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA04977 for cvs-all-outgoing; Thu, 7 May 1998 08:52:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA04971; Thu, 7 May 1998 08:52:33 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA11083; Thu, 7 May 1998 08:49:43 -0700 (PDT) Date: Thu, 7 May 1998 08:49:43 -0700 (PDT) Message-Id: <199805071549.IAA11083@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/automake/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/05/07 08:49:42 PDT Modified files: devel/automake/pkg PLIST Log: Add a patch from maintainer. PR: ports/6513 Submitted by: maintainer Revision Changes Path 1.6 +1 -0 ports/devel/automake/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 08:59:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA06137 for cvs-all-outgoing; Thu, 7 May 1998 08:59:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA06132; Thu, 7 May 1998 08:59:10 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA11209; Thu, 7 May 1998 08:56:20 -0700 (PDT) Date: Thu, 7 May 1998 08:56:20 -0700 (PDT) Message-Id: <199805071556.IAA11209@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/05/07 08:56:20 PDT Modified files: . modules Log: libtool --> ports/devel/libtool Revision Changes Path 1.1990 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 09:01:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA06614 for cvs-all-outgoing; Thu, 7 May 1998 09:01:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA06604; Thu, 7 May 1998 09:01:11 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA11224; Thu, 7 May 1998 08:58:21 -0700 (PDT) Date: Thu, 7 May 1998 08:58:21 -0700 (PDT) Message-Id: <199805071558.IAA11224@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/libtool - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/05/07 08:58:20 PDT ports/devel/libtool - Imported sources Update of /home/ncvs/ports/devel/libtool In directory freefall.freebsd.org:/d/users/vanilla/work/libtool Log Message: Import libtool-1.2, It's a generic library support script. PR: ports/6531 Submitted by: Motoyuki Kasahara Status: Vendor Tag: MKASASHA Release Tags: libtool_1_2 N ports/devel/libtool/Makefile I ports/devel/libtool/CVS N ports/devel/libtool/files/md5 N ports/devel/libtool/patches/patch-aa N ports/devel/libtool/patches/patch-ab N ports/devel/libtool/pkg/COMMENT N ports/devel/libtool/pkg/DESCR N ports/devel/libtool/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 09:02:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA06894 for cvs-all-outgoing; Thu, 7 May 1998 09:02:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA06887; Thu, 7 May 1998 09:02:35 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA11258; Thu, 7 May 1998 08:59:45 -0700 (PDT) Date: Thu, 7 May 1998 08:59:45 -0700 (PDT) Message-Id: <199805071559.IAA11258@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/05/07 08:59:44 PDT Modified files: devel Makefile Log: Activate libtool. Revision Changes Path 1.104 +2 -1 ports/devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 09:17:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA09905 for cvs-all-outgoing; Thu, 7 May 1998 09:17:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA09893; Thu, 7 May 1998 09:17:04 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA11434; Thu, 7 May 1998 09:14:14 -0700 (PDT) Date: Thu, 7 May 1998 09:14:14 -0700 (PDT) Message-Id: <199805071614.JAA11434@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/p5-Gtk Makefile ports/x11/p5-Gtk/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/05/07 09:14:13 PDT Modified files: x11/p5-Gtk Makefile x11/p5-Gtk/files md5 Log: Upgrade to 0.2.0. Revision Changes Path 1.5 +5 -5 ports/x11/p5-Gtk/Makefile 1.2 +1 -1 ports/x11/p5-Gtk/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 09:19:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA10446 for cvs-all-outgoing; Thu, 7 May 1998 09:19:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA10436; Thu, 7 May 1998 09:19:50 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA11510; Thu, 7 May 1998 09:17:00 -0700 (PDT) Date: Thu, 7 May 1998 09:17:00 -0700 (PDT) Message-Id: <199805071617.JAA11510@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/mail/p5-Mail-Folder Makefile ports/mail/p5-Mail-Folder/files md5 ports/mail/p5-Mail-Folder/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/05/07 09:16:59 PDT Modified files: mail/p5-Mail-Folder Makefile mail/p5-Mail-Folder/files md5 mail/p5-Mail-Folder/pkg PLIST Log: Upgrade to 0.07. Revision Changes Path 1.10 +4 -4 ports/mail/p5-Mail-Folder/Makefile 1.3 +1 -1 ports/mail/p5-Mail-Folder/files/md5 1.4 +6 -6 ports/mail/p5-Mail-Folder/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 09:21:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA10972 for cvs-all-outgoing; Thu, 7 May 1998 09:21:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA10952; Thu, 7 May 1998 09:21:48 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA11581; Thu, 7 May 1998 09:18:57 -0700 (PDT) Date: Thu, 7 May 1998 09:18:57 -0700 (PDT) Message-Id: <199805071618.JAA11581@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/graphics/xmorph Makefile ports/graphics/xmorph/files md5 ports/graphics/xmorph/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/05/07 09:18:57 PDT Modified files: graphics/xmorph Makefile graphics/xmorph/files md5 graphics/xmorph/patches patch-aa Log: Upgrade to 97.09.11. Revision Changes Path 1.7 +4 -4 ports/graphics/xmorph/Makefile 1.5 +1 -1 ports/graphics/xmorph/files/md5 1.4 +45 -30 ports/graphics/xmorph/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 09:31:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA13171 for cvs-all-outgoing; Thu, 7 May 1998 09:31:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA13157; Thu, 7 May 1998 09:31:28 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA11677; Thu, 7 May 1998 09:28:38 -0700 (PDT) Date: Thu, 7 May 1998 09:28:38 -0700 (PDT) Message-Id: <199805071628.JAA11677@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/mail/p5-MIME-Tools Makefile ports/mail/p5-MIME-Tools/files md5 ports/mail/p5-MIME-Tools/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/05/07 09:28:37 PDT Modified files: mail/p5-MIME-Tools Makefile mail/p5-MIME-Tools/files md5 mail/p5-MIME-Tools/pkg PLIST Log: Upgrade to 4.119. Revision Changes Path 1.2 +4 -4 ports/mail/p5-MIME-Tools/Makefile 1.2 +1 -1 ports/mail/p5-MIME-Tools/files/md5 1.2 +27 -25 ports/mail/p5-MIME-Tools/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 09:58:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA18664 for cvs-all-outgoing; Thu, 7 May 1998 09:58:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA18647; Thu, 7 May 1998 09:58:25 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from hrotti.ifi.uio.no (2602@hrotti.ifi.uio.no [129.240.64.15]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with ESMTP id SAA07688; Thu, 7 May 1998 18:58:23 +0200 (MET DST) Received: (from dag-erli@localhost) by hrotti.ifi.uio.no ; Thu, 7 May 1998 18:58:22 +0200 (MET DST) Mime-Version: 1.0 To: "Jordan K. Hubbard" Cc: Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c References: <26754.894505488@time.cdrom.com> Organization: Gutteklubben Terrasse / KRST / PUMS / YASMW X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-Stop-Spam: http://www.cauce.org From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 07 May 1998 18:58:21 +0200 In-Reply-To: "Jordan K. Hubbard"'s message of "Wed, 06 May 1998 18:44:48 -0700" Message-ID: Lines: 15 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Jordan K. Hubbard" writes: > 2. Rename it to "libfetch" or something more suitably descriptive of its new > abilities. Does that mean renaming all functions as well? What will happen to software which currently uses libftpio? It will at the very least be necessary to change the Makefiles (-lfetch instead of -lftpio)... > Any takers out among our hacker population? :-) Well, I haven't totally given up the idea of writing a new sysinstall, and it will definitely benefit from this, so... :) -- Noone else has a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 10:13:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA21312 for cvs-all-outgoing; Thu, 7 May 1998 10:13:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA21296; Thu, 7 May 1998 10:13:44 -0700 (PDT) (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA12049; Thu, 7 May 1998 10:10:54 -0700 (PDT) Date: Thu, 7 May 1998 10:10:54 -0700 (PDT) Message-Id: <199805071710.KAA12049@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/news/newsfetch Makefile ports/news/newsfetch/files md5 ports/news/newsfetch/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/05/07 10:10:54 PDT Modified files: news/newsfetch Makefile news/newsfetch/files md5 news/newsfetch/patches patch-aa Log: original distribution updated (1.11 -> 1.2) Revision Changes Path 1.3 +3 -3 ports/news/newsfetch/Makefile 1.3 +1 -1 ports/news/newsfetch/files/md5 1.3 +10 -5 ports/news/newsfetch/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 10:28:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA23641 for cvs-all-outgoing; Thu, 7 May 1998 10:28:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA23609; Thu, 7 May 1998 10:28:15 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id KAA07858; Thu, 7 May 1998 10:28:08 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) cc: Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c In-reply-to: Your message of "07 May 1998 18:58:21 +0200." Date: Thu, 07 May 1998 10:28:08 -0700 Message-ID: <7854.894562088@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Does that mean renaming all functions as well? What will happen to > software which currently uses libftpio? It will at the very least be > necessary to change the Makefiles (-lfetch instead of -lftpio)... Like I said, I'd handle the other 2 major consumers of libftpio if somebody wanted to do libftpio and fetch. It will be a bit of a pain from the apps programmer's perspective, but better to do it now before too many apps are using it. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 11:35:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA05009 for cvs-all-outgoing; Thu, 7 May 1998 11:35:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA04989; Thu, 7 May 1998 11:34:53 -0700 (PDT) (envelope-from guido@FreeBSD.org) From: Guido van Rooij Received: (from guido@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA12267; Thu, 7 May 1998 11:32:01 -0700 (PDT) Date: Thu, 7 May 1998 11:32:01 -0700 (PDT) Message-Id: <199805071832.LAA12267@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/inetd inetd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk guido 1998/05/07 11:32:01 PDT Modified files: usr.sbin/inetd inetd.c Log: Redo tcpmux stuff. tcpmux handling is now performed after inetd forks. Furthermore, invalid input for tcpmux does not lead to an exiting inetd. This patch is recommended for people running tcpmux (which is NOT enabled by default) Revision Changes Path 1.31 +20 -15 src/usr.sbin/inetd/inetd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 11:38:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA05807 for cvs-all-outgoing; Thu, 7 May 1998 11:38:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA05553; Thu, 7 May 1998 11:37:51 -0700 (PDT) (envelope-from julian@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id LAA00421; Thu, 7 May 1998 11:28:45 -0700 (PDT) Received: from current1.whistle.com(207.76.205.22) via SMTP by alpo.whistle.com, id smtpd000414; Thu May 7 18:28:41 1998 Date: Thu, 7 May 1998 11:28:38 -0700 (PDT) From: Julian Elischer To: Peter Dufault cc: Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: Re: cvs commit: src/sys/scsi sd.c In-Reply-To: <199805071242.IAA08972@hda.hda.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ok ok ok sorry it was late (early) I think I just hadn't realise until now how EMBEDDED devsw[] and dev_t is in the way that the scsi system finds it's way around. julian On Thu, 7 May 1998, Peter Dufault wrote: > > Apparently I didn't make my plans to make dev_t and devsw[] go away > > under DEVFS quite clear enough to Peter Dufault as he stitched the SCSI > > system together using them when he redid the configuration side of things. > > This made is rather an effort to remove all vestiges of dev_t and > > devsw[] entries from sd.c in DEVFS/SLICE mode. > > Be fair, Julian: > > > revision 1.51 > > date: 1995/03/01 22:24:45; author: dufault; state: Exp; lines: +104 -189 > > Reviewed by: gibbs@freefall.cdrom.com julian@freefall.cdrom.com > > 1. Support for fixed device configuration > > 2. Hoisted common code to scsi_driver > > 3. SCSI busses dynamically allocated at boot > > 4. Reorg'd for LKMs > > I think much devfs stuff went in well after that. > > Peter > > -- > Peter Dufault (dufault@hda.com) Realtime development, Machine control, > HD Associates, Inc. Safety critical systems, Agency approval > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 12:06:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA12197 for cvs-all-outgoing; Thu, 7 May 1998 12:06:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA12120; Thu, 7 May 1998 12:05:52 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA12391; Thu, 7 May 1998 12:02:58 -0700 (PDT) Date: Thu, 7 May 1998 12:02:58 -0700 (PDT) Message-Id: <199805071902.MAA12391@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/07 12:02:58 PDT Modified files: . modules Log: xinfocom --> ports/games/xinfocom Revision Changes Path 1.1991 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 12:07:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA12472 for cvs-all-outgoing; Thu, 7 May 1998 12:07:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA12423; Thu, 7 May 1998 12:07:08 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) From: "Justin T. Gibbs" Received: (from gibbs@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA12442; Thu, 7 May 1998 12:04:16 -0700 (PDT) Date: Thu, 7 May 1998 12:04:16 -0700 (PDT) Message-Id: <199805071904.MAA12442@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/ufs/mfs mfs_vfsops.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk gibbs 1998/05/07 12:04:16 PDT Modified files: (Branch: RELENG_2_2) sys/ufs/mfs mfs_vfsops.c Log: MFS - Convert to using new buf queue functions. Revision Changes Path 1.22.2.4 +5 -5 src/sys/ufs/mfs/mfs_vfsops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 12:08:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA12894 for cvs-all-outgoing; Thu, 7 May 1998 12:08:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA12829; Thu, 7 May 1998 12:08:40 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA12457; Thu, 7 May 1998 12:05:48 -0700 (PDT) Date: Thu, 7 May 1998 12:05:48 -0700 (PDT) Message-Id: <199805071905.MAA12457@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/xinfocom - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/07 12:05:47 PDT ports/games/xinfocom - Imported sources Update of /home/ncvs/ports/games/xinfocom In directory freefall.freebsd.org:/d/users/mph/xinfocom Log Message: Import of xinfocom, an interpreter for Infocom games under X11. The DESCR file contains a pointer to the data files for Zork, which Infocom released for free. Have fun... Status: Vendor Tag: MPH Release Tags: v1_8m N ports/games/xinfocom/Makefile I ports/games/xinfocom/CVS N ports/games/xinfocom/files/md5 N ports/games/xinfocom/pkg/COMMENT N ports/games/xinfocom/pkg/DESCR N ports/games/xinfocom/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 12:10:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA13139 for cvs-all-outgoing; Thu, 7 May 1998 12:10:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA13058; Thu, 7 May 1998 12:09:51 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA12492; Thu, 7 May 1998 12:06:57 -0700 (PDT) Date: Thu, 7 May 1998 12:06:57 -0700 (PDT) Message-Id: <199805071906.MAA12492@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/07 12:06:57 PDT Modified files: games Makefile Log: Activate xinfocom. Revision Changes Path 1.132 +2 -1 ports/games/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 14:58:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA13692 for cvs-all-outgoing; Thu, 7 May 1998 14:58:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA13687; Thu, 7 May 1998 14:58:37 -0700 (PDT) (envelope-from eivind@FreeBSD.org) From: Eivind Eklund Received: (from eivind@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA12879; Thu, 7 May 1998 14:55:44 -0700 (PDT) Date: Thu, 7 May 1998 14:55:44 -0700 (PDT) Message-Id: <199805072155.OAA12879@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/xscavenger Makefile ports/games/xscavenger/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk eivind 1998/05/07 14:55:44 PDT Modified files: games/xscavenger Makefile games/xscavenger/pkg DESCR Log: Change references from epyx.com to xdr.com (as epyx is being phased out). Revision Changes Path 1.7 +2 -2 ports/games/xscavenger/Makefile 1.4 +2 -2 ports/games/xscavenger/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 15:01:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA14183 for cvs-all-outgoing; Thu, 7 May 1998 15:01:49 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA14173; Thu, 7 May 1998 15:01:45 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA12925; Thu, 7 May 1998 14:58:53 -0700 (PDT) Date: Thu, 7 May 1998 14:58:53 -0700 (PDT) Message-Id: <199805072158.OAA12925@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/sirc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/07 14:58:53 PDT Modified files: net/sirc Makefile Log: Remove NO_CONFIGURE. Pointed out by: hoek Revision Changes Path 1.2 +1 -3 ports/net/sirc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 15:50:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA21942 for cvs-all-outgoing; Thu, 7 May 1998 15:50:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA21806; Thu, 7 May 1998 15:50:05 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) From: "Justin T. Gibbs" Received: (from gibbs@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA13103; Thu, 7 May 1998 15:47:11 -0700 (PDT) Date: Thu, 7 May 1998 15:47:11 -0700 (PDT) Message-Id: <199805072247.PAA13103@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/ufs/mfs mfs_vnops.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk gibbs 1998/05/07 15:47:10 PDT Modified files: (Branch: RELENG_2_2) sys/ufs/mfs mfs_vnops.c Log: MFC - Convert to new buf queue macros. Revision Changes Path 1.14.2.1 +7 -7 src/sys/ufs/mfs/mfs_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 16:46:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA03770 for cvs-all-outgoing; Thu, 7 May 1998 16:46:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA03735; Thu, 7 May 1998 16:45:28 -0700 (PDT) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA13334; Thu, 7 May 1998 16:42:34 -0700 (PDT) Date: Thu, 7 May 1998 16:42:34 -0700 (PDT) Message-Id: <199805072342.QAA13334@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc Makefile src/etc/namedb named.conf named.boot Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1998/05/07 16:42:34 PDT Modified files: etc Makefile Added files: etc/namedb named.conf Removed files: etc/namedb named.boot Log: Add new named configuration template and remove old template Revision Changes Path 1.164 +2 -2 src/etc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 16:49:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA04226 for cvs-all-outgoing; Thu, 7 May 1998 16:49:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA04197; Thu, 7 May 1998 16:49:32 -0700 (PDT) (envelope-from jmg@FreeBSD.org) From: John-Mark Gurney Received: (from jmg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA13379; Thu, 7 May 1998 16:46:39 -0700 (PDT) Date: Thu, 7 May 1998 16:46:39 -0700 (PDT) Message-Id: <199805072346.QAA13379@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/mixer mixer.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jmg 1998/05/07 16:46:38 PDT Modified files: (Branch: RELENG_2_2) usr.sbin/mixer mixer.c Log: MFC: rev1.9 for log Revision Changes Path 1.4.2.4 +2 -2 src/usr.sbin/mixer/mixer.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 17:25:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA07990 for cvs-all-outgoing; Thu, 7 May 1998 17:25:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA07985; Thu, 7 May 1998 17:25:25 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA13486; Thu, 7 May 1998 17:22:32 -0700 (PDT) Date: Thu, 7 May 1998 17:22:32 -0700 (PDT) Message-Id: <199805080022.RAA13486@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/p5-Storable Makefile ports/devel/p5-Storable/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/05/07 17:22:32 PDT Modified files: devel/p5-Storable Makefile devel/p5-Storable/files md5 Log: Upgrade to 0.5.8. Revision Changes Path 1.6 +4 -4 ports/devel/p5-Storable/Makefile 1.5 +1 -1 ports/devel/p5-Storable/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 18:18:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA17375 for cvs-all-outgoing; Thu, 7 May 1998 18:18:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA17310; Thu, 7 May 1998 18:18:18 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA13676; Thu, 7 May 1998 18:15:22 -0700 (PDT) Date: Thu, 7 May 1998 18:15:22 -0700 (PDT) Message-Id: <199805080115.SAA13676@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c datalink.c hdlc.c lqr.c lqr.h main.c modem.c mp.c timer.c timer.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/05/07 18:15:21 PDT Modified files: (Branch: MP) usr.sbin/ppp bundle.c datalink.c hdlc.c lqr.c lqr.h main.c modem.c mp.c timer.c timer.h Log: o Rename datalinks as soon as the name has been received so that LQM and HDLC timer diagnostics come out with the correct name. o Don't send an LQR immediately upon reviving a datalink. Leave it 'till the next timeout. o Add the link name to some more LQR diagnostics. o Break out of the main loop when a descriptor exception is seen in select(). o Remove the evil nointr_[u]sleep() functions. Timers should be (and are) used instead. o Treat a read() of 0 bytes as an error that's fatal to the link on which the read() is done. We should never read() 0 after select() says there's something there - not unless the link has been closed by the other side. o Write the data seen before a HDLC header to the terminal in `term' mode, *not* back to the modem :-/ o Initialise our transmitted file descriptor before starting any timers. o Only send data links that have *no* pending output data. This means that our final ACK will be written rather than being nuked with the datalink transmission. Revision Changes Path 1.1.2.77 +8 -28 src/usr.sbin/ppp/Attic/bundle.c 1.1.2.57 +25 -4 src/usr.sbin/ppp/Attic/datalink.c 1.28.2.34 +3 -3 src/usr.sbin/ppp/hdlc.c 1.22.2.30 +37 -14 src/usr.sbin/ppp/lqr.c 1.12.2.6 +2 -1 src/usr.sbin/ppp/lqr.h 1.121.2.57 +4 -1 src/usr.sbin/ppp/main.c 1.77.2.68 +26 -21 src/usr.sbin/ppp/modem.c 1.1.2.26 +9 -5 src/usr.sbin/ppp/Attic/mp.c 1.27.2.11 +1 -57 src/usr.sbin/ppp/timer.c 1.5.4.5 +1 -3 src/usr.sbin/ppp/timer.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 18:51:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA23465 for cvs-all-outgoing; Thu, 7 May 1998 18:51:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA23455; Thu, 7 May 1998 18:50:56 -0700 (PDT) (envelope-from hanai@FreeBSD.org) From: Hanai Hiroyuki Received: (from hanai@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA13776; Thu, 7 May 1998 18:48:03 -0700 (PDT) Date: Thu, 7 May 1998 18:48:03 -0700 (PDT) Message-Id: <199805080148.SAA13776@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/ja/man/man8 mount_nfs.8 rwhod.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hanai 1998/05/07 18:48:03 PDT Modified files: ja/man/man8 mount_nfs.8 rwhod.8 Log: Fix some Japanese representations. Reviewed by: The Japanese Manual Project Submitted by: horikawa@jp.freebsd.org Revision Changes Path 1.4 +6 -6 doc/ja/man/man8/mount_nfs.8 1.3 +1 -0 doc/ja/man/man8/rwhod.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 19:40:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA29093 for cvs-all-outgoing; Thu, 7 May 1998 19:40:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA29075; Thu, 7 May 1998 19:40:43 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA13899; Thu, 7 May 1998 19:37:49 -0700 (PDT) Date: Thu, 7 May 1998 19:37:49 -0700 (PDT) Message-Id: <199805080237.TAA13899@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/07 19:37:49 PDT Modified files: . modules Log: jzip --> ports/games/jzip Revision Changes Path 1.1992 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 19:41:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA29176 for cvs-all-outgoing; Thu, 7 May 1998 19:41:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA29157; Thu, 7 May 1998 19:41:28 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA13914; Thu, 7 May 1998 19:38:34 -0700 (PDT) Date: Thu, 7 May 1998 19:38:34 -0700 (PDT) Message-Id: <199805080238.TAA13914@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/jzip - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/07 19:38:34 PDT ports/games/jzip - Imported sources Update of /home/ncvs/ports/games/jzip In directory freefall.freebsd.org:/d/users/mph/jzip Log Message: Import of jzip. No, it's not another archiver... it's another Infocom interpreter; this one runs in text mode. Status: Vendor Tag: MPH Release Tags: v2_0_1g N ports/games/jzip/Makefile I ports/games/jzip/CVS N ports/games/jzip/files/md5 N ports/games/jzip/pkg/PLIST N ports/games/jzip/pkg/DESCR N ports/games/jzip/pkg/COMMENT N ports/games/jzip/patches/patch-aa No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 19:42:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA29423 for cvs-all-outgoing; Thu, 7 May 1998 19:42:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA29384; Thu, 7 May 1998 19:42:11 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA13955; Thu, 7 May 1998 19:39:16 -0700 (PDT) Date: Thu, 7 May 1998 19:39:16 -0700 (PDT) Message-Id: <199805080239.TAA13955@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/05/07 19:39:16 PDT Modified files: games Makefile Log: Activate jzip. Revision Changes Path 1.133 +2 -1 ports/games/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 22:13:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA21796 for cvs-all-outgoing; Thu, 7 May 1998 22:13:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA21791; Thu, 7 May 1998 22:13:27 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA14261; Thu, 7 May 1998 22:10:33 -0700 (PDT) Date: Thu, 7 May 1998 22:10:33 -0700 (PDT) Message-Id: <199805080510.WAA14261@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/stdio vfprintf.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/07 22:10:33 PDT Modified files: lib/libc/stdio vfprintf.c Log: Don't assign the va_list variable 'ap' directly to the argtable because va_list is not a pointer on alpha. Instead, use the va_arg() macro to return the address that is stored in the argtable. Revision Changes Path 1.19 +18 -19 src/lib/libc/stdio/vfprintf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 22:20:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA22381 for cvs-all-outgoing; Thu, 7 May 1998 22:20:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA22372; Thu, 7 May 1998 22:20:08 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA14314; Thu, 7 May 1998 22:17:13 -0700 (PDT) Date: Thu, 7 May 1998 22:17:13 -0700 (PDT) Message-Id: <199805080517.WAA14314@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/stdio Makefile.inc Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/07 22:17:13 PDT Modified files: lib/libc/stdio Makefile.inc Log: Remote the NetBSD kludge for vfprintf.c Revision Changes Path 1.15 +2 -9 src/lib/libc/stdio/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 22:44:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA26070 for cvs-all-outgoing; Thu, 7 May 1998 22:44:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA26055; Thu, 7 May 1998 22:44:52 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA14475; Thu, 7 May 1998 22:41:58 -0700 (PDT) Date: Thu, 7 May 1998 22:41:58 -0700 (PDT) Message-Id: <199805080541.WAA14475@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/stdlib netbsd_strtod.c Makefile.inc Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/07 22:41:58 PDT Modified files: lib/libc/stdlib Makefile.inc Added files: lib/libc/stdlib netbsd_strtod.c Log: This is a hack to workaround source that is coded to use long variables but also assumes that they are 32-bits. This is one place where I don't think it is appropriate to change 'long' to 'int'. I don't see why the code couldn't be fixed so that using natural long variables does the right thing. It's spaggetti code so it'll take some effort. Obviously NetBSD thought so too because they change 'long' to 'int32_t' etc and left it at that. As a temporary measure FreeBSD/Alpha can use the NetBSD code and put this on the list of things to fix. Revision Changes Path 1.15 +11 -2 src/lib/libc/stdlib/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 23:34:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA02907 for cvs-all-outgoing; Thu, 7 May 1998 23:34:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA02826; Thu, 7 May 1998 23:34:01 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA14637; Thu, 7 May 1998 23:31:06 -0700 (PDT) Date: Thu, 7 May 1998 23:31:06 -0700 (PDT) Message-Id: <199805080631.XAA14637@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/mk bsd.dep.mk bsd.prog.mk Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/07 23:31:06 PDT Modified files: share/mk bsd.dep.mk bsd.prog.mk Log: Moved lex and yacc source handling from bsd.prog.mk to bsd.dep.mk so that it applies to libraries (and lkms) as well as programs. Revision Changes Path 1.21 +40 -1 src/share/mk/bsd.dep.mk 1.72 +1 -38 src/share/mk/bsd.prog.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 23:44:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA04304 for cvs-all-outgoing; Thu, 7 May 1998 23:44:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA04219; Thu, 7 May 1998 23:44:02 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA14689; Thu, 7 May 1998 23:41:07 -0700 (PDT) Date: Thu, 7 May 1998 23:41:07 -0700 (PDT) Message-Id: <199805080641.XAA14689@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/cvs/lib Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/07 23:41:07 PDT Modified files: gnu/usr.bin/cvs/lib Makefile Log: Simplified by using new yacc rules and by not generating y.tab.h. Revision Changes Path 1.15 +2 -3 src/gnu/usr.bin/cvs/lib/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu May 7 23:46:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA04636 for cvs-all-outgoing; Thu, 7 May 1998 23:46:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA04556; Thu, 7 May 1998 23:46:04 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA14720; Thu, 7 May 1998 23:43:09 -0700 (PDT) Date: Thu, 7 May 1998 23:43:09 -0700 (PDT) Message-Id: <199805080643.XAA14720@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libpcap Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/07 23:43:08 PDT Modified files: lib/libpcap Makefile Log: Simplified by using new yacc rules. Revision Changes Path 1.19 +6 -9 src/lib/libpcap/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 00:59:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA12260 for cvs-all-outgoing; Fri, 8 May 1998 00:59:49 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA12255; Fri, 8 May 1998 00:59:48 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA14880; Fri, 8 May 1998 00:56:49 -0700 (PDT) Date: Fri, 8 May 1998 00:56:49 -0700 (PDT) Message-Id: <199805080756.AAA14880@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pci pcisupport.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/08 00:56:49 PDT Modified files: sys/pci pcisupport.c Log: Translated to C (parameters in a function definition have the same scope as variables declared in the main block in the function, so shadowing of parameters by variables declared in the main block is not just an obfuscation). Found by: lint Revision Changes Path 1.67 +2 -2 src/sys/pci/pcisupport.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 02:22:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA20035 for cvs-all-outgoing; Fri, 8 May 1998 02:22:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA20030; Fri, 8 May 1998 02:22:05 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA15166; Fri, 8 May 1998 02:19:09 -0700 (PDT) Date: Fri, 8 May 1998 02:19:09 -0700 (PDT) Message-Id: <199805080919.CAA15166@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/FAQ includes.sgml FAQ.sgml preface.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/05/08 02:19:09 PDT Modified files: FAQ FAQ.sgml preface.sgml Added files: FAQ includes.sgml Log: Add ISBN links to amazon.com. Revision Changes Path 1.96 +3 -2 doc/FAQ/FAQ.sgml 1.9 +8 -8 doc/FAQ/preface.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 02:48:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA23014 for cvs-all-outgoing; Fri, 8 May 1998 02:48:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA22949; Fri, 8 May 1998 02:47:50 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from skejdbrimir.ifi.uio.no (skejdbrimir.ifi.uio.no [129.240.65.2]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with SMTP id LAA05559; Fri, 8 May 1998 11:47:46 +0200 (MET DST) Received: from localhost (dag-erli@localhost) by skejdbrimir.ifi.uio.no ; Fri, 8 May 1998 09:47:46 GMT Mime-Version: 1.0 To: "Jordan K. Hubbard" Cc: Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c References: <7854.894562088@time.cdrom.com> Organization: Gutteklubben Terrasse / KRST / PUMS / YASMW X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-Stop-Spam: http://www.cauce.org From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 08 May 1998 11:47:42 +0200 In-Reply-To: "Jordan K. Hubbard"'s message of "Thu, 07 May 1998 10:28:08 -0700" Message-ID: Lines: 33 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Jordan K. Hubbard" writes: > > Does that mean renaming all functions as well? What will happen to > > software which currently uses libftpio? It will at the very least be > > necessary to change the Makefiles (-lfetch instead of -lftpio)... > Like I said, I'd handle the other 2 major consumers of libftpio if > somebody wanted to do libftpio and fetch. It will be a bit of a pain > from the apps programmer's perspective, but better to do it now before > too many apps are using it. OK, I took a quick look at it last night. My approach so far is to write a new library (libfetch) and integrate the code from fetch and libftpio into it. The libfetch interface consists of two functions: FILE *fetchGetURL(char *URL, int flags); FILE *fetchPutURL(char *URL, int flags); which work as you'd expect. The flags parameter is used to specify options such as passive mode, text/binary mode, verbosity, possibly also protocol version (HTTP 1.0 / HTTP 1.1). With this approach you gain generality at the expense of efficiency, since you lose the single-connection-multiple-fetch functionality of ftpio. To avoid this, I could allow direct access to the various handlers and provide fetchGetURL() and fetchPutURL() simply as convenient front-ends rather than as recommended entry point. Should keeping the single-connection-multiple-fetch functionality be a big priority? Right now I'm reading a truckload of RFCs to make sure I don't make any big blunders :) -- Noone else has a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 03:11:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA25346 for cvs-all-outgoing; Fri, 8 May 1998 03:11:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA25325; Fri, 8 May 1998 03:11:17 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id DAA20262; Fri, 8 May 1998 03:10:18 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) cc: Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c In-reply-to: Your message of "08 May 1998 11:47:42 +0200." Date: Fri, 08 May 1998 03:10:18 -0700 Message-ID: <20258.894622218@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > OK, I took a quick look at it last night. My approach so far is to > write a new library (libfetch) and integrate the code from fetch and > libftpio into it. The libfetch interface consists of two functions: > > FILE *fetchGetURL(char *URL, int flags); > FILE *fetchPutURL(char *URL, int flags); > > which work as you'd expect. The flags parameter is used to specify > options such as passive mode, text/binary mode, verbosity, possibly > also protocol version (HTTP 1.0 / HTTP 1.1). Sounds reasonable - so the flags will be the union of all possible options, e.g. everything from (contrived) FILE_SYMLINK to FTP_PASSIVE? Do we have less than 32 options in total? ;-) > With this approach you gain generality at the expense of efficiency, > since you lose the single-connection-multiple-fetch functionality of > ftpio. To avoid this, I could allow direct access to the various > handlers and provide fetchGetURL() and fetchPutURL() simply as > convenient front-ends rather than as recommended entry point. Should > keeping the single-connection-multiple-fetch functionality be a big > priority? Well, last time I sat down and thought about this, I figured you could advertise fetch{Get,Put}URL() as the primary interfaces but also provide some of the existing libftpio functions as a set of fetchFTPFoo() functions for those who need to do _just_ that task. It may turn out that sysinstall is one such consumer for FTP media if the "transactional fetch" of the fetchFooURL() functions proves to be too slow when grabbing split distributions. I have the rather sneaking suspicion that it will be. :) That won't stop me from using the higher-level functions in other URL cases, of course, and it's still worth doing. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 03:14:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA25819 for cvs-all-outgoing; Fri, 8 May 1998 03:14:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA25797; Fri, 8 May 1998 03:14:02 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from skejdbrimir.ifi.uio.no (skejdbrimir.ifi.uio.no [129.240.65.2]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with SMTP id MAA08794; Fri, 8 May 1998 12:14:02 +0200 (MET DST) Received: from localhost (dag-erli@localhost) by skejdbrimir.ifi.uio.no ; Fri, 8 May 1998 10:13:59 GMT Mime-Version: 1.0 To: "Jordan K. Hubbard" Cc: Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c References: <7854.894562088@time.cdrom.com> Organization: Gutteklubben Terrasse / KRST / PUMS / YASMW X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-Stop-Spam: http://www.cauce.org From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 08 May 1998 12:13:51 +0200 In-Reply-To: "Jordan K. Hubbard"'s message of "Thu, 07 May 1998 10:28:08 -0700" Message-ID: Lines: 8 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Jordan K. Hubbard" writes: > Like I said, I'd handle the other 2 major consumers of libftpio if > somebody wanted to do libftpio and fetch. BTW, what *are* the "other 2 major consumers of libftpio"? -- Noone else has a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 03:14:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA25902 for cvs-all-outgoing; Fri, 8 May 1998 03:14:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA25849; Fri, 8 May 1998 03:14:23 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from skejdbrimir.ifi.uio.no (skejdbrimir.ifi.uio.no [129.240.65.2]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with SMTP id MAA08843; Fri, 8 May 1998 12:14:23 +0200 (MET DST) Received: from localhost (dag-erli@localhost) by skejdbrimir.ifi.uio.no ; Fri, 8 May 1998 10:14:21 GMT Mime-Version: 1.0 To: "Jordan K. Hubbard" Cc: Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c References: <7854.894562088@time.cdrom.com> Organization: Gutteklubben Terrasse / KRST / PUMS / YASMW X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-Stop-Spam: http://www.cauce.org From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) In-Reply-To: "Jordan K. Hubbard"'s message of "Thu, 07 May 1998 10:28:08 -0700" Lines: 8 X-Mailer: Gnus v5.5/Emacs 19.34 Date: 08 May 1998 12:14:16 +0200 Message-ID: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Jordan K. Hubbard" writes: > Like I said, I'd handle the other 2 major consumers of libftpio if > somebody wanted to do libftpio and fetch. BTW, what *are* the "other 2 major consumers of libftpio"? sysinstall and pkg_add? -- Noone else has a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 03:16:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA26087 for cvs-all-outgoing; Fri, 8 May 1998 03:16:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA26072; Fri, 8 May 1998 03:16:31 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id DAA20313; Fri, 8 May 1998 03:15:31 -0700 (PDT) (envelope-from jkh@time.cdrom.com) cc: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ), Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c In-reply-to: Your message of "Fri, 08 May 1998 03:10:18 PDT." <20258.894622218@time.cdrom.com> Date: Fri, 08 May 1998 03:15:31 -0700 Message-ID: <20309.894622531@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Well, last time I sat down and thought about this, I figured you could > advertise fetch{Get,Put}URL() as the primary interfaces but also > provide some of the existing libftpio functions as a set of > fetchFTPFoo() functions for those who need to do _just_ that task. It > may turn out that sysinstall is one such consumer for FTP media if the > "transactional fetch" of the fetchFooURL() functions proves to be too > slow when grabbing split distributions. I have the rather sneaking > suspicion that it will be. :) Wait, I had another thought - you could do connection caching! Yes, with timers and an aging algorithm! :-) :-) _ Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 03:16:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA26130 for cvs-all-outgoing; Fri, 8 May 1998 03:16:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA26117; Fri, 8 May 1998 03:16:47 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id DAA20327; Fri, 8 May 1998 03:15:47 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) cc: Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c In-reply-to: Your message of "08 May 1998 12:13:51 +0200." Date: Fri, 08 May 1998 03:15:47 -0700 Message-ID: <20324.894622547@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > "Jordan K. Hubbard" writes: > > Like I said, I'd handle the other 2 major consumers of libftpio if > > somebody wanted to do libftpio and fetch. > > BTW, what *are* the "other 2 major consumers of libftpio"? pkg_add & sysinstall. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 03:17:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA26165 for cvs-all-outgoing; Fri, 8 May 1998 03:17:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA26160; Fri, 8 May 1998 03:17:08 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA15447; Fri, 8 May 1998 03:14:12 -0700 (PDT) Date: Fri, 8 May 1998 03:14:12 -0700 (PDT) Message-Id: <199805081014.DAA15447@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data/cgi cvsweb.cgi Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/05/08 03:14:11 PDT Modified files: data/cgi cvsweb.cgi Log: Don't print the directory '#cvs.lock'. Revision Changes Path 1.18 +2 -0 www/data/cgi/cvsweb.cgi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 03:17:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA26256 for cvs-all-outgoing; Fri, 8 May 1998 03:17:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA26219; Fri, 8 May 1998 03:17:27 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id DAA20361; Fri, 8 May 1998 03:16:27 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) cc: Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c In-reply-to: Your message of "08 May 1998 12:14:16 +0200." Date: Fri, 08 May 1998 03:16:27 -0700 Message-ID: <20358.894622587@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk What is this, 3 step refinement of all questions now? :-) > "Jordan K. Hubbard" writes: > > Like I said, I'd handle the other 2 major consumers of libftpio if > > somebody wanted to do libftpio and fetch. > > BTW, what *are* the "other 2 major consumers of libftpio"? sysinstall > and pkg_add? > > -- > Noone else has a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 04:06:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA02962 for cvs-all-outgoing; Fri, 8 May 1998 04:06:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA02862; Fri, 8 May 1998 04:06:02 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from skejdbrimir.ifi.uio.no (skejdbrimir.ifi.uio.no [129.240.65.2]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with SMTP id NAA14871; Fri, 8 May 1998 13:05:59 +0200 (MET DST) Received: from localhost (dag-erli@localhost) by skejdbrimir.ifi.uio.no ; Fri, 8 May 1998 11:05:58 GMT Mime-Version: 1.0 To: "Jordan K. Hubbard" Cc: Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c References: <20358.894622587@time.cdrom.com> Organization: Gutteklubben Terrasse / KRST / PUMS / YASMW X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-Stop-Spam: http://www.cauce.org From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 08 May 1998 13:05:47 +0200 In-Reply-To: "Jordan K. Hubbard"'s message of "Fri, 08 May 1998 03:16:27 -0700" Message-ID: Lines: 8 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Jordan K. Hubbard" writes: > What is this, 3 step refinement of all questions now? :-) Nope, I thought I'd aborted before Gnus had time to send the message, but apparently not :) -- Noone else has a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 04:09:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA03162 for cvs-all-outgoing; Fri, 8 May 1998 04:09:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA03147; Fri, 8 May 1998 04:09:35 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from skejdbrimir.ifi.uio.no (skejdbrimir.ifi.uio.no [129.240.65.2]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with SMTP id NAA15329; Fri, 8 May 1998 13:09:36 +0200 (MET DST) Received: from localhost (dag-erli@localhost) by skejdbrimir.ifi.uio.no ; Fri, 8 May 1998 11:09:35 GMT Mime-Version: 1.0 To: "Jordan K. Hubbard" Cc: Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c References: <20258.894622218@time.cdrom.com> Organization: Gutteklubben Terrasse / KRST / PUMS / YASMW X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-Stop-Spam: http://www.cauce.org From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 08 May 1998 13:09:32 +0200 In-Reply-To: "Jordan K. Hubbard"'s message of "Fri, 08 May 1998 03:10:18 -0700" Message-ID: Lines: 13 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Jordan K. Hubbard" writes: > may turn out that sysinstall is one such consumer for FTP media if the > "transactional fetch" of the fetchFooURL() functions proves to be too > slow when grabbing split distributions. I have the rather sneaking > suspicion that it will be. :) Which brings me to another question - is it really necessary to split up the distribution into 240 kB fragments? 720 kB or 1440 kB fragments I could understand, but 240 kB? And for a network or CD installation, it isn't really necessary to split it up at all, is it? -- Noone else has a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 05:36:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA13952 for cvs-all-outgoing; Fri, 8 May 1998 05:36:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA13926; Fri, 8 May 1998 05:36:24 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id FAA20698; Fri, 8 May 1998 05:35:19 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) cc: Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c In-reply-to: Your message of "08 May 1998 13:09:32 +0200." Date: Fri, 08 May 1998 05:35:19 -0700 Message-ID: <20694.894630919@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Which brings me to another question - is it really necessary to split > up the distribution into 240 kB fragments? 720 kB or 1440 kB fragments > I could understand, but 240 kB? And for a network or CD installation, > it isn't really necessary to split it up at all, is it? No, not really, not anymore anyway. I'd be just as happy to see us go to a larger fragment size if it doesn't screw up the floppy folk too much (don't forget - they need to stick the foo.inf file on the very first floppy, so it can't be exactly 1.44MB in size or even relatively close given what's taken for FS overhead). As much as I'd like to kill the floppy installation entirely (it penalizes _all_ the other installation types by enforcing this kind of multi-piece braindamage), I don't think we can get away with that yet. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 05:47:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA14683 for cvs-all-outgoing; Fri, 8 May 1998 05:47:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA14662; Fri, 8 May 1998 05:47:24 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from skejdbrimir.ifi.uio.no (skejdbrimir.ifi.uio.no [129.240.65.2]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with SMTP id OAA28867; Fri, 8 May 1998 14:47:18 +0200 (MET DST) Received: from localhost (dag-erli@localhost) by skejdbrimir.ifi.uio.no ; Fri, 8 May 1998 12:47:18 GMT Mime-Version: 1.0 To: "Jordan K. Hubbard" Cc: Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c References: <20258.894622218@time.cdrom.com> Organization: Gutteklubben Terrasse / KRST / PUMS / YASMW X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-Stop-Spam: http://www.cauce.org From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 08 May 1998 14:47:13 +0200 In-Reply-To: "Jordan K. Hubbard"'s message of "Fri, 08 May 1998 03:10:18 -0700" Message-ID: Lines: 13 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Jordan K. Hubbard" writes: > > which work as you'd expect. The flags parameter is used to specify > > options such as passive mode, text/binary mode, verbosity, possibly > > also protocol version (HTTP 1.0 / HTTP 1.1). > Sounds reasonable - so the flags will be the union of all possible > options, e.g. everything from (contrived) FILE_SYMLINK to FTP_PASSIVE? > Do we have less than 32 options in total? ;-) I don't think that should be a problem. I could change that to a long long if you want :) -- Noone else has a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 05:48:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA14860 for cvs-all-outgoing; Fri, 8 May 1998 05:48:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA14799; Fri, 8 May 1998 05:48:03 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from skejdbrimir.ifi.uio.no (skejdbrimir.ifi.uio.no [129.240.65.2]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with SMTP id OAA28956; Fri, 8 May 1998 14:48:03 +0200 (MET DST) Received: from localhost (dag-erli@localhost) by skejdbrimir.ifi.uio.no ; Fri, 8 May 1998 12:48:02 GMT Mime-Version: 1.0 To: "Jordan K. Hubbard" Cc: Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c References: <20309.894622531@time.cdrom.com> Organization: Gutteklubben Terrasse / KRST / PUMS / YASMW X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-Stop-Spam: http://www.cauce.org From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 08 May 1998 14:47:59 +0200 In-Reply-To: "Jordan K. Hubbard"'s message of "Fri, 08 May 1998 03:15:31 -0700" Message-ID: Lines: 8 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Jordan K. Hubbard" writes: > Wait, I had another thought - you could do connection caching! Yes, > with timers and an aging algorithm! :-) :-) Hmm, I know I've seen that *somewhere* before, but *where*? ;) -- Noone else has a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 05:53:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA15496 for cvs-all-outgoing; Fri, 8 May 1998 05:53:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA15443; Fri, 8 May 1998 05:52:42 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from skejdbrimir.ifi.uio.no (skejdbrimir.ifi.uio.no [129.240.65.2]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with SMTP id OAA29716; Fri, 8 May 1998 14:52:41 +0200 (MET DST) Received: from localhost (dag-erli@localhost) by skejdbrimir.ifi.uio.no ; Fri, 8 May 1998 12:52:41 GMT Mime-Version: 1.0 To: "Jordan K. Hubbard" Cc: Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c References: <20694.894630919@time.cdrom.com> Organization: Gutteklubben Terrasse / KRST / PUMS / YASMW X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-Stop-Spam: http://www.cauce.org From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 08 May 1998 14:52:38 +0200 In-Reply-To: "Jordan K. Hubbard"'s message of "Fri, 08 May 1998 05:35:19 -0700" Message-ID: Lines: 18 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Jordan K. Hubbard" writes: > No, not really, not anymore anyway. I'd be just as happy to see us go > to a larger fragment size if it doesn't screw up the floppy folk too > much (don't forget - they need to stick the foo.inf file on the very > first floppy, so it can't be exactly 1.44MB in size or even relatively > close given what's taken for FS overhead). As much as I'd like to > kill the floppy installation entirely (it penalizes _all_ the other > installation types by enforcing this kind of multi-piece braindamage), > I don't think we can get away with that yet. Anybody willing to install FreeBSD from floppies ought to be given a medal for patience. Anyway, can't we just make the first fragment slightly smaller than the others to make room for the .inf file? -- Noone else has a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 05:55:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA15862 for cvs-all-outgoing; Fri, 8 May 1998 05:55:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA15801; Fri, 8 May 1998 05:54:44 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id FAA20827; Fri, 8 May 1998 05:53:44 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) cc: Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c In-reply-to: Your message of "08 May 1998 14:52:38 +0200." Date: Fri, 08 May 1998 05:53:44 -0700 Message-ID: <20823.894632024@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Anybody willing to install FreeBSD from floppies ought to be given a > medal for patience. Unfortunately, there are still a fair number of purple hearts being handed out. > Anyway, can't we just make the first fragment slightly smaller than > the others to make room for the .inf file? Bah, don't make me special-case the first image, please - it would be a hack and something extra for an already terminally confused user base (which refuses to read "ABOUT.TXT") to have to know. :) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 06:12:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA18896 for cvs-all-outgoing; Fri, 8 May 1998 06:12:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA18720; Fri, 8 May 1998 06:11:38 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id PAA02553; Fri, 8 May 1998 15:10:59 +0200 (CEST) To: "Jordan K. Hubbard" cc: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ), Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c In-reply-to: Your message of "Fri, 08 May 1998 05:35:19 PDT." <20694.894630919@time.cdrom.com> Date: Fri, 08 May 1998 15:10:59 +0200 Message-ID: <2551.894633059@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In message <20694.894630919@time.cdrom.com>, "Jordan K. Hubbard" writes: >> Which brings me to another question - is it really necessary to split >> up the distribution into 240 kB fragments? 720 kB or 1440 kB fragments >> I could understand, but 240 kB? And for a network or CD installation, >> it isn't really necessary to split it up at all, is it? > >No, not really, not anymore anyway. I'd be just as happy to see us go >to a larger fragment size if it doesn't screw up the floppy folk too >much (don't forget - they need to stick the foo.inf file on the very >first floppy, so it can't be exactly 1.44MB in size or even relatively >close given what's taken for FS overhead). As much as I'd like to >kill the floppy installation entirely (it penalizes _all_ the other >installation types by enforcing this kind of multi-piece braindamage), >I don't think we can get away with that yet. The solution could be to distribute a tool to make floppy-sized chunks out of a big file... -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "ttyv0" -- What UNIX calls a $20K state-of-the-art, 3D, hi-res color terminal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 06:15:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA19322 for cvs-all-outgoing; Fri, 8 May 1998 06:15:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA19283; Fri, 8 May 1998 06:15:22 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id GAA21156; Fri, 8 May 1998 06:12:42 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Poul-Henning Kamp cc: dag-erli@ifi.uio.no, Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c In-reply-to: Your message of "Fri, 08 May 1998 15:10:59 +0200." <2551.894633059@critter.freebsd.dk> Date: Fri, 08 May 1998 06:12:42 -0700 Message-ID: <21153.894633162@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > The solution could be to distribute a tool to make floppy-sized chunks > out of a big file... In order to be truly effective, such a tool would have to be written to work with DOS and Windows, of course. Hey, don't look at me, I don't even have a C compiler for DOS! :-) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 06:17:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA19721 for cvs-all-outgoing; Fri, 8 May 1998 06:17:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA19687; Fri, 8 May 1998 06:17:31 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from skejdbrimir.ifi.uio.no (skejdbrimir.ifi.uio.no [129.240.65.2]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with SMTP id PAA03497; Fri, 8 May 1998 15:17:31 +0200 (MET DST) Received: from localhost (dag-erli@localhost) by skejdbrimir.ifi.uio.no ; Fri, 8 May 1998 13:17:30 GMT Mime-Version: 1.0 To: "Jordan K. Hubbard" Cc: Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c References: <20823.894632024@time.cdrom.com> Organization: Gutteklubben Terrasse / KRST / PUMS / YASMW X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-Stop-Spam: http://www.cauce.org From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 08 May 1998 15:17:26 +0200 In-Reply-To: "Jordan K. Hubbard"'s message of "Fri, 08 May 1998 05:53:44 -0700" Message-ID: Lines: 21 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Jordan K. Hubbard" writes: > > Anyway, can't we just make the first fragment slightly smaller than > > the others to make room for the .inf file? > Bah, don't make me special-case the first image, please - it would be a > hack and something extra for an already terminally confused user base > (which refuses to read "ABOUT.TXT") to have to know. :) OK, so if we're using FAT12-formatted floppies, we have 2880 sectors minus 1 boot sector minus (((2880 * 1.5) / 512) + 1) = 9 sectors for the FAT, minus a couple of sectors for the root directory and one for the .inf file, say we leave out the entire first track (18 sectors), which leaves us with 2862 sectors (or 1431 kB, or 1465344 bytes) for the tarball fragments. If you don't like "random" numbers you can round down to 1400 kB (2800 sectors) which should leave plenty of space - enough space, in fact, that it could fit on a floppy with a handfull of bad sectors. With the old scheme you could only fit ~1200 kB (five 240 kB fragments) on one floppy, so we're actually reducing the number of floppies required for an installation. -- Noone else has a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 06:31:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA21799 for cvs-all-outgoing; Fri, 8 May 1998 06:31:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA21740; Fri, 8 May 1998 06:31:32 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id XAA18001; Fri, 8 May 1998 23:27:39 +1000 Date: Fri, 8 May 1998 23:27:39 +1000 From: Bruce Evans Message-Id: <199805081327.XAA18001@godzilla.zeta.org.au> To: dag-erli@ifi.uio.no, jkh@time.cdrom.com Subject: Re: cvs commit: src/lib/libftpio ftpio.c Cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-lib@FreeBSD.ORG, julian@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >> Which brings me to another question - is it really necessary to split >> up the distribution into 240 kB fragments? 720 kB or 1440 kB fragments >> I could understand, but 240 kB? And for a network or CD installation, >> it isn't really necessary to split it up at all, is it? 235K. >No, not really, not anymore anyway. I'd be just as happy to see us go >to a larger fragment size if it doesn't screw up the floppy folk too >much (don't forget - they need to stick the foo.inf file on the very >first floppy, so it can't be exactly 1.44MB in size or even relatively >close given what's taken for FS overhead). As much as I'd like to Most floppies have size 1200K :-). 235K was carefully chosen for packing either 5 fragments on a 1200K floppy of 6 on a 1440K floppy, at least in tar format. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 06:52:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA23953 for cvs-all-outgoing; Fri, 8 May 1998 06:52:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA23947; Fri, 8 May 1998 06:52:15 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA10693; Fri, 8 May 1998 06:49:18 -0700 (PDT) Date: Fri, 8 May 1998 06:49:18 -0700 (PDT) Message-Id: <199805081349.GAA10693@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/05/08 06:49:18 PDT Modified files: release Makefile Log: Try experimenting with the split size a little in an effort to move our installation structure a little further into the 20th century (just before it's over). Instigated by: Dag-Erling Coidan Revision Changes Path 1.349 +2 -2 src/release/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 06:53:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA24122 for cvs-all-outgoing; Fri, 8 May 1998 06:53:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA24054; Fri, 8 May 1998 06:53:04 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id GAA21678; Fri, 8 May 1998 06:52:00 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) cc: Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c In-reply-to: Your message of "08 May 1998 15:17:26 +0200." Date: Fri, 08 May 1998 06:52:00 -0700 Message-ID: <21674.894635520@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > the tarball fragments. If you don't like "random" numbers you can > round down to 1400 kB (2800 sectors) which should leave plenty of > space - enough space, in fact, that it could fit on a floppy with a > handfull of bad sectors. With the old scheme you could only fit ~1200 Sounds like a more than reasonable idea. Done! Let me start a release rolling with the change in there as well and eyeball the resulting product a bit. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 06:54:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA24375 for cvs-all-outgoing; Fri, 8 May 1998 06:54:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA24366; Fri, 8 May 1998 06:54:35 -0700 (PDT) (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA10823; Fri, 8 May 1998 06:51:38 -0700 (PDT) Date: Fri, 8 May 1998 06:51:38 -0700 (PDT) Message-Id: <199805081351.GAA10823@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/crossfire Makefile ports/games/crossfire/files md5 ports/games/crossfire/patches patch-ao patch-ap patch-aa patch-ac patch-ak patch-af ports/games/crossfire/pkg PLIST ports/games/crossfire/scripts pre-configure Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/05/08 06:51:38 PDT Modified files: games/crossfire Makefile games/crossfire/files md5 games/crossfire/patches patch-aa patch-ac patch-ak games/crossfire/pkg PLIST Added files: games/crossfire/patches patch-ao patch-ap games/crossfire/scripts pre-configure Removed files: games/crossfire/patches patch-af Log: Update to newest version 0.94.1 Make port PREFIX clean solve gettimeofday compile problem (patch-ao) sanitize order of header file inclusion in common/porting.c so that MIN and MAX don't get redefined (patch-ap) updated PLIST added dirrm statements in PLIST to allow proper removal of package Revision Changes Path 1.20 +34 -23 ports/games/crossfire/Makefile 1.3 +3 -3 ports/games/crossfire/files/md5 1.4 +31 -17 ports/games/crossfire/patches/patch-aa 1.2 +20 -5 ports/games/crossfire/patches/patch-ac 1.4 +9 -9 ports/games/crossfire/patches/patch-ak 1.6 +2109 -1522ports/games/crossfire/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 06:55:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA24685 for cvs-all-outgoing; Fri, 8 May 1998 06:55:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA24621; Fri, 8 May 1998 06:55:26 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id GAA21694; Fri, 8 May 1998 06:54:06 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: dag-erli@ifi.uio.no cc: Bruce Evans , cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-lib@FreeBSD.ORG, julian@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c In-reply-to: Your message of "Fri, 08 May 1998 23:27:39 +1000." <199805081327.XAA18001@godzilla.zeta.org.au> Date: Fri, 08 May 1998 06:54:06 -0700 Message-ID: <21690.894635646@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Most floppies have size 1200K :-). 235K was carefully chosen for Maybe the ones _you_ have around the house conform to this particular statistic, but in this corner of the world I think it's fair to say that the 1.2MB floppy is just about extinct. Still, it's a point - do we really want to lose 1.2MB floppies entirely (and, admittedly, somewhat gratuitously) by going to a 1400K split size? - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 07:02:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA25771 for cvs-all-outgoing; Fri, 8 May 1998 07:02:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA25757; Fri, 8 May 1998 07:02:13 -0700 (PDT) (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA10861; Fri, 8 May 1998 06:59:16 -0700 (PDT) Date: Fri, 8 May 1998 06:59:16 -0700 (PDT) Message-Id: <199805081359.GAA10861@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/crossfire Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/05/08 06:59:15 PDT Modified files: games/crossfire Makefile Log: Information, to update ${PREFIX}/etc/rplay.conf to get sound. Forgot to mention in previous commit: - install in ${PREFIX}/lib/crossfire - install docu in ${PREFIX}/share/doc/crossfire Revision Changes Path 1.21 +3 -1 ports/games/crossfire/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 07:43:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA02500 for cvs-all-outgoing; Fri, 8 May 1998 07:43:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA02490; Fri, 8 May 1998 07:43:44 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA10971; Fri, 8 May 1998 07:40:47 -0700 (PDT) Date: Fri, 8 May 1998 07:40:47 -0700 (PDT) Message-Id: <199805081440.HAA10971@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/prc-tools/patches patch-ae Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/05/08 07:40:47 PDT Added files: devel/prc-tools/patches patch-ae Log: Fix for: 'build-prc' only knows how to deal with pilrc-generated filenames in the current directory. If told to use a file from a subdirectory, it takes the first 4 characters in the path as the resource name and tries to interpret the rest of the path as a hexadecimal ID number. PR: 6530 Submitted by: Dave Glowacki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 07:49:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA03102 for cvs-all-outgoing; Fri, 8 May 1998 07:49:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA03096; Fri, 8 May 1998 07:49:22 -0700 (PDT) (envelope-from max@FreeBSD.org) From: Masafumi NAKANE Received: (from max@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA11140; Fri, 8 May 1998 07:46:25 -0700 (PDT) Date: Fri, 8 May 1998 07:46:25 -0700 (PDT) Message-Id: <199805081446.HAA11140@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/limits limits.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk max 1998/05/08 07:46:24 PDT Modified files: usr.bin/limits limits.1 Log: 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 PR: 6480 Revision Changes Path 1.7 +3 -3 src/usr.bin/limits/limits.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 07:52:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA03382 for cvs-all-outgoing; Fri, 8 May 1998 07:52:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA03377; Fri, 8 May 1998 07:52:24 -0700 (PDT) (envelope-from max@FreeBSD.org) From: Masafumi NAKANE Received: (from max@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA11182; Fri, 8 May 1998 07:49:27 -0700 (PDT) Date: Fri, 8 May 1998 07:49:27 -0700 (PDT) Message-Id: <199805081449.HAA11182@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/limits limits.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk max 1998/05/08 07:49:26 PDT Modified files: (Branch: RELENG_2_2) usr.bin/limits limits.1 Log: MFC: Typo fix. Pointed out by: Brian Reichert PR: 6480 Revision Changes Path 1.2.2.5 +3 -3 src/usr.bin/limits/limits.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 08:09:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA05023 for cvs-all-outgoing; Fri, 8 May 1998 08:09:29 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA05018; Fri, 8 May 1998 08:09:28 -0700 (PDT) (envelope-from max@FreeBSD.org) From: Masafumi NAKANE Received: (from max@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA11364; Fri, 8 May 1998 08:06:30 -0700 (PDT) Date: Fri, 8 May 1998 08:06:30 -0700 (PDT) Message-Id: <199805081506.IAA11364@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/xskewb Makefile ports/games/xskewb/files md5 ports/games/xskewb/pkg COMMENT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk max 1998/05/08 08:06:30 PDT Modified files: games/xskewb Makefile games/xskewb/files md5 games/xskewb/pkg COMMENT Log: Upgrade, 5.4.3 -> 5.4.4. Submitted by: maintainer PR: 6551 Revision Changes Path 1.3 +3 -3 ports/games/xskewb/Makefile 1.2 +1 -1 ports/games/xskewb/files/md5 1.2 +1 -1 ports/games/xskewb/pkg/COMMENT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 08:42:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA09785 for cvs-all-outgoing; Fri, 8 May 1998 08:42:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA09562; Fri, 8 May 1998 08:41:47 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from skejdbrimir.ifi.uio.no (skejdbrimir.ifi.uio.no [129.240.65.2]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with SMTP id RAA23759; Fri, 8 May 1998 17:41:39 +0200 (MET DST) Received: from localhost (dag-erli@localhost) by skejdbrimir.ifi.uio.no ; Fri, 8 May 1998 15:41:38 GMT Mime-Version: 1.0 To: "Jordan K. Hubbard" Cc: Bruce Evans , cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-lib@FreeBSD.ORG, julian@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c References: <21690.894635646@time.cdrom.com> Organization: Gutteklubben Terrasse / KRST / PUMS / YASMW X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-Stop-Spam: http://www.cauce.org From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 08 May 1998 17:41:31 +0200 In-Reply-To: "Jordan K. Hubbard"'s message of "Fri, 08 May 1998 06:54:06 -0700" Message-ID: Lines: 9 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Jordan K. Hubbard" writes: > Still, it's a point - do we really want to lose 1.2MB floppies > entirely (and, admittedly, somewhat gratuitously) by going to a 1400K > split size? Hmm, the idea of a file-splitting tool is becoming more attractive. -- Noone else has a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 08:47:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA10702 for cvs-all-outgoing; Fri, 8 May 1998 08:47:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA10654; Fri, 8 May 1998 08:47:08 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from skejdbrimir.ifi.uio.no (skejdbrimir.ifi.uio.no [129.240.65.2]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with SMTP id RAA23572; Fri, 8 May 1998 17:40:29 +0200 (MET DST) Received: from localhost (dag-erli@localhost) by skejdbrimir.ifi.uio.no ; Fri, 8 May 1998 15:40:28 GMT Mime-Version: 1.0 To: "Jordan K. Hubbard" Cc: Poul-Henning Kamp , Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c References: <21153.894633162@time.cdrom.com> Organization: Gutteklubben Terrasse / KRST / PUMS / YASMW X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-Stop-Spam: http://www.cauce.org From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 08 May 1998 17:40:20 +0200 In-Reply-To: "Jordan K. Hubbard"'s message of "Fri, 08 May 1998 06:12:42 -0700" Message-ID: Lines: 13 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Jordan K. Hubbard" writes: > > The solution could be to distribute a tool to make floppy-sized chunks > > out of a big file... > In order to be truly effective, such a tool would have to be written > to work with DOS and Windows, of course. Hey, don't look at me, I don't > even have a C compiler for DOS! :-) I do own a copy of the IMHO best DOS / Windows C compiler in existence (Watcom C/C++), and if it comes to that, I might be persuaded to install Windows 95 on one of my boxes and cook something up. -- Noone else has a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 08:57:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA12024 for cvs-all-outgoing; Fri, 8 May 1998 08:57:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA12003; Fri, 8 May 1998 08:57:10 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) From: "Justin T. Gibbs" Received: (from gibbs@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA11640; Fri, 8 May 1998 08:54:12 -0700 (PDT) Date: Fri, 8 May 1998 08:54:12 -0700 (PDT) Message-Id: <199805081554.IAA11640@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/scsi worm.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk gibbs 1998/05/08 08:54:12 PDT Modified files: (Branch: RELENG_2_2) sys/scsi worm.c Log: MFC - Use new buf queue macros. Revision Changes Path 1.29.2.7 +5 -5 src/sys/scsi/worm.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 09:08:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA13995 for cvs-all-outgoing; Fri, 8 May 1998 09:08:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from fly.HiWAAY.net (sprice@fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA13911 for ; Fri, 8 May 1998 09:08:00 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by fly.HiWAAY.net (8.8.8/8.8.6) with SMTP id LAA29659; Fri, 8 May 1998 11:07:55 -0500 (CDT) Date: Fri, 8 May 1998 11:07:55 -0500 (CDT) From: Steve Price To: Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= cc: cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Wouldn't such a file splitting utility be called either bsplit or csplit? :) Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 09:26:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA16761 for cvs-all-outgoing; Fri, 8 May 1998 09:26:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from picnic.mat.net (picnic.mat.net [206.246.122.117]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA16734; Fri, 8 May 1998 09:26:26 -0700 (PDT) (envelope-from chuckr@glue.umd.edu) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.8.8/8.8.5) with SMTP id LAA13828; Fri, 8 May 1998 11:22:25 -0400 (EDT) Date: Fri, 8 May 1998 11:22:25 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@localhost To: "Jordan K. Hubbard" cc: Poul-Henning Kamp , dag-erli@ifi.uio.no, Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c In-Reply-To: <21153.894633162@time.cdrom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Fri, 8 May 1998, Jordan K. Hubbard wrote: > > The solution could be to distribute a tool to make floppy-sized chunks > > out of a big file... > > In order to be truly effective, such a tool would have to be written > to work with DOS and Windows, of course. Hey, don't look at me, I don't > even have a C compiler for DOS! :-) split and cat already exist for dos .... on wcarchive, in fact, part of the simtelnet distribution. > > - Jordan > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@glue.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run Journey2 and picnic (FreeBSD-current) (301) 220-2114 | and jaunt (NetBSD). ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 10:00:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA22309 for cvs-all-outgoing; Fri, 8 May 1998 10:00:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA22295; Fri, 8 May 1998 10:00:53 -0700 (PDT) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA11811; Fri, 8 May 1998 09:57:54 -0700 (PDT) Date: Fri, 8 May 1998 09:57:54 -0700 (PDT) Message-Id: <199805081657.JAA11811@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook porting.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/05/08 09:57:54 PDT Modified files: handbook porting.sgml Log: fix bogus "#ifdef" to proper "#if" Obtained from: gcc -Wall Revision Changes Path 1.97 +2 -2 doc/handbook/porting.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 11:53:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA13188 for cvs-all-outgoing; Fri, 8 May 1998 11:53:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA13183; Fri, 8 May 1998 11:53:03 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA12101; Fri, 8 May 1998 11:50:04 -0700 (PDT) Date: Fri, 8 May 1998 11:50:04 -0700 (PDT) Message-Id: <199805081850.LAA12101@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp command.c ppp.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/05/08 11:50:03 PDT Modified files: (Branch: MP) usr.sbin/ppp command.c ppp.8 Log: Make the `link' and `clone' commands understand a comma-separated list of links, and make `link' understand `*' for all links. This allows (for example): clone 1,2,3,4,5 link 1,3 open link 2,4,5 rm close link * rm Revision Changes Path 1.131.2.80 +53 -15 src/usr.sbin/ppp/command.c 1.97.2.29 +13 -4 src/usr.sbin/ppp/ppp.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 11:53:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA13232 for cvs-all-outgoing; Fri, 8 May 1998 11:53:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA13223; Fri, 8 May 1998 11:53:27 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA12144; Fri, 8 May 1998 11:50:28 -0700 (PDT) Date: Fri, 8 May 1998 11:50:28 -0700 (PDT) Message-Id: <199805081850.LAA12144@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp command.c main.c ppp.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/05/08 11:50:27 PDT Modified files: (Branch: MP) usr.sbin/ppp command.c main.c ppp.8 Log: o When specifying the diagnostic port (`set server'), replace the first ``%d'' in the unix-domain socket name with the current interface unit number. In the case of tcp ports, allow a ``+'' prefix to add the unit number to the specified port number. o Remove all mention of SIGUSR1 (was already #ifdef'd out). We can't create diagnostic sockets on-the-fly with a signal any more because there's no way of specifying the password without confusing matters with the previous ppp.secret scenario. Revision Changes Path 1.131.2.81 +22 -4 src/usr.sbin/ppp/command.c 1.121.2.58 +1 -18 src/usr.sbin/ppp/main.c 1.97.2.30 +22 -18 src/usr.sbin/ppp/ppp.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 11:58:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA14115 for cvs-all-outgoing; Fri, 8 May 1998 11:58:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA13987; Fri, 8 May 1998 11:57:31 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from gnipahellir.ifi.uio.no (2602@gnipahellir.ifi.uio.no [129.240.64.86]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with ESMTP id UAA10476; Fri, 8 May 1998 20:50:38 +0200 (MET DST) Received: (from dag-erli@localhost) by gnipahellir.ifi.uio.no ; Fri, 8 May 1998 20:50:37 +0200 (MET DST) Mime-Version: 1.0 To: Chuck Robey Cc: "Jordan K. Hubbard" , Poul-Henning Kamp , Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c References: Organization: Gutteklubben Terrasse / KRST / PUMS / YASMW X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-Stop-Spam: http://www.cauce.org From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 08 May 1998 20:50:36 +0200 In-Reply-To: Chuck Robey's message of "Fri, 8 May 1998 11:22:25 -0400 (EDT)" Message-ID: Lines: 16 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Chuck Robey writes: > On Fri, 8 May 1998, Jordan K. Hubbard wrote: > > > The solution could be to distribute a tool to make floppy-sized chunks > > > out of a big file... > > In order to be truly effective, such a tool would have to be written > > to work with DOS and Windows, of course. Hey, don't look at me, I don't > > even have a C compiler for DOS! :-) > split and cat already exist for dos .... on wcarchive, in fact, part of > the simtelnet distribution. Assuming you have enough grey matter to download them and find out how to use them properly. I've met people who don't, and still want to run FreeBSD. -- Noone else has a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 12:16:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA18041 for cvs-all-outgoing; Fri, 8 May 1998 12:16:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from picnic.mat.net (picnic.mat.net [206.246.122.117]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA17842; Fri, 8 May 1998 12:15:50 -0700 (PDT) (envelope-from chuckr@glue.umd.edu) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.8.8/8.8.5) with SMTP id OAA14140; Fri, 8 May 1998 14:11:44 -0400 (EDT) Date: Fri, 8 May 1998 14:11:43 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@localhost To: Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= cc: "Jordan K. Hubbard" , Poul-Henning Kamp , Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from QUOTED-PRINTABLE to 8bit by hub.freebsd.org id MAB17849 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On 8 May 1998, Dag-Erling Coidan Smørgrav wrote: > Chuck Robey writes: > > On Fri, 8 May 1998, Jordan K. Hubbard wrote: > > > > The solution could be to distribute a tool to make floppy-sized chunks > > > > out of a big file... > > > In order to be truly effective, such a tool would have to be written > > > to work with DOS and Windows, of course. Hey, don't look at me, I don't > > > even have a C compiler for DOS! :-) > > split and cat already exist for dos .... on wcarchive, in fact, part of > > the simtelnet distribution. > > Assuming you have enough grey matter to download them and find out how > to use them properly. I've met people who don't, and still want to run > FreeBSD. Don't have to assume it, a small instruction manual could be written. > > -- > Noone else has a .sig like this one. > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@glue.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run Journey2 and picnic (FreeBSD-current) (301) 220-2114 | and jaunt (NetBSD). ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 12:18:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA18826 for cvs-all-outgoing; Fri, 8 May 1998 12:18:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA18804; Fri, 8 May 1998 12:18:45 -0700 (PDT) (envelope-from guido@FreeBSD.org) From: Guido van Rooij Received: (from guido@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA12302; Fri, 8 May 1998 12:15:46 -0700 (PDT) Date: Fri, 8 May 1998 12:15:46 -0700 (PDT) Message-Id: <199805081915.MAA12302@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/inetd inetd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk guido 1998/05/08 12:15:45 PDT Modified files: usr.sbin/inetd inetd.c Log: Unblock SIGPIPE before execv(); convert from sigvec to sigaction Obtained from: OpenBSD Revision Changes Path 1.32 +18 -16 src/usr.sbin/inetd/inetd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 12:26:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA20074 for cvs-all-outgoing; Fri, 8 May 1998 12:26:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA19960; Fri, 8 May 1998 12:25:37 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from gnipahellir.ifi.uio.no (2602@gnipahellir.ifi.uio.no [129.240.64.86]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with ESMTP id VAA12888; Fri, 8 May 1998 21:18:58 +0200 (MET DST) Received: (from dag-erli@localhost) by gnipahellir.ifi.uio.no ; Fri, 8 May 1998 21:18:57 +0200 (MET DST) Mime-Version: 1.0 To: Chuck Robey Cc: "Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= =?iso-8859-1?Q?=2C?= \"Jordan K. Hubbard\"" , Poul-Henning Kamp , Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c References: Organization: Gutteklubben Terrasse / KRST / PUMS / YASMW X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-Stop-Spam: http://www.cauce.org From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 08 May 1998 21:18:56 +0200 In-Reply-To: Chuck Robey's message of "Fri, 8 May 1998 14:11:43 -0400 (EDT)" Message-ID: Lines: 17 X-Mailer: Gnus v5.5/Emacs 19.34 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by hub.freebsd.org id MAB19963 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Chuck Robey writes: > On 8 May 1998, Dag-Erling Coidan Smørgrav wrote: > > Chuck Robey writes: > > > split and cat already exist for dos .... on wcarchive, in fact, part of > > > the simtelnet distribution. > > Assuming you have enough grey matter to download them and find out how > > to use them properly. I've met people who don't, and still want to run > > FreeBSD. > Don't have to assume it, a small instruction manual could be written. You're assuming they'd find it and read it. Remember, we're talking about people who are used to just inserting the CD into the drive and have everything done automagically. That is the extent of the damage wrought by Microsoft: people don't expect to think. -- Noone else has a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 13:18:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA28594 for cvs-all-outgoing; Fri, 8 May 1998 13:18:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA28542; Fri, 8 May 1998 13:18:42 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA12827; Fri, 8 May 1998 13:15:42 -0700 (PDT) Date: Fri, 8 May 1998 13:15:42 -0700 (PDT) Message-Id: <199805082015.NAA12827@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc make.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/05/08 13:15:42 PDT Modified files: etc make.conf Log: Add a crucial missing _ in NO_SENDMAIL PR: 6545 Reviewed by: phk Submitted by: Jos Backus Revision Changes Path 1.63 +2 -2 src/etc/make.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 13:38:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA03450 for cvs-all-outgoing; Fri, 8 May 1998 13:38:49 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from d183-205.uoregon.edu (d183-205.uoregon.edu [128.223.183.205]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA03347; Fri, 8 May 1998 13:38:26 -0700 (PDT) (envelope-from gurney_j@efn.org) Received: (from jmg@localhost) by d183-205.uoregon.edu (8.8.7/8.8.7) id NAA11473; Fri, 8 May 1998 13:38:18 -0700 (PDT) Message-ID: <19980508133818.07317@hydrogen.nike.efn.org> Date: Fri, 8 May 1998 13:38:18 -0700 From: John-Mark Gurney To: "Jordan K. Hubbard" Cc: dag-erli@ifi.uio.no, Bruce Evans , cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-lib@FreeBSD.ORG, julian@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c References: <199805081327.XAA18001@godzilla.zeta.org.au> <21690.894635646@time.cdrom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.69 In-Reply-To: <21690.894635646@time.cdrom.com>; from Jordan K. Hubbard on Fri, May 08, 1998 at 06:54:06AM -0700 Reply-To: John-Mark Gurney Organization: Cu Networking X-Operating-System: FreeBSD 2.2.1-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Jordan K. Hubbard scribbled this message on May 8: > > Most floppies have size 1200K :-). 235K was carefully chosen for yep, gcd(1200,1440) is 240... > Maybe the ones _you_ have around the house conform to this particular > statistic, but in this corner of the world I think it's fair to say > that the 1.2MB floppy is just about extinct. > > Still, it's a point - do we really want to lose 1.2MB floppies > entirely (and, admittedly, somewhat gratuitously) by going to a 1400K > split size? also, what about 1.72meg floppy support? it was nice installing 1.1.5.1 off of 1.72meg floppy's where you could fit 7 segments on a single floppy... -- John-Mark Gurney Modem Rev/FAX: +1 541 346 9237 Cu Networking P.O. Box 5693, 97405 Live in Peace, destroy Micro$oft, support free software, run FreeBSD Don't trust anyone you don't have the source for To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 13:43:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA04494 for cvs-all-outgoing; Fri, 8 May 1998 13:43:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA04410; Fri, 8 May 1998 13:43:20 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA13318; Fri, 8 May 1998 13:40:17 -0700 (PDT) Date: Fri, 8 May 1998 13:40:17 -0700 (PDT) Message-Id: <199805082040.NAA13318@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc services Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/05/08 13:40:17 PDT Modified files: etc services Log: Add jetdirect 9100/tcp PR: 5195 Reviewed by: phk Submitted by: Cy Schubert Revision Changes Path 1.47 +2 -1 src/etc/services To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 14:32:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA17273 for cvs-all-outgoing; Fri, 8 May 1998 14:32:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA17239; Fri, 8 May 1998 14:32:41 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA14083; Fri, 8 May 1998 14:29:36 -0700 (PDT) Date: Fri, 8 May 1998 14:29:36 -0700 (PDT) Message-Id: <199805082129.OAA14083@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-user@FreeBSD.ORG Subject: cvs commit: src Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/08 14:29:36 PDT Modified files: . Makefile Log: 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. Revision Changes Path 1.175 +7 -7 src/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 15:02:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA23892 for cvs-all-outgoing; Fri, 8 May 1998 15:02:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA23798; Fri, 8 May 1998 15:02:17 -0700 (PDT) (envelope-from max@FreeBSD.org) From: Masafumi NAKANE Received: (from max@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA14217; Fri, 8 May 1998 14:59:15 -0700 (PDT) Date: Fri, 8 May 1998 14:59:15 -0700 (PDT) Message-Id: <199805082159.OAA14217@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/japanese/xshodo Makefile ports/japanese/xshodo/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk max 1998/05/08 14:59:14 PDT Modified files: japanese/xshodo Makefile Log: Don't use DISTFILES when it's only one file. Properly define MAN1 and MANCOMPRESSED. Add japanese to the category. (But I'm not too sure if this port should really be in this category in first place.) Revision Changes Path 1.6 +5 -4 ports/japanese/xshodo/Makefile Modified files: japanese/xshodo/files md5 Log: The distfile changed without name change. Revision Changes Path 1.3 +1 -1 ports/japanese/xshodo/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 15:43:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA00891 for cvs-all-outgoing; Fri, 8 May 1998 15:43:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from news1.gtn.com (news1.gtn.com [194.77.0.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA00734; Fri, 8 May 1998 15:42:09 -0700 (PDT) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by news1.gtn.com (8.8.6/8.8.6) with UUCP id AAA17575; Sat, 9 May 1998 00:15:34 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.8.8/8.8.8) id XAA01162; Fri, 8 May 1998 23:54:41 +0200 (CEST) (envelope-from andreas) Message-ID: <19980508235441.A1154@klemm.gtn.com> Date: Fri, 8 May 1998 23:54:41 +0200 From: Andreas Klemm To: Poul-Henning Kamp , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: Re: cvs commit: src/etc services References: <199805082040.NAA13318@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199805082040.NAA13318@freefall.freebsd.org>; from Poul-Henning Kamp on Fri, May 08, 1998 at 01:40:17PM -0700 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Fri, May 08, 1998 at 01:40:17PM -0700, Poul-Henning Kamp wrote: > phk 1998/05/08 13:40:17 PDT > > Modified files: > etc services > Log: > Add jetdirect 9100/tcp Should be ok for 2.2 as well ?! -- Andreas Klemm http://www.FreeBSD.ORG/~andreas What gives you 90% more speed, for example in kernel compilation ? http://www.FreeBSD.ORG/~fsmp/SMP/akgraph-a/graph1.html "NT = Not Today" (Maggie Biggs) ``powered by FreeBSD SMP'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 15:43:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA00972 for cvs-all-outgoing; Fri, 8 May 1998 15:43:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from localhost.my.domain (ppp6466.on.bellglobal.com [206.172.208.58]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA00823; Fri, 8 May 1998 15:42:38 -0700 (PDT) (envelope-from ac199@hwcn.org) Received: from localhost (tim@localhost) by localhost.my.domain (8.8.8/8.8.8) with ESMTP id SAA01131; Fri, 8 May 1998 18:29:27 -0400 (EDT) (envelope-from ac199@hwcn.org) X-Authentication-Warning: localhost.my.domain: tim owned process doing -bs Date: Fri, 8 May 1998 18:29:27 -0400 (EDT) From: Tim Vanderhoek X-Sender: tim@localhost Reply-To: ac199@hwcn.org To: Dag-Erling Coidan Smørgrav cc: "Jordan K. Hubbard" , Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Content-Transfer-Encoding: 8BIT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On 8 May 1998, Dag-Erling Coidan Smørgrav wrote: > Anybody willing to install FreeBSD from floppies ought to be given a > medal for patience. A minimal install is really not that hard. -- This .sig is not innovative, witty, or profund. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 17:42:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA23071 for cvs-all-outgoing; Fri, 8 May 1998 17:42:48 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA23059 for ; Fri, 8 May 1998 17:42:39 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id RAA16388; Fri, 8 May 1998 17:41:22 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Steve Price cc: Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= , cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c In-reply-to: Your message of "Fri, 08 May 1998 11:07:55 CDT." Date: Fri, 08 May 1998 17:41:22 -0700 Message-ID: <16385.894674482@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Wouldn't such a file splitting utility be called > either bsplit or csplit? :) Under DOS?! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 17:59:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA25381 for cvs-all-outgoing; Fri, 8 May 1998 17:59:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA25248; Fri, 8 May 1998 17:58:32 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id RAA16504; Fri, 8 May 1998 17:55:38 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Chuck Robey cc: Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= , Poul-Henning Kamp , Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c In-reply-to: Your message of "Fri, 08 May 1998 14:11:43 EDT." Date: Fri, 08 May 1998 17:55:38 -0700 Message-ID: <16501.894675338@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Don't have to assume it, a small instruction manual could be written. Which, if current experience is any judge, they then won't bother to read. :-) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 18:04:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA26192 for cvs-all-outgoing; Fri, 8 May 1998 18:04:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA25924; Fri, 8 May 1998 18:02:09 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id SAA16601; Fri, 8 May 1998 18:01:01 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: John-Mark Gurney cc: dag-erli@ifi.uio.no, Bruce Evans , cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-lib@FreeBSD.ORG, julian@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c In-reply-to: Your message of "Fri, 08 May 1998 13:38:18 PDT." <19980508133818.07317@hydrogen.nike.efn.org> Date: Fri, 08 May 1998 18:01:00 -0700 Message-ID: <16598.894675660@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > also, what about 1.72meg floppy support? it was nice installing 1.1.5.1 > off of 1.72meg floppy's where you could fit 7 segments on a single > floppy... I think this topic is getting out of control. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 22:26:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA26299 for cvs-all-outgoing; Fri, 8 May 1998 22:26:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA26284; Fri, 8 May 1998 22:26:07 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA15372; Fri, 8 May 1998 22:23:05 -0700 (PDT) Date: Fri, 8 May 1998 22:23:05 -0700 (PDT) Message-Id: <199805090523.WAA15372@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG Subject: cvs commit: src/sbin/restore main.c restore.8 restore.h tape.c utilities.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/05/08 22:23:05 PDT Modified files: sbin/restore main.c restore.8 restore.h tape.c utilities.c Log: Well, nobody objected, so here's my -u (unlink) flag to restore. Revision Changes Path 1.8 +11 -7 src/sbin/restore/main.c 1.12 +13 -6 src/sbin/restore/restore.8 1.2 +5 -2 src/sbin/restore/restore.h 1.11 +6 -0 src/sbin/restore/tape.c 1.4 +5 -1 src/sbin/restore/utilities.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 23:21:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA02028 for cvs-all-outgoing; Fri, 8 May 1998 23:21:20 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA01969; Fri, 8 May 1998 23:20:03 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id QAA21201; Sat, 9 May 1998 16:18:35 +1000 Date: Sat, 9 May 1998 16:18:35 +1000 From: Bruce Evans Message-Id: <199805090618.QAA21201@godzilla.zeta.org.au> To: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-user@FreeBSD.ORG, jb@FreeBSD.ORG Subject: Re: cvs commit: src Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Modified files: > . Makefile > Log: > 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. No, target headers must be installed before building target libraries, but neither should be used for building libraries or tools that run on the host. Building lib-tools using target headers and host libraries was especially wrong. > This means that lib-tools and build-tools should be merged. The FreeBSD Wrong quick fix. The correct quick fix is to merge include-tools with lib-tools and fix whatever breaks. A not so quick fix would merge all the tools and delete building of bootstrap-libraries and fix whatever breaks. This assumes that the host system contains adequate includes and libraries to build the tools. > build only works in hosted form where it is assumed that the installed > version contains adequate tools to build the latest release. No, it worked for some old versions of FreeBSD (2.1.late or 2.2.early) which didn't contain adequate versions of make or ld. make was missing the -m flag and ld was missing the -O flag. This was handled by using special kludges for make and by building ld in lib-tools before building bootstrap-libraries. The latter is now broken. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri May 8 23:46:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA04161 for cvs-all-outgoing; Fri, 8 May 1998 23:46:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA04152; Fri, 8 May 1998 23:45:57 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA15534; Fri, 8 May 1998 23:42:54 -0700 (PDT) Date: Fri, 8 May 1998 23:42:54 -0700 (PDT) Message-Id: <199805090642.XAA15534@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-bin@FreeBSD.ORG Subject: cvs commit: src/bin Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/08 23:42:53 PDT Modified files: bin Makefile Log: 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. Revision Changes Path 1.11 +4 -4 src/bin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 00:36:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA07995 for cvs-all-outgoing; Sat, 9 May 1998 00:36:16 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA07982; Sat, 9 May 1998 00:36:13 -0700 (PDT) (envelope-from fenner@FreeBSD.org) From: Bill Fenner Received: (from fenner@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA15799; Sat, 9 May 1998 00:33:10 -0700 (PDT) Date: Sat, 9 May 1998 00:33:10 -0700 (PDT) Message-Id: <199805090733.AAA15799@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/fetch fetch.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk fenner 1998/05/09 00:33:10 PDT Modified files: usr.bin/fetch fetch.1 Log: Describe absolute paths in FTP URL's. This patch has been sitting around uncommitted for 2 months =( Revision Changes Path 1.21 +16 -3 src/usr.bin/fetch/fetch.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 00:38:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA08178 for cvs-all-outgoing; Sat, 9 May 1998 00:38:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA08169; Sat, 9 May 1998 00:38:17 -0700 (PDT) (envelope-from fenner@FreeBSD.org) From: Bill Fenner Received: (from fenner@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA15861; Sat, 9 May 1998 00:35:14 -0700 (PDT) Date: Sat, 9 May 1998 00:35:14 -0700 (PDT) Message-Id: <199805090735.AAA15861@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/fetch fetch.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk fenner 1998/05/09 00:35:14 PDT Modified files: (Branch: RELENG_2_2) usr.bin/fetch fetch.1 Log: Merge FTP URL documentation from current. (The code change was merged a long time ago.) Revision Changes Path 1.9.2.7 +16 -3 src/usr.bin/fetch/fetch.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 01:19:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA11755 for cvs-all-outgoing; Sat, 9 May 1998 01:19:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA11745; Sat, 9 May 1998 01:19:57 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA16081; Sat, 9 May 1998 01:16:53 -0700 (PDT) Date: Sat, 9 May 1998 01:16:53 -0700 (PDT) Message-Id: <199805090816.BAA16081@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/morse Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 01:16:53 PDT Modified files: games/morse Makefile Log: Alphas don't necessarily have speakers. Revision Changes Path 1.4 +3 -0 src/games/morse/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 01:20:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA11919 for cvs-all-outgoing; Sat, 9 May 1998 01:20:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA11913; Sat, 9 May 1998 01:20:50 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA16116; Sat, 9 May 1998 01:17:47 -0700 (PDT) Date: Sat, 9 May 1998 01:17:47 -0700 (PDT) Message-Id: <199805090817.BAA16116@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/morse morse.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 01:17:47 PDT Modified files: games/morse morse.c Log: Add #include string.h to get prototypes. Revision Changes Path 1.7 +1 -0 src/games/morse/morse.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 01:44:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA14298 for cvs-all-outgoing; Sat, 9 May 1998 01:44:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA14276; Sat, 9 May 1998 01:44:29 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA16236; Sat, 9 May 1998 01:41:25 -0700 (PDT) Date: Sat, 9 May 1998 01:41:25 -0700 (PDT) Message-Id: <199805090841.BAA16236@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/fetch main.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/05/09 01:41:25 PDT Modified files: usr.bin/fetch main.c Log: Map a leading / in -c argument to %2f instead of dropping it silently. PR: bin/6558 Revision Changes Path 1.45 +4 -9 src/usr.bin/fetch/main.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 01:45:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA14414 for cvs-all-outgoing; Sat, 9 May 1998 01:45:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA14383; Sat, 9 May 1998 01:45:08 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA16274; Sat, 9 May 1998 01:42:04 -0700 (PDT) Date: Sat, 9 May 1998 01:42:04 -0700 (PDT) Message-Id: <199805090842.BAA16274@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/adventure wizard.c io.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 01:42:04 PDT Modified files: games/adventure wizard.c io.c Log: Add #include string.h to get prototypes. Revision Changes Path 1.4 +1 -0 src/games/adventure/wizard.c 1.3 +1 -0 src/games/adventure/io.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 01:49:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA14755 for cvs-all-outgoing; Sat, 9 May 1998 01:49:01 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA14749; Sat, 9 May 1998 01:48:58 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA16331; Sat, 9 May 1998 01:45:54 -0700 (PDT) Date: Sat, 9 May 1998 01:45:54 -0700 (PDT) Message-Id: <199805090845.BAA16331@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/atc list.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 01:45:54 PDT Modified files: games/atc list.c Log: Add #include stdlib.h to get prototypes. Revision Changes Path 1.3 +1 -0 src/games/atc/list.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 01:50:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA14872 for cvs-all-outgoing; Sat, 9 May 1998 01:50:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA14820; Sat, 9 May 1998 01:49:58 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA16392; Sat, 9 May 1998 01:46:55 -0700 (PDT) Date: Sat, 9 May 1998 01:46:55 -0700 (PDT) Message-Id: <199805090846.BAA16392@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/atc graphics.c log.c main.c update.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 01:46:54 PDT Modified files: games/atc graphics.c log.c main.c update.c Log: Add #include string.h to get prototypes. Revision Changes Path 1.3 +1 -0 src/games/atc/graphics.c 1.4 +1 -0 src/games/atc/log.c 1.5 +1 -0 src/games/atc/main.c 1.4 +1 -0 src/games/atc/update.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 01:53:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA15279 for cvs-all-outgoing; Sat, 9 May 1998 01:53:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA15264; Sat, 9 May 1998 01:53:09 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA16486; Sat, 9 May 1998 01:50:05 -0700 (PDT) Date: Sat, 9 May 1998 01:50:05 -0700 (PDT) Message-Id: <199805090850.BAA16486@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/fetch main.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/05/09 01:50:04 PDT Modified files: (Branch: RELENG_2_2) usr.bin/fetch main.c Log: MFC (translate leading / in -c argument to %2f) PR: bin/6558 Revision Changes Path 1.26.2.9 +4 -9 src/usr.bin/fetch/main.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 01:59:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA16213 for cvs-all-outgoing; Sat, 9 May 1998 01:59:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA16193; Sat, 9 May 1998 01:59:11 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA16629; Sat, 9 May 1998 01:56:08 -0700 (PDT) Date: Sat, 9 May 1998 01:56:08 -0700 (PDT) Message-Id: <199805090856.BAA16629@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/fetch main.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/05/09 01:56:08 PDT Modified files: usr.bin/fetch main.c Log: Arrggghhhh... forgot to strip the / after outputting %2f Revision Changes Path 1.46 +6 -3 src/usr.bin/fetch/main.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 01:59:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA16307 for cvs-all-outgoing; Sat, 9 May 1998 01:59:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA16302; Sat, 9 May 1998 01:59:46 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA16659; Sat, 9 May 1998 01:56:42 -0700 (PDT) Date: Sat, 9 May 1998 01:56:42 -0700 (PDT) Message-Id: <199805090856.BAA16659@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/fetch main.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/05/09 01:56:42 PDT Modified files: (Branch: RELENG_2_2) usr.bin/fetch main.c Log: MFC (small bug in previous fix) Revision Changes Path 1.26.2.10 +6 -3 src/usr.bin/fetch/main.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 02:21:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA18282 for cvs-all-outgoing; Sat, 9 May 1998 02:21:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA18272; Sat, 9 May 1998 02:21:38 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA16825; Sat, 9 May 1998 02:18:34 -0700 (PDT) Date: Sat, 9 May 1998 02:18:34 -0700 (PDT) Message-Id: <199805090918.CAA16825@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/backgammon/common_source back.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 02:18:34 PDT Modified files: games/backgammon/common_source back.h Log: Add 'extern' to those arrays that are declared and initialised in other files. Revision Changes Path 1.3 +3 -3 src/games/backgammon/common_source/back.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 02:22:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA18506 for cvs-all-outgoing; Sat, 9 May 1998 02:22:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA18501; Sat, 9 May 1998 02:22:28 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA16860; Sat, 9 May 1998 02:19:24 -0700 (PDT) Date: Sat, 9 May 1998 02:19:24 -0700 (PDT) Message-Id: <199805090919.CAA16860@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/backgammon/common_source board.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 02:19:24 PDT Modified files: games/backgammon/common_source board.c Log: Add #include string to get prototypes. Revision Changes Path 1.2 +1 -0 src/games/backgammon/common_source/board.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 02:24:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA18795 for cvs-all-outgoing; Sat, 9 May 1998 02:24:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA18789; Sat, 9 May 1998 02:24:32 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA16907; Sat, 9 May 1998 02:21:29 -0700 (PDT) Date: Sat, 9 May 1998 02:21:29 -0700 (PDT) Message-Id: <199805090921.CAA16907@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/backgammon/common_source fancy.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 02:21:29 PDT Modified files: games/backgammon/common_source fancy.c Log: 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. Revision Changes Path 1.3 +4 -1 src/games/backgammon/common_source/fancy.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 02:25:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA18909 for cvs-all-outgoing; Sat, 9 May 1998 02:25:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA18904; Sat, 9 May 1998 02:25:37 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA16945; Sat, 9 May 1998 02:22:34 -0700 (PDT) Date: Sat, 9 May 1998 02:22:34 -0700 (PDT) Message-Id: <199805090922.CAA16945@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/backgammon/common_source subs.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 02:22:34 PDT Modified files: games/backgammon/common_source subs.c Log: Change prototype for addbuf to make it compatible with tputs now that there is a prototype to check it against. Revision Changes Path 1.8 +3 -2 src/games/backgammon/common_source/subs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 02:27:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA19139 for cvs-all-outgoing; Sat, 9 May 1998 02:27:20 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA19128; Sat, 9 May 1998 02:27:17 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA17004; Sat, 9 May 1998 02:24:13 -0700 (PDT) Date: Sat, 9 May 1998 02:24:13 -0700 (PDT) Message-Id: <199805090924.CAA17004@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/backgammon/backgammon move.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 02:24:13 PDT Modified files: games/backgammon/backgammon move.c Log: Add #include stdlib.h to get prototypes. Revision Changes Path 1.2 +1 -0 src/games/backgammon/backgammon/move.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 02:28:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA19358 for cvs-all-outgoing; Sat, 9 May 1998 02:28:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA19347; Sat, 9 May 1998 02:28:32 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA17041; Sat, 9 May 1998 02:25:27 -0700 (PDT) Date: Sat, 9 May 1998 02:25:27 -0700 (PDT) Message-Id: <199805090925.CAA17041@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/backgammon/backgammon main.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 02:25:27 PDT Modified files: games/backgammon/backgammon main.c Log: Add 'extern' to arrays that are declared and initialised in other files. Who writes code like this?! Revision Changes Path 1.9 +2 -2 src/games/backgammon/backgammon/main.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 02:30:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA19613 for cvs-all-outgoing; Sat, 9 May 1998 02:30:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA19598; Sat, 9 May 1998 02:30:39 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA17094; Sat, 9 May 1998 02:27:33 -0700 (PDT) Date: Sat, 9 May 1998 02:27:33 -0700 (PDT) Message-Id: <199805090927.CAA17094@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/backgammon/teachgammon teach.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 02:27:33 PDT Modified files: games/backgammon/teachgammon teach.c Log: Add 'extern' to arrays that are declared and initialised in other files. Revision Changes Path 1.8 +12 -12 src/games/backgammon/teachgammon/teach.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 02:39:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA20715 for cvs-all-outgoing; Sat, 9 May 1998 02:39:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA20710; Sat, 9 May 1998 02:39:43 -0700 (PDT) (envelope-from dt@FreeBSD.org) From: Dmitrij Tejblum Received: (from dt@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA17155; Sat, 9 May 1998 02:36:39 -0700 (PDT) Date: Sat, 9 May 1998 02:36:39 -0700 (PDT) Message-Id: <199805090936.CAA17155@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/msdosfs msdosfs_lookup.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dt 1998/05/09 02:36:39 PDT Modified files: sys/msdosfs msdosfs_lookup.c Log: 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 Revision Changes Path 1.23 +2 -2 src/sys/msdosfs/msdosfs_lookup.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 02:41:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA20870 for cvs-all-outgoing; Sat, 9 May 1998 02:41:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA20860; Sat, 9 May 1998 02:41:15 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA17190; Sat, 9 May 1998 02:38:12 -0700 (PDT) Date: Sat, 9 May 1998 02:38:12 -0700 (PDT) Message-Id: <199805090938.CAA17190@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/battlestar externs.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 02:38:12 PDT Modified files: games/battlestar externs.h Log: Add 'extern' to arrays that are declared and initialised elsewhere. Revision Changes Path 1.8 +5 -5 src/games/battlestar/externs.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 02:42:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA21010 for cvs-all-outgoing; Sat, 9 May 1998 02:42:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA21005; Sat, 9 May 1998 02:42:51 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA17255; Sat, 9 May 1998 02:39:47 -0700 (PDT) Date: Sat, 9 May 1998 02:39:47 -0700 (PDT) Message-Id: <199805090939.CAA17255@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/battlestar fly.c init.c com4.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 02:39:47 PDT Modified files: games/battlestar fly.c init.c com4.c Log: Add #include string.h to get prototypes. Revision Changes Path 1.3 +1 -0 src/games/battlestar/fly.c 1.5 +1 -0 src/games/battlestar/init.c 1.4 +1 -0 src/games/battlestar/com4.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 02:44:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA21177 for cvs-all-outgoing; Sat, 9 May 1998 02:44:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA21162; Sat, 9 May 1998 02:44:35 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA17297; Sat, 9 May 1998 02:41:31 -0700 (PDT) Date: Sat, 9 May 1998 02:41:31 -0700 (PDT) Message-Id: <199805090941.CAA17297@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/battlestar com6.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 02:41:31 PDT Modified files: games/battlestar com6.c Log: tv_sec in timeval is a long, and a time_t is not necessarily a long. Revision Changes Path 1.6 +4 -2 src/games/battlestar/com6.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 02:50:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA21636 for cvs-all-outgoing; Sat, 9 May 1998 02:50:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA21631; Sat, 9 May 1998 02:50:09 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA17343; Sat, 9 May 1998 02:47:05 -0700 (PDT) Date: Sat, 9 May 1998 02:47:05 -0700 (PDT) Message-Id: <199805090947.CAA17343@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/bcd bcd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 02:47:05 PDT Modified files: games/bcd bcd.c Log: Add #include string.h to get prototypes. Revision Changes Path 1.4 +1 -0 src/games/bcd/bcd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 02:51:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA21774 for cvs-all-outgoing; Sat, 9 May 1998 02:51:29 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA21768; Sat, 9 May 1998 02:51:28 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA17377; Sat, 9 May 1998 02:48:24 -0700 (PDT) Date: Sat, 9 May 1998 02:48:24 -0700 (PDT) Message-Id: <199805090948.CAA17377@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/canfield/canfield canfield.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 02:48:24 PDT Modified files: games/canfield/canfield canfield.c Log: Add #include string.h to get prototypes. Revision Changes Path 1.6 +1 -0 src/games/canfield/canfield/canfield.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 02:57:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA22236 for cvs-all-outgoing; Sat, 9 May 1998 02:57:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA22225; Sat, 9 May 1998 02:57:21 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA17419; Sat, 9 May 1998 02:54:17 -0700 (PDT) Date: Sat, 9 May 1998 02:54:17 -0700 (PDT) Message-Id: <199805090954.CAA17419@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/hack hack.o_init.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 02:54:17 PDT Modified files: games/hack hack.o_init.c Log: Add #include string.h to get prototypes. Revision Changes Path 1.3 +1 -0 src/games/hack/hack.o_init.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 03:06:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA23469 for cvs-all-outgoing; Sat, 9 May 1998 03:06:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA23462; Sat, 9 May 1998 03:06:06 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA17492; Sat, 9 May 1998 03:03:02 -0700 (PDT) Date: Sat, 9 May 1998 03:03:02 -0700 (PDT) Message-Id: <199805091003.DAA17492@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/hack def.objects.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 03:03:01 PDT Modified files: games/hack def.objects.h Log: Remove #define NULL because stdio.h does that. Revision Changes Path 1.2 +0 -1 src/games/hack/def.objects.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 03:12:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA24019 for cvs-all-outgoing; Sat, 9 May 1998 03:12:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA24014; Sat, 9 May 1998 03:12:05 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA17701; Sat, 9 May 1998 03:09:01 -0700 (PDT) Date: Sat, 9 May 1998 03:09:01 -0700 (PDT) Message-Id: <199805091009.DAA17701@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/larn data.c diag.c header.h scores.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 03:09:01 PDT Modified files: games/larn data.c diag.c header.h scores.c Log: Change variable types from long to time_t if they are passed to time() by reference. Revision Changes Path 1.4 +1 -1 src/games/larn/data.c 1.3 +1 -2 src/games/larn/diag.c 1.4 +2 -1 src/games/larn/header.h 1.4 +3 -2 src/games/larn/scores.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 03:14:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA24237 for cvs-all-outgoing; Sat, 9 May 1998 03:14:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA24230; Sat, 9 May 1998 03:13:57 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA17750; Sat, 9 May 1998 03:10:53 -0700 (PDT) Date: Sat, 9 May 1998 03:10:53 -0700 (PDT) Message-Id: <199805091010.DAA17750@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/robots init_field.c query.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 03:10:53 PDT Modified files: games/robots init_field.c query.c Log: Add #include string.h to get prototypes. Revision Changes Path 1.2 +1 -0 src/games/robots/init_field.c 1.2 +1 -0 src/games/robots/query.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 03:18:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA24884 for cvs-all-outgoing; Sat, 9 May 1998 03:18:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA24877; Sat, 9 May 1998 03:18:20 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA17831; Sat, 9 May 1998 03:15:16 -0700 (PDT) Date: Sat, 9 May 1998 03:15:16 -0700 (PDT) Message-Id: <199805091015.DAA17831@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/rogue machdep.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 03:15:16 PDT Modified files: games/rogue machdep.c Log: Change long variables to time_t if they are passed to time() or localtime() be reference. Revision Changes Path 1.4 +3 -3 src/games/rogue/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 03:22:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA25374 for cvs-all-outgoing; Sat, 9 May 1998 03:22:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA25339; Sat, 9 May 1998 03:21:58 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA17886; Sat, 9 May 1998 03:18:54 -0700 (PDT) Date: Sat, 9 May 1998 03:18:54 -0700 (PDT) Message-Id: <199805091018.DAA17886@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/wump wump.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 03:18:54 PDT Modified files: games/wump wump.c Log: Add #include string.h to get prototypes. Revision Changes Path 1.7 +1 -0 src/games/wump/wump.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 03:23:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA25587 for cvs-all-outgoing; Sat, 9 May 1998 03:23:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA25579; Sat, 9 May 1998 03:23:19 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA17942; Sat, 9 May 1998 03:20:16 -0700 (PDT) Date: Sat, 9 May 1998 03:20:16 -0700 (PDT) Message-Id: <199805091020.DAA17942@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/snake/snake move.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 03:20:16 PDT Modified files: games/snake/snake move.c Log: Add #include string.h to get prototypes. Revision Changes Path 1.3 +1 -0 src/games/snake/snake/move.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 03:23:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA25652 for cvs-all-outgoing; Sat, 9 May 1998 03:23:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA25637; Sat, 9 May 1998 03:23:45 -0700 (PDT) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA17961; Sat, 9 May 1998 03:20:40 -0700 (PDT) Date: Sat, 9 May 1998 03:20:40 -0700 (PDT) Message-Id: <199805091020.DAA17961@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/w3mir - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1998/05/09 03:20:40 PDT ports/www/w3mir - Imported sources Update of /home/ncvs/ports/www/w3mir In directory freefall.freebsd.org:/c/users/ache/x Log Message: HTTP mirroring tool Status: Vendor Tag: ache Release Tags: v_1_0 N ports/www/w3mir/Makefile N ports/www/w3mir/files/md5 N ports/www/w3mir/pkg/COMMENT N ports/www/w3mir/pkg/DESCR N ports/www/w3mir/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 03:24:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA25798 for cvs-all-outgoing; Sat, 9 May 1998 03:24:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA25786; Sat, 9 May 1998 03:24:29 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA17989; Sat, 9 May 1998 03:21:25 -0700 (PDT) Date: Sat, 9 May 1998 03:21:25 -0700 (PDT) Message-Id: <199805091021.DAA17989@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/snake/snake snake.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 03:21:25 PDT Modified files: games/snake/snake snake.c Log: Change long variable to time_t because it passed to time() and ctime(). Revision Changes Path 1.7 +1 -1 src/games/snake/snake/snake.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 03:26:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA25963 for cvs-all-outgoing; Sat, 9 May 1998 03:26:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA25950; Sat, 9 May 1998 03:26:15 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA18036; Sat, 9 May 1998 03:23:11 -0700 (PDT) Date: Sat, 9 May 1998 03:23:11 -0700 (PDT) Message-Id: <199805091023.DAA18036@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/snake/snscore snscore.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 03:23:11 PDT Modified files: games/snake/snscore snscore.c Log: Add #include string.h to get prototypes. Revision Changes Path 1.4 +1 -0 src/games/snake/snscore/snscore.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 03:31:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA26464 for cvs-all-outgoing; Sat, 9 May 1998 03:31:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA26452; Sat, 9 May 1998 03:31:09 -0700 (PDT) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA18071; Sat, 9 May 1998 03:28:05 -0700 (PDT) Date: Sat, 9 May 1998 03:28:05 -0700 (PDT) Message-Id: <199805091028.DAA18071@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1998/05/09 03:28:05 PDT Modified files: . modules Log: Add w3mir Revision Changes Path 1.1993 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 03:32:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA26605 for cvs-all-outgoing; Sat, 9 May 1998 03:32:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA26596; Sat, 9 May 1998 03:32:25 -0700 (PDT) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA18106; Sat, 9 May 1998 03:29:21 -0700 (PDT) Date: Sat, 9 May 1998 03:29:21 -0700 (PDT) Message-Id: <199805091029.DAA18106@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/w3mir Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1998/05/09 03:29:21 PDT Modified files: www/w3mir Makefile Log: Fix homepage Revision Changes Path 1.2 +2 -2 ports/www/w3mir/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 03:33:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA26679 for cvs-all-outgoing; Sat, 9 May 1998 03:33:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA26674; Sat, 9 May 1998 03:33:33 -0700 (PDT) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA18167; Sat, 9 May 1998 03:30:28 -0700 (PDT) Date: Sat, 9 May 1998 03:30:28 -0700 (PDT) Message-Id: <199805091030.DAA18167@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1998/05/09 03:30:28 PDT Modified files: www Makefile Log: Add w3mir Revision Changes Path 1.75 +2 -1 ports/www/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 03:43:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA27358 for cvs-all-outgoing; Sat, 9 May 1998 03:43:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA27329; Sat, 9 May 1998 03:42:56 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA18283; Sat, 9 May 1998 03:39:50 -0700 (PDT) Date: Sat, 9 May 1998 03:39:50 -0700 (PDT) Message-Id: <199805091039.DAA18283@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/trek computer.c dumpgame.c getpar.c phaser.c setup.c shield.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 03:39:49 PDT Modified files: games/trek computer.c dumpgame.c getpar.c phaser.c setup.c shield.c Log: 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. Revision Changes Path 1.2 +1 -1 src/games/trek/computer.c 1.2 +1 -1 src/games/trek/dumpgame.c 1.2 +1 -1 src/games/trek/getpar.c 1.2 +1 -1 src/games/trek/phaser.c 1.3 +2 -2 src/games/trek/setup.c 1.2 +1 -1 src/games/trek/shield.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 03:53:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA28382 for cvs-all-outgoing; Sat, 9 May 1998 03:53:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA28360; Sat, 9 May 1998 03:53:38 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA18376; Sat, 9 May 1998 03:50:31 -0700 (PDT) Date: Sat, 9 May 1998 03:50:31 -0700 (PDT) Message-Id: <199805091050.DAA18376@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/sail dr_2.c pl_5.c pl_7.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 03:50:31 PDT Modified files: games/sail dr_2.c pl_5.c pl_7.c Log: Add #include string.h to get prototypes. Revision Changes Path 1.2 +1 -0 src/games/sail/dr_2.c 1.3 +1 -0 src/games/sail/pl_5.c 1.2 +1 -0 src/games/sail/pl_7.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 03:54:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA28602 for cvs-all-outgoing; Sat, 9 May 1998 03:54:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA28580; Sat, 9 May 1998 03:54:33 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA18428; Sat, 9 May 1998 03:51:29 -0700 (PDT) Date: Sat, 9 May 1998 03:51:29 -0700 (PDT) Message-Id: <199805091051.DAA18428@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/sail dr_1.c pl_4.c pl_main.c sync.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 03:51:29 PDT Modified files: games/sail dr_1.c pl_4.c pl_main.c sync.c Log: Cast pointers to long instead of int. Revision Changes Path 1.2 +3 -3 src/games/sail/dr_1.c 1.2 +1 -1 src/games/sail/pl_4.c 1.5 +2 -2 src/games/sail/pl_main.c 1.2 +3 -3 src/games/sail/sync.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 04:03:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA01724 for cvs-all-outgoing; Sat, 9 May 1998 04:03:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA01714; Sat, 9 May 1998 04:03:04 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA18506; Sat, 9 May 1998 03:59:59 -0700 (PDT) Date: Sat, 9 May 1998 03:59:59 -0700 (PDT) Message-Id: <199805091059.DAA18506@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/phantasia interplayer.c io.c misc.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 03:59:59 PDT Modified files: games/phantasia interplayer.c io.c misc.c Log: Add #include string.h to get prototypes. Revision Changes Path 1.4 +1 -0 src/games/phantasia/interplayer.c 1.4 +1 -0 src/games/phantasia/io.c 1.4 +1 -0 src/games/phantasia/misc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 04:04:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA01847 for cvs-all-outgoing; Sat, 9 May 1998 04:04:03 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA01829; Sat, 9 May 1998 04:03:57 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA18552; Sat, 9 May 1998 04:00:53 -0700 (PDT) Date: Sat, 9 May 1998 04:00:53 -0700 (PDT) Message-Id: <199805091100.EAA18552@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/phantasia phantglobs.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 04:00:52 PDT Modified files: games/phantasia phantglobs.h Log: Remove bogus time() prototype and let the one in time.h rule. Revision Changes Path 1.2 +0 -1 src/games/phantasia/phantglobs.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 04:06:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA02124 for cvs-all-outgoing; Sat, 9 May 1998 04:06:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA02118; Sat, 9 May 1998 04:06:10 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA18594; Sat, 9 May 1998 04:03:06 -0700 (PDT) Date: Sat, 9 May 1998 04:03:06 -0700 (PDT) Message-Id: <199805091103.EAA18594@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/phantasia gamesupport.c main.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 04:03:05 PDT Modified files: games/phantasia gamesupport.c main.c Log: 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. Revision Changes Path 1.4 +3 -2 src/games/phantasia/gamesupport.c 1.6 +2 -1 src/games/phantasia/main.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 04:08:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA02781 for cvs-all-outgoing; Sat, 9 May 1998 04:08:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA02760; Sat, 9 May 1998 04:08:48 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA18641; Sat, 9 May 1998 04:05:44 -0700 (PDT) Date: Sat, 9 May 1998 04:05:44 -0700 (PDT) Message-Id: <199805091105.EAA18641@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/phantasia fight.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 04:05:43 PDT Modified files: games/phantasia fight.c Log: Add #include string.h to get prototypes. Revision Changes Path 1.4 +1 -0 src/games/phantasia/fight.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 04:09:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA03156 for cvs-all-outgoing; Sat, 9 May 1998 04:09:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA03117; Sat, 9 May 1998 04:09:51 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA18677; Sat, 9 May 1998 04:06:47 -0700 (PDT) Date: Sat, 9 May 1998 04:06:47 -0700 (PDT) Message-Id: <199805091106.EAA18677@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/hack makedefs.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 04:06:47 PDT Modified files: games/hack makedefs.c Log: Add #include string.h to get prototypes. Revision Changes Path 1.2 +1 -0 src/games/hack/makedefs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 04:34:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA06530 for cvs-all-outgoing; Sat, 9 May 1998 04:34:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA06515; Sat, 9 May 1998 04:34:29 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA18749; Sat, 9 May 1998 04:31:21 -0700 (PDT) Date: Sat, 9 May 1998 04:31:21 -0700 (PDT) Message-Id: <199805091131.EAA18749@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/grdc grdc.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 04:31:21 PDT Modified files: games/grdc grdc.c Log: Change long variable to time_t where it is passed to time() by reference. Revision Changes Path 1.6 +1 -1 src/games/grdc/grdc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 04:35:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA06693 for cvs-all-outgoing; Sat, 9 May 1998 04:35:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA06682; Sat, 9 May 1998 04:35:49 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA18786; Sat, 9 May 1998 04:32:45 -0700 (PDT) Date: Sat, 9 May 1998 04:32:45 -0700 (PDT) Message-Id: <199805091132.EAA18786@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/bootparamd/bootparamd Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/09 04:32:44 PDT Modified files: usr.sbin/bootparamd/bootparamd Makefile Log: 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. Revision Changes Path 1.10 +7 -6 src/usr.sbin/bootparamd/bootparamd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 04:36:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA06806 for cvs-all-outgoing; Sat, 9 May 1998 04:36:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA06786; Sat, 9 May 1998 04:36:28 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA18814; Sat, 9 May 1998 04:33:23 -0700 (PDT) Date: Sat, 9 May 1998 04:33:23 -0700 (PDT) Message-Id: <199805091133.EAA18814@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-games@FreeBSD.ORG Subject: cvs commit: src/games/primes primes.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 04:33:23 PDT Modified files: games/primes primes.c Log: 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. Revision Changes Path 1.7 +3 -3 src/games/primes/primes.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 05:17:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA09199 for cvs-all-outgoing; Sat, 9 May 1998 05:17:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA09194; Sat, 9 May 1998 05:17:24 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA18917; Sat, 9 May 1998 05:14:20 -0700 (PDT) Date: Sat, 9 May 1998 05:14:20 -0700 (PDT) Message-Id: <199805091214.FAA18917@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/sys kernel.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/09 05:14:19 PDT Modified files: sys/sys kernel.h Log: 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. Revision Changes Path 1.40 +47 -47 src/sys/sys/kernel.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 06:21:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA12776 for cvs-all-outgoing; Sat, 9 May 1998 06:21:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA12771; Sat, 9 May 1998 06:21:48 -0700 (PDT) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA21131; Sat, 9 May 1998 06:18:43 -0700 (PDT) Date: Sat, 9 May 1998 06:18:43 -0700 (PDT) Message-Id: <199805091318.GAA21131@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/w3mir Makefile ports/www/w3mir/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1998/05/09 06:18:43 PDT Modified files: www/w3mir Makefile www/w3mir/pkg PLIST Log: Install some docs/license Revision Changes Path 1.3 +8 -1 ports/www/w3mir/Makefile 1.2 +3 -0 ports/www/w3mir/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 06:31:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA13650 for cvs-all-outgoing; Sat, 9 May 1998 06:31:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA13644; Sat, 9 May 1998 06:31:13 -0700 (PDT) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA21203; Sat, 9 May 1998 06:28:04 -0700 (PDT) Date: Sat, 9 May 1998 06:28:04 -0700 (PDT) Message-Id: <199805091328.GAA21203@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/w3mir Makefile ports/www/w3mir/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1998/05/09 06:28:04 PDT Modified files: www/w3mir Makefile www/w3mir/pkg PLIST Log: Install config examples too Revision Changes Path 1.4 +2 -2 ports/www/w3mir/Makefile 1.3 +7 -5 ports/www/w3mir/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 06:35:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA14159 for cvs-all-outgoing; Sat, 9 May 1998 06:35:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA14152; Sat, 9 May 1998 06:35:43 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA21251; Sat, 9 May 1998 06:32:38 -0700 (PDT) Date: Sat, 9 May 1998 06:32:38 -0700 (PDT) Message-Id: <199805091332.GAA21251@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/keyserv Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/09 06:32:38 PDT Modified files: usr.sbin/keyserv Makefile Log: Fixed the usual dependency bugs. This Makefile accidentally usually worked for `make -j9', but failed for `make -j4'. Revision Changes Path 1.3 +3 -3 src/usr.sbin/keyserv/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 06:55:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA16014 for cvs-all-outgoing; Sat, 9 May 1998 06:55:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA16009; Sat, 9 May 1998 06:55:18 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA16153; Sat, 9 May 1998 06:52:13 -0700 (PDT) Date: Sat, 9 May 1998 06:52:13 -0700 (PDT) Message-Id: <199805091352.GAA16153@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c datalink.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/05/09 06:52:13 PDT Modified files: (Branch: MP) usr.sbin/ppp bundle.c datalink.c Log: Log datalink state transitions consistently. Revision Changes Path 1.1.2.78 +1 -3 src/usr.sbin/ppp/Attic/bundle.c 1.1.2.58 +41 -29 src/usr.sbin/ppp/Attic/datalink.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 07:21:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA18113 for cvs-all-outgoing; Sat, 9 May 1998 07:21:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA18102; Sat, 9 May 1998 07:21:23 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA16388; Sat, 9 May 1998 07:18:18 -0700 (PDT) Date: Sat, 9 May 1998 07:18:18 -0700 (PDT) Message-Id: <199805091418.HAA16388@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/05/09 07:18:17 PDT Modified files: . modules Log: ko-mizifont --> ports/korean/mizifont Revision Changes Path 1.1994 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 07:22:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA18284 for cvs-all-outgoing; Sat, 9 May 1998 07:22:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA18278; Sat, 9 May 1998 07:22:26 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA16460; Sat, 9 May 1998 07:19:21 -0700 (PDT) Date: Sat, 9 May 1998 07:19:21 -0700 (PDT) Message-Id: <199805091419.HAA16460@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/korean/mizifont - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/05/09 07:19:21 PDT ports/korean/mizifont - Imported sources Update of /home/ncvs/ports/korean/mizifont In directory freefall.freebsd.org:/tmp/cvs-serv16425 Log Message: Mizi Research's Korean X11 Font(ksc5601.1987-[01] encoding) 1. This package should not be commercial use. 2. This package should not be redistributed(except FreeBSD mirrors). Submitted by: CHOI Junho PR: ports/6052 Should I put some comments in ports/LEGAL? Status: Vendor Tag: JUNKER Release Tags: v1_1 N ports/korean/mizifont/Makefile N ports/korean/mizifont/files/md5 N ports/korean/mizifont/pkg/COMMENT N ports/korean/mizifont/pkg/DESCR N ports/korean/mizifont/pkg/PLIST N ports/korean/mizifont/pkg/MESSAGE No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 07:23:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA18462 for cvs-all-outgoing; Sat, 9 May 1998 07:23:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA18457; Sat, 9 May 1998 07:23:04 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA16499; Sat, 9 May 1998 07:19:59 -0700 (PDT) Date: Sat, 9 May 1998 07:19:59 -0700 (PDT) Message-Id: <199805091419.HAA16499@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/korean Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/05/09 07:19:59 PDT Modified files: korean Makefile Log: Activate ko-mizifont Revision Changes Path 1.21 +2 -1 ports/korean/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 07:47:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA20111 for cvs-all-outgoing; Sat, 9 May 1998 07:47:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from awfulhak.org (awfulhak.demon.co.uk [158.152.17.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA20033; Sat, 9 May 1998 07:46:46 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from gate.lan.awfulhak.org (localhost [127.0.0.1]) by awfulhak.org (8.8.8/8.8.8) with ESMTP id OAA08440; Sat, 9 May 1998 14:56:57 +0100 (BST) (envelope-from brian@gate.lan.awfulhak.org) Message-Id: <199805091356.OAA08440@awfulhak.org> X-Mailer: exmh version 2.0.1 12/23/97 To: Bruce Evans cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: Re: cvs commit: src/sys/sys kernel.h In-reply-to: Your message of "Sat, 09 May 1998 05:14:20 PDT." <199805091214.FAA18917@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 09 May 1998 14:56:56 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > We assumed at-least-33-bit ints. This worked on some 32-bit :-) -- Brian , , Don't _EVER_ lose your sense of humour.... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 07:47:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA20176 for cvs-all-outgoing; Sat, 9 May 1998 07:47:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA20162; Sat, 9 May 1998 07:47:22 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA16593; Sat, 9 May 1998 07:44:13 -0700 (PDT) Date: Sat, 9 May 1998 07:44:13 -0700 (PDT) Message-Id: <199805091444.HAA16593@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/05/09 07:44:13 PDT Modified files: (Branch: MP) usr.sbin/ppp bundle.c Log: When transmitting link file descriptors in multilink mode, ACK our received file descriptor, and don't close a sent descriptor 'till the ack has been received. Revision Changes Path 1.1.2.79 +6 -2 src/usr.sbin/ppp/Attic/bundle.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 07:48:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA20374 for cvs-all-outgoing; Sat, 9 May 1998 07:48:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA20360; Sat, 9 May 1998 07:48:14 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA16629; Sat, 9 May 1998 07:45:08 -0700 (PDT) Date: Sat, 9 May 1998 07:45:08 -0700 (PDT) Message-Id: <199805091445.HAA16629@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/sys send.2 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/05/09 07:45:08 PDT Modified files: lib/libc/sys send.2 Log: Add a BUGS section and describe a problem I've been having for a few weeks now. Revision Changes Path 1.8 +14 -1 src/lib/libc/sys/send.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 08:02:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA21386 for cvs-all-outgoing; Sat, 9 May 1998 08:02:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA21380; Sat, 9 May 1998 08:02:37 -0700 (PDT) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA16689; Sat, 9 May 1998 07:59:32 -0700 (PDT) Date: Sat, 9 May 1998 07:59:32 -0700 (PDT) Message-Id: <199805091459.HAA16689@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook porting.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1998/05/09 07:59:32 PDT Modified files: handbook porting.sgml Log: If the ported software has a homepage, you should list it in pkg/DESCR. This is so that k001 things like wosch's script can link to them, making port-browsing much more meaningful. Now, if someone will add similar functionality to pkg_add(1). ;) Revision Changes Path 1.98 +7 -4 doc/handbook/porting.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 08:14:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA22343 for cvs-all-outgoing; Sat, 9 May 1998 08:14:03 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA22327; Sat, 9 May 1998 08:13:59 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA16745; Sat, 9 May 1998 08:10:54 -0700 (PDT) Date: Sat, 9 May 1998 08:10:54 -0700 (PDT) Message-Id: <199805091510.IAA16745@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/yp Makefile.inc Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/05/09 08:10:54 PDT Modified files: lib/libc/yp Makefile.inc Log: 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 only in not declaring prototypes. Fixed style bugs. Revision Changes Path 1.7 +6 -6 src/lib/libc/yp/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 10:00:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA00108 for cvs-all-outgoing; Sat, 9 May 1998 10:00:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA29994; Sat, 9 May 1998 10:00:47 -0700 (PDT) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA17043; Sat, 9 May 1998 09:57:41 -0700 (PDT) Date: Sat, 9 May 1998 09:57:41 -0700 (PDT) Message-Id: <199805091657.JAA17043@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/w3mir Makefile ports/www/w3mir/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1998/05/09 09:57:41 PDT Modified files: www/w3mir Makefile www/w3mir/pkg COMMENT DESCR PLIST Log: Move the homepage reference from the Makefile to pkg/DESCR. While I'm here, add @dirrm share/doc/w3mir to pkg/PLIST and reformat pkg/[DESCR|COMMENT]. Revision Changes Path 1.5 +2 -3 ports/www/w3mir/Makefile 1.2 +1 -1 ports/www/w3mir/pkg/COMMENT 1.2 +6 -7 ports/www/w3mir/pkg/DESCR 1.4 +1 -0 ports/www/w3mir/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 10:53:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA05019 for cvs-all-outgoing; Sat, 9 May 1998 10:53:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from antipodes.cdrom.com (a07m.cet.co.jp [202.32.65.71]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA04948; Sat, 9 May 1998 10:53:34 -0700 (PDT) (envelope-from mike@antipodes.cdrom.com) Received: from antipodes.cdrom.com (localhost [127.0.0.1]) by antipodes.cdrom.com (8.8.8/8.8.5) with ESMTP id WAA00630; Fri, 8 May 1998 22:54:00 -0700 (PDT) Message-Id: <199805090554.WAA00630@antipodes.cdrom.com> X-Mailer: exmh version 2.0zeta 7/24/97 To: "Jordan K. Hubbard" cc: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ), Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libftpio ftpio.c In-reply-to: Your message of "Fri, 08 May 1998 03:10:18 PDT." <20258.894622218@time.cdrom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 08 May 1998 22:54:00 -0700 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > > OK, I took a quick look at it last night. My approach so far is to > > write a new library (libfetch) and integrate the code from fetch and > > libftpio into it. The libfetch interface consists of two functions: > > > > FILE *fetchGetURL(char *URL, int flags); > > FILE *fetchPutURL(char *URL, int flags); > > > > which work as you'd expect. The flags parameter is used to specify > > options such as passive mode, text/binary mode, verbosity, possibly > > also protocol version (HTTP 1.0 / HTTP 1.1). > > Sounds reasonable - so the flags will be the union of all possible > options, e.g. everything from (contrived) FILE_SYMLINK to FTP_PASSIVE? > Do we have less than 32 options in total? ;-) Given that this looks a lot like fopen(), maybe use an option string instead? -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 10:55:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA05377 for cvs-all-outgoing; Sat, 9 May 1998 10:55:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA05372; Sat, 9 May 1998 10:55:36 -0700 (PDT) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA17280; Sat, 9 May 1998 10:52:29 -0700 (PDT) Date: Sat, 9 May 1998 10:52:29 -0700 (PDT) Message-Id: <199805091752.KAA17280@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/conf majors.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/05/09 10:52:29 PDT Modified files: sys/i386/conf majors.i386 Log: Add character major for 'loe' loopback pseudo-ethernet device. Requested by: sbabkin@dcn.att.com Revision Changes Path 1.40 +2 -1 src/sys/i386/conf/majors.i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 11:08:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA07077 for cvs-all-outgoing; Sat, 9 May 1998 11:08:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA07070; Sat, 9 May 1998 11:08:33 -0700 (PDT) (envelope-from se@FreeBSD.org) From: Stefan Esser Received: (from se@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA17439; Sat, 9 May 1998 11:05:27 -0700 (PDT) Date: Sat, 9 May 1998 11:05:27 -0700 (PDT) Message-Id: <199805091805.LAA17439@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/converters/kdesupport Makefile ports/converters/kdesupport/files md5 ports/converters/kdesupport/patches patch-aa patch-a0 ports/converters/kdesupport/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk se 1998/05/09 11:05:27 PDT Modified files: converters/kdesupport Makefile converters/kdesupport/files md5 converters/kdesupport/patches patch-a0 converters/kdesupport/pkg PLIST Added files: converters/kdesupport/patches patch-aa Log: Update to Beta-4.1 Revision Changes Path 1.6 +11 -6 ports/converters/kdesupport/Makefile 1.4 +1 -1 ports/converters/kdesupport/files/md5 1.4 +8 -8 ports/converters/kdesupport/patches/patch-a0 1.4 +11 -1 ports/converters/kdesupport/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 11:09:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA07193 for cvs-all-outgoing; Sat, 9 May 1998 11:09:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA07188; Sat, 9 May 1998 11:09:35 -0700 (PDT) (envelope-from se@FreeBSD.org) From: Stefan Esser Received: (from se@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA17539; Sat, 9 May 1998 11:06:29 -0700 (PDT) Date: Sat, 9 May 1998 11:06:29 -0700 (PDT) Message-Id: <199805091806.LAA17539@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/kdegames Makefile ports/games/kdegames/files md5 ports/games/kdegames/patches patch-a0 patch-aa patch-ab patch-ac ports/games/kdegames/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk se 1998/05/09 11:06:28 PDT Modified files: games/kdegames Makefile games/kdegames/files md5 games/kdegames/patches patch-a0 patch-aa patch-ab games/kdegames/pkg PLIST Removed files: games/kdegames/patches patch-ac Log: Upgrade to Beta-4.1 Revision Changes Path 1.9 +12 -9 ports/games/kdegames/Makefile 1.3 +1 -1 ports/games/kdegames/files/md5 1.2 +8 -8 ports/games/kdegames/patches/patch-a0 1.3 +11 -11 ports/games/kdegames/patches/patch-aa 1.3 +4 -16 ports/games/kdegames/patches/patch-ab 1.3 +256 -140 ports/games/kdegames/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 11:10:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA07351 for cvs-all-outgoing; Sat, 9 May 1998 11:10:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA07346; Sat, 9 May 1998 11:10:28 -0700 (PDT) (envelope-from se@FreeBSD.org) From: Stefan Esser Received: (from se@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA17640; Sat, 9 May 1998 11:07:21 -0700 (PDT) Date: Sat, 9 May 1998 11:07:21 -0700 (PDT) Message-Id: <199805091807.LAA17640@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/graphics/kdegraphics Makefile ports/graphics/kdegraphics/files md5 ports/graphics/kdegraphics/patches patch-a0 patch-aa patch-ab ports/graphics/kdegraphics/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk se 1998/05/09 11:07:21 PDT Modified files: graphics/kdegraphics Makefile graphics/kdegraphics/files md5 graphics/kdegraphics/patches patch-a0 patch-aa patch-ab graphics/kdegraphics/pkg PLIST Log: Upgrade to Beta-4.1 Revision Changes Path 1.6 +12 -8 ports/graphics/kdegraphics/Makefile 1.2 +1 -1 ports/graphics/kdegraphics/files/md5 1.2 +8 -8 ports/graphics/kdegraphics/patches/patch-a0 1.2 +7 -7 ports/graphics/kdegraphics/patches/patch-aa 1.2 +12 -12 ports/graphics/kdegraphics/patches/patch-ab 1.2 +38 -14 ports/graphics/kdegraphics/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 11:11:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA07440 for cvs-all-outgoing; Sat, 9 May 1998 11:11:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA07435; Sat, 9 May 1998 11:11:11 -0700 (PDT) (envelope-from se@FreeBSD.org) From: Stefan Esser Received: (from se@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA17669; Sat, 9 May 1998 11:08:04 -0700 (PDT) Date: Sat, 9 May 1998 11:08:04 -0700 (PDT) Message-Id: <199805091808.LAA17669@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/kde Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk se 1998/05/09 11:08:04 PDT Modified files: x11/kde Makefile Log: Enable kdegames and kdegraphics Revision Changes Path 1.10 +3 -3 ports/x11/kde/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 11:32:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA09942 for cvs-all-outgoing; Sat, 9 May 1998 11:32:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA09932; Sat, 9 May 1998 11:31:57 -0700 (PDT) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA17786; Sat, 9 May 1998 11:28:51 -0700 (PDT) Date: Sat, 9 May 1998 11:28:51 -0700 (PDT) Message-Id: <199805091828.LAA17786@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/ncftp3 Makefile ports/net/ncftp3/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/05/09 11:28:51 PDT Modified files: net/ncftp3 Makefile net/ncftp3/files md5 Log: Upgrade to 3.0 beta version 10 Submitted by: roberto Revision Changes Path 1.45 +3 -3 ports/net/ncftp3/Makefile 1.28 +1 -1 ports/net/ncftp3/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 11:45:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA11682 for cvs-all-outgoing; Sat, 9 May 1998 11:45:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA11667; Sat, 9 May 1998 11:45:09 -0700 (PDT) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA17889; Sat, 9 May 1998 11:42:02 -0700 (PDT) Date: Sat, 9 May 1998 11:42:02 -0700 (PDT) Message-Id: <199805091842.LAA17889@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/ncftp3 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/05/09 11:42:02 PDT Modified files: net/ncftp3 Makefile Log: make PREFIX clean Revision Changes Path 1.46 +6 -1 ports/net/ncftp3/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 11:55:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA12623 for cvs-all-outgoing; Sat, 9 May 1998 11:55:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA12618; Sat, 9 May 1998 11:55:51 -0700 (PDT) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA18097; Sat, 9 May 1998 11:52:44 -0700 (PDT) Date: Sat, 9 May 1998 11:52:44 -0700 (PDT) Message-Id: <199805091852.LAA18097@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/xwpe Makefile ports/devel/xwpe/files md5 ports/devel/xwpe/patches patch-08 patch-09 patch-02 patch-05 patch-07 patch-01 patch-03 patch-04 ports/devel/xwpe/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/05/09 11:52:44 PDT Modified files: devel/xwpe Makefile devel/xwpe/files md5 devel/xwpe/patches patch-02 patch-05 patch-07 devel/xwpe/pkg PLIST Added files: devel/xwpe/patches patch-08 patch-09 Removed files: devel/xwpe/patches patch-01 patch-03 patch-04 Log: Upgrade to version xwpe-1.5.9a Revision Changes Path 1.5 +6 -20 ports/devel/xwpe/Makefile 1.3 +1 -5 ports/devel/xwpe/files/md5 1.3 +21 -20 ports/devel/xwpe/patches/patch-02 1.2 +18 -13 ports/devel/xwpe/patches/patch-05 1.2 +18 -8 ports/devel/xwpe/patches/patch-07 1.2 +5 -5 ports/devel/xwpe/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 13:53:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA29407 for cvs-all-outgoing; Sat, 9 May 1998 13:53:48 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA29402; Sat, 9 May 1998 13:53:46 -0700 (PDT) (envelope-from wollman@FreeBSD.org) From: Garrett Wollman Received: (from wollman@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA18565; Sat, 9 May 1998 13:50:39 -0700 (PDT) Date: Sat, 9 May 1998 13:50:39 -0700 (PDT) Message-Id: <199805092050.NAA18565@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/fetch fetch.1 http.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wollman 1998/05/09 13:50:38 PDT Modified files: usr.bin/fetch fetch.1 http.c Log: 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.) Revision Changes Path 1.22 +27 -6 src/usr.bin/fetch/fetch.1 1.18 +9 -6 src/usr.bin/fetch/http.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 14:31:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA03652 for cvs-all-outgoing; Sat, 9 May 1998 14:31:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA03647; Sat, 9 May 1998 14:31:09 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA18685; Sat, 9 May 1998 14:28:02 -0700 (PDT) Date: Sat, 9 May 1998 14:28:02 -0700 (PDT) Message-Id: <199805092128.OAA18685@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-user@FreeBSD.ORG Subject: cvs commit: src Makefile.alpha Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/05/09 14:28:01 PDT Modified files: . Makefile.alpha Log: 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. Revision Changes Path 1.11 +18 -10 src/Makefile.alpha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 14:42:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA04410 for cvs-all-outgoing; Sat, 9 May 1998 14:42:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA04403; Sat, 9 May 1998 14:42:58 -0700 (PDT) (envelope-from wollman@FreeBSD.org) From: Garrett Wollman Received: (from wollman@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA18760; Sat, 9 May 1998 14:39:50 -0700 (PDT) Date: Sat, 9 May 1998 14:39:50 -0700 (PDT) Message-Id: <199805092139.OAA18760@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/fetch fetch.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wollman 1998/05/09 14:39:50 PDT Modified files: usr.bin/fetch fetch.1 Log: Fix my last change: the .Fx macro doesn't do anything useful without an argument, so use `.Tn FreeBSD' instead. Revision Changes Path 1.23 +2 -2 src/usr.bin/fetch/fetch.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 15:16:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA08341 for cvs-all-outgoing; Sat, 9 May 1998 15:16:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA08336; Sat, 9 May 1998 15:16:07 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA20312; Sat, 9 May 1998 15:12:59 -0700 (PDT) Date: Sat, 9 May 1998 15:12:59 -0700 (PDT) Message-Id: <199805092212.PAA20312@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/mail/popclient Makefile ports/mail/popclient/patches patch-ad ports/mail/popclient/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/05/09 15:12:59 PDT Modified files: mail/popclient Makefile mail/popclient/patches patch-ad mail/popclient/pkg PLIST Log: Do not install useless popclient.info PR: 6468 Submitted by: lmarc@mail.labcontrol.com Revision Changes Path 1.11 +1 -3 ports/mail/popclient/Makefile 1.3 +0 -14 ports/mail/popclient/patches/patch-ad 1.3 +0 -4 ports/mail/popclient/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat May 9 15:18:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA08761 for cvs-all-outgoing; Sat, 9 May 1998 15:18:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA08750; Sat, 9 May 1998 15:18:28 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA20377; Sat, 9 May 1998 15:15:20 -0700 (PDT) Date: Sat, 9 May 1998 15:15:20 -0700 (PDT) Message-Id: <199805092215.PAA20377@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/info Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/05/09 15:15:20 PDT Modified files: share/info Makefile Log: Print a human-readable warning and die if $INFODIR do not exist. PR: bin/6138 Reviewed by: bde Revision Changes Path 1.6 +11 -1 src/share/info/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message