From owner-cvs-all Sun Jul 23 0:52:28 2000 Delivered-To: cvs-all@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id C0D6537B93F; Sun, 23 Jul 2000 00:52:15 -0700 (PDT) (envelope-from bright@fw.wintelcom.net) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e6N7qEg21894; Sun, 23 Jul 2000 00:52:14 -0700 (PDT) Date: Sun, 23 Jul 2000 00:52:14 -0700 From: Alfred Perlstein To: Brian Feldman Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern imgact_elf.c Message-ID: <20000723005214.J13979@fw.wintelcom.net> References: <200007230649.XAA77168@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <200007230649.XAA77168@freefall.freebsd.org>; from green@FreeBSD.org on Sat, Jul 22, 2000 at 11:49:48PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Brian Feldman [000722 23:50] wrote: > green 2000/07/22 23:49:48 PDT > > Modified files: > sys/kern imgact_elf.c > Log: > Solve the problem where it is possible to get the kernel stuck in > a loop down in pmap_init_pt(). A subtraction causes the number of > pages to become negative, that was assigned to an unsigned variable, > and there is a lot of iteration. The bug is due to the ELF image > activator not properly checking for its files being the correct size > as specified by the ELF header. > > The solution is to check that the header doesn't ask for part of a > file when that part of the file doesn't exist. Make sure to set > VEXEC at the proper times to make the executables immutable (remove > race conditions). Also, the ELF format specifiies header entries > that allow embedding of other executables (hence how ld-elf.so.1 > gets loaded, but not the same as loading shared libraries), so those > executables need to be set VEXEC, too, so they're immutable. %s/VEXEC/VTEXT/g :) I'm also concerned that you're using atomic_set_long() rather than or'ing the flag in, there doesn't seem to be a flag in vnode.h that could possibly co-exist with VTEXT but clearing all other flags introduces an unexpected side-effect. All your atomic op does right there is slow down the code path, we aren't doing multithreaded at this point and there's no reason to give a fake sense of safe-ness. -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 1: 1:55 2000 Delivered-To: cvs-all@freebsd.org Received: from mass.osd.bsdi.com (adsl-63-202-177-51.dsl.snfc21.pacbell.net [63.202.177.51]) by hub.freebsd.org (Postfix) with ESMTP id 5A18D37BACF; Sun, 23 Jul 2000 01:01:47 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Received: from mass.osd.bsdi.com (localhost [127.0.0.1]) by mass.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id BAA13280; Sun, 23 Jul 2000 01:11:13 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Message-Id: <200007230811.BAA13280@mass.osd.bsdi.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: Alfred Perlstein Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern imgact_elf.c In-reply-to: Your message of "Sun, 23 Jul 2000 00:52:14 PDT." <20000723005214.J13979@fw.wintelcom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 23 Jul 2000 01:11:13 -0700 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I'm also concerned that you're using atomic_set_long() rather than > or'ing the flag in, there doesn't seem to be a flag in vnode.h that > could possibly co-exist with VTEXT but clearing all other flags > introduces an unexpected side-effect. Er, atomic_set_long is a bit-set operation. -- ... every activity meets with opposition, everyone who acts has his rivals and unfortunately opponents also. But not because people want to be opponents, rather because the tasks and relationships force people to take different points of view. [Dr. Fritz Todt] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 1:59:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EDE0037B8AC; Sun, 23 Jul 2000 01:59:18 -0700 (PDT) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA88203; Sun, 23 Jul 2000 01:59:18 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200007230859.BAA88203@freefall.freebsd.org> From: Brian Feldman Date: Sun, 23 Jul 2000 01:59:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern imgact_elf.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/07/23 01:59:18 PDT Modified files: sys/kern imgact_elf.c Log: Clarification (forced commit): The immutability flag referred to in the previous revision is actually VTEXT, not VEXEC. Revision Changes Path 1.77 +1 -1 src/sys/kern/imgact_elf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 2: 9: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from tasogare.imasy.or.jp (tasogare.imasy.or.jp [202.227.24.5]) by hub.freebsd.org (Postfix) with ESMTP id 9402D37BAAC; Sun, 23 Jul 2000 02:08:59 -0700 (PDT) (envelope-from iwasaki@jp.FreeBSD.org) Received: from localhost (iwasaki.imasy.or.jp [202.227.24.92]) by tasogare.imasy.or.jp (8.10.1+3.3W/3.7W-tasogare/smtpfeed 1.07) with ESMTP id e6N98tp21089; Sun, 23 Jul 2000 18:08:55 +0900 (JST) (envelope-from iwasaki@jp.FreeBSD.org) To: imp@village.org Cc: nsayer@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/apm apm.c In-Reply-To: <200007230502.XAA15719@harmony.village.org> References: <200007230449.VAA62622@freefall.freebsd.org> <200007230502.XAA15719@harmony.village.org> X-Mailer: Mew version 1.94.1 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000723180848Y.iwasaki@jp.FreeBSD.org> Date: Sun, 23 Jul 2000 18:08:48 +0900 From: Mitsuru IWASAKI X-Dispatcher: imput version 20000228(IM140) Lines: 49 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > In message <200007230449.VAA62622@freefall.freebsd.org> Nick Sayer writes: > : nsayer 2000/07/22 21:49:43 PDT > : Modified files: > : usr.sbin/apm apm.c > : Log: > : apm -d also needs a writable file descriptor. > > If that's the case, then we need a MFC, since it is broken there. apm > -d doesn't work on my laptop, so I didn't test it. :-( > > Warner Could you try this patch? # I've ported this from Linux. Index: apm.c =================================================================== RCS file: /home/ncvs/src/sys/i386/apm/apm.c,v retrieving revision 1.115 diff -u -r1.115 apm.c --- apm.c 2000/07/19 06:32:00 1.115 +++ apm.c 2000/07/23 09:09:04 @@ -269,12 +269,21 @@ sc->bios.r.ebx = PMDV_DISP0; sc->bios.r.ecx = newstate ? PMST_APMENABLED:PMST_SUSPEND; sc->bios.r.edx = 0; - if (apm_bioscall()) { - printf("Display off failure: errcode = %d\n", - 0xff & (sc->bios.r.eax >> 8)); - return 1; + if (apm_bioscall() == 0) { + return 0; } - return 0; + + /* If failed, then try to blank all display devices instead. */ + sc->bios.r.eax = (APM_BIOS << 8) | APM_SETPWSTATE; + sc->bios.r.ebx = 0x01ff; /* all display devices */ + sc->bios.r.ecx = newstate ? PMST_APMENABLED:PMST_SUSPEND; + sc->bios.r.edx = 0; + if (apm_bioscall() == 0) { + return 0; + } + printf("Display off failure: errcode = %d\n", + 0xff & (sc->bios.r.eax >> 8)); + return 1; } /* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 2:25:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 232B137B6DC; Sun, 23 Jul 2000 02:25:08 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA90664; Sun, 23 Jul 2000 02:25:08 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200007230925.CAA90664@freefall.freebsd.org> From: Alexander Langer Date: Sun, 23 Jul 2000 02:25:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/pwgen Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/07/23 02:25:08 PDT Modified files: sysutils/pwgen Makefile Log: forced commit: The port was: PR: 20106 Submitted by: Oddbjorn Steffensen Revision Changes Path 1.2 +1 -1 ports/sysutils/pwgen/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 2:40:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F16F037B7EA; Sun, 23 Jul 2000 02:40:39 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA91381; Sun, 23 Jul 2000 02:40:39 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007230940.CAA91381@freefall.freebsd.org> From: Sheldon Hearn Date: Sun, 23 Jul 2000 02:40:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/awi awi.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/23 02:40:39 PDT Removed files: sys/dev/awi awi.4 Log: Remove the awi(4) manual page from the sys/ hierarchy after a repo- copy to share/man/man4 . The file is still not connected to the build from that directory either. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 2:43: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.2.163]) by hub.freebsd.org (Postfix) with ESMTP id 5891B37BAAC; Sun, 23 Jul 2000 02:42:52 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.15 #1) id 13GIHZ-000J7R-00; Sun, 23 Jul 2000 11:42:49 +0200 From: Sheldon Hearn To: cvs-committers@FreeBSD.ORG Cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/awi awi.4 In-reply-to: Your message of "Sun, 23 Jul 2000 02:40:39 MST." <200007230940.CAA91381@freefall.freebsd.org> Date: Sun, 23 Jul 2000 11:42:49 +0200 Message-ID: <73496.964345369@axl.ops.uunet.co.za> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 23 Jul 2000 02:40:39 MST, Sheldon Hearn wrote: > Remove the awi(4) manual page from the sys/ hierarchy after a repo- > copy to share/man/man4 . The file is still not connected to the > build from that directory either. That's it. There should now be no section 4 manual pages in the src/sys tree, whether connected to the build or not; they're all in src/share/man/man4 . As DES has already observed, this may not be the best home for them, but we now have a single, consistent place to look for these buggers. :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 2:46:23 2000 Delivered-To: cvs-all@freebsd.org Received: from lucifer.ninth-circle.org (lucifer.bart.nl [194.158.168.74]) by hub.freebsd.org (Postfix) with ESMTP id A605637BAAC; Sun, 23 Jul 2000 02:46:18 -0700 (PDT) (envelope-from asmodai@lucifer.ninth-circle.org) Received: (from asmodai@localhost) by lucifer.ninth-circle.org (8.9.3/8.9.3) id LAA19468; Sun, 23 Jul 2000 11:46:11 +0200 (CEST) (envelope-from asmodai) Date: Sun, 23 Jul 2000 11:46:11 +0200 From: Jeroen Ruigrok van der Werven To: Hajimu UMEMOTO Cc: imp@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT access Message-ID: <20000723114611.C18748@lucifer.bart.nl> References: <200007212143.OAA54116@freefall.freebsd.org> <20000722094102.A11972@lucifer.bart.nl> <20000722.231028.63076890.ume@mahoroba.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000722.231028.63076890.ume@mahoroba.org>; from ume@mahoroba.org on Sat, Jul 22, 2000 at 11:10:28PM +0900 Organisation: VIA Net.Works The Netherlands Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -On [20000722 16:15], Hajimu UMEMOTO (ume@mahoroba.org) wrote: >He is also IPv6 guru. :-) Oh cool. So I got another victi^H^H^H^H^Hperson to have a look at my IPv6 ideas and such. }=) -- Jeroen Ruigrok van der Werven Network- and systemadministrator VIA Net.Works The Netherlands BSD: Technical excellence at its best http://www.via-net-works.nl Truth is always exciting. Speak it, then. Life is boring without it... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 4: 8:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 93F4137B70C; Sun, 23 Jul 2000 04:08:17 -0700 (PDT) (envelope-from markm@FreeBSD.org) Received: (from markm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA01149; Sun, 23 Jul 2000 04:08:17 -0700 (PDT) (envelope-from markm@FreeBSD.org) Message-Id: <200007231108.EAA01149@freefall.freebsd.org> From: Mark Murray Date: Sun, 23 Jul 2000 04:08:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys random.h src/sys/dev/randomdev harvest.c yarrow.c yarrow.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG markm 2000/07/23 04:08:17 PDT Modified files: sys/sys random.h sys/dev/randomdev harvest.c yarrow.c yarrow.h Log: Clean this up with some BDE-inspired fixes. o Make the comments KNF-compliant. o Use nanotime instead of getnanotime; the manpage lies about the kern.timecounter.method - it has been removed. o Fix the ENTROPYSOURCE const permanently. o Make variable names more consistent. o Make function prototypes more consistent. Some more needs to be done; to follow. Revision Changes Path 1.24 +3 -4 src/sys/sys/random.h 1.3 +13 -11 src/sys/dev/randomdev/harvest.c 1.12 +24 -19 src/sys/dev/randomdev/yarrow.c 1.4 +11 -8 src/sys/dev/randomdev/yarrow.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 4:13: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F85137BA7C; Sun, 23 Jul 2000 04:13:00 -0700 (PDT) (envelope-from markm@FreeBSD.org) Received: (from markm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA01485; Sun, 23 Jul 2000 04:13:00 -0700 (PDT) (envelope-from markm@FreeBSD.org) Message-Id: <200007231113.EAA01485@freefall.freebsd.org> From: Mark Murray Date: Sun, 23 Jul 2000 04:12:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 microtime.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG markm 2000/07/23 04:12:59 PDT Modified files: share/man/man9 microtime.9 Log: Remove references to the (removed) kern.timecounter.method sysctl. Revision Changes Path 1.3 +2 -16 src/share/man/man9/microtime.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 4:31:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0FD7C37B74A; Sun, 23 Jul 2000 04:31:11 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA02347; Sun, 23 Jul 2000 04:31:10 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200007231131.EAA02347@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Sun, 23 Jul 2000 04:31:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/defaults rc.conf X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/07/23 04:31:10 PDT Modified files: etc/defaults rc.conf Log: Add weak_mountd_authentication, which is examined in /etc/rc.network. Setting this to YES instead of its default NO, causes mountd to be passed the -n flag, which allow non-root users mount requests to be served. Revision Changes Path 1.70 +2 -1 src/etc/defaults/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 Jul 23 6:24: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6437237B98C; Sun, 23 Jul 2000 06:24:02 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA13437; Sun, 23 Jul 2000 06:24:02 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007231324.GAA13437@freefall.freebsd.org> From: Sheldon Hearn Date: Sun, 23 Jul 2000 06:24:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/truncate truncate.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/23 06:24:02 PDT Modified files: usr.bin/truncate truncate.c Log: Close file descriptors after use so as not to abuse the descriptor table when a long argument list is given. :-) Reported by: Sven Agnew Revision Changes Path 1.2 +3 -1 src/usr.bin/truncate/truncate.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 6:28: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id D05E537B98C; Sun, 23 Jul 2000 06:28:02 -0700 (PDT) (envelope-from bright@fw.wintelcom.net) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e6NDS2l29158; Sun, 23 Jul 2000 06:28:02 -0700 (PDT) Date: Sun, 23 Jul 2000 06:28:02 -0700 From: Alfred Perlstein To: Mike Smith Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern imgact_elf.c Message-ID: <20000723062802.K13979@fw.wintelcom.net> References: <20000723005214.J13979@fw.wintelcom.net> <200007230811.BAA13280@mass.osd.bsdi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <200007230811.BAA13280@mass.osd.bsdi.com>; from msmith@FreeBSD.org on Sun, Jul 23, 2000 at 01:11:13AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Mike Smith [000723 01:01] wrote: > > I'm also concerned that you're using atomic_set_long() rather than > > or'ing the flag in, there doesn't seem to be a flag in vnode.h that > > could possibly co-exist with VTEXT but clearing all other flags > > introduces an unexpected side-effect. > > Er, atomic_set_long is a bit-set operation. It's still overly paranoid. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 6:30:11 2000 Delivered-To: cvs-all@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 2C8D537B78E; Sun, 23 Jul 2000 06:30:07 -0700 (PDT) (envelope-from bright@fw.wintelcom.net) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e6NDU6P29216; Sun, 23 Jul 2000 06:30:06 -0700 (PDT) Date: Sun, 23 Jul 2000 06:30:06 -0700 From: Alfred Perlstein To: Mike Smith Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern imgact_elf.c Message-ID: <20000723063005.L13979@fw.wintelcom.net> References: <20000723005214.J13979@fw.wintelcom.net> <200007230811.BAA13280@mass.osd.bsdi.com> <20000723062802.K13979@fw.wintelcom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <20000723062802.K13979@fw.wintelcom.net>; from bright@wintelcom.net on Sun, Jul 23, 2000 at 06:28:02AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Alfred Perlstein [000723 06:28] wrote: > * Mike Smith [000723 01:01] wrote: > > > I'm also concerned that you're using atomic_set_long() rather than > > > or'ing the flag in, there doesn't seem to be a flag in vnode.h that > > > could possibly co-exist with VTEXT but clearing all other flags > > > introduces an unexpected side-effect. > > > > Er, atomic_set_long is a bit-set operation. > > It's still overly paranoid. And yet another place where we've used bad function names to describe something. (would atomic_or_long have been so hard?) -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 7: 6:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 478E137B70C; Sun, 23 Jul 2000 07:06:29 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA17859; Sun, 23 Jul 2000 07:06:29 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Message-Id: <200007231406.HAA17859@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Sun, 23 Jul 2000 07:06:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/deskutils/yank Makefile ports/deskutils/yank/files md5 ports/deskutils/yank/patches patch-aa ports/deskutils/yank/pkg DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jedgar 2000/07/23 07:06:27 PDT Modified files: deskutils/yank Makefile deskutils/yank/files md5 deskutils/yank/patches patch-aa deskutils/yank/pkg DESCR PLIST Log: Update port to 0.1.4 Revision Changes Path 1.8 +4 -4 ports/deskutils/yank/Makefile 1.4 +1 -1 ports/deskutils/yank/files/md5 1.2 +7 -7 ports/deskutils/yank/patches/patch-aa 1.2 +1 -1 ports/deskutils/yank/pkg/DESCR 1.4 +8 -0 ports/deskutils/yank/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 Jul 23 7:21:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 23CC037B83E; Sun, 23 Jul 2000 07:21:41 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA19020; Sun, 23 Jul 2000 07:21:41 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Message-Id: <200007231421.HAA19020@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Sun, 23 Jul 2000 07:21:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/pngcrush Makefile ports/graphics/pngcrush/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jedgar 2000/07/23 07:21:40 PDT Modified files: graphics/pngcrush Makefile graphics/pngcrush/files md5 Log: Update port to 1.4.8 Revision Changes Path 1.17 +2 -2 ports/graphics/pngcrush/Makefile 1.15 +1 -1 ports/graphics/pngcrush/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 Jul 23 7:48:51 2000 Delivered-To: cvs-all@freebsd.org Received: from nothing-going-on.demon.co.uk (nothing-going-on.demon.co.uk [193.237.89.66]) by hub.freebsd.org (Postfix) with ESMTP id 10F0637BA53; Sun, 23 Jul 2000 07:48:33 -0700 (PDT) (envelope-from nik@nothing-going-on.demon.co.uk) Received: from kilt.nothing-going-on.org (root@kilt.nothing-going-on.org [192.168.1.18]) by nothing-going-on.demon.co.uk (8.9.3/8.9.3) with ESMTP id MAA15730; Sun, 23 Jul 2000 12:26:27 +0100 (BST) (envelope-from nik@catkin.nothing-going-on.org) Received: (from nik@localhost) by nothing-going-on.demon.co.uk (8.9.3/8.9.3) id CAA03775; Sat, 22 Jul 2000 02:37:24 GMT (envelope-from nik) Date: Sat, 22 Jul 2000 02:37:22 +0000 From: Nik Clayton To: Kelly Yancey Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/astro/xearth/files freebsd.committers.markers Message-ID: <20000722023720.A3559@kilt.nothing-going-on.org> References: <200007130651.XAA82162@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200007130651.XAA82162@freefall.freebsd.org>; from kbyanc@FreeBSD.org on Wed, Jul 12, 2000 at 11:51:24PM -0700 Organization: FreeBSD Project Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Jul 12, 2000 at 11:51:24PM -0700, Kelly Yancey wrote: > Log: > Odd, the committers guide omitted this very important first commit. :P Not for long :-) N -- Internet connection, $19.95 a month. Computer, $799.95. Modem, $149.95. Telephone line, $24.95 a month. Software, free. USENET transmission, hundreds if not thousands of dollars. Thinking before posting, priceless. Somethings in life you can't buy. For everything else, there's MasterCard. -- Graham Reed, in the Scary Devil Monastery To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 8:15:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8FE5B37BAA4; Sun, 23 Jul 2000 08:15:45 -0700 (PDT) (envelope-from tanimura@FreeBSD.org) Received: (from tanimura@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA25827; Sun, 23 Jul 2000 08:15:45 -0700 (PDT) (envelope-from tanimura@FreeBSD.org) Message-Id: <200007231515.IAA25827@freefall.freebsd.org> From: Seigo Tanimura Date: Sun, 23 Jul 2000 08:15:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ed if_ed.c if_ed_pccard.c if_edreg.h if_edvar.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tanimura 2000/07/23 08:15:45 PDT Modified files: sys/dev/ed if_ed.c if_ed_pccard.c if_edreg.h if_edvar.h Log: MFPAO: Add support for AX88190, equipped in MELCO LPC3-TX. Revision Changes Path 1.185 +84 -67 src/sys/dev/ed/if_ed.c 1.14 +158 -1 src/sys/dev/ed/if_ed_pccard.c 1.28 +33 -9 src/sys/dev/ed/if_edreg.h 1.6 +2 -3 src/sys/dev/ed/if_edvar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 9:22:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9B2F637BC9C; Sun, 23 Jul 2000 09:22:16 -0700 (PDT) (envelope-from nik@FreeBSD.org) Received: (from nik@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA32887; Sun, 23 Jul 2000 09:22:16 -0700 (PDT) (envelope-from nik@FreeBSD.org) Message-Id: <200007231622.JAA32887@freefall.freebsd.org> From: Nik Clayton Date: Sun, 23 Jul 2000 09:22:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/articles/committers-guide article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nik 2000/07/23 09:22:16 PDT Modified files: en_US.ISO_8859-1/articles/committers-guide article.sgml Log: Rewrite the abstract. This isn't just a CVS document any more. Shift the information about the repository-meisters in to the first section about CVS. Re-write the list of things that a new committer should do as a numbered list. Mention the existence of the xearth committers' markers file. Revision Changes Path 1.27 +76 -59 doc/en_US.ISO_8859-1/articles/committers-guide/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 9:24:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A41D37B9EA; Sun, 23 Jul 2000 09:24:48 -0700 (PDT) (envelope-from nik@FreeBSD.org) Received: (from nik@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA33069; Sun, 23 Jul 2000 09:24:48 -0700 (PDT) (envelope-from nik@FreeBSD.org) Message-Id: <200007231624.JAA33069@freefall.freebsd.org> From: Nik Clayton Date: Sun, 23 Jul 2000 09:24:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/mirrors chapter.sgml doc/en_US.ISO_8859-1/books/handbook/cutting-edge chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nik 2000/07/23 09:24:48 PDT Modified files: en_US.ISO_8859-1/books/handbook/mirrors chapter.sgml en_US.ISO_8859-1/books/handbook/cutting-edge chapter.sgml Log: Update the internal links in mirrors/chapter.sgml (for example in anoncvs section that links to CVSup) to point to the right place within the document. Revision Changes Path 1.77 +6 -6 doc/en_US.ISO_8859-1/books/handbook/mirrors/chapter.sgml 1.53 +4 -4 doc/en_US.ISO_8859-1/books/handbook/cutting-edge/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 9:28: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A7C6F37BDAB; Sun, 23 Jul 2000 09:27:58 -0700 (PDT) (envelope-from nik@FreeBSD.org) Received: (from nik@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA33299; Sun, 23 Jul 2000 09:27:58 -0700 (PDT) (envelope-from nik@FreeBSD.org) Message-Id: <200007231627.JAA33299@freefall.freebsd.org> From: Nik Clayton Date: Sun, 23 Jul 2000 09:27:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/share/mk doc.project.mk doc.html.mk X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nik 2000/07/23 09:27:58 PDT Modified files: share/mk doc.project.mk doc.html.mk Log: Fix the handling of unsupported formats (like "html-split") in doc.html.mk. Output a non-fatal warning for these. For unknown formats output a fatal error. Revision Changes Path 1.5 +6 -1 doc/share/mk/doc.project.mk 1.3 +47 -12 doc/share/mk/doc.html.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 9:33: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CBE2937B9EA; Sun, 23 Jul 2000 09:33:00 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA33796; Sun, 23 Jul 2000 09:33:00 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200007231633.JAA33796@freefall.freebsd.org> From: Marcel Moolenaar Date: Sun, 23 Jul 2000 09:33:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/07/23 09:33:00 PDT Modified files: etc Makefile include Makefile release Makefile release/picobsd/build Makefile.mfs release/picobsd/custom Makefile.mfs release/picobsd/dial Makefile.mfs release/picobsd/install Makefile.mfs Log: Backout addition of -L switch to mtree. Using -L breaks the build process in too many cases. Adding mtree to bootstrap-tools to solve this breaks the upgrade path because mtree needs a libc that has strtofflags and fflagstostr. Revision Changes Path 1.230 +6 -6 src/etc/Makefile 1.117 +2 -2 src/include/Makefile 1.558 +6 -6 src/release/Makefile 1.4 +3 -3 src/release/picobsd/build/Makefile.mfs 1.6 +2 -2 src/release/picobsd/custom/Makefile.mfs 1.6 +2 -2 src/release/picobsd/dial/Makefile.mfs 1.3 +1 -1 src/release/picobsd/install/Makefile.mfs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 9:43: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F2EB537BB6F; Sun, 23 Jul 2000 09:43:03 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA34490; Sun, 23 Jul 2000 09:43:04 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200007231643.JAA34490@freefall.freebsd.org> From: Marcel Moolenaar Date: Sun, 23 Jul 2000 09:43:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/07/23 09:43:03 PDT Modified files: . Makefile.inc1 Log: Remove mtree for bootstrap-tools. The -L switch change has been backed out. Revision Changes Path 1.161 +2 -2 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 9:54:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2541937B63A; Sun, 23 Jul 2000 09:54:19 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA35253; Sun, 23 Jul 2000 09:54:19 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200007231654.JAA35253@freefall.freebsd.org> From: Marcel Moolenaar Date: Sun, 23 Jul 2000 09:54:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/linux linux_misc.c linux_util.c linux_util.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/07/23 09:54:19 PDT Modified files: sys/i386/linux linux_misc.c linux_util.c linux_util.h Log: Add bounds checking to stackgap_alloc. Previously it was possible to construct a path that was long enough (ie longer than SPARE_USRSPACE bytes) and trash the stack. Note that SPARE_USRSPACE is much smaller than MAXPATHLEN so that the Linuxulator will now return ENAMETOOLONG even if the path is smaller than MAXPATHLEN. PR: 12749 Revision Changes Path 1.82 +3 -1 src/sys/i386/linux/linux_misc.c 1.11 +5 -2 src/sys/i386/linux/linux_util.c 1.11 +9 -11 src/sys/i386/linux/linux_util.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 10:28: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id 0D3E237BCCF; Sun, 23 Jul 2000 10:27:52 -0700 (PDT) (envelope-from steve@hiwaay.net) Received: from hiwaay.net (tnt6-216-180-4-58.dialup.HiWAAY.net [216.180.4.58]) by mail.hiwaay.net (8.11.0/8.11.0) with ESMTP id e6NHRnP07088; Sun, 23 Jul 2000 12:27:49 -0500 (CDT) Received: (from steve@localhost) by hiwaay.net (8.9.3/8.9.3) id MAA81619; Sun, 23 Jul 2000 12:27:48 -0500 (CDT) (envelope-from steve) Date: Sun, 23 Jul 2000 12:27:48 -0500 From: Steve Price To: "David O'Brien" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/scripts print-cdrom-packages.sh Message-ID: <20000723122748.D5963@bonsai.hiwaay.net> References: <200007222343.QAA36091@freefall.freebsd.org> <20000722205036.B5963@bonsai.hiwaay.net> <20000722190128.A48362@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000722190128.A48362@dragon.nuxi.com>; from obrien@FreeBSD.org on Sat, Jul 22, 2000 at 07:01:28PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Jul 22, 2000 at 07:01:28PM -0700, David O'Brien wrote: # > Just out of curiosity, do we really need three versions of ncftp? # > # > +CDROM_SET_1="${CDROM_SET_1} ftp/ncftp" # > +CDROM_SET_1="${CDROM_SET_1} ftp/ncftp2" # > +CDROM_SET_1="${CDROM_SET_1} ftp/ncftp3" # # I know people that still use each version. :-( Hmm... I suppose if I look hard enough I could find 'people' that are using nearly every port so they should go on the first disc too? :) Seriously the list of the ports that go on the first disc should be the ones that people absolutely must have on the first reboot. The 'nice to haves' go on discs 3 and 4. The first disc is already overcrowded by KDE and GNOME dependencies and having 3 versions of the same ftp client seems a needless waste to me. # The order is of "popularity" or "importance". The list is now 182 items. # jhb is testing to see how many MB this list + its dependencies takes up. # I'm sure all of the Alpha packages on this list will not fit on disc1. # # Just finish spell checking it, and will send a new version thru JKH # later. I'd like to see the new list since I'm putting the finishing touches on the 4.1R/i386 package set right now. BTW, I noticed a couple of more nits that are addressed with the patch below. Several ports (including the vim5 port) have dependencies that change based on the value of a couple of variables that Satoshi and I use to generate package sets. Also the ksh93 port is RESTRICTED and cannot go on any of the discs. -steve Index: print-cdrom-packages.sh =================================================================== RCS file: /home/ncvs/src/release/scripts/print-cdrom-packages.sh,v retrieving revision 1.5 diff -u -r1.5 print-cdrom-packages.sh --- print-cdrom-packages.sh 2000/07/22 23:43:53 1.5 +++ print-cdrom-packages.sh 2000/07/23 17:13:54 @@ -26,6 +26,11 @@ # so that the package name and dependency list for each can be at least be # obtained in an automated fashion. +# We must export these variables because a port's package dependencies +# may change depending on their value. +export BATCH=t +export PACKAGE_BUILDING=t + # usage: extract-names cd# extract-names() { @@ -63,9 +68,6 @@ # This is the set of "people really want these" packages. Please add to # this list. CDROM_SET_1="${CDROM_SET_1} net/cvsup-bin" -if [ "X`uname -m`" = "Xi386" ]; then -CDROM_SET_1="${CDROM_SET_1} shells/ksh93" -fi CDROM_SET_1="${CDROM_SET_1} shells/bash2" CDROM_SET_1="${CDROM_SET_1} shells/pdksh" CDROM_SET_1="${CDROM_SET_1} shells/zsh" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 10:38:41 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DFE8537BCCA; Sun, 23 Jul 2000 10:38:32 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA39714; Sun, 23 Jul 2000 10:38:32 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200007231738.KAA39714@freefall.freebsd.org> From: Marcel Moolenaar Date: Sun, 23 Jul 2000 10:38:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/07/23 10:38:32 PDT Modified files: . Makefile.inc1 Log: Name all kernels 'kernel'. This fixes the incompatible behaviour of the buildkernel and installkernel targets where the kernel was called after the config name. While here, fix the brokenness of the installkernel target. It used to use ${IMAKEENV}, but since that has a very restricted PATH, it couldn't find make(1). Use ${CROSSENV} instead. Revision Changes Path 1.162 +4 -6 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 10:47:35 2000 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id 067E537B618; Sun, 23 Jul 2000 10:47:27 -0700 (PDT) (envelope-from billf@jade.chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 061DA1C6A; Sun, 23 Jul 2000 13:47:25 -0400 (EDT) Date: Sun, 23 Jul 2000 13:47:25 -0400 From: Bill Fumerola To: Steve Price Cc: David O'Brien , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/scripts print-cdrom-packages.sh Message-ID: <20000723134725.L51462@jade.chc-chimes.com> References: <200007222343.QAA36091@freefall.freebsd.org> <20000722205036.B5963@bonsai.hiwaay.net> <20000722190128.A48362@dragon.nuxi.com> <20000723122748.D5963@bonsai.hiwaay.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20000723122748.D5963@bonsai.hiwaay.net>; from sprice@hiwaay.net on Sun, Jul 23, 2000 at 12:27:48PM -0500 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 23, 2000 at 12:27:48PM -0500, Steve Price wrote: > # > +CDROM_SET_1="${CDROM_SET_1} ftp/ncftp" > # > +CDROM_SET_1="${CDROM_SET_1} ftp/ncftp2" > # > +CDROM_SET_1="${CDROM_SET_1} ftp/ncftp3" > # > # I know people that still use each version. :-( > > Hmm... I suppose if I look hard enough I could find 'people' that > are using nearly every port so they should go on the first disc > too? :) Seriously the list of the ports that go on the first disc > should be the ones that people absolutely must have on the first > reboot. The 'nice to haves' go on discs 3 and 4. The first disc > is already overcrowded by KDE and GNOME dependencies and having > 3 versions of the same ftp client seems a needless waste to me. Agreed. GNOME/KDE are only getting bigger so we really don't need 3 versions of the same software (yes, I know the UI is different). -- Bill Fumerola - Network Architect, BOFH / Chimes, Inc. billf@chimesnet.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 10:50:58 2000 Delivered-To: cvs-all@freebsd.org Received: from bubba.whistle.com (bubba.whistle.com [207.76.205.7]) by hub.freebsd.org (Postfix) with ESMTP id CA9F937BC53; Sun, 23 Jul 2000 10:50:36 -0700 (PDT) (envelope-from archie@whistle.com) Received: (from archie@localhost) by bubba.whistle.com (8.9.3/8.9.3) id KAA17696; Sun, 23 Jul 2000 10:50:34 -0700 (PDT) (envelope-from archie) From: Archie Cobbs Message-Id: <200007231750.KAA17696@bubba.whistle.com> Subject: Re: cvs commit: src/sbin/ifconfig ifconfig.c In-Reply-To: <20000722150202.B46281@dragon.nuxi.com> from "David O'Brien" at "Jul 22, 2000 03:02:02 pm" To: obrien@FreeBSD.org Date: Sun, 23 Jul 2000 10:50:34 -0700 (PDT) Cc: Archie Cobbs , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL68 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG David O'Brien writes: > > > Since there is some opposition to this, can it be backed out of RELENG_4 > > > for 4.1-R to give it more time to be discussed? > > > > You're talking about "ifconfig" == "ifconfig -a" right..? > > > > I'm happy with whatever everybody else wants. Seems to me a > > lot of people liked it though. > > Since you got people that strongly spoke up, can we remove this from > 4.1-R? Be my guest.. -Archie ___________________________________________________________________________ Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 10:54:18 2000 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id DCB3337B626; Sun, 23 Jul 2000 10:54:07 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id KAA83890; Sun, 23 Jul 2000 10:54:03 -0700 (PDT) (envelope-from obrien) Date: Sun, 23 Jul 2000 10:54:03 -0700 From: "David O'Brien" To: Steve Price Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/scripts print-cdrom-packages.sh Message-ID: <20000723105403.A83797@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200007222343.QAA36091@freefall.freebsd.org> <20000722205036.B5963@bonsai.hiwaay.net> <20000722190128.A48362@dragon.nuxi.com> <20000723122748.D5963@bonsai.hiwaay.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000723122748.D5963@bonsai.hiwaay.net>; from sprice@hiwaay.net on Sun, Jul 23, 2000 at 12:27:48PM -0500 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 23, 2000 at 12:27:48PM -0500, Steve Price wrote: > Hmm... I suppose if I look hard enough I could find 'people' that > are using nearly every port so they should go on the first disc > too? :) We had a discussion on IRC and attempted to decide how popular and how many people we knew using the ports in this list. Not science, but we need *some* ordering to use if the available package space on disc1 decreases. > Seriously the list of the ports that go on the first disc > should be the ones that people absolutely must have on the first > reboot. The 'nice to haves' go on discs 3 and 4. The first disc > is already overcrowded by KDE and GNOME dependencies and having > 3 versions of the same ftp client seems a needless waste to me. This list + the base bits produced from ``make release'' was only about 550MB. So I don't see why it is a waste as we still need stuff to put on disc1. > BTW, I noticed a couple of more nits that are addressed with the > patch below. > Several ports (including the vim5 port) have dependencies that change > based on the value of a couple of variables that Satoshi and I use to > generate package sets. Can these scripts be committed somewhere? The reason this has happened is because JHB and I needed lists of ports to do RCs. Without this list we have no easy way to produce interm snapshots also. And BSDi had the same problem when we made the FreeBSD Toolkit. It is much harder for us (and I'll assume others) when we (the collective "we") cannot generate the list of disc1 packages in-house. > Also the ksh93 port is RESTRICTED and cannot go on any of the discs. Is the ksh93 port up to date? People have been arguing with me on IRC that Lucent has released the source code and made it free enough we could import into src/contrib/. See http://kornshell.com/ -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 10:58:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9729437B624; Sun, 23 Jul 2000 10:58:21 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA41449; Sun, 23 Jul 2000 10:58:21 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007231758.KAA41449@freefall.freebsd.org> From: SADA Kenji Date: Sun, 23 Jul 2000 10:58:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/ppxp Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/23 10:58:21 PDT Modified files: japanese/ppxp Makefile Log: USE_TCLJP macro is changed to WITH_TCLJP by reg. Noticed by: taguchi@tohoku.iij.ad.jp [ports-jp 9737] Revision Changes Path 1.6 +2 -2 ports/japanese/ppxp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 10:59:27 2000 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 4870D37B672; Sun, 23 Jul 2000 10:59:17 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id KAA83914; Sun, 23 Jul 2000 10:58:57 -0700 (PDT) (envelope-from obrien) Date: Sun, 23 Jul 2000 10:58:57 -0700 From: "David O'Brien" To: Bill Fumerola Cc: Steve Price , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/scripts print-cdrom-packages.sh Message-ID: <20000723105857.B83797@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200007222343.QAA36091@freefall.freebsd.org> <20000722205036.B5963@bonsai.hiwaay.net> <20000722190128.A48362@dragon.nuxi.com> <20000723122748.D5963@bonsai.hiwaay.net> <20000723134725.L51462@jade.chc-chimes.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000723134725.L51462@jade.chc-chimes.com>; from billf@chimesnet.com on Sun, Jul 23, 2000 at 01:47:25PM -0400 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 23, 2000 at 01:47:25PM -0400, Bill Fumerola wrote: > > is already overcrowded by KDE and GNOME dependencies and having > > 3 versions of the same ftp client seems a needless waste to me. > > Agreed. GNOME/KDE are only getting bigger so we really don't need > 3 versions of the same software (yes, I know the UI is different). And fucntionality. Geez people the three versions of Ncftp together are only 332KB with 202KB of it being the latest version and thus the minimal one that would be on this list. Go find one of the bloatware ports to argue about rather than this 130KB. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 11:17:42 2000 Delivered-To: cvs-all@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id CD27D37B6C7; Sun, 23 Jul 2000 11:17:33 -0700 (PDT) (envelope-from steve@hiwaay.net) Received: from hiwaay.net (tnt6-216-180-4-58.dialup.HiWAAY.net [216.180.4.58]) by mail.hiwaay.net (8.11.0/8.11.0) with ESMTP id e6NIHVP29455; Sun, 23 Jul 2000 13:17:31 -0500 (CDT) Received: (from steve@localhost) by hiwaay.net (8.9.3/8.9.3) id NAA81955; Sun, 23 Jul 2000 13:17:30 -0500 (CDT) (envelope-from steve) Date: Sun, 23 Jul 2000 13:17:30 -0500 From: Steve Price To: "David O'Brien" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/scripts print-cdrom-packages.sh Message-ID: <20000723131730.E5963@bonsai.hiwaay.net> References: <200007222343.QAA36091@freefall.freebsd.org> <20000722205036.B5963@bonsai.hiwaay.net> <20000722190128.A48362@dragon.nuxi.com> <20000723122748.D5963@bonsai.hiwaay.net> <20000723105403.A83797@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000723105403.A83797@dragon.nuxi.com>; from obrien@FreeBSD.org on Sun, Jul 23, 2000 at 10:54:03AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 23, 2000 at 10:54:03AM -0700, David O'Brien wrote: # We had a discussion on IRC and attempted to decide how popular and how # many people we knew using the ports in this list. Not science, but we # need *some* ordering to use if the available package space on disc1 # decreases. I agree having some ordering is a good thing. I'm just not convinced that the mechanism used was the best way. Since I haven't thought of a better way, I'll slink away and search for it. :) # This list + the base bits produced from ``make release'' was only about # 550MB. So I don't see why it is a waste as we still need stuff to put on # disc1. How big are the base bits? I have 440MB of packages on the first disc right now. # Can these scripts be committed somewhere? The reason this has happened What scripts? The ones that we (Satoshi and I) use to build packages are already in ports/Tools/portbuild/*. Mine are a slight variant of those (I only have two scripts really) that are tuned more towards my having only one Alpha machine to build packages on. If you are talking about the package splitting scripts, then you can find lots of copies of them in bento.freebsd.org:/b/steve/*. I intend to commit them one day but haven't found the time to clean them up to the point where someone besides me can get them to work. # is because JHB and I needed lists of ports to do RCs. Without this list # we have no easy way to produce interm snapshots also. And BSDi had the # same problem when we made the FreeBSD Toolkit. It is much harder for us # (and I'll assume others) when we (the collective "we") cannot generate # the list of disc1 packages in-house. # # > Also the ksh93 port is RESTRICTED and cannot go on any of the discs. # # Is the ksh93 port up to date? People have been arguing with me on IRC # that Lucent has released the source code and made it free enough we could # import into src/contrib/. See http://kornshell.com/ My ksh93 port is up-to-date and it still has RESTRICTED in it. If we can distribute these bits now, then someone needs to update the port to reflect it. -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 12:10: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 781FC37B58F; Sun, 23 Jul 2000 12:10:01 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA49065; Sun, 23 Jul 2000 12:10:01 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007231910.MAA49065@freefall.freebsd.org> From: "David E. O'Brien" Date: Sun, 23 Jul 2000 12:10:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/cproto Makefile ports/devel/cproto/patches patch-system.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/23 12:10:01 PDT Modified files: devel/cproto Makefile Added files: devel/cproto/patches patch-system.h Log: Bump up the sizes of some things to match reality on Unix systems. Submitted by: Bram Moolenaar Revision Changes Path 1.3 +3 -2 ports/devel/cproto/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 12:17:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 480EA37B56D; Sun, 23 Jul 2000 12:17:23 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA49677; Sun, 23 Jul 2000 12:17:23 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007231917.MAA49677@freefall.freebsd.org> From: "David E. O'Brien" Date: Sun, 23 Jul 2000 12:17:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/ncftp Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/23 12:17:23 PDT Modified files: ftp/ncftp Makefile Log: Allow this to co-exist with the other NcFTP packages in the 'Latest' directory. Revision Changes Path 1.16 +3 -3 ports/ftp/ncftp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 12:51:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 29D0737B624; Sun, 23 Jul 2000 12:51:34 -0700 (PDT) (envelope-from ben@FreeBSD.org) Received: (from ben@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA52151; Sun, 23 Jul 2000 12:51:33 -0700 (PDT) (envelope-from ben@FreeBSD.org) Message-Id: <200007231951.MAA52151@freefall.freebsd.org> From: Ben Smithurst Date: Sun, 23 Jul 2000 12:51:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/ppp-and-slip chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ben 2000/07/23 12:51:31 PDT Modified files: en_US.ISO_8859-1/books/handbook/ppp-and-slip chapter.sgml Log: Clarify that 'ifconfig -a' might not show an tun devices in recent releases, and that they are dynamically created. PR: 20107 Noticed by: George Russell Revision Changes Path 1.27 +14 -1 doc/en_US.ISO_8859-1/books/handbook/ppp-and-slip/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 12:55:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F17A137B820; Sun, 23 Jul 2000 12:55:16 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA52603; Sun, 23 Jul 2000 12:55:16 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Message-Id: <200007231955.MAA52603@freefall.freebsd.org> From: Matt Dillon Date: Sun, 23 Jul 2000 12:55:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys rfork.2 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dillon 2000/07/23 12:55:16 PDT Modified files: (Branch: RELENG_4) lib/libc/sys rfork.2 Log: Clarify RFMEM operation for rfork, which in fact clones the entire address space (whether segments are shared or not), and does NOT split the stack. Revision Changes Path 1.11.2.3 +22 -7 src/lib/libc/sys/rfork.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 13:14:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CDE7037BBAF; Sun, 23 Jul 2000 13:14:36 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA55382; Sun, 23 Jul 2000 13:14:36 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200007232014.NAA55382@freefall.freebsd.org> From: John Baldwin Date: Sun, 23 Jul 2000 13:14:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/sysinstall menus.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/07/23 13:14:36 PDT Modified files: (Branch: RELENG_4) release/sysinstall menus.c Log: MFC: Update mouse menu text: "4" -> "6". Approved by: jkh Revision Changes Path 1.252.2.13 +1 -1 src/release/sysinstall/menus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 13:26: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 44C8437B7B1; Sun, 23 Jul 2000 13:26:05 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: (from wilko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA56109; Sun, 23 Jul 2000 13:26:05 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Message-Id: <200007232026.NAA56109@freefall.freebsd.org> From: Wilko Bulte Date: Sun, 23 Jul 2000 13:26:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts/alpha INSTALL.TXT X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wilko 2000/07/23 13:26:05 PDT Modified files: (Branch: RELENG_4) release/texts/alpha INSTALL.TXT Log: Remove the 'going nowhere' warning as this belongs in the RELNOTES only Revision Changes Path 1.6.2.3 +1 -8 src/release/texts/alpha/INSTALL.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 14:30:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 32D0A37B90D; Sun, 23 Jul 2000 14:30:36 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA61861; Sun, 23 Jul 2000 14:30:36 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200007232130.OAA61861@freefall.freebsd.org> From: Marcel Moolenaar Date: Sun, 23 Jul 2000 14:30:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/07/23 14:30:36 PDT Modified files: . Makefile.inc1 Log: Argh... mtree has been removed from the bootstrap-tools. In that case we need to save it in installworld. That latter I forgot... Pointy hat: me Revision Changes Path 1.163 +3 -3 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 14:37:49 2000 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id 3430737B8E7; Sun, 23 Jul 2000 14:37:42 -0700 (PDT) Date: Sun, 23 Jul 2000 14:37:42 -0700 From: "Andrey A. Chernov" To: Marcel Moolenaar Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000723143740.A70582@freebsd.org> References: <200007231633.JAA33796@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <200007231633.JAA33796@freefall.freebsd.org>; from marcel@FreeBSD.org on Sun, Jul 23, 2000 at 09:33:00AM -0700 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 23, 2000 at 09:33:00AM -0700, Marcel Moolenaar wrote: > marcel 2000/07/23 09:33:00 PDT > > Modified files: > etc Makefile > include Makefile > release Makefile > release/picobsd/build Makefile.mfs > release/picobsd/custom Makefile.mfs > release/picobsd/dial Makefile.mfs > release/picobsd/install Makefile.mfs > Log: > Backout addition of -L switch to mtree. Using -L breaks the > build process in too many cases. Adding mtree to bootstrap-tools > to solve this breaks the upgrade path because mtree needs a > libc that has strtofflags and fflagstostr. It should be immediately backed out. System security now under risk for admins who use symlinks to /tmp or /var/mail f.e. Proper way of fixing will be to cvs add strtofflags file to mtree subdir. Why to fix the bug by breaking in another place? BTW, I even was not asked before my changes are backed out, it is very bad style for commiter that should be avoided. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 14:47:16 2000 Delivered-To: cvs-all@freebsd.org Received: from burka.rdy.com (burka.rdy.com [205.149.189.91]) by hub.freebsd.org (Postfix) with ESMTP id A1F0C37B9D1; Sun, 23 Jul 2000 14:47:07 -0700 (PDT) (envelope-from dima@laptop.rdy.com) Received: from laptop.rdy.com (mg-20425426-113.ricochet.net [204.254.26.113]) by burka.rdy.com (8.9.3/8.9.3) with ESMTP id OAA05390; Sun, 23 Jul 2000 14:47:02 -0700 (PDT) (envelope-from dima@laptop.rdy.com) Received: (from dima@localhost) by laptop.rdy.com (8.9.3/8.9.3) id OAA10551; Sun, 23 Jul 2000 14:46:48 -0700 (PDT) (envelope-from dima) Message-Id: <200007232146.OAA10551@laptop.rdy.com> Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs In-Reply-To: <20000723143740.A70582@freebsd.org> "from Andrey A. Chernov at Jul 23, 2000 02:37:42 pm" To: "Andrey A. Chernov" Date: Sun, 23 Jul 2000 14:46:47 -0700 (PDT) Cc: Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Class: Fast Organization: HackerDome Reply-To: dima@rdy.com From: dima@rdy.com (Dima Ruban) X-Mailer: ELM [version 2.4ME+ PL77 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Andrey A. Chernov writes: > It should be immediately backed out. System security now under risk for > admins who use symlinks to /tmp or /var/mail f.e. Proper way of fixing will > be to cvs add strtofflags file to mtree subdir. Why to fix the bug by > breaking in another place? > > BTW, I even was not asked before my changes are backed out, it is very bad > style for commiter that should be avoided. While I agree with you that generally committer should be asked to back out his own changes, I don't exactly understand what changes that you've made are you talking about? color ls? Bunch of people including myself have asked you to back 'em out.... > > -- > Andrey A. Chernov > > http://ache.pp.ru/ > > -- dima To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 14:50:29 2000 Delivered-To: cvs-all@freebsd.org Received: from zippy.osd.bsdi.com (zippy.osd.bsdi.com [204.216.27.228]) by hub.freebsd.org (Postfix) with ESMTP id 6342F37BB6A; Sun, 23 Jul 2000 14:50:25 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) Received: from localhost (jkh@localhost [127.0.0.1]) by zippy.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id OAA15540; Sun, 23 Jul 2000 14:50:14 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) To: obrien@FreeBSD.org Cc: Steve Price , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/scripts print-cdrom-packages.sh In-reply-to: Your message of "Sun, 23 Jul 2000 10:54:03 PDT." <20000723105403.A83797@dragon.nuxi.com> Date: Sun, 23 Jul 2000 14:50:14 -0700 Message-ID: <15537.964389014@localhost> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > We had a discussion on IRC and attempted to decide how popular and how > many people we knew using the ports in this list. Not science, but we > need *some* ordering to use if the available package space on disc1 > decreases. I think there is still a good argument behind standardizing on ONE version of a given tool and not try for the vector of "all versions of all popular tools" or we're just screwing ourselves. With ncftp, a can of worms was opened which should simply be immediately closed by picking one release of ncftp and sticking with it. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 14:53:52 2000 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id ADCE737B9D1; Sun, 23 Jul 2000 14:53:49 -0700 (PDT) Date: Sun, 23 Jul 2000 14:53:49 -0700 From: "Andrey A. Chernov" To: Dima Ruban Cc: Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000723145349.A76085@freebsd.org> References: <20000723143740.A70582@freebsd.org> <200007232146.OAA10551@laptop.rdy.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <200007232146.OAA10551@laptop.rdy.com>; from dima@rdy.com on Sun, Jul 23, 2000 at 02:46:47PM -0700 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 23, 2000 at 02:46:47PM -0700, Dima Ruban wrote: > > > > BTW, I even was not asked before my changes are backed out, it is very bad > > style for commiter that should be avoided. > > While I agree with you that generally committer should be asked to back out > his own changes, I don't exactly understand what changes that you've made are > you talking about? color ls? Bunch of people including myself have asked you > to back 'em out.... 1) color ls is not relevant to current topic at all. 2) I not advocate for color ls changes, talk with asami & others. I just fix the way it implemented. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 14:55:18 2000 Delivered-To: cvs-all@freebsd.org Received: from zippy.osd.bsdi.com (zippy.osd.bsdi.com [204.216.27.228]) by hub.freebsd.org (Postfix) with ESMTP id 4AA0937BA3F; Sun, 23 Jul 2000 14:55:15 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) Received: from localhost (jkh@localhost [127.0.0.1]) by zippy.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id OAA15592; Sun, 23 Jul 2000 14:55:03 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) To: obrien@FreeBSD.org Cc: Bill Fumerola , Steve Price , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/scripts print-cdrom-packages.sh In-reply-to: Your message of "Sun, 23 Jul 2000 10:58:57 PDT." <20000723105857.B83797@dragon.nuxi.com> Date: Sun, 23 Jul 2000 14:55:03 -0700 Message-ID: <15589.964389303@localhost> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > And fucntionality. Geez people the three versions of Ncftp together are > only 332KB with 202KB of it being the latest version and thus the minimal See my other mail - this isn't about size, this is about determining a correct methodology for adding things to this file. Since this file has just begun its life and we're trying to get people to "sign up" to the concept, that methodology IS very important right now and that's what we're arguing about, not the measly 130K. In any case, I don't want a bike-shed discussion over this and it's my file, so I'm just going to dive in and make it conform to the minimalist principles I'd intended for it. I'm cutting the Gordian knot in this discussion. :) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 14:58: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from zippy.osd.bsdi.com (zippy.osd.bsdi.com [204.216.27.228]) by hub.freebsd.org (Postfix) with ESMTP id 428DF37B694; Sun, 23 Jul 2000 14:57:55 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) Received: from localhost (jkh@localhost [127.0.0.1]) by zippy.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id OAA15621; Sun, 23 Jul 2000 14:57:27 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) To: Steve Price Cc: "David O'Brien" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/scripts print-cdrom-packages.sh In-reply-to: Your message of "Sun, 23 Jul 2000 13:17:30 CDT." <20000723131730.E5963@bonsai.hiwaay.net> Date: Sun, 23 Jul 2000 14:57:26 -0700 Message-ID: <15618.964389446@localhost> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > If you are talking about the package splitting scripts, then you can > find lots of copies of them in bento.freebsd.org:/b/steve/*. I intend > to commit them one day but haven't found the time to clean them up to > the point where someone besides me can get them to work. As your personal devil on this one, would you mind if I aimed somebody here at that task in hopes that they might be able to accomplish by brute force what you might have accomplished with more subtlety if you actually had the time? :-) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 15: 9:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A5F637BB0C; Sun, 23 Jul 2000 15:09:33 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA65526; Sun, 23 Jul 2000 15:09:33 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200007232209.PAA65526@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Sun, 23 Jul 2000 15:09:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/scripts print-cdrom-packages.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/07/23 15:09:33 PDT Modified files: release/scripts print-cdrom-packages.sh Log: Brutally cull the duplicated and the redundant. The purpose of this file is to provide a *minimum* set of packages which absolutely should be on CD #1, not to represent the most popular choices by poll. This means the set of packages which, at 3am in some dark POP, provide an administrator/user with the most basic functionality required to get their job done. If someone would like to make a list of the most popular add-ons, that can be stored in another location and possibly printed by this script with an additional flag (-p or something) which indicates you have lots of space and are looking for minimum + popular packages. By sticking to this philosophy, we can ensure that "minimum" remains something which can fit on a single CDROM for a very long time and minimum + popular can eventually be the DVD target. This is also why I also made this a script and not a static list of packages in a text file. It allows the mechanism to be extended in more divisible and comprehensible Unix-like ways rather than just lumping everything together and trying to separate it out by hand later. :) Revision Changes Path 1.6 +3 -9 src/release/scripts/print-cdrom-packages.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 15:13: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id A8E4837B9F8; Sun, 23 Jul 2000 15:12:40 -0700 (PDT) (envelope-from green@FreeBSD.org) Date: Sun, 23 Jul 2000 18:12:18 -0400 (EDT) From: Brian Fundakowski Feldman X-Sender: green@green.dyndns.org To: Alfred Perlstein Cc: Mike Smith , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern imgact_elf.c In-Reply-To: <20000723063005.L13979@fw.wintelcom.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 23 Jul 2000, Alfred Perlstein wrote: > * Alfred Perlstein [000723 06:28] wrote: > > * Mike Smith [000723 01:01] wrote: > > > > I'm also concerned that you're using atomic_set_long() rather than > > > > or'ing the flag in, there doesn't seem to be a flag in vnode.h that > > > > could possibly co-exist with VTEXT but clearing all other flags > > > > introduces an unexpected side-effect. > > > > > > Er, atomic_set_long is a bit-set operation. > > > > It's still overly paranoid. > > And yet another place where we've used bad function names to describe > something. (would atomic_or_long have been so hard?) Heh, I said exactly that yesterday :) Then again, a "set" operation, being "=", is absolutely no use when the the long type is always atomic on every platform we support ;) Anyway, I discussed it with Peter and he said that taking the vnode.v_interlock was overkill for this... now that I think about it, I really want it to take the interlock like it did before. Other places that modify unlocked vnodes' flags use the interlock, and now I'm considering the fact that even if in this one place we use the atomic operations, if all the others use a simplelock() but still use non-atomic operations, the race condition isn't fixed. Bleh! > -- > -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] > "I have the heart of a child; I keep it in a jar on my desk." -- Brian Fundakowski Feldman \ FreeBSD: The Power to Serve! / green@FreeBSD.org `------------------------------' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 15:19:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 10D3237B90D; Sun, 23 Jul 2000 15:19:50 -0700 (PDT) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA66353; Sun, 23 Jul 2000 15:19:49 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200007232219.PAA66353@freefall.freebsd.org> From: Brian Feldman Date: Sun, 23 Jul 2000 15:19:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern imgact_elf.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/07/23 15:19:49 PDT Modified files: sys/kern imgact_elf.c Log: Using an atomic operation here won't help if nobody else uses them (for this). Use the simple_lock() on v_interlock like elsewhere. Revision Changes Path 1.78 +4 -3 src/sys/kern/imgact_elf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 15:29:37 2000 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id D281D37BB8A; Sun, 23 Jul 2000 15:29:33 -0700 (PDT) Date: Sun, 23 Jul 2000 15:29:33 -0700 From: "Andrey A. Chernov" To: Marcel Moolenaar Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000723152933.A87987@freebsd.org> References: <200007231633.JAA33796@freefall.freebsd.org> <20000723143740.A70582@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <20000723143740.A70582@freebsd.org>; from ache@freebsd.org on Sun, Jul 23, 2000 at 02:37:42PM -0700 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 23, 2000 at 02:37:42PM -0700, Andrey A. Chernov wrote: > > build process in too many cases. Adding mtree to bootstrap-tools > > to solve this breaks the upgrade path because mtree needs a > > libc that has strtofflags and fflagstostr. > > It should be immediately backed out. System security now under risk for > admins who use symlinks to /tmp or /var/mail f.e. Proper way of fixing will > be to cvs add strtofflags file to mtree subdir. Why to fix the bug by > breaking in another place? > I am not sure I suggest right fix, but 'make world' definitely works before imp@freebsd.org mtree Makefile changes, so this is not -L problem at all. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 15:57:28 2000 Delivered-To: cvs-all@freebsd.org Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 32BCF37BB01; Sun, 23 Jul 2000 15:56:54 -0700 (PDT) (envelope-from green@FreeBSD.org) Date: Sun, 23 Jul 2000 18:56:25 -0400 (EDT) From: Brian Fundakowski Feldman X-Sender: green@green.dyndns.org To: Marcel Moolenaar Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/linux linux_misc.c linux_util.c linux_util.h In-Reply-To: <200007231654.JAA35253@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 23 Jul 2000, Marcel Moolenaar wrote: > marcel 2000/07/23 09:54:19 PDT > > Modified files: > sys/i386/linux linux_misc.c linux_util.c linux_util.h > Log: > Add bounds checking to stackgap_alloc. Previously it was possible > to construct a path that was long enough (ie longer than > SPARE_USRSPACE bytes) and trash the stack. > > Note that SPARE_USRSPACE is much smaller than MAXPATHLEN so that > the Linuxulator will now return ENAMETOOLONG even if the path > is smaller than MAXPATHLEN. Have you thought about simply doing a simple allocation (vm_mmap() will do) of a block of data, creating a linux_emuldata to point the proc.p_emuldata to, sticking a reference to the vm_object there, mapping that page into kmem_map (and keeping an easy-to-use reference address to the userland address, of course) and using it instead of the stackgap? You'd have to do it per-process, even for LinuxThreads, and an idiot user could unmap it (but that would just cause namei() to EFAULT) and shoot themselves in the foot... You lose a page of memory (wired :-/) per Linux process, but you gain better code and the ability to properly use the entire size of a path for the Linux code. Another possibility is to use the upages, which makes it pretty simple, too :) In any case, let's find a better solution than using stackgap at all. -- Brian Fundakowski Feldman \ FreeBSD: The Power to Serve! / green@FreeBSD.org `------------------------------' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 16:20: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from mercury.mich.com (mercury.mich.com [64.79.64.32]) by hub.freebsd.org (Postfix) with ESMTP id BA72337B9CA; Sun, 23 Jul 2000 16:19:53 -0700 (PDT) (envelope-from will@almanac.yi.org) Received: from argon.gryphonsoft.com (pm014-015.dialup.bignet.net [64.79.82.127]) by mercury.mich.com (8.9.3/8.9.3) with ESMTP id TAA05482; Sun, 23 Jul 2000 19:18:34 -0400 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id 8DAC9197E; Sun, 23 Jul 2000 18:57:08 -0400 (EDT) Date: Sun, 23 Jul 2000 18:57:08 -0400 From: Will Andrews To: "Andrey A. Chernov" Cc: Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000723185708.I47967@argon.gryphonsoft.com> References: <200007231633.JAA33796@freefall.freebsd.org> <20000723143740.A70582@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000723143740.A70582@freebsd.org>; from ache@FreeBSD.org on Sun, Jul 23, 2000 at 02:37:42PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 23, 2000 at 02:37:42PM -0700, Andrey A. Chernov wrote: > BTW, I even was not asked before my changes are backed out, it is very bad > style for commiter that should be avoided. I believe it was you who committed the -L flag and added it to the build without testing your changes. Considering the proximity of the release, this is a Very Bad Thing (tm). WE NEED A WORKING RELEASE AND WE NEED IT NOW! Otherwise, I'm sure you would have been asked to back it out. -- Will Andrews GCS/E/S @d- s+:+>+:- a--->+++ C++ UB++++ P+ L- E--- W+++ !N !o ?K w--- ?O M+ V-- PS+ PE++ Y+ PGP+>+++ t++ 5 X++ R+ tv+ b++>++++ DI+++ D+ G++>+++ e->++++ h! r-->+++ y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 16:45:22 2000 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 9ED6C37B628; Sun, 23 Jul 2000 16:45:13 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id QAA86785; Sun, 23 Jul 2000 16:45:11 -0700 (PDT) (envelope-from obrien) Date: Sun, 23 Jul 2000 16:45:11 -0700 From: "David O'Brien" To: Archie Cobbs Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/ifconfig ifconfig.c Message-ID: <20000723164511.B86670@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20000722150202.B46281@dragon.nuxi.com> <200007231750.KAA17696@bubba.whistle.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200007231750.KAA17696@bubba.whistle.com>; from archie@whistle.com on Sun, Jul 23, 2000 at 10:50:34AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 23, 2000 at 10:50:34AM -0700, Archie Cobbs wrote: > David O'Brien writes: > > > > Since there is some opposition to this, can it be backed out of RELENG_4 > > > > for 4.1-R to give it more time to be discussed? > > > You're talking about "ifconfig" == "ifconfig -a" right..? > > > I'm happy with whatever everybody else wants. Seems to me a > > > lot of people liked it though. > > > > Since you got people that strongly spoke up, can we remove this from > > 4.1-R? > Be my guest.. I thought you said you were willing to. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 16:46:41 2000 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id B3CD037BBF1; Sun, 23 Jul 2000 16:46:37 -0700 (PDT) Date: Sun, 23 Jul 2000 16:46:37 -0700 From: "Andrey A. Chernov" To: Will Andrews Cc: Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000723164637.A26164@freebsd.org> References: <200007231633.JAA33796@freefall.freebsd.org> <20000723143740.A70582@freebsd.org> <20000723185708.I47967@argon.gryphonsoft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <20000723185708.I47967@argon.gryphonsoft.com>; from andrews@technologist.com on Sun, Jul 23, 2000 at 06:57:08PM -0400 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 23, 2000 at 06:57:08PM -0400, Will Andrews wrote: > On Sun, Jul 23, 2000 at 02:37:42PM -0700, Andrey A. Chernov wrote: > > BTW, I even was not asked before my changes are backed out, it is very bad > > style for commiter that should be avoided. > > I believe it was you who committed the -L flag and added it to the build > without testing your changes. Considering the proximity of the release, Several hours of waiting not means "without testing". After I finish, 'make world' and 'make installworld' both works. There is next non-mine changes which broke it. > this is a Very Bad Thing (tm). WE NEED A WORKING RELEASE AND WE NEED IT > NOW! Otherwise, I'm sure you would have been asked to back it out. You miss something. This whole issue is about 5.0-current only, not about 4-release. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 16:48:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D28F137B885; Sun, 23 Jul 2000 16:48:44 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Received: (from nsayer@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA74198; Sun, 23 Jul 2000 16:48:45 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Message-Id: <200007232348.QAA74198@freefall.freebsd.org> From: Nick Sayer Date: Sun, 23 Jul 2000 16:48:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/apm apm.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nsayer 2000/07/23 16:48:44 PDT Modified files: (Branch: RELENG_4) usr.sbin/apm apm.c Log: MFC: apm -d requres writable file descriptor Approved by: jkh Revision Changes Path 1.22.2.2 +2 -2 src/usr.sbin/apm/apm.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 16:51:35 2000 Delivered-To: cvs-all@freebsd.org Received: from mercury.mich.com (mercury.mich.com [64.79.64.32]) by hub.freebsd.org (Postfix) with ESMTP id 43FDD37BC0A; Sun, 23 Jul 2000 16:51:30 -0700 (PDT) (envelope-from will@almanac.yi.org) Received: from argon.gryphonsoft.com (pm014-015.dialup.bignet.net [64.79.82.127]) by mercury.mich.com (8.9.3/8.9.3) with ESMTP id TAA10385; Sun, 23 Jul 2000 19:50:10 -0400 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id 8826D19B1; Sun, 23 Jul 2000 19:48:37 -0400 (EDT) Date: Sun, 23 Jul 2000 19:48:37 -0400 From: Will Andrews To: "Andrey A. Chernov" Cc: Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000723194837.M47967@argon.gryphonsoft.com> References: <200007231633.JAA33796@freefall.freebsd.org> <20000723143740.A70582@freebsd.org> <20000723185708.I47967@argon.gryphonsoft.com> <20000723164637.A26164@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000723164637.A26164@freebsd.org>; from ache@FreeBSD.org on Sun, Jul 23, 2000 at 04:46:37PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 23, 2000 at 04:46:37PM -0700, Andrey A. Chernov wrote: > You miss something. This whole issue is about 5.0-current only, not about > 4-release. *blush* Oops, I'm sorry I flamed you unjustly. :-( -- Will Andrews GCS/E/S @d- s+:+>+:- a--->+++ C++ UB++++ P+ L- E--- W+++ !N !o ?K w--- ?O M+ V-- PS+ PE++ Y+ PGP+>+++ t++ 5 X++ R+ tv+ b++>++++ DI+++ D+ G++>+++ e->++++ h! r-->+++ y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 17:10:24 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id ACE1737BBA9; Sun, 23 Jul 2000 17:10:15 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id SAA17367; Sun, 23 Jul 2000 18:10:13 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id SAA75465; Sun, 23 Jul 2000 18:09:59 -0600 (MDT) Message-Id: <200007240009.SAA75465@harmony.village.org> To: "Andrey A. Chernov" Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Cc: Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Sun, 23 Jul 2000 15:29:33 PDT." <20000723152933.A87987@freebsd.org> References: <20000723152933.A87987@freebsd.org> <200007231633.JAA33796@freefall.freebsd.org> <20000723143740.A70582@freebsd.org> Date: Sun, 23 Jul 2000 18:09:59 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <20000723152933.A87987@freebsd.org> "Andrey A. Chernov" writes: : I am not sure I suggest right fix, but 'make world' definitely works before : imp@freebsd.org mtree Makefile changes, so this is not -L problem at all. MAKE WORLD WAS BROKEN BEFORE I DID THE MTREE MAKEFILE CHANGES. BUILDING FROM A -STABLE SYSTEM DID NOT WORK AT ALL. IT BROKE WHEN WE TRIED TO BUILD MTREE, LESS THAN 1 MINUTE INTO A MAKE BUILDWORLD ON ANY -STABLE OR 4.0R MACHINE. Ah, now that I'm done shouting... There are several problems here. First, someone move the strtofflag back into libc, which broke the ability to build mtree on older systems. Second, mtree was broken to be incompatible with the old way of doing things so the -L flag was added to it and integrated into the build. Third, older systems didn't have mtree -L on them, so it was added to the list of build toold. When it was added to the list of build tools, it would then fail to build on the older systems. So, I went it and got a big club and committed a change to make the damn thing compile on older (read 4.0R and -stable) systems. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 17:11:52 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id ABBA437B9CA; Sun, 23 Jul 2000 17:11:39 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id SAA17383; Sun, 23 Jul 2000 18:11:34 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id SAA75502; Sun, 23 Jul 2000 18:11:20 -0600 (MDT) Message-Id: <200007240011.SAA75502@harmony.village.org> To: Will Andrews Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Cc: "Andrey A. Chernov" , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Sun, 23 Jul 2000 19:48:37 EDT." <20000723194837.M47967@argon.gryphonsoft.com> References: <20000723194837.M47967@argon.gryphonsoft.com> <200007231633.JAA33796@freefall.freebsd.org> <20000723143740.A70582@freebsd.org> <20000723185708.I47967@argon.gryphonsoft.com> <20000723164637.A26164@freebsd.org> Date: Sun, 23 Jul 2000 18:11:20 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <20000723194837.M47967@argon.gryphonsoft.com> Will Andrews writes: : On Sun, Jul 23, 2000 at 04:46:37PM -0700, Andrey A. Chernov wrote: : > You miss something. This whole issue is about 5.0-current only, not about : > 4-release. : : *blush* : : Oops, I'm sorry I flamed you unjustly. :-( It isn't a release issue, but it is an issue for those people going from 4.x -> 5.0. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 17:21:39 2000 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id 935A837B5B1; Sun, 23 Jul 2000 17:21:30 -0700 (PDT) Date: Sun, 23 Jul 2000 17:21:30 -0700 From: "Andrey A. Chernov" To: Warner Losh Cc: Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000723172130.A33448@freebsd.org> References: <20000723152933.A87987@freebsd.org> <200007231633.JAA33796@freefall.freebsd.org> <20000723143740.A70582@freebsd.org> <20000723152933.A87987@freebsd.org> <200007240009.SAA75465@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <200007240009.SAA75465@harmony.village.org>; from imp@village.org on Sun, Jul 23, 2000 at 06:09:59PM -0600 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > BUILDING FROM A -STABLE SYSTEM DID NOT WORK AT ALL. IT BROKE WHEN WE As I remember, 'make world' on -CURRENT is treated as enough test for -current changes, not 'make world' from 3.0 or from 4.0. We have special people who's area is upgrade issues and they must SOLVE such sort of conflicts, and not BACKING OUT changes. > There are several problems here. First, someone move the strtofflag Please solve them somehow without backing out changes without a purpose related to changes itself. > systems. Second, mtree was broken to be incompatible with the old way Wrong. Mtree becomes compatible to old way back as designed. See mtree history. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 17:41:28 2000 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id 4EEC937B80A; Sun, 23 Jul 2000 17:41:25 -0700 (PDT) Date: Sun, 23 Jul 2000 17:41:25 -0700 From: "Andrey A. Chernov" To: Warner Losh Cc: Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000723174125.A38154@freebsd.org> References: <20000723194837.M47967@argon.gryphonsoft.com> <200007231633.JAA33796@freefall.freebsd.org> <20000723143740.A70582@freebsd.org> <20000723185708.I47967@argon.gryphonsoft.com> <20000723164637.A26164@freebsd.org> <20000723194837.M47967@argon.gryphonsoft.com> <200007240011.SAA75502@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <200007240011.SAA75502@harmony.village.org>; from imp@village.org on Sun, Jul 23, 2000 at 06:11:20PM -0600 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 23, 2000 at 06:11:20PM -0600, Warner Losh wrote: > In message <20000723194837.M47967@argon.gryphonsoft.com> Will Andrews writes: > : On Sun, Jul 23, 2000 at 04:46:37PM -0700, Andrey A. Chernov wrote: > : > You miss something. This whole issue is about 5.0-current only, not about > : > 4-release. > : > : *blush* > : > : Oops, I'm sorry I flamed you unjustly. :-( > > It isn't a release issue, but it is an issue for those people going > from 4.x -> 5.0. This reason is not enough for not asking me first. Please you and Marcel come in agreement on this subj. with my changes returned in most suitable for upgrade form from your point of view. What I do I do strict in the scope of allowed actions and I am not responsible of other people area. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 18: 9:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5F9FC37B7AD; Sun, 23 Jul 2000 18:09:55 -0700 (PDT) (envelope-from kbyanc@FreeBSD.org) Received: (from kbyanc@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA84426; Sun, 23 Jul 2000 18:09:55 -0700 (PDT) (envelope-from kbyanc@FreeBSD.org) Message-Id: <200007240109.SAA84426@freefall.freebsd.org> From: Kelly Yancey Date: Sun, 23 Jul 2000 18:09:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/gsnes9x Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kbyanc 2000/07/23 18:09:55 PDT Modified files: emulators/gsnes9x Makefile Log: Add dependency on gnome. Submitted by: asmodai Revision Changes Path 1.2 +2 -1 ports/emulators/gsnes9x/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 18:30:11 2000 Delivered-To: cvs-all@freebsd.org Received: from palrel3.hp.com (palrel3.hp.com [156.153.255.226]) by hub.freebsd.org (Postfix) with ESMTP id 2FD4737B6CE; Sun, 23 Jul 2000 18:29:59 -0700 (PDT) (envelope-from marcel@cup.hp.com) Received: from adlmail.cup.hp.com (adlmail.cup.hp.com [15.0.100.30]) by palrel3.hp.com (Postfix) with ESMTP id DC13F22C; Sun, 23 Jul 2000 18:29:58 -0700 (PDT) Received: from cup.hp.com (p1000180.nsr.hp.com [15.109.0.180]) by adlmail.cup.hp.com (8.9.3 (PHNE_18979)/8.9.3 SMKit7.02) with ESMTP id SAA16697; Sun, 23 Jul 2000 18:29:57 -0700 (PDT) Message-ID: <397B9C13.437B6E9C@cup.hp.com> Date: Sun, 23 Jul 2000 18:29:55 -0700 From: Marcel Moolenaar Organization: Hewlett-Packard X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Brian Fundakowski Feldman Cc: Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/linux linux_misc.c linux_util.c linux_util.h References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Brian Fundakowski Feldman wrote: > > In any case, let's find a better solution than using stackgap at all. > I'm not happy with stackgap either, but security has higher priority. -- Marcel Moolenaar mail: marcel@cup.hp.com / marcel@FreeBSD.org tel: (408) 447-4222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 18:41: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from palrel3.hp.com (palrel3.hp.com [156.153.255.226]) by hub.freebsd.org (Postfix) with ESMTP id 84B8037B843; Sun, 23 Jul 2000 18:40:46 -0700 (PDT) (envelope-from marcel@cup.hp.com) Received: from adlmail.cup.hp.com (adlmail.cup.hp.com [15.0.100.30]) by palrel3.hp.com (Postfix) with ESMTP id 127F8C3; Sun, 23 Jul 2000 18:40:46 -0700 (PDT) Received: from cup.hp.com (p1000180.nsr.hp.com [15.109.0.180]) by adlmail.cup.hp.com (8.9.3 (PHNE_18979)/8.9.3 SMKit7.02) with ESMTP id SAA16931; Sun, 23 Jul 2000 18:40:44 -0700 (PDT) Message-ID: <397B9E9B.3BCABA27@cup.hp.com> Date: Sun, 23 Jul 2000 18:40:43 -0700 From: Marcel Moolenaar Organization: Hewlett-Packard X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: "Andrey A. Chernov" Cc: Warner Losh , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs References: <20000723194837.M47967@argon.gryphonsoft.com> <200007231633.JAA33796@freefall.freebsd.org> <20000723143740.A70582@freebsd.org> <20000723185708.I47967@argon.gryphonsoft.com> <20000723164637.A26164@freebsd.org> <20000723194837.M47967@argon.gryphonsoft.com> <200007240011.SAA75502@harmony.village.org> <20000723174125.A38154@freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Andrey A. Chernov" wrote: > > > > > It isn't a release issue, but it is an issue for those people going > > from 4.x -> 5.0. > > This reason is not enough for not asking me first. > Please you and Marcel come > in agreement on this subj. I think we are. > with my changes returned in most suitable for > upgrade form from your point of view. What I do I do strict in the scope of > allowed actions and I am not responsible of other people area. Expecting people to manually install or copy binaries and/or libraries in order to get a build working is beyond the scope of allowed actions IMO. -- Marcel Moolenaar mail: marcel@cup.hp.com / marcel@FreeBSD.org tel: (408) 447-4222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 18:56:24 2000 Delivered-To: cvs-all@freebsd.org Received: from zippy.osd.bsdi.com (zippy.osd.bsdi.com [204.216.27.228]) by hub.freebsd.org (Postfix) with ESMTP id 1FDA837B901; Sun, 23 Jul 2000 18:56:18 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) Received: from localhost (jkh@localhost [127.0.0.1]) by zippy.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id SAA22925; Sun, 23 Jul 2000 18:56:02 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) To: Will Andrews Cc: "Andrey A. Chernov" , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs In-reply-to: Your message of "Sun, 23 Jul 2000 18:57:08 EDT." <20000723185708.I47967@argon.gryphonsoft.com> Date: Sun, 23 Jul 2000 18:56:02 -0700 Message-ID: <22922.964403762@localhost> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I believe it was you who committed the -L flag and added it to the build > without testing your changes. Considering the proximity of the release, > this is a Very Bad Thing (tm). WE NEED A WORKING RELEASE AND WE NEED IT > NOW! Otherwise, I'm sure you would have been asked to back it out. Actually, while I agree with the arguments about proper testing, this is not at all relevant to the upcoming release. These changes only apply to -current. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 18:59:39 2000 Delivered-To: cvs-all@freebsd.org Received: from zippy.osd.bsdi.com (zippy.osd.bsdi.com [204.216.27.228]) by hub.freebsd.org (Postfix) with ESMTP id C39A737B9E1; Sun, 23 Jul 2000 18:59:32 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) Received: from localhost (jkh@localhost [127.0.0.1]) by zippy.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id SAA22954; Sun, 23 Jul 2000 18:59:20 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) To: "Andrey A. Chernov" Cc: Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs In-reply-to: Your message of "Sun, 23 Jul 2000 16:46:37 PDT." <20000723164637.A26164@freebsd.org> Date: Sun, 23 Jul 2000 18:59:20 -0700 Message-ID: <22951.964403960@localhost> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Several hours of waiting not means "without testing". After I finish, 'make > world' and 'make installworld' both works. There is next non-mine changes > which broke it. Actually, it was broken right after you committed it. Your "testing" was evidently flawed in that, somehow, you managed to get an updated mtree(8) in place and jump right over the bootstrapping problem which subsequently bit everyone else. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 19:14:28 2000 Delivered-To: cvs-all@freebsd.org Received: from gateway.posi.net (c1096725-a.smateo1.sfba.home.com [24.20.139.104]) by hub.freebsd.org (Postfix) with ESMTP id BAF8537B5A8; Sun, 23 Jul 2000 19:14:24 -0700 (PDT) (envelope-from kbyanc@posi.net) Received: from localhost (kbyanc@localhost) by gateway.posi.net (8.9.3/8.9.3) with ESMTP id TAA42523; Sun, 23 Jul 2000 19:19:28 -0700 (PDT) (envelope-from kbyanc@posi.net) Date: Sun, 23 Jul 2000 19:19:26 -0700 (PDT) From: Kelly Yancey To: Munechika SUMIKAWA Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/net/mtr Makefile ports/net/mtr/files md5 In-Reply-To: <200007191505.IAA38539@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 19 Jul 2000, Munechika SUMIKAWA wrote: > sumikawa 2000/07/19 08:05:27 PDT > > Modified files: > net/mtr Makefile > net/mtr/files md5 > Log: > Upgrade IPv6 patch to 20000719. > It fixes the problem mtr does not work on IPv4-only kernel. > > PR: ports/19339 > Submitted by: kbyanc@posi.net > > Revision Changes Path > 1.25 +2 -2 ports/net/mtr/Makefile > 1.10 +1 -1 ports/net/mtr/files/md5 > > > Could you please review my original patch submitted in PR 19339 again. The version in the 20000719 kame patch still does not work with kernels compiled without IPv6 support. As such, this commit still does not fix the problem and mtr is useless unless IPv6 is compiled into the kernel. Thanks, Kelly -- Kelly Yancey - kbyanc@posi.net - Belmont, CA System Administrator, eGroups.com http://www.egroups.com/ Maintainer, BSD Driver Database http://www.posi.net/freebsd/drivers/ Coordinator, Team FreeBSD http://www.posi.net/freebsd/Team-FreeBSD/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 19:17:30 2000 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id 77DE037B5A8; Sun, 23 Jul 2000 19:17:23 -0700 (PDT) (envelope-from billf@jade.chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 6FF431C6A; Sun, 23 Jul 2000 22:17:21 -0400 (EDT) Date: Sun, 23 Jul 2000 22:17:21 -0400 From: Bill Fumerola To: Kelly Yancey Cc: Munechika SUMIKAWA , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/net/mtr Makefile ports/net/mtr/files md5 Message-ID: <20000723221721.O51462@jade.chc-chimes.com> References: <200007191505.IAA38539@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from kbyanc@posi.net on Sun, Jul 23, 2000 at 07:19:26PM -0700 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 23, 2000 at 07:19:26PM -0700, Kelly Yancey wrote: > > Modified files: > > net/mtr Makefile > > net/mtr/files md5 > > Log: > > Upgrade IPv6 patch to 20000719. > > It fixes the problem mtr does not work on IPv4-only kernel. > > > > PR: ports/19339 > > Submitted by: kbyanc@posi.net > > Could you please review my original patch submitted in PR 19339 again. The > version in the 20000719 kame patch still does not work with kernels compiled > without IPv6 support. As such, this commit still does not fix the problem and > mtr is useless unless IPv6 is compiled into the kernel. The MAINTAINER of this port compiles IPv6less kernels all the time and is not pleased with this change either. Either back it out or make it so it works for IPv4-only kernels. Thanks, -- Bill Fumerola - Network Architect, BOFH / Chimes, Inc. billf@chimesnet.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 19:23:59 2000 Delivered-To: cvs-all@freebsd.org Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 94FD037B8B2; Sun, 23 Jul 2000 19:23:46 -0700 (PDT) (envelope-from green@FreeBSD.org) Date: Sun, 23 Jul 2000 22:23:44 -0400 (EDT) From: Brian Fundakowski Feldman X-Sender: green@green.dyndns.org To: Marcel Moolenaar Cc: Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/linux linux_misc.c linux_util.c linux_util.h In-Reply-To: <397B9C13.437B6E9C@cup.hp.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 23 Jul 2000, Marcel Moolenaar wrote: > Brian Fundakowski Feldman wrote: > > > > In any case, let's find a better solution than using stackgap at all. > > > > I'm not happy with stackgap either, but security has higher priority. Absolutely! I mean, in the long term, over the next few days or weeks we can implement a better solution. :) > -- > Marcel Moolenaar > mail: marcel@cup.hp.com / marcel@FreeBSD.org > tel: (408) 447-4222 -- Brian Fundakowski Feldman \ FreeBSD: The Power to Serve! / green@FreeBSD.org `------------------------------' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 19:26:58 2000 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id 726AE37B5A8; Sun, 23 Jul 2000 19:26:55 -0700 (PDT) Date: Sun, 23 Jul 2000 19:26:55 -0700 From: "Andrey A. Chernov" To: Marcel Moolenaar Cc: Warner Losh , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000723192655.A68916@freebsd.org> References: <20000723194837.M47967@argon.gryphonsoft.com> <200007231633.JAA33796@freefall.freebsd.org> <20000723143740.A70582@freebsd.org> <20000723185708.I47967@argon.gryphonsoft.com> <20000723164637.A26164@freebsd.org> <20000723194837.M47967@argon.gryphonsoft.com> <200007240011.SAA75502@harmony.village.org> <20000723174125.A38154@freebsd.org> <397B9E9B.3BCABA27@cup.hp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <397B9E9B.3BCABA27@cup.hp.com>; from marcel@cup.hp.com on Sun, Jul 23, 2000 at 06:40:43PM -0700 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 23, 2000 at 06:40:43PM -0700, Marcel Moolenaar wrote: > > Please you and Marcel come > > in agreement on this subj. > > I think we are. Please don't forget to inform me about your agreement. Without knowing about your ideas I plan to return my changes and resolve upgrading issue in my own way. It takes time since I am not familiar with upgrading process. > Expecting people to manually install or copy binaries and/or libraries > in order to get a build working is beyond the scope of allowed actions > IMO. I not say that the problem not exist, I say that you simple did not resolve it and apparently not willing to do preferring to damage other people works instead of coming to solution which is acceptable for all. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 19:39:50 2000 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id 1540037B72C; Sun, 23 Jul 2000 19:39:47 -0700 (PDT) (envelope-from billf@jade.chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 0ADFA1C65; Sun, 23 Jul 2000 22:39:46 -0400 (EDT) Date: Sun, 23 Jul 2000 22:39:46 -0400 From: Bill Fumerola To: "Andrey A. Chernov" Cc: Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000723223945.Q51462@jade.chc-chimes.com> References: <200007231633.JAA33796@freefall.freebsd.org> <20000723143740.A70582@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20000723143740.A70582@freebsd.org>; from ache@freebsd.org on Sun, Jul 23, 2000 at 02:37:42PM -0700 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 23, 2000 at 02:37:42PM -0700, Andrey A. Chernov wrote: > It should be immediately backed out. System security now under risk for > admins who use symlinks to /tmp or /var/mail f.e. Proper way of fixing will > be to cvs add strtofflags file to mtree subdir. Why to fix the bug by > breaking in another place? > > BTW, I even was not asked before my changes are backed out, it is very bad > style for commiter that should be avoided. It is bad style to make changes that suck[1] too. -- Bill Fumerola - Network Architect, BOFH / Chimes, Inc. billf@chimesnet.com / billf@FreeBSD.org 1. Changing the the buildsystem without making a world from a fresh machine sucks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 19:49: 7 2000 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id 6499037B80E; Sun, 23 Jul 2000 19:49:05 -0700 (PDT) Date: Sun, 23 Jul 2000 19:49:05 -0700 From: "Andrey A. Chernov" To: Bill Fumerola Cc: Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000723194905.A72519@freebsd.org> References: <200007231633.JAA33796@freefall.freebsd.org> <20000723143740.A70582@freebsd.org> <20000723223945.Q51462@jade.chc-chimes.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <20000723223945.Q51462@jade.chc-chimes.com>; from billf@chimesnet.com on Sun, Jul 23, 2000 at 10:39:46PM -0400 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 23, 2000 at 10:39:46PM -0400, Bill Fumerola wrote: > It is bad style to make changes that suck[1] too. > > 1. Changing the the buildsystem without making a world from a fresh machine sucks. I already answered on this, -current 'make world' was successful on -current. To Jordan: less than half of day passed from -L added to Makefiles and 'make world' fixed. Our procedure not suppose testing upgrade from 3.0 or 4.0. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 19:53: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from burka.rdy.com (burka.rdy.com [205.149.189.91]) by hub.freebsd.org (Postfix) with ESMTP id 4615437B72C; Sun, 23 Jul 2000 19:52:52 -0700 (PDT) (envelope-from dima@laptop.rdy.com) Received: from laptop.rdy.com (mg-20425426-113.ricochet.net [204.254.26.113]) by burka.rdy.com (8.9.3/8.9.3) with ESMTP id TAA07534; Sun, 23 Jul 2000 19:52:46 -0700 (PDT) (envelope-from dima@laptop.rdy.com) Received: (from dima@localhost) by laptop.rdy.com (8.9.3/8.9.3) id TAA11044; Sun, 23 Jul 2000 19:52:31 -0700 (PDT) (envelope-from dima) Message-Id: <200007240252.TAA11044@laptop.rdy.com> Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs In-Reply-To: <20000723145349.A76085@freebsd.org> "from Andrey A. Chernov at Jul 23, 2000 02:53:49 pm" To: "Andrey A. Chernov" Date: Sun, 23 Jul 2000 19:52:29 -0700 (PDT) Cc: Dima Ruban , Marcel Moolenaar , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Class: Fast Organization: HackerDome Reply-To: dima@rdy.com From: dima@rdy.com (Dima Ruban) X-Mailer: ELM [version 2.4ME+ PL77 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Andrey A. Chernov writes: > On Sun, Jul 23, 2000 at 02:46:47PM -0700, Dima Ruban wrote: > > > > > > BTW, I even was not asked before my changes are backed out, it is very bad > > > style for commiter that should be avoided. > > > > While I agree with you that generally committer should be asked to back out > > his own changes, I don't exactly understand what changes that you've made are > > you talking about? color ls? Bunch of people including myself have asked you > > to back 'em out.... > > 1) color ls is not relevant to current topic at all. > > 2) I not advocate for color ls changes, talk with asami & others. I just fix > the way it implemented. Asami et all suggested to merge it into 4.x? Somehow I've missed this suggestion .... > > -- > Andrey A. Chernov > > http://ache.pp.ru/ > > -- dima To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 19:57:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CC5B837B72C; Sun, 23 Jul 2000 19:57:27 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA94722; Sun, 23 Jul 2000 19:57:27 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200007240257.TAA94722@freefall.freebsd.org> From: Marcel Moolenaar Date: Sun, 23 Jul 2000 19:57:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/mtree mtree.8 mtree.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/07/23 19:57:27 PDT Modified files: usr.sbin/mtree mtree.8 mtree.c Log: Revert the reversion of the default mtree behaviour. The mtree command now follows symlinks again. Requested by: jkh Revision Changes Path 1.26 +5 -6 src/usr.sbin/mtree/mtree.8 1.15 +8 -8 src/usr.sbin/mtree/mtree.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 20: 5: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from zippy.osd.bsdi.com (zippy.osd.bsdi.com [204.216.27.228]) by hub.freebsd.org (Postfix) with ESMTP id D66DE37B7B1; Sun, 23 Jul 2000 20:04:53 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) Received: from localhost (jkh@localhost [127.0.0.1]) by zippy.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id UAA23851; Sun, 23 Jul 2000 20:04:41 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) To: Marcel Moolenaar Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/mtree mtree.8 mtree.c In-reply-to: Your message of "Sun, 23 Jul 2000 19:57:27 PDT." <200007240257.TAA94722@freefall.freebsd.org> Date: Sun, 23 Jul 2000 20:04:41 -0700 Message-ID: <23848.964407881@localhost> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > marcel 2000/07/23 19:57:27 PDT > > Modified files: > usr.sbin/mtree mtree.8 mtree.c > Log: > Revert the reversion of the default mtree behaviour. The mtree > command now follows symlinks again. Thank you. Now that we're back to where we started, perhaps we can all think this out a bit and decide just exactly where we're trying to go and how to get there without breaking the upgrade path? I know we probably want to go here in some way, shape or form, but let's look long and hard before leaping at it again. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 20: 6: 0 2000 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id BCBFC37B72C; Sun, 23 Jul 2000 20:05:51 -0700 (PDT) Date: Sun, 23 Jul 2000 20:05:51 -0700 From: "Andrey A. Chernov" To: Dima Ruban Cc: Marcel Moolenaar , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000723200551.A75625@freebsd.org> References: <20000723145349.A76085@freebsd.org> <200007240252.TAA11044@laptop.rdy.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <200007240252.TAA11044@laptop.rdy.com>; from dima@rdy.com on Sun, Jul 23, 2000 at 07:52:29PM -0700 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 23, 2000 at 07:52:29PM -0700, Dima Ruban wrote: > Asami et all suggested to merge it into 4.x? Somehow I've missed this > suggestion .... Yes, I was asked to merge my changes in personal mail, probably from joe, I don't remember exactly at this moment. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 20:11:59 2000 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id 1919F37B89E; Sun, 23 Jul 2000 20:11:51 -0700 (PDT) Date: Sun, 23 Jul 2000 20:11:51 -0700 From: "Andrey A. Chernov" To: Marcel Moolenaar Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/mtree mtree.8 mtree.c Message-ID: <20000723201150.B75625@freebsd.org> References: <200007240257.TAA94722@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <200007240257.TAA94722@freefall.freebsd.org>; from marcel@FreeBSD.org on Sun, Jul 23, 2000 at 07:57:27PM -0700 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 23, 2000 at 07:57:27PM -0700, Marcel Moolenaar wrote: > marcel 2000/07/23 19:57:27 PDT > > Modified files: > usr.sbin/mtree mtree.8 mtree.c > Log: > Revert the reversion of the default mtree behaviour. The mtree > command now follows symlinks again. > > Requested by: jkh To all: take me out of core and commiters. Enough said. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 20:12:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 52B2437B826; Sun, 23 Jul 2000 20:12:19 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA97088; Sun, 23 Jul 2000 20:12:19 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200007240312.UAA97088@freefall.freebsd.org> From: Jun Kuriyama Date: Sun, 23 Jul 2000 20:12:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/ja/ports comments.ja X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/07/23 20:12:19 PDT Modified files: ja/ports comments.ja Log: More translations (from archivers to deskutils). Submitted by: Shun SUZUKI Reviewed by: Hori Masato , "Naoyuki (condle) Mori." , yoshiaki@kt.rim.or.jp, hrs Revision Changes Path 1.27 +36 -35 www/ja/ports/comments.ja To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 20:14:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7EA7D37B826; Sun, 23 Jul 2000 20:14:46 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA97233; Sun, 23 Jul 2000 20:14:46 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200007240314.UAA97233@freefall.freebsd.org> From: Jun Kuriyama Date: Sun, 23 Jul 2000 20:14:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/ja/ports comments.ja X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/07/23 20:14:46 PDT Modified files: ja/ports comments.ja Log: Sync with 1.287 of INDEX. Revision Changes Path 1.28 +8 -3 www/ja/ports/comments.ja To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 20:40:19 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 3A9C937B58B; Sun, 23 Jul 2000 20:40:02 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id VAA18178; Sun, 23 Jul 2000 21:40:01 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id VAA76413; Sun, 23 Jul 2000 21:39:46 -0600 (MDT) Message-Id: <200007240339.VAA76413@harmony.village.org> To: "Andrey A. Chernov" Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Cc: Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Sun, 23 Jul 2000 17:41:25 PDT." <20000723174125.A38154@freebsd.org> References: <20000723174125.A38154@freebsd.org> <20000723194837.M47967@argon.gryphonsoft.com> <200007231633.JAA33796@freefall.freebsd.org> <20000723143740.A70582@freebsd.org> <20000723185708.I47967@argon.gryphonsoft.com> <20000723164637.A26164@freebsd.org> <20000723194837.M47967@argon.gryphonsoft.com> <200007240011.SAA75502@harmony.village.org> Date: Sun, 23 Jul 2000 21:39:45 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Andrey, please let me appologize for not contacting you directly when I first hit this problem. I was extremely upset due to make buildworld being broken and did not act properly. mtree is a special tool that needs to have more testing than other tools in the tree, and it isn't obvious from our committer documentation that that is the case. We should fix that as well. In message <20000723174125.A38154@freebsd.org> "Andrey A. Chernov" writes: : This reason is not enough for not asking me first. Please you and : Marcel come in agreement on this subj. with my changes returned in : most suitable for upgrade form from your point of view. What I do I : do strict in the scope of allowed actions and I am not responsible : of other people area. I think the reason is enough for the mtree/Makefile change that I made (since I was getting lots of complaints about UPDATING being wrong). It make the supported 4.x -> 5.0 transition work again, which is something that the project must have in place. I'm less sure about the other behavior changes that Marcel made, but let's move on from those. We can't depend on using mtree -L in the build process. Whatever we do, we need to make sure that is the case. There are too many upgrade issues with building mtree as part of the tools target at this point in time, which I outlined before and are not your fault (I don't think, but I've not checked to see who did the strtofflags stuff). So we're at cross purposes now. The default for FreeBSD used to be FTS_LOGICAL, which has issues, iirc, with symbolic links in some directories. We need the default to be FTS_PHYSICAL for those concerns. However, we also want the FTS_LOGICAL behavior in the build process. mtree is a special tool in the build process that needs to remain compatible with old releases of FreeBSD as well as usable in the early stages of the build process. The only real way that I see of getting this is to add -L to mtree, but also add an enviornment variable that mtree does a getenv on. That would be something like MTREE_USE_LOGICAL. If that exists, it defaults to the old behavior w/o need for a command line argument. This would allow us easily use that in the build process (old versions would ignore this env and do the right thing, new versions would parse it and do the right thing w/o needing special args. Intermediate versions (from the past week or two) are, well, busted, oh well, we put a note in UPDATING). Chances are they will just work, but the LOGICA vs PHSYICAL thing may have some interesting consequences that people need to be warned about. The changes to mtree in this case would be the simple addition of something like: /* * We have to allow the build tools to tell us, in a backward * compatible way, to use the old default of logical. We get * the env, which is BC with the past. If you change this, * then you must make sure that all supported upgrade paths * work. */ if (getenv("MTREE_USE_LOGICAL")) ftsoptions = FTS_LOGICAL; else ftsoptions = FTS_PHYSICAL; I think this would address all the concerns raised. Comments? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 20:46:57 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 1CD9737B5EA; Sun, 23 Jul 2000 20:46:47 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id VAA18203; Sun, 23 Jul 2000 21:46:45 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id VAA76472; Sun, 23 Jul 2000 21:46:30 -0600 (MDT) Message-Id: <200007240346.VAA76472@harmony.village.org> To: "Andrey A. Chernov" Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Cc: Marcel Moolenaar , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: Your message of "Sun, 23 Jul 2000 19:26:55 PDT." <20000723192655.A68916@freebsd.org> References: <20000723192655.A68916@freebsd.org> <20000723194837.M47967@argon.gryphonsoft.com> <200007231633.JAA33796@freefall.freebsd.org> <20000723143740.A70582@freebsd.org> <20000723185708.I47967@argon.gryphonsoft.com> <20000723164637.A26164@freebsd.org> <20000723194837.M47967@argon.gryphonsoft.com> <200007240011.SAA75502@harmony.village.org> <20000723174125.A38154@freebsd.org> <397B9E9B.3BCABA27@cup.hp.com> Date: Sun, 23 Jul 2000 21:46:30 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <20000723192655.A68916@freebsd.org> "Andrey A. Chernov" writes: : On Sun, Jul 23, 2000 at 06:40:43PM -0700, Marcel Moolenaar wrote: : > > Please you and Marcel come : > > in agreement on this subj. : > : > I think we are. : : Please don't forget to inform me about your agreement. Without knowing about : your ideas I plan to return my changes and resolve upgrading issue in my : own way. It takes time since I am not familiar with upgrading process. I think that Marcel and my agreement wasn't sufficient for the issues that you were trying to fix. I don't think that Marcel realized this when he wrote to you. Please see other mail for a fairly simple solution that I think will fix mtree and allow us to have an upgrade path that works. Also, please reconsider your request for removal. Emotions are running high on this and a day or two to cool off might not be a bad thing. I know that mistakes were made in communications for this whole mess and it would be sad to see someone leave the project under these circumstances. I would feel bad thinking that I had something to do with driving you away. Please accept my appology for my part in handling this badly. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 21:32: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from bubba.whistle.com (bubba.whistle.com [207.76.205.7]) by hub.freebsd.org (Postfix) with ESMTP id C129937B955; Sun, 23 Jul 2000 21:31:59 -0700 (PDT) (envelope-from archie@whistle.com) Received: (from archie@localhost) by bubba.whistle.com (8.9.3/8.9.3) id VAA19546; Sun, 23 Jul 2000 21:31:59 -0700 (PDT) (envelope-from archie) From: Archie Cobbs Message-Id: <200007240431.VAA19546@bubba.whistle.com> Subject: Re: cvs commit: src/sbin/ifconfig ifconfig.c In-Reply-To: <20000723164511.B86670@dragon.nuxi.com> from "David O'Brien" at "Jul 23, 2000 04:45:11 pm" To: obrien@FreeBSD.org Date: Sun, 23 Jul 2000 21:31:59 -0700 (PDT) Cc: Archie Cobbs , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL68 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG David O'Brien writes: > On Sun, Jul 23, 2000 at 10:50:34AM -0700, Archie Cobbs wrote: > > David O'Brien writes: > > > > > Since there is some opposition to this, can it be backed out of RELENG_4 > > > > > for 4.1-R to give it more time to be discussed? > > > > You're talking about "ifconfig" == "ifconfig -a" right..? > > > > I'm happy with whatever everybody else wants. Seems to me a > > > > lot of people liked it though. > > > > > > Since you got people that strongly spoke up, can we remove this from > > > 4.1-R? > > Be my guest.. > > I thought you said you were willing to. It already came up before in a private email and Jordan indicated he would rather not at this point. If you change his mind cc: me and I'll revert it. I'm just being hesitant because I don't want to make any more unilateral last minute changes and get yelled at. -Archie ___________________________________________________________________________ Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 21:58: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 4DB5D37B63E; Sun, 23 Jul 2000 21:57:50 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.9.3/8.9.3) id IAA28963; Mon, 24 Jul 2000 08:50:34 +0400 (MSD) (envelope-from ache) Date: Mon, 24 Jul 2000 08:50:32 +0400 From: "Andrey A. Chernov" To: Warner Losh Cc: Marcel Moolenaar , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000724085030.A28936@nagual.pp.ru> References: <200007231633.JAA33796@freefall.freebsd.org> <20000723143740.A70582@freebsd.org> <20000723185708.I47967@argon.gryphonsoft.com> <20000723164637.A26164@freebsd.org> <20000723194837.M47967@argon.gryphonsoft.com> <200007240011.SAA75502@harmony.village.org> <20000723174125.A38154@freebsd.org> <397B9E9B.3BCABA27@cup.hp.com> <20000723192655.A68916@freebsd.org> <200007240346.VAA76472@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <200007240346.VAA76472@harmony.village.org>; from imp@village.org on Sun, Jul 23, 2000 at 09:46:30PM -0600 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 23, 2000 at 09:46:30PM -0600, Warner Losh wrote: > Andrey, please let me appologize for not contacting you directly Warner, you don't need to apologize, even if not contacting you does no harm. I treat marcel+jkh actions as completely unacceptable. > if (getenv("MTREE_USE_LOGICAL")) > ftsoptions = FTS_LOGICAL; > else > ftsoptions = FTS_PHYSICAL; > > I think this would address all the concerns raised. Comments? This is Ok. There is yet one way, something like: .if ${OSVERSION} >= 500010 ${MTREE_L} = -L .else ${MTREE_L} = .endif right in the Makefiles, without hacking mtree sourses itself. In fact, many ways exists. I know when people really want to _solve_ things, it is not difficult. Moreover, we are not in critical time bottle neck with this thing like immediate releasing needs, etc. From other side, when people treat other people as empty place, they got what they deserve, i.e. empty place instead of other people. > Also, please reconsider your request for removal. Emotions are It is impossible to work in the project when unacceptable attitude and ways to "solve" we see becomes approved by principals of the project. This is not an emotions but pure practical and very sad for me conclusion. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 22:11: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2FB9037B9F5; Sun, 23 Jul 2000 22:10:55 -0700 (PDT) (envelope-from nik@FreeBSD.org) Received: (from nik@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA09321; Sun, 23 Jul 2000 22:10:55 -0700 (PDT) (envelope-from nik@FreeBSD.org) Message-Id: <200007240510.WAA09321@freefall.freebsd.org> From: Nik Clayton Date: Sun, 23 Jul 2000 22:10:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/porters-handbook book.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nik 2000/07/23 22:10:55 PDT Modified files: en_US.ISO_8859-1/books/porters-handbook book.sgml Log: Fix the author information. The element to use in this situation is . Revision Changes Path 1.116 +4 -10 doc/en_US.ISO_8859-1/books/porters-handbook/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 22:15:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E91C637B9F5; Sun, 23 Jul 2000 22:15:22 -0700 (PDT) (envelope-from jlemon@FreeBSD.org) Received: (from jlemon@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA12061; Sun, 23 Jul 2000 22:15:22 -0700 (PDT) (envelope-from jlemon@FreeBSD.org) Message-Id: <200007240515.WAA12061@freefall.freebsd.org> From: Jonathan Lemon Date: Sun, 23 Jul 2000 22:15:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern uipc_socket.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jlemon 2000/07/23 22:15:22 PDT Modified files: (Branch: RELENG_4) sys/kern uipc_socket.c Log: When shutdown(s, SHUT_RD) is called, it calls sorflush(), which uses bzero to wipe out the socket buffer. However, this is not the right thing to do, as some state may need to be kept (SB_SEL, SB_AIO, SB_KNOTE). In particular, erasing the si_note entry will cause a panic in filt_sordetach() later, when the system attempts to remove the knote from the SLIST. Add a workaround which leaves the si_note field alone. The real fix is to only clear out those fields which need to be reset, rather than using bzero() to swat everything. However, this close to -release, a minimal fix was chosen in order to keep changes to a minimum. Reviewed by: dillon, wollman (in concept) Approved by: jkh Revision Changes Path 1.68.2.3 +5 -1 src/sys/kern/uipc_socket.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jul 23 22:28:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9034D37B5EA; Sun, 23 Jul 2000 22:28:36 -0700 (PDT) (envelope-from mckusick@FreeBSD.org) Received: (from mckusick@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA13463; Sun, 23 Jul 2000 22:28:35 -0700 (PDT) (envelope-from mckusick@FreeBSD.org) Message-Id: <200007240528.WAA13463@freefall.freebsd.org> From: Kirk McKusick Date: Sun, 23 Jul 2000 22:28:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/isofs/cd9660 cd9660_vfsops.c src/sys/kern vfs_subr.c vfs_vnops.c src/sys/miscfs/specfs spec_vnops.c src/sys/nfs nfs_subs.c src/sys/sys buf.h vnode.h src/sys/ufs/ffs ffs_extern.h ffs_softdep.c ffs_vfsops.c ffs_snapshot.c ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mckusick 2000/07/23 22:28:35 PDT Modified files: sys/isofs/cd9660 cd9660_vfsops.c sys/kern vfs_subr.c vfs_vnops.c sys/miscfs/specfs spec_vnops.c sys/nfs nfs_subs.c sys/sys buf.h vnode.h sys/ufs/ffs ffs_extern.h ffs_softdep.c ffs_vfsops.c ffs_snapshot.c sys/ufs/mfs mfs_vfsops.c sys/ufs/ufs ufs_bmap.c ufs_inode.c ufs_quota.c ufs_vnops.c Log: This patch corrects the first round of panics and hangs reported with the new snapshot code. Update addaliasu to correctly implement the semantics of the old checkalias function. When a device vnode first comes into existence, check to see if an anonymous vnode for the same device was created at boot time by bdevvp(). If so, adopt the bdevvp vnode rather than creating a new vnode for the device. This corrects a problem which caused the kernel to panic when taking a snapshot of the root filesystem. Change the calling convention of vn_write_suspend_wait() to be the same as vn_start_write(). Split out softdep_flushworklist() from softdep_flushfiles() so that it can be used to clear the work queue when suspending filesystem operations. Access to buffers becomes recursive so that snapshots can recursively traverse their indirect blocks using ffs_copyonwrite() when checking for the need for copy on write when flushing one of their own indirect blocks. This eliminates a deadlock between the syncer daemon and a process taking a snapshot. Ensure that softdep_process_worklist() can never block because of a snapshot being taken. This eliminates a problem with buffer starvation. Cleanup change in ffs_sync() which did not synchronously wait when MNT_WAIT was specified. The result was an unclean filesystem panic when doing forcible unmount with heavy filesystem I/O in progress. Return a zero'ed block when reading a block that was not in use at the time that a snapshot was taken. Normally, these blocks should never be read. However, the readahead code will occationally read them which can cause unexpected behavior. Clean up the debugging code that ensures that no blocks be written on a filesystem while it is suspended. Snapshots must explicitly label the blocks that they are writing during the suspension so that they do not cause a `write on suspended filesystem' panic. Reorganize ffs_copyonwrite() to eliminate a deadlock and also to prevent a race condition that would permit the same block to be copied twice. This change eliminates an unexpected soft updates inconsistency in fsck caused by the double allocation. Use bqrelse rather than brelse for buffers that will be needed soon again by the snapshot code. This improves snapshot performance. Revision Changes Path 1.78 +3 -2 src/sys/isofs/cd9660/cd9660_vfsops.c 1.267 +34 -4 src/sys/kern/vfs_subr.c 1.99 +9 -7 src/sys/kern/vfs_vnops.c 1.142 +5 -3 src/sys/miscfs/specfs/spec_vnops.c 1.95 +3 -2 src/sys/nfs/nfs_subs.c 1.106 +4 -3 src/sys/sys/buf.h 1.120 +4 -3 src/sys/sys/vnode.h 1.34 +2 -1 src/sys/ufs/ffs/ffs_extern.h 1.71 +56 -37 src/sys/ufs/ffs/ffs_softdep.c 1.125 +21 -12 src/sys/ufs/ffs/ffs_vfsops.c 1.3 +47 -22 src/sys/ufs/ffs/ffs_snapshot.c 1.85 +2 -2 src/sys/ufs/mfs/mfs_vfsops.c 1.44 +24 -2 src/sys/ufs/ufs/ufs_bmap.c 1.29 +4 -4 src/sys/ufs/ufs/ufs_inode.c 1.35 +2 -2 src/sys/ufs/ufs/ufs_quota.c 1.140 +3 -2 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 Sun Jul 23 22:56:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1190F37B545; Sun, 23 Jul 2000 22:56:48 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Received: (from dburr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA15639; Sun, 23 Jul 2000 22:56:48 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Message-Id: <200007240556.WAA15639@freefall.freebsd.org> From: Donald Burr Date: Sun, 23 Jul 2000 22:56:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dburr 2000/07/23 22:56:48 PDT Modified files: . modules Log: PicMonger --> ports/news/PicMonger Revision Changes Path 1.1446 +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 Jul 23 22:57:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 63F2437B545; Sun, 23 Jul 2000 22:57:31 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Received: (from dburr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA15693; Sun, 23 Jul 2000 22:57:31 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Message-Id: <200007240557.WAA15693@freefall.freebsd.org> From: Donald Burr Date: Sun, 23 Jul 2000 22:57:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/PicMonger - Imported sources X-FreeBSD-CVS-Branch: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dburr 2000/07/23 22:57:31 PDT ports/news/PicMonger - Imported sources Update of /home/ncvs/ports/news/PicMonger In directory freefall.freebsd.org:/d/home/dburr/PicMonger Log Message: Import of new port news/PicMonger, a little GTK utility that makes it easy to decode those "naughty" groups. :) Obtained from: freshmeat, of course :) Status: Vendor Tag: DBURR Release Tags: picmonger_0_9_6 N ports/news/PicMonger/Makefile N ports/news/PicMonger/files/md5 N ports/news/PicMonger/pkg/COMMENT N ports/news/PicMonger/pkg/DESCR N ports/news/PicMonger/pkg/PLIST N ports/news/PicMonger/patches/patch-aa N ports/news/PicMonger/patches/patch-ab N ports/news/PicMonger/patches/patch-ac N ports/news/PicMonger/patches/patch-ad N ports/news/PicMonger/patches/patch-ae 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 Jul 23 23: 1: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 68FF037BA5E; Sun, 23 Jul 2000 23:01:00 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Received: (from dburr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA15975; Sun, 23 Jul 2000 23:01:00 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Message-Id: <200007240601.XAA15975@freefall.freebsd.org> From: Donald Burr Date: Sun, 23 Jul 2000 23:01:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dburr 2000/07/23 23:01:00 PDT Modified files: news Makefile Log: Enable PicMonger. Revision Changes Path 1.55 +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 Sun Jul 23 23: 5:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2592B37BA5E; Sun, 23 Jul 2000 23:05:28 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Received: (from dburr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA17268; Sun, 23 Jul 2000 23:05:28 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Message-Id: <200007240605.XAA17268@freefall.freebsd.org> From: Donald Burr Date: Sun, 23 Jul 2000 23:05:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dburr 2000/07/23 23:05:28 PDT Modified files: . modules Log: SN --> ports/devel/SN Revision Changes Path 1.1447 +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 Jul 23 23: 6:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EC66037B594; Sun, 23 Jul 2000 23:06:32 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Received: (from dburr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA17864; Sun, 23 Jul 2000 23:06:32 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Message-Id: <200007240606.XAA17864@freefall.freebsd.org> From: Donald Burr Date: Sun, 23 Jul 2000 23:06:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/SN - Imported sources X-FreeBSD-CVS-Branch: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dburr 2000/07/23 23:06:32 PDT ports/devel/SN - Imported sources Update of /home/ncvs/ports/devel/SN In directory freefall.freebsd.org:/d/home/dburr/SN Log Message: New port devel/SN, the Red Hat/Cygnus/GNU Source Navigator IDE/source code analysis tool. Obtained from: Freshmeat posting Status: Vendor Tag: DBURR Release Tags: sn_4_5_1 N ports/devel/SN/Makefile N ports/devel/SN/files/md5 N ports/devel/SN/pkg/COMMENT N ports/devel/SN/pkg/DESCR N ports/devel/SN/pkg/PLIST N ports/devel/SN/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 Sun Jul 23 23: 8: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 72B0F37BADA; Sun, 23 Jul 2000 23:08:06 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Received: (from dburr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA17968; Sun, 23 Jul 2000 23:08:06 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Message-Id: <200007240608.XAA17968@freefall.freebsd.org> From: Donald Burr Date: Sun, 23 Jul 2000 23:08:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dburr 2000/07/23 23:08:06 PDT Modified files: devel Makefile Log: Activate SN. Revision Changes Path 1.316 +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 Jul 24 0:15:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 859E937B72C; Mon, 24 Jul 2000 00:15:29 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA26732; Mon, 24 Jul 2000 00:15:30 -0700 (PDT) (envelope-from phk@FreeBSD.org) Message-Id: <200007240715.AAA26732@freefall.freebsd.org> From: Poul-Henning Kamp Date: Mon, 24 Jul 2000 00:15:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/pgpkeys chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phk 2000/07/24 00:15:29 PDT Modified files: en_US.ISO_8859-1/books/handbook/pgpkeys chapter.sgml en_US.ISO_8859-1/books/handbook/staff chapter.sgml Log: Ache has asked to be removed from the core team. Revision Changes Path 1.38 +65 -65 doc/en_US.ISO_8859-1/books/handbook/pgpkeys/chapter.sgml 1.147 +5 -13 doc/en_US.ISO_8859-1/books/handbook/staff/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 0:18:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F24BD37B55F; Mon, 24 Jul 2000 00:18:06 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA27093; Mon, 24 Jul 2000 00:18:07 -0700 (PDT) (envelope-from phk@FreeBSD.org) Message-Id: <200007240718.AAA27093@freefall.freebsd.org> From: Poul-Henning Kamp Date: Mon, 24 Jul 2000 00:18:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phk 2000/07/24 00:18:07 PDT Modified files: en_US.ISO_8859-1/books/handbook/contrib chapter.sgml Log: Add ache to the "Core Team Alumni" list. Revision Changes Path 1.265 +5 -1 doc/en_US.ISO_8859-1/books/handbook/contrib/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 0:40: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8CECC37B57A; Mon, 24 Jul 2000 00:40:04 -0700 (PDT) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA29135; Mon, 24 Jul 2000 00:40:04 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200007240740.AAA29135@freefall.freebsd.org> From: Brian Feldman Date: Mon, 24 Jul 2000 00:40:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/diff util.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/07/24 00:40:02 PDT Modified files: contrib/diff util.c Log: Get rid of the stupid bug where diff sticks trash in your generated diff output; there being no trailing newline caused it to bitch and moan and ruin diffs. That's dumb, if I may say so myself. Yes, this file is coming off the vendor branch. It hasn't been updated in 6 years. Approved by: peter Revision Changes Path 1.3 +2 -3 src/contrib/diff/util.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 1: 5:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6CF0137BBCC; Mon, 24 Jul 2000 01:05:50 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA32813; Mon, 24 Jul 2000 01:05:50 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007240805.BAA32813@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 24 Jul 2000 01:05:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/jdk Makefile ports/java/jdk/patches patch-aa ports/java/tya/patches patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/24 01:05:49 PDT Modified files: java/jdk Makefile Added files: java/jdk/patches patch-aa Removed files: java/tya/patches patch-aa Log: Define int_t and uint_t on CURRENT too. This should fix tya and shujit on -current systems. Revision Changes Path 1.33 +2 -1 ports/java/jdk/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 1: 9:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AF5E537BA6C; Mon, 24 Jul 2000 01:09:09 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA33164; Mon, 24 Jul 2000 01:09:09 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007240809.BAA33164@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 24 Jul 2000 01:09:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/shujit Makefile ports/java/tya Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/24 01:09:09 PDT Modified files: java/shujit Makefile java/tya Makefile Log: Claim maintainership. Submitted by: jake (previous maintainer) Revision Changes Path 1.16 +2 -2 ports/java/shujit/Makefile 1.15 +2 -2 ports/java/tya/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 1:26:11 2000 Delivered-To: cvs-all@freebsd.org Received: from mercury.mich.com (mercury.mich.com [64.79.64.32]) by hub.freebsd.org (Postfix) with ESMTP id DC04237BB20; Mon, 24 Jul 2000 01:25:54 -0700 (PDT) (envelope-from will@almanac.yi.org) Received: from argon.gryphonsoft.com (pm006-031.dialup.bignet.net [64.79.81.15]) by mercury.mich.com (8.9.3/8.9.3) with ESMTP id EAA08173; Mon, 24 Jul 2000 04:24:34 -0400 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id B3B4519B1; Mon, 24 Jul 2000 04:23:01 -0400 (EDT) Date: Mon, 24 Jul 2000 04:23:01 -0400 From: Will Andrews To: Brian Feldman Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/diff util.c Message-ID: <20000724042301.A55929@argon.gryphonsoft.com> References: <200007240740.AAA29135@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200007240740.AAA29135@freefall.freebsd.org>; from green@FreeBSD.org on Mon, Jul 24, 2000 at 12:40:04AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Jul 24, 2000 at 12:40:04AM -0700, Brian Feldman wrote: > Modified files: > contrib/diff util.c > Log: > Get rid of the stupid bug where diff sticks trash in your generated > diff output; there being no trailing newline caused it to bitch and > moan and ruin diffs. That's dumb, if I may say so myself. Thank you for fixing this **VERY**ANNOYING** bug! I expect a MFC to 4.1-STABLE and 3.5-STABLE once the freeze is over. :-) -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 1:39: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.2.163]) by hub.freebsd.org (Postfix) with ESMTP id 01C6137B588; Mon, 24 Jul 2000 01:38:53 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.15 #1) id 13GdlC-000DLR-00; Mon, 24 Jul 2000 10:38:50 +0200 From: Sheldon Hearn To: Brian Feldman Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/diff util.c In-reply-to: Your message of "Mon, 24 Jul 2000 00:40:04 MST." <200007240740.AAA29135@freefall.freebsd.org> Date: Mon, 24 Jul 2000 10:38:50 +0200 Message-ID: <51300.964427930@axl.ops.uunet.co.za> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 24 Jul 2000 00:40:04 MST, Brian Feldman wrote: > Yes, this file is coming off the vendor branch. It hasn't been > updated in 6 years. Actually, it looks like it was already off the vendor branch: > Revision Changes Path > 1.3 +2 -3 src/contrib/diff/util.c :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 1:55:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 16A5937B588; Mon, 24 Jul 2000 01:55:23 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA38400; Mon, 24 Jul 2000 01:55:23 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007240855.BAA38400@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 24 Jul 2000 01:55:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/xlhtml Makefile ports/textproc/xlhtml/files md5 ports/textproc/xlhtml/patches patch-af X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/24 01:55:23 PDT Modified files: textproc/xlhtml Makefile textproc/xlhtml/files md5 Added files: textproc/xlhtml/patches patch-af Log: Update to 0.2.7.2. Revision Changes Path 1.5 +8 -2 ports/textproc/xlhtml/Makefile 1.3 +1 -1 ports/textproc/xlhtml/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 1:56:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 906D037B588; Mon, 24 Jul 2000 01:56:13 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Received: (from dburr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA38531; Mon, 24 Jul 2000 01:56:14 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Message-Id: <200007240856.BAA38531@freefall.freebsd.org> From: Donald Burr Date: Mon, 24 Jul 2000 01:56:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/SN/pkg DESCR X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dburr 2000/07/24 01:56:14 PDT Modified files: devel/SN/pkg DESCR Log: Added the package's URL to the DESCR file, which I forgot to do when committing it. Oops. Revision Changes Path 1.2 +2 -0 ports/devel/SN/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 Jul 24 1:56:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B00F337B588; Mon, 24 Jul 2000 01:56:42 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA38615; Mon, 24 Jul 2000 01:56:43 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007240856.BAA38615@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 24 Jul 2000 01:56:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/truncate truncate.1 truncate.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/24 01:56:43 PDT Modified files: usr.bin/truncate truncate.1 truncate.c Log: truncate.c: Do not include unused header files. Add rcsid. Change copyright. truncate.1: Add AUTHORS section. Submitted by: charnier Revision Changes Path 1.3 +7 -1 src/usr.bin/truncate/truncate.1 1.3 +7 -4 src/usr.bin/truncate/truncate.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 2: 4:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B2F6137B5AC; Mon, 24 Jul 2000 02:04:44 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA39626; Mon, 24 Jul 2000 02:04:44 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007240904.CAA39626@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 24 Jul 2000 02:04:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/gcompris Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/24 02:04:44 PDT Modified files: games/gcompris Makefile Log: Remove redundant LIB_DEPENDS. PR: 20100 Submitted by: Ports Furry Revision Changes Path 1.2 +2 -3 ports/games/gcompris/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 2:37:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5BEEE37BBB9; Mon, 24 Jul 2000 02:37:48 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA44938; Mon, 24 Jul 2000 02:37:47 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200007240937.CAA44938@freefall.freebsd.org> From: Alexander Langer Date: Mon, 24 Jul 2000 02:37:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/hw chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/07/24 02:37:47 PDT Modified files: en_US.ISO_8859-1/books/handbook/hw chapter.sgml Log: Alex Nash wrote the "Configuring the cy driver" section, not me. Revision Changes Path 1.35 +2 -2 doc/en_US.ISO_8859-1/books/handbook/hw/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 3: 0:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 49B4E37B6A9; Mon, 24 Jul 2000 03:00:22 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Received: (from dburr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA47710; Mon, 24 Jul 2000 03:00:22 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Message-Id: <200007241000.DAA47710@freefall.freebsd.org> From: Donald Burr Date: Mon, 24 Jul 2000 03:00:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dburr 2000/07/24 03:00:22 PDT Modified files: . modules Log: ubh --> ports/news/ubh Revision Changes Path 1.1448 +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 Jul 24 3: 2:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E19D737B580; Mon, 24 Jul 2000 03:02:02 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Received: (from dburr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA47834; Mon, 24 Jul 2000 03:02:03 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Message-Id: <200007241002.DAA47834@freefall.freebsd.org> From: Donald Burr Date: Mon, 24 Jul 2000 03:02:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/ubh - Imported sources X-FreeBSD-CVS-Branch: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dburr 2000/07/24 03:02:03 PDT ports/news/ubh - Imported sources Update of /home/ncvs/ports/news/ubh In directory freefall.freebsd.org:/d/home/dburr/ubh Log Message: New port news/ubh, another commandline driven Usenet binary posting harvester. (in case you were wondering, No, I am NOT some kind of perv or anthing. I just like to look at the... ummm, uhhh... FRACTALS!! Yeah, that's the ticket! Fractal postings!!!) Obtained from: Freshmeat, where else? :) Status: Vendor Tag: DBURR Release Tags: ubh_1_0 N ports/news/ubh/Makefile N ports/news/ubh/files/md5 N ports/news/ubh/pkg/COMMENT N ports/news/ubh/pkg/DESCR N ports/news/ubh/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 Mon Jul 24 3: 4:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A9F2437B528; Mon, 24 Jul 2000 03:04:09 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Received: (from dburr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA48062; Mon, 24 Jul 2000 03:04:10 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Message-Id: <200007241004.DAA48062@freefall.freebsd.org> From: Donald Burr Date: Mon, 24 Jul 2000 03:04:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dburr 2000/07/24 03:04:10 PDT Modified files: news Makefile Log: Activate ubh. Revision Changes Path 1.56 +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 Jul 24 3:20:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 65EAC37B580; Mon, 24 Jul 2000 03:20:48 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA51491; Mon, 24 Jul 2000 03:20:48 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200007241020.DAA51491@freefall.freebsd.org> From: Alexander Langer Date: Mon, 24 Jul 2000 03:20:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/wine Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/07/24 03:20:47 PDT Modified files: emulators/wine Makefile Log: Add USE_BISON. Submitted by: maintainer Revision Changes Path 1.88 +2 -1 ports/emulators/wine/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 3:30:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2309737B55F; Mon, 24 Jul 2000 03:30:27 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA52383; Mon, 24 Jul 2000 03:30:26 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007241030.DAA52383@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 24 Jul 2000 03:30:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/netscape47-communicator.us Makefile ports/www/netscape47-communicator.us/files md5 ports/www/netscape47-communicator.us/pkg PLIST ports/www/netscape47-navigator.us Makefile ports/www/netscape47-navigator.us/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/24 03:30:26 PDT Modified files: www/netscape47-communicator.us Makefile www/netscape47-communicator.us/files md5 www/netscape47-communicator.us/pkg PLIST www/netscape47-navigator.us Makefile www/netscape47-navigator.us/files md5 Log: Upgrade to version 4.74. (note that you can now download the distfiles from ftp.netscape.com, rather than have to fill out a webform, et.al. -- yay!) Revision Changes Path 1.34 +9 -16 ports/www/netscape47-communicator.us/Makefile 1.10 +2 -2 ports/www/netscape47-communicator.us/files/md5 1.12 +0 -1 ports/www/netscape47-communicator.us/pkg/PLIST 1.35 +17 -5 ports/www/netscape47-navigator.us/Makefile 1.10 +2 -1 ports/www/netscape47-navigator.us/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 3:37:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C71CF37B547; Mon, 24 Jul 2000 03:37:11 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA52974; Mon, 24 Jul 2000 03:37:10 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007241037.DAA52974@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 24 Jul 2000 03:37:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/exim Makefile ports/mail/exim/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/24 03:37:10 PDT Modified files: mail/exim Makefile mail/exim/files md5 Log: Update to 3.16: Bugfix release, featuring a fix for one critical bug in the handling of messages frozen by system filters for manual thawing. Revision Changes Path 1.53 +3 -5 ports/mail/exim/Makefile 1.26 +1 -1 ports/mail/exim/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 3:40:17 2000 Delivered-To: cvs-all@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.2.163]) by hub.freebsd.org (Postfix) with ESMTP id DA97337B58D; Mon, 24 Jul 2000 03:40:08 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.15 #1) id 13GfeK-000Dz7-00; Mon, 24 Jul 2000 12:39:52 +0200 From: Sheldon Hearn To: cvs-all@FreeBSD.org Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports/mail/exim Makefile ports/mail/exim/files md5 In-reply-to: Your message of "Mon, 24 Jul 2000 03:37:10 MST." <200007241037.DAA52974@freefall.freebsd.org> Date: Mon, 24 Jul 2000 12:39:52 +0200 Message-ID: <53760.964435192@axl.ops.uunet.co.za> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 24 Jul 2000 03:37:10 MST, Sheldon Hearn wrote: > Modified files: > mail/exim Makefile > mail/exim/files md5 > Log: > Update to 3.16: > Bugfix release, featuring a fix for one critical bug in the > handling of messages frozen by system filters for manual > thawing. Folks using exim-3.15 to freeze messages with system filters for manual thawing are encouraged to upgrade immediately. While the bug is not a security vulnerability, it is serious. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 3:59:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9953337B7FE; Mon, 24 Jul 2000 03:59:16 -0700 (PDT) (envelope-from dirk@FreeBSD.org) Received: (from dirk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA54646; Mon, 24 Jul 2000 03:59:16 -0700 (PDT) (envelope-from dirk@FreeBSD.org) Message-Id: <200007241059.DAA54646@freefall.freebsd.org> From: Dirk Froemberg Date: Mon, 24 Jul 2000 03:59:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/xmysql/patches patch-ad X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dirk 2000/07/24 03:59:16 PDT Added files: databases/xmysql/patches patch-ad Log: Fix build error caused by xforms upgrade. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 4:12: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 73CF337B719; Mon, 24 Jul 2000 04:11:57 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: (from wilko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA59686; Mon, 24 Jul 2000 04:11:57 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Message-Id: <200007241111.EAA59686@freefall.freebsd.org> From: Wilko Bulte Date: Mon, 24 Jul 2000 04:11:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts/alpha RELNOTES.TXT X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wilko 2000/07/24 04:11:57 PDT Modified files: (Branch: RELENG_4) release/texts/alpha RELNOTES.TXT Log: document support for IDE root/boot, remove a few unsupported/untested SCSI cards, remove some PCMCIA cards. Revision Changes Path 1.31.2.24 +8 -13 src/release/texts/alpha/RELNOTES.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 4:16:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E04F937B72E; Mon, 24 Jul 2000 04:16:56 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA60084; Mon, 24 Jul 2000 04:16:57 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200007241116.EAA60084@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 24 Jul 2000 04:16:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/conf NOTES X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/07/24 04:16:57 PDT Modified files: sys/i386/conf NOTES Log: Document device tdfx and options TDFX_LINUX. Revision Changes Path 1.804 +4 -1 src/sys/i386/conf/NOTES To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 4:34: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AD8E537B5DF; Mon, 24 Jul 2000 04:33:56 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA61580; Mon, 24 Jul 2000 04:33:56 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007241133.EAA61580@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 24 Jul 2000 04:33:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/freeciv Makefile ports/games/freeciv/files md5 ports/games/freeciv/pkg DESCR PLIST ports/games/freeciv-gtk/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/24 04:33:56 PDT Modified files: games/freeciv Makefile games/freeciv/files md5 games/freeciv/pkg DESCR PLIST games/freeciv-gtk/pkg PLIST Log: Update to 1.11.4: Internationalization extended. Full fog of war, nuclear fallout and more new goodies. Lots of user interface improvements. Lots of little bugfixes. Also, the distfile location has changed. Added a new mirror. Revision Changes Path 1.34 +7 -6 ports/games/freeciv/Makefile 1.17 +1 -1 ports/games/freeciv/files/md5 1.8 +1 -1 ports/games/freeciv/pkg/DESCR 1.11 +88 -18 ports/games/freeciv/pkg/PLIST 1.2 +88 -18 ports/games/freeciv-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 Mon Jul 24 5:24:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 976D637B8BC; Mon, 24 Jul 2000 05:24:08 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA68299; Mon, 24 Jul 2000 05:24:08 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007241224.FAA68299@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 24 Jul 2000 05:24:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/freeciv/pkg PLIST ports/games/freeciv-gtk/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/24 05:24:08 PDT Modified files: games/freeciv/pkg PLIST games/freeciv-gtk/pkg PLIST Log: Fix disorder introduced in the previous commit. Revision Changes Path 1.12 +1 -1 ports/games/freeciv/pkg/PLIST 1.3 +1 -1 ports/games/freeciv-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 Mon Jul 24 6:40:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D876337B8FC; Mon, 24 Jul 2000 06:40:41 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA88539; Mon, 24 Jul 2000 06:40:41 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007241340.GAA88539@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 24 Jul 2000 06:40:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/24 06:40:41 PDT Modified files: etc rc Log: If the initial attempt to write ${entropy_file} to /dev/random fails and the randomdev.ko module is not resident, try to load the module and perform the write again. Reviewed by: markm Revision Changes Path 1.221 +11 -3 src/etc/rc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 6:44:20 2000 Delivered-To: cvs-all@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.2.163]) by hub.freebsd.org (Postfix) with ESMTP id E7FCF37B940; Mon, 24 Jul 2000 06:44:06 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.15 #1) id 13GiWQ-0000B2-00; Mon, 24 Jul 2000 15:43:54 +0200 From: Sheldon Hearn To: cvs-committers@FreeBSD.org Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc rc In-reply-to: Your message of "Mon, 24 Jul 2000 06:40:41 MST." <200007241340.GAA88539@freefall.freebsd.org> Date: Mon, 24 Jul 2000 15:43:54 +0200 Message-ID: <683.964446234@axl.ops.uunet.co.za> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 24 Jul 2000 06:40:41 MST, Sheldon Hearn wrote: > Modified files: > etc rc > Log: > If the initial attempt to write ${entropy_file} to /dev/random fails > and the randomdev.ko module is not resident, try to load the module and > perform the write again. Although the decision to load the module should probably be controlled by some other option, there's already a boot loader option for it and folks who don't want to load the module should simply set entropy_file="NO" in /etc/rc.conf . This is not a big issue, because this whole approach is likely to change soon. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 6:52:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B0F7B37B842; Mon, 24 Jul 2000 06:52:08 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA27473; Mon, 24 Jul 2000 06:52:08 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007241352.GAA27473@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 24 Jul 2000 06:52:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules/if_ef Makefile src/sys/modules/netgraph/UI Makefile src/sys/modules/netgraph/async Makefile src/sys/modules/netgraph/bpf Makefile src/sys/modules/netgraph/cisco Makefile src/sys/modules/netgraph/echo Makefile ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/24 06:52:07 PDT Modified files: sys/modules/if_ef Makefile sys/modules/netgraph/UI Makefile sys/modules/netgraph/async Makefile sys/modules/netgraph/bpf Makefile sys/modules/netgraph/cisco Makefile sys/modules/netgraph/echo Makefile sys/modules/netgraph/frame_relay Makefile sys/modules/netgraph/hole Makefile sys/modules/netgraph/iface Makefile sys/modules/netgraph/ksocket Makefile sys/modules/netgraph/lmi Makefile sys/modules/netgraph/mppc Makefile sys/modules/netgraph/netgraph Makefile sys/modules/netgraph/ppp Makefile sys/modules/netgraph/pppoe Makefile sys/modules/netgraph/pptpgre Makefile sys/modules/netgraph/rfc1490 Makefile sys/modules/netgraph/socket Makefile sys/modules/netgraph/tee Makefile sys/modules/netgraph/tty Makefile sys/modules/netgraph/vjc Makefile Log: When manual pages are moved or removed, MANX should be changed to NOMAN. Reported by: bde Revision Changes Path 1.7 +2 -1 src/sys/modules/if_ef/Makefile 1.7 +2 -1 src/sys/modules/netgraph/UI/Makefile 1.7 +2 -1 src/sys/modules/netgraph/async/Makefile 1.8 +2 -1 src/sys/modules/netgraph/bpf/Makefile 1.9 +2 -1 src/sys/modules/netgraph/cisco/Makefile 1.7 +2 -1 src/sys/modules/netgraph/echo/Makefile 1.7 +2 -1 src/sys/modules/netgraph/frame_relay/Makefile 1.7 +2 -1 src/sys/modules/netgraph/hole/Makefile 1.12 +2 -1 src/sys/modules/netgraph/iface/Makefile 1.7 +2 -1 src/sys/modules/netgraph/ksocket/Makefile 1.7 +2 -1 src/sys/modules/netgraph/lmi/Makefile 1.9 +2 -1 src/sys/modules/netgraph/mppc/Makefile 1.6 +2 -1 src/sys/modules/netgraph/netgraph/Makefile 1.7 +2 -1 src/sys/modules/netgraph/ppp/Makefile 1.7 +2 -1 src/sys/modules/netgraph/pppoe/Makefile 1.7 +2 -1 src/sys/modules/netgraph/pptpgre/Makefile 1.7 +2 -1 src/sys/modules/netgraph/rfc1490/Makefile 1.7 +2 -1 src/sys/modules/netgraph/socket/Makefile 1.7 +2 -1 src/sys/modules/netgraph/tee/Makefile 1.7 +2 -1 src/sys/modules/netgraph/tty/Makefile 1.8 +2 -1 src/sys/modules/netgraph/vjc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 6:55:41 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CE1AC37B527; Mon, 24 Jul 2000 06:55:38 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA39168; Mon, 24 Jul 2000 06:55:38 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Message-Id: <200007241355.GAA39168@freefall.freebsd.org> From: Satoshi Taoka Date: Mon, 24 Jul 2000 06:55:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/addttfont Makefile ports/japanese/addttfont/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG taoka 2000/07/24 06:55:38 PDT Modified files: japanese/addttfont Makefile japanese/addttfont/files md5 Log: Updated to 1.9 Fixed RUN_DEPENDS Obtained from: bento Revision Changes Path 1.3 +6 -3 ports/japanese/addttfont/Makefile 1.2 +1 -1 ports/japanese/addttfont/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 7:10:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2882F37B9A7; Mon, 24 Jul 2000 07:10:18 -0700 (PDT) (envelope-from dwmalone@FreeBSD.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA42122; Mon, 24 Jul 2000 07:10:17 -0700 (PDT) (envelope-from dwmalone@FreeBSD.org) Message-Id: <200007241410.HAA42122@freefall.freebsd.org> From: David Malone Date: Mon, 24 Jul 2000 07:10:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/syslogd syslog.conf.5 syslogd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dwmalone 2000/07/24 07:10:17 PDT Modified files: usr.sbin/syslogd syslog.conf.5 syslogd.c Log: Allow syslogd to select messages based on the originating host in a similar way to the way it can select messages from a given program. Lines beginning with "+hostname" or "#+hostname" select messaes from that hostname and lines beginning with "-hostname" or "#-hostname" match messages not from that hostname. There are some significant style issues left in the original program selection code and the man page. This should be cleared up in some later commits. Reviewed by: sheldonh Based on an original patch by: Bernd Walter Man page stylist: sheldonh Revision Changes Path 1.17 +64 -10 src/usr.sbin/syslogd/syslog.conf.5 1.64 +52 -8 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 Mon Jul 24 7:23:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9AC8237B719; Mon, 24 Jul 2000 07:23:48 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA43637; Mon, 24 Jul 2000 07:23:48 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007241423.HAA43637@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 24 Jul 2000 07:23:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 md.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/24 07:23:48 PDT Modified files: share/man/man4 md.4 Log: Add an EXAMPLES section with an example of how to mount a malloc(9)-backed md(4) device on /tmp . Revision Changes Path 1.4 +16 -1 src/share/man/man4/md.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 7:46:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F0CFD37BA4A; Mon, 24 Jul 2000 07:46:11 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA46421; Mon, 24 Jul 2000 07:46:12 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007241446.HAA46421@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 24 Jul 2000 07:46:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 md.4 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/24 07:46:12 PDT Modified files: (Branch: RELENG_4) share/man/man4 md.4 Log: MFC rev 1.4: add EXAMPLES section. Revision Changes Path 1.3.2.2 +16 -1 src/share/man/man4/md.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 7:59:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4219637B914; Mon, 24 Jul 2000 07:59:52 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA48838; Mon, 24 Jul 2000 07:59:51 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007241459.HAA48838@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 24 Jul 2000 07:59:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/sh sh.1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/24 07:59:50 PDT Modified files: bin/sh sh.1 Log: Add missing punctuation to one line. Revision Changes Path 1.41 +2 -2 src/bin/sh/sh.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 8: 2:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E163F37BAB4; Mon, 24 Jul 2000 08:02:04 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA49139; Mon, 24 Jul 2000 08:02:04 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007241502.IAA49139@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 24 Jul 2000 08:02:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/sh sh.1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/24 08:02:04 PDT Modified files: bin/sh sh.1 Log: Mark up the -a flag to unalias as a flag (Fl), not an argument (Ar). Revision Changes Path 1.42 +2 -2 src/bin/sh/sh.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 8: 5:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E7EE537BAB4; Mon, 24 Jul 2000 08:05:11 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA49777; Mon, 24 Jul 2000 08:05:11 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007241505.IAA49777@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 24 Jul 2000 08:05:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/sh sh.1 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/24 08:05:11 PDT Modified files: (Branch: RELENG_4) bin/sh sh.1 Log: MFC rev 1.41 and 1.42: two nits Revision Changes Path 1.39.2.2 +3 -3 src/bin/sh/sh.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 8:15: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AADFC37BBE1; Mon, 24 Jul 2000 08:14:48 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA52208; Mon, 24 Jul 2000 08:14:47 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007241514.IAA52208@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 24 Jul 2000 08:14:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc.shutdown X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/24 08:14:47 PDT Modified files: etc rc.shutdown Log: Close a window of readability when creating the entropy seed file, which must not be world-readable. Revision Changes Path 1.9 +4 -2 src/etc/rc.shutdown To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 8:16:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3A06137BAC9; Mon, 24 Jul 2000 08:15:37 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA52381; Mon, 24 Jul 2000 08:15:36 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007241515.IAA52381@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 24 Jul 2000 08:15:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc.shutdown X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/24 08:15:36 PDT Modified files: etc rc.shutdown Log: Previous commit was... Reviewed by: markm Revision Changes Path 1.10 +1 -1 src/etc/rc.shutdown To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 8:32:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ED7EA37BB3C; Mon, 24 Jul 2000 08:32:26 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Received: (from nsayer@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA54877; Mon, 24 Jul 2000 08:32:27 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Message-Id: <200007241532.IAA54877@freefall.freebsd.org> From: Nick Sayer Date: Mon, 24 Jul 2000 08:32:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net if_tap.c if_tapvar.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nsayer 2000/07/24 08:32:26 PDT Modified files: sys/net if_tap.c if_tapvar.h Log: Sundry changes to debugging code. Add spl/splx to various sensitive spots Change semantics of the vmnet version of the device to keep VMware happy (don't junk state when the device is closed) Submitted by: vsilyaev@mindspring.com Revision Changes Path 1.2 +75 -36 src/sys/net/if_tap.c 1.2 +2 -1 src/sys/net/if_tapvar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 8:48:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 10F0237BB2A; Mon, 24 Jul 2000 08:48:23 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA56836; Mon, 24 Jul 2000 08:48:23 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007241548.IAA56836@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 24 Jul 2000 08:48:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games Makefile ports/games/pythoong Makefile ports/games/pythoong/files md5 ports/games/pythoong/patches patch-aa patch-ab ports/games/pythoong/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/24 08:48:23 PDT Modified files: games Makefile Added files: games/pythoong Makefile games/pythoong/files md5 games/pythoong/patches patch-aa patch-ab games/pythoong/pkg COMMENT DESCR PLIST Log: Add pythong - a snake-like game for Gnome desktop. Obtained from: http://www.gnome.org Revision Changes Path 1.286 +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 Jul 24 8:48:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C5FD37BB81; Mon, 24 Jul 2000 08:48:52 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA56944; Mon, 24 Jul 2000 08:48:53 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007241548.IAA56944@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 24 Jul 2000 08:48:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/24 08:48:52 PDT Modified files: . modules Log: pythoong --> ports/games/pythoong Revision Changes Path 1.1449 +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 Jul 24 9:10:17 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 391BE37BBB9; Mon, 24 Jul 2000 09:10:12 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id KAA20546; Mon, 24 Jul 2000 10:10:10 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id KAA80242; Mon, 24 Jul 2000 10:09:53 -0600 (MDT) Message-Id: <200007241609.KAA80242@harmony.village.org> To: Wilko Bulte Subject: Re: cvs commit: src/release/texts/alpha RELNOTES.TXT Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Mon, 24 Jul 2000 04:11:57 PDT." <200007241111.EAA59686@freefall.freebsd.org> References: <200007241111.EAA59686@freefall.freebsd.org> Date: Mon, 24 Jul 2000 10:09:53 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <200007241111.EAA59686@freefall.freebsd.org> Wilko Bulte writes: : document support for IDE root/boot, remove a few unsupported/untested SCSI : cards, remove some PCMCIA cards. I didn't think that pccards worked on the Alpha at all. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 9:13:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4210C37B6D2; Mon, 24 Jul 2000 09:13:25 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA61137; Mon, 24 Jul 2000 09:13:24 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007241613.JAA61137@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 24 Jul 2000 09:13:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/gcompris Makefile ports/games/gcompris/patches patch-aa patch-ac patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/24 09:13:24 PDT Modified files: games/gcompris Makefile games/gcompris/patches patch-aa patch-ac Removed files: games/gcompris/patches patch-ab Log: Various fixes and cleanups: - Handle pthread and installation dirs issues using perl regex instead of patches; - add gnomecc RUN_DEPENDS to ensure correct removal; - make it buildable even w/o autoheader installed. Revision Changes Path 1.3 +7 -1 ports/games/gcompris/Makefile 1.2 +0 -28 ports/games/gcompris/patches/patch-aa 1.2 +13 -15 ports/games/gcompris/patches/patch-ac To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 9:24:36 2000 Delivered-To: cvs-all@freebsd.org Received: from eeyore.local.dohd.org (d0030.dtk.chello.nl [213.46.0.30]) by hub.freebsd.org (Postfix) with ESMTP id 8AF1737B5BB; Mon, 24 Jul 2000 09:24:24 -0700 (PDT) (envelope-from freebsd@dohd.org) Received: by eeyore.local.dohd.org (Postfix+IPv6, from userid 1008) id 1B0FFBA9F; Mon, 24 Jul 2000 18:24:22 +0200 (MET DST) Date: Mon, 24 Jul 2000 18:24:21 +0200 From: Mark Huizer To: David Malone Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/syslogd syslog.conf.5 syslogd.c Message-ID: <20000724182421.A94453@dohd.cx> References: <200007241410.HAA42122@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200007241410.HAA42122@freefall.freebsd.org>; from dwmalone@FreeBSD.org on Mon, Jul 24, 2000 at 07:10:17AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Jul 24, 2000 at 07:10:17AM -0700, David Malone wrote: > dwmalone 2000/07/24 07:10:17 PDT > > Modified files: > usr.sbin/syslogd syslog.conf.5 syslogd.c > Log: > Allow syslogd to select messages based on the originating host in > a similar way to the way it can select messages from a given program. > > Lines beginning with "+hostname" or "#+hostname" select messaes > from that hostname and lines beginning with "-hostname" or "#-hostname" > match messages not from that hostname. > isn't it counterintuitive to do this for lines with #+hostname and #-hostname? Mark -- Nice testing in little China... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 9:27: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id 3668B37B6D2; Mon, 24 Jul 2000 09:26:53 -0700 (PDT) (envelope-from dwmalone@maths.tcd.ie) Received: from bell.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 24 Jul 2000 17:26:51 +0100 (BST) Date: Mon, 24 Jul 2000 17:26:51 +0100 From: David Malone To: Mark Huizer Cc: David Malone , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/syslogd syslog.conf.5 syslogd.c Message-ID: <20000724172651.A47473@bell.maths.tcd.ie> References: <200007241410.HAA42122@freefall.freebsd.org> <20000724182421.A94453@dohd.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.2i In-Reply-To: <20000724182421.A94453@dohd.cx>; from freebsd@dohd.cx on Mon, Jul 24, 2000 at 06:24:21PM +0200 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Jul 24, 2000 at 06:24:21PM +0200, Mark Huizer wrote: > > Lines beginning with "+hostname" or "#+hostname" select messaes > > from that hostname and lines beginning with "-hostname" or "#-hostname" > > match messages not from that hostname. > > > isn't it counterintuitive to do this for lines with #+hostname and > #-hostname? I was following the precident set by !prog and #!prog. The idea is that it allows you to share your syslog.conf file with machines that don't understand this syntax. David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 9:28:59 2000 Delivered-To: cvs-all@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.2.163]) by hub.freebsd.org (Postfix) with ESMTP id 25F9A37B703; Mon, 24 Jul 2000 09:28:49 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.15 #1) id 13Gl5c-000227-00; Mon, 24 Jul 2000 18:28:24 +0200 From: Sheldon Hearn To: Mark Huizer Cc: David Malone , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/syslogd syslog.conf.5 syslogd.c In-reply-to: Your message of "Mon, 24 Jul 2000 18:24:21 +0200." <20000724182421.A94453@dohd.cx> Date: Mon, 24 Jul 2000 18:28:24 +0200 Message-ID: <7818.964456104@axl.ops.uunet.co.za> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 24 Jul 2000 18:24:21 +0200, Mark Huizer wrote: > isn't it counterintuitive to do this for lines with #+hostname and > #-hostname? Since we do so for lines with ``#!progname'', I thought it was pretty orthogonal. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 9:28:58 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 4FF1837B958; Mon, 24 Jul 2000 09:28:45 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id KAA20688; Mon, 24 Jul 2000 10:28:42 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id KAA80424; Mon, 24 Jul 2000 10:28:25 -0600 (MDT) Message-Id: <200007241628.KAA80424@harmony.village.org> Subject: Re: cvs commit: src/release/texts/alpha RELNOTES.TXT To: Wilko Bulte , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Mon, 24 Jul 2000 10:09:53 MDT." <200007241609.KAA80242@harmony.village.org> References: <200007241609.KAA80242@harmony.village.org> <200007241111.EAA59686@freefall.freebsd.org> Date: Mon, 24 Jul 2000 10:28:25 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <200007241609.KAA80242@harmony.village.org> Warner Losh writes: : In message <200007241111.EAA59686@freefall.freebsd.org> Wilko Bulte writes: : : document support for IDE root/boot, remove a few unsupported/untested SCSI : : cards, remove some PCMCIA cards. : : I didn't think that pccards worked on the Alpha at all. I've had two messages ask about this... I mean that FreeBSD doesn't support pccard on the alpha, I thought. arner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 9:30:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 90C0A37BB04; Mon, 24 Jul 2000 09:30:35 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA63408; Mon, 24 Jul 2000 09:30:35 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007241630.JAA63408@freefall.freebsd.org> From: SADA Kenji Date: Mon, 24 Jul 2000 09:30:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/ppxp Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/24 09:30:35 PDT Modified files: japanese/ppxp Makefile Log: Change maintainer. Revision Changes Path 1.7 +1 -3 ports/japanese/ppxp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 10: 1:48 2000 Delivered-To: cvs-all@freebsd.org Received: from zippy.osd.bsdi.com (zippy.osd.bsdi.com [204.216.27.228]) by hub.freebsd.org (Postfix) with ESMTP id B2EC137B870; Mon, 24 Jul 2000 10:01:45 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) Received: from localhost (jkh@localhost [127.0.0.1]) by zippy.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id KAA25787; Mon, 24 Jul 2000 10:01:25 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) To: Warner Losh Cc: "Andrey A. Chernov" , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs In-reply-to: Your message of "Sun, 23 Jul 2000 21:39:45 MDT." <200007240339.VAA76413@harmony.village.org> Date: Mon, 24 Jul 2000 10:01:25 -0700 Message-ID: <25784.964458085@localhost> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > The only real way that I see of getting this is to add -L to mtree, > but also add an enviornment variable that mtree does a getenv on. > That would be something like MTREE_USE_LOGICAL. If that exists, it > defaults to the old behavior w/o need for a command line argument. I see an mtree command growing an uncommon amount of fur in this proposal. :( Can you perhaps recap the reasons why we'd want mtree to use one default behavior for "general use" but another default behavior for its use in the source tree? This whole thing just seems kind of... off... somehow. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 10: 5:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B7C1437B8EA; Mon, 24 Jul 2000 10:05:26 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA68254; Mon, 24 Jul 2000 10:05:26 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007241705.KAA68254@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 24 Jul 2000 10:05:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/idle Makefile ports/devel/moonshine Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/24 10:05:25 PDT Modified files: devel/idle Makefile devel/moonshine Makefile Log: Use sobomax@FreeBSD.org as my e-mail. Revision Changes Path 1.3 +2 -2 ports/devel/idle/Makefile 1.2 +2 -2 ports/devel/moonshine/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 10: 7: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from zippy.osd.bsdi.com (zippy.osd.bsdi.com [204.216.27.228]) by hub.freebsd.org (Postfix) with ESMTP id BB27C37BA23; Mon, 24 Jul 2000 10:06:55 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) Received: from localhost (jkh@localhost [127.0.0.1]) by zippy.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id KAA25832; Mon, 24 Jul 2000 10:06:37 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) To: Archie Cobbs Cc: obrien@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/ifconfig ifconfig.c In-reply-to: Your message of "Sun, 23 Jul 2000 21:31:59 PDT." <200007240431.VAA19546@bubba.whistle.com> Date: Mon, 24 Jul 2000 10:06:37 -0700 Message-ID: <25829.964458397@localhost> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I haven't changed my mind - it's getting far too late in the process to juggle this back and forth and I care less about the default behavior than I do about not rocking the boat any more than absolutely necessary just 24 hours before release. - Jordan > David O'Brien writes: > > On Sun, Jul 23, 2000 at 10:50:34AM -0700, Archie Cobbs wrote: > > > David O'Brien writes: > > > > > > Since there is some opposition to this, can it be backed out of REL ENG_4 > > > > > > for 4.1-R to give it more time to be discussed? > > > > > You're talking about "ifconfig" == "ifconfig -a" right..? > > > > > I'm happy with whatever everybody else wants. Seems to me a > > > > > lot of people liked it though. > > > > > > > > Since you got people that strongly spoke up, can we remove this from > > > > 4.1-R? > > > Be my guest.. > > > > I thought you said you were willing to. > > It already came up before in a private email and Jordan indicated > he would rather not at this point. If you change his mind cc: me > and I'll revert it. I'm just being hesitant because I don't want > to make any more unilateral last minute changes and get yelled at. > > -Archie > > ___________________________________________________________________________ > Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 10:12: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A891337BA23; Mon, 24 Jul 2000 10:11:59 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Received: (from jdp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA69688; Mon, 24 Jul 2000 10:11:59 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Message-Id: <200007241711.KAA69688@freefall.freebsd.org> From: John Polstra Date: Mon, 24 Jul 2000 10:11:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/mirrors chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jdp 2000/07/24 10:11:59 PDT Modified files: en_US.ISO_8859-1/books/handbook/mirrors chapter.sgml Log: Add cvsup4.de.FreeBSD.org. Revision Changes Path 1.78 +6 -1 doc/en_US.ISO_8859-1/books/handbook/mirrors/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 10:24: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from zippy.osd.bsdi.com (zippy.osd.bsdi.com [204.216.27.228]) by hub.freebsd.org (Postfix) with ESMTP id 6F4E937B53C; Mon, 24 Jul 2000 10:23:39 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) Received: from localhost (jkh@localhost [127.0.0.1]) by zippy.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id KAA25876; Mon, 24 Jul 2000 10:18:35 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) To: "Andrey A. Chernov" Cc: Warner Losh , Marcel Moolenaar , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs In-reply-to: Your message of "Mon, 24 Jul 2000 08:50:32 +0400." <20000724085030.A28936@nagual.pp.ru> Date: Mon, 24 Jul 2000 10:18:35 -0700 Message-ID: <25873.964459115@localhost> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > It is impossible to work in the project when unacceptable attitude and > ways to "solve" we see becomes approved by principals of the project. This > is not an emotions but pure practical and very sad for me conclusion. I don't want to add further fuel to this fire, but I think Andrey is being just a little too selective in seeing where attitudes or solutions were flawed in this whole sad chain of events. You can't just commit something and then ignore a good week's worth of moaning and screaming about it in various lists which you SHOULD be reading without expecting something to happen. Andrey basically did a hit-and-run on the tree and then declined to participate seriously in the discussion and suggested fixes which followed, a decision which makes any subsequent accusation of dysfunctional communication or attitudes somewhat surrealistic at best. "Let he who is without sin..." If Andrey still wants to leave the project over one comparatively small set of changes then that's his perogative and he'll be missed. He certainly won't be leaving because of what the principals did, however, since he was entirely the architect of his own misfortune in this affair and I hope that other committers have learned a valuable lesson about how *not* to do things from it. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 10:27:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3303737BA3B; Mon, 24 Jul 2000 10:27:14 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA71269; Mon, 24 Jul 2000 10:27:14 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007241727.KAA71269@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 24 Jul 2000 10:27:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11 Makefile ports/x11/gtk-theme-switch Makefile ports/x11/gtk-theme-switch/files md5 ports/x11/gtk-theme-switch/patches patch-aa ports/x11/gtk-theme-switch/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/24 10:27:14 PDT Modified files: x11 Makefile Added files: x11/gtk-theme-switch Makefile x11/gtk-theme-switch/files md5 x11/gtk-theme-switch/patches patch-aa x11/gtk-theme-switch/pkg COMMENT DESCR PLIST Log: Add gtk-theme-switch - an command line utility to switch GTK+ themes. Revision Changes Path 1.291 +2 -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 Mon Jul 24 10:28:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A36CC37BC0F; Mon, 24 Jul 2000 10:28:05 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA71389; Mon, 24 Jul 2000 10:28:05 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007241728.KAA71389@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 24 Jul 2000 10:28:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/24 10:28:05 PDT Modified files: . modules Log: gtk-theme-switch --> ports/x11/gtk-theme-switch Revision Changes Path 1.1450 +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 Jul 24 11: 0:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7109337BCF7; Mon, 24 Jul 2000 11:00:19 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA75940; Mon, 24 Jul 2000 11:00:19 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200007241800.LAA75940@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Mon, 24 Jul 2000 11:00:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/sysinstall config.c dist.c globals.c install.c sysinstall.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/07/24 11:00:19 PDT Modified files: release/sysinstall config.c dist.c globals.c install.c sysinstall.h Log: Terminate, with extreme prejudice, the USAResident hack which does bad things to /etc/make.conf in certain situations. Also soften the "don't install crypto from the USA!" messages since, except for RSA (which is still noted), that's not so true anymore. Revision Changes Path 1.160 +1 -36 src/release/sysinstall/config.c 1.178 +3 -10 src/release/sysinstall/dist.c 1.25 +1 -3 src/release/sysinstall/globals.c 1.278 +1 -39 src/release/sysinstall/install.c 1.194 +1 -3 src/release/sysinstall/sysinstall.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 11: 3:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C4EA837BB2A; Mon, 24 Jul 2000 11:03:53 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA77126; Mon, 24 Jul 2000 11:03:53 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007241803.LAA77126@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 24 Jul 2000 11:03:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys kqueue.2 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/24 11:03:53 PDT Modified files: lib/libc/sys kqueue.2 Log: Clean up some nits, with the permission of the author: * Grammar fixes. * Mark up rfork and vnode as cross-references. * Clarify the use of the RFFDG flag to rfork(2). Revision Changes Path 1.12 +15 -8 src/lib/libc/sys/kqueue.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 11: 5:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A400837BCC6; Mon, 24 Jul 2000 11:05:28 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA78332; Mon, 24 Jul 2000 11:05:28 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007241805.LAA78332@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 24 Jul 2000 11:05:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys kqueue.2 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/24 11:05:28 PDT Modified files: (Branch: RELENG_4) lib/libc/sys kqueue.2 Log: MFC rev 1.12: general clean-up Revision Changes Path 1.1.2.5 +15 -8 src/lib/libc/sys/kqueue.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 11:10:11 2000 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 8FA4C37BC6C; Mon, 24 Jul 2000 11:09:32 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.9.3/8.9.3) id WAA32498; Mon, 24 Jul 2000 22:04:11 +0400 (MSD) (envelope-from ache) Date: Mon, 24 Jul 2000 22:04:10 +0400 From: "Andrey A. Chernov" To: "Jordan K. Hubbard" Cc: Warner Losh , Marcel Moolenaar , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000724220410.A32323@nagual.pp.ru> References: <20000724085030.A28936@nagual.pp.ru> <25873.964459115@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <25873.964459115@localhost>; from jkh@zippy.osd.bsdi.com on Mon, Jul 24, 2000 at 10:18:35AM -0700 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Jul 24, 2000 at 10:18:35AM -0700, Jordan K. Hubbard wrote: > solutions were flawed in this whole sad chain of events. You can't > just commit something and then ignore a good week's worth of moaning > and screaming about it in various lists which you SHOULD be reading > without expecting something to happen. Don't try to create false impression of my actions. Lets re-construct real historycal things flow: 1) -L was commited, to mtree and Makefiles which undo the defaults change I do very long time ago. At this moment too many people want different mtree behaviour in some situations and attempt to fix it in different ways which are not logical and increase incompatibility with mtrees in other BSD camps. I undestand that the best way was not to change defaults but add an option instead. 2) Since I need some sleep, I note people that right at this moment they need to install mtree manually, via HEADS UP. 3) I go sleep and when wake up to commit next round of fixes, like 'make world' one, I'll see Jordan report that 'make world' broken, I already know this. 4) Next two my commits fix 'make world' on -current which is required test for changes. Remember that for -current there is no critical time bottle neck like releasing needs, etc. We have precedents of broken 'make world' for -current even for longer time. 5) The next problem is upgrading from 4.0 to -current arise which I am completely unaware and it was not self-explained from discussions or commit messages. This problem is from two parts. First part is strtofflags() which I am not responsible and next part is -L. 6) Warner fix strtofflags() problem in mtree Makefile. 7) Marcel back out my changes without even noticing me. 8) I try to communicate with Marcel and Warner to find the ways to solve this properly and Warner finally shows his good will and intention to cooperate coming with fix but not Marcel which simple ignoring this subj. after backing out. 9) Marcel comes and back out mtree -L changes too (!), continue the crude way his choose, but now this was even worse because approved by Jordan, I mean his leading position in the project which means that project now driven out of cooperation to brute force ways. 10) It is impossible to participate in such project. 11) Since it is practical conclusion and not emotional, I am very willing to return in any time when leading attitude driving project out of cooperation changed. I am very willing to communicate and discuss the best technical ways to resolve problems that arise as result of my changes too. As I already note, Warner shows good way to settle this. > Andrey basically did a hit-and-run on the tree and then declined to > participate seriously in the discussion and suggested fixes which > followed, a decision which makes any subsequent accusation of It is not true. > dysfunctional communication or attitudes somewhat surrealistic at > best. "Let he who is without sin..." While surrealistic is a true compliment, pointing back to me is poor way to argue. In any case during the project runtime I never back out someone changes in such crude way, when I back out something by mistake I restore it after discussion. > If Andrey still wants to leave the project over one comparatively > small set of changes then that's his perogative and he'll be missed. In this case not the size of changes matters, but the non-cooperative way people deals with changes, _any_ changes. > He certainly won't be leaving because of what the principals did, No, just because this reason. Marcel is relatively new and not know some things but not you. > this affair and I hope that other committers have learned a valuable > lesson about how *not* to do things from it. Yes. I think that this can happens to everyone work, if nothing changed. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 11:13:26 2000 Delivered-To: cvs-all@freebsd.org Received: from gidora.zeta.org.au (gidora.zeta.org.au [203.26.10.25]) by hub.freebsd.org (Postfix) with SMTP id 8765637BCA9 for ; Mon, 24 Jul 2000 11:13:07 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: (qmail 803 invoked from network); 24 Jul 2000 18:12:38 -0000 Received: from unknown (HELO bde.zeta.org.au) (203.2.228.102) by gidora.zeta.org.au with SMTP; 24 Jul 2000 18:12:38 -0000 Date: Tue, 25 Jul 2000 04:12:35 +1000 (EST) From: Bruce Evans X-Sender: bde@besplex.bde.org To: Sheldon Hearn Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules/if_ef Makefile src/sys/modules/netgraph/UI Makefile src/sys/modules/netgraph/async Makefile src/sys/modules/netgraph/bpf Makefile src/sys/modules/netgraph/cisco Makefile src/sys/modules/netgraph/echo Makefile ... In-Reply-To: <200007241352.GAA27473@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Log: > When manual pages are moved or removed, MANX should be changed > to NOMAN. > > Reported by: bde Um, this breakage was a feature. Now that section 4 man pages are supposed to be elsewhere, defaulting to a section 4 man page is wronger than before. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 11:45:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4165437BC5C; Mon, 24 Jul 2000 11:45:26 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA83030; Mon, 24 Jul 2000 11:45:26 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200007241845.LAA83030@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Mon, 24 Jul 2000 11:45:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/sysinstall/help distributions.hlp X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/07/24 11:45:26 PDT Modified files: release/sysinstall/help distributions.hlp Log: Remove outdated crypto comments. Revision Changes Path 1.13 +0 -22 src/release/sysinstall/help/distributions.hlp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 11:46:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 05D7937BA5D; Mon, 24 Jul 2000 11:46:25 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA83176; Mon, 24 Jul 2000 11:46:24 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200007241846.LAA83176@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Mon, 24 Jul 2000 11:46:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/sysinstall config.c dist.c globals.c install.c sysinstall.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/07/24 11:46:24 PDT Modified files: (Branch: RELENG_4) release/sysinstall config.c dist.c globals.c install.c sysinstall.h Log: MFC: fixes to eliminate USAResident and outdated crypto comments. Revision Changes Path 1.156.2.4 +1 -36 src/release/sysinstall/config.c 1.175.2.3 +3 -10 src/release/sysinstall/dist.c 1.24.2.1 +1 -3 src/release/sysinstall/globals.c 1.268.2.8 +1 -39 src/release/sysinstall/install.c 1.186.2.7 +1 -3 src/release/sysinstall/sysinstall.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 11:46:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B712937BBD5; Mon, 24 Jul 2000 11:46:51 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA83254; Mon, 24 Jul 2000 11:46:51 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200007241846.LAA83254@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Mon, 24 Jul 2000 11:46:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/sysinstall/help distributions.hlp X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/07/24 11:46:51 PDT Modified files: (Branch: RELENG_4) release/sysinstall/help distributions.hlp Log: MFC: fixes to eliminate USAResident and outdated crypto comments. Revision Changes Path 1.11.2.2 +0 -22 src/release/sysinstall/help/distributions.hlp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 12: 0:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3ACB437BC28; Mon, 24 Jul 2000 12:00:21 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA85178; Mon, 24 Jul 2000 12:00:21 -0700 (PDT) (envelope-from phk@FreeBSD.org) Message-Id: <200007241900.MAA85178@freefall.freebsd.org> From: Poul-Henning Kamp Date: Mon, 24 Jul 2000 12:00:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf majors X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phk 2000/07/24 12:00:21 PDT Modified files: sys/conf majors Log: Allocate major 152 to ACPI. Requested by: Takanori Watanabe Revision Changes Path 1.110 +2 -1 src/sys/conf/majors To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 12:50:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E78C37BB8B; Mon, 24 Jul 2000 12:50:21 -0700 (PDT) (envelope-from mckusick@FreeBSD.org) Received: (from mckusick@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA93501; Mon, 24 Jul 2000 12:50:20 -0700 (PDT) (envelope-from mckusick@FreeBSD.org) Message-Id: <200007241950.MAA93501@freefall.freebsd.org> From: Kirk McKusick Date: Mon, 24 Jul 2000 12:50:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/fsck dir.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mckusick 2000/07/24 12:50:20 PDT Modified files: sbin/fsck dir.c Log: If the lost+found directory is created by fsck, it will do a cacheino() which sets the inoinfo's i_parent and i_dotdot to 0, but they never get set to ROOTINO. This means that propagate will never find lost+found and its descendents, subdirectories will remain DSTATE (instead of DFOUND) even though they *are* correctly linked in, and pass4.c will try to clear them unsuccessfully, thinking that there is no link count from the DSTATE directory's parent. The result is that you need to run fsck twice and get link count increasing errors (which are unexpected and fatal when running in preen mode). The fix is to set i_parent and i_dotdot to "parent" after the second cacheino() call in dir.c:allocdir(). Obtained from: "Ethan Solomita" (of the NetBSD Project) Revision Changes Path 1.17 +6 -2 src/sbin/fsck/dir.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 13: 2:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 23ECB37BC1D; Mon, 24 Jul 2000 13:02:50 -0700 (PDT) (envelope-from marko@FreeBSD.org) Received: (from marko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA95204; Mon, 24 Jul 2000 13:02:49 -0700 (PDT) (envelope-from marko@FreeBSD.org) Message-Id: <200007242002.NAA95204@freefall.freebsd.org> From: Mark Ovens Date: Mon, 24 Jul 2000 13:02:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/articles/committers-guide article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marko 2000/07/24 13:02:49 PDT Modified files: en_US.ISO_8859-1/articles/committers-guide article.sgml Log: Add note about the use of tags when cvsup'ing the GNATS tree. Revision Changes Path 1.28 +5 -1 doc/en_US.ISO_8859-1/articles/committers-guide/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 13:23: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 066A037B5FA; Mon, 24 Jul 2000 13:22:55 -0700 (PDT) (envelope-from charnier@FreeBSD.org) Received: (from charnier@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA98414; Mon, 24 Jul 2000 13:22:54 -0700 (PDT) (envelope-from charnier@FreeBSD.org) Message-Id: <200007242022.NAA98414@freefall.freebsd.org> From: Philippe Charnier Date: Mon, 24 Jul 2000 13:22:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/colcrt colcrt.1 colcrt.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG charnier 2000/07/24 13:22:54 PDT Modified files: usr.bin/colcrt colcrt.1 colcrt.c Log: Start enumerate option with `The following options are available' like most of the utilities. .Nm prog -> .Nm Remove unused include Make use of getopt() instead of parsing params by hand. Revision Changes Path 1.5 +5 -5 src/usr.bin/colcrt/colcrt.1 1.7 +16 -18 src/usr.bin/colcrt/colcrt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 13:34:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DDB7B37B95D; Mon, 24 Jul 2000 13:34:14 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA99608; Mon, 24 Jul 2000 13:34:14 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007242034.NAA99608@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 24 Jul 2000 13:34:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/jade Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/24 13:34:14 PDT Modified files: textproc/jade Makefile Log: Make this compile on the Alpha -- this give us a fighting chance of building the FreeBSD release docs. Revision Changes Path 1.26 +12 -6 ports/textproc/jade/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 13:36:11 2000 Delivered-To: cvs-all@freebsd.org Received: from home.bsdclub.org (home.bsdclub.org [202.227.26.94]) by hub.freebsd.org (Postfix) with ESMTP id DB34637BDFF; Mon, 24 Jul 2000 13:35:02 -0700 (PDT) (envelope-from sada@bsdclub.org) Received: (from sada@localhost) by home.bsdclub.org (8.9.3/3.7W) id FAA03103; Tue, 25 Jul 2000 05:34:54 +0900 (JST) Date: Tue, 25 Jul 2000 05:34:54 +0900 (JST) Message-Id: <200007242034.FAA03103@home.bsdclub.org> To: obrien@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, sada@bsdclub.org Subject: Re: cvs commit: ports/www/netscape47-communicator.us Makefile ports/www/netscape47-communicator.us/filesmd5 ports/www/netscape47-communicator.us/pkg PLISTports/www/netscape47-navigator.us Makefile ports/www/netscape47-navigator.us/filesmd5 In-Reply-To: Your message of "Mon, 24 Jul 2000 03:30:26 -0700 (PDT)". <200007241030.DAA52383@freefall.freebsd.org> From: SADA Kenji Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Mailer: mnews [version 1.22] 1999-12/19(Sun) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Why did you remove ``libjsd.so.1.0'' line from ports/www/netscape47-communicator.us/pkg/PLIST ? In my environment that line looks required. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 13:36: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A192737BADD; Mon, 24 Jul 2000 13:35:20 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: (from ps@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA99755; Mon, 24 Jul 2000 13:35:20 -0700 (PDT) (envelope-from ps@FreeBSD.org) Message-Id: <200007242035.NAA99755@freefall.freebsd.org> From: Paul Saab Date: Mon, 24 Jul 2000 13:35:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/fsync fsync.1 fsync.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ps 2000/07/24 13:35:20 PDT Modified files: usr.bin/fsync fsync.1 fsync.c Log: Typos and spelling fixes. Submitted by: charnier Revision Changes Path 1.3 +4 -4 src/usr.bin/fsync/fsync.1 1.2 +6 -3 src/usr.bin/fsync/fsync.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 13:42: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 1603D37BC0D; Mon, 24 Jul 2000 13:41:58 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id NAA64537; Mon, 24 Jul 2000 13:41:50 -0700 (PDT) (envelope-from obrien) Date: Mon, 24 Jul 2000 13:41:49 -0700 From: "David O'Brien" To: SADA Kenji Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/netscape47-communicator.us Makefile ports/www/netscape47-communicator.us/filesmd5 ports/www/netscape47-communicator.us/pkg PLISTports/www/netscape47-navigator.us Makefile ports/www/netscape47-navigator.us/filesmd5 Message-ID: <20000724134149.B64504@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200007241030.DAA52383@freefall.freebsd.org> <200007242034.FAA03103@home.bsdclub.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200007242034.FAA03103@home.bsdclub.org>; from sada@bsdclub.org on Tue, Jul 25, 2000 at 05:34:54AM +0900 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Jul 25, 2000 at 05:34:54AM +0900, SADA Kenji wrote: > Why did you remove ``libjsd.so.1.0'' line from > ports/www/netscape47-communicator.us/pkg/PLIST ? > In my environment that line looks required. Not in mine. ``make package'' complained bitterly about it and ``find ${PREFIX} -name libj\* didn't find anything (on the Alpha). Are you sure you don't have a file by that name from a previous version? Of course I could be wrong (maybe it is an i386-only thing), and will fix it if someone can verify that it should exit. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 13:50:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4E01437BD7C; Mon, 24 Jul 2000 13:50:19 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA02488; Mon, 24 Jul 2000 13:50:19 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007242050.NAA02488@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 24 Jul 2000 13:50:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/isc-dhcp/client/scripts freebsd X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/24 13:50:18 PDT Modified files: contrib/isc-dhcp/client/scripts freebsd Log: Back out rev 1.12 (safe quoting) until I have a chance to rework the change and get wider testing. Too many people are having problems with the script in its current form. Revision Changes Path 1.14 +80 -80 src/contrib/isc-dhcp/client/scripts/freebsd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 14:21:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1235A37BD82; Mon, 24 Jul 2000 14:21:05 -0700 (PDT) (envelope-from ken@FreeBSD.org) Received: (from ken@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA07991; Mon, 24 Jul 2000 14:21:04 -0700 (PDT) (envelope-from ken@FreeBSD.org) Message-Id: <200007242121.OAA07991@freefall.freebsd.org> From: Kenneth Merry Date: Mon, 24 Jul 2000 14:21:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf majors X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ken 2000/07/24 14:21:04 PDT Modified files: sys/conf majors Log: Allocate major number 153 for the character device interface for the ti(4) driver. Revision Changes Path 1.111 +2 -1 src/sys/conf/majors To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 14:44: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9C7C337BF8B; Mon, 24 Jul 2000 14:44:01 -0700 (PDT) (envelope-from iwasaki@FreeBSD.org) Received: (from iwasaki@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA11274; Mon, 24 Jul 2000 14:44:01 -0700 (PDT) (envelope-from iwasaki@FreeBSD.org) Message-Id: <200007242144.OAA11274@freefall.freebsd.org> From: Mitsuru IWASAKI Date: Mon, 24 Jul 2000 14:44:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pccard pcic.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG iwasaki 2000/07/24 14:44:01 PDT Modified files: sys/pccard pcic.c Log: Fix a bug so that we have correct number of pccard instances in pcic_attach(). pcic_attach() got a wrong pointer to pcic_slots since device haven't set correct unit number yet, so always accessed elements of pcic_slots which belong to pcic0 (unit number 0). Now we set unit number to pcic device first, then access to pcic_slots based on the unit number we've just set. Revision Changes Path 1.94 +2 -2 src/sys/pccard/pcic.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 14:46:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B2DE437BBBF; Mon, 24 Jul 2000 14:46:12 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA11629; Mon, 24 Jul 2000 14:46:13 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007242146.OAA11629@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 24 Jul 2000 14:46:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/truncate truncate.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/24 14:46:12 PDT Modified files: usr.bin/truncate truncate.c Log: Shut an optimizing compiler up about possibly (but never) unused variables. Submitted by: charnier Revision Changes Path 1.4 +3 -1 src/usr.bin/truncate/truncate.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 14:50:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 34FE137BCA1; Mon, 24 Jul 2000 14:50:39 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA12003; Mon, 24 Jul 2000 14:50:39 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007242150.OAA12003@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 24 Jul 2000 14:50:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/truncate truncate.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/24 14:50:39 PDT Modified files: usr.bin/truncate truncate.c Log: Simplify some conditionals. Revision Changes Path 1.5 +11 -13 src/usr.bin/truncate/truncate.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 14:51:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C566637BBFD; Mon, 24 Jul 2000 14:51:13 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA12058; Mon, 24 Jul 2000 14:51:06 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007242151.OAA12058@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 24 Jul 2000 14:51:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 mem.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/24 14:51:05 PDT Modified files: (Branch: RELENG_4) sys/i386/i386 mem.c Log: must come in out-of-sorted order for proper prototyping. Approved by: JKH Revision Changes Path 1.79.2.3 +2 -2 src/sys/i386/i386/mem.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 14:53:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B83637BDA4; Mon, 24 Jul 2000 14:53:04 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA12316; Mon, 24 Jul 2000 14:53:04 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007242153.OAA12316@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 24 Jul 2000 14:53:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/fsync fsync.1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/24 14:53:04 PDT Modified files: usr.bin/fsync fsync.1 Log: Avoid the need to capitalize an extraneous argument to the Nm macro and be more precise about the handling of command-line arguments. Reviewed by: ps Revision Changes Path 1.4 +9 -6 src/usr.bin/fsync/fsync.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 14:54:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 762F037BDD0; Mon, 24 Jul 2000 14:54:52 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA12583; Mon, 24 Jul 2000 14:54:53 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007242154.OAA12583@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 24 Jul 2000 14:54:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/truncate truncate.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/24 14:54:53 PDT Modified files: usr.bin/truncate truncate.c Log: Rev 1.4 shut up warnings about uninitialized (not unused) variables. Revision Changes Path 1.6 +1 -1 src/usr.bin/truncate/truncate.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 15: 8:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 81EB437BC0D; Mon, 24 Jul 2000 15:08:29 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Received: (from dburr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA15790; Mon, 24 Jul 2000 15:08:29 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Message-Id: <200007242208.PAA15790@freefall.freebsd.org> From: Donald Burr Date: Mon, 24 Jul 2000 15:08:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/SN Makefile ports/devel/SN/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dburr 2000/07/24 15:08:28 PDT Modified files: devel/SN Makefile devel/SN/files md5 Log: * Changed to use the bzip2 compressed file, since it's significantly smaller than the .gz one. * Added a few mirror sites, since the main (redhat) site is overloaded at the moment. Thanks to:Mikhail Teterin and Dmitry S. Sivachenko for the suggestion. Revision Changes Path 1.2 +6 -2 ports/devel/SN/Makefile 1.2 +1 -1 ports/devel/SN/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 15:27:18 2000 Delivered-To: cvs-all@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id 4EF0F37BE26 for ; Mon, 24 Jul 2000 15:27:15 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from semuta.feral.com (semuta [192.67.166.70]) by feral.com (8.9.3/8.9.3) with ESMTP id PAA26745 for ; Mon, 24 Jul 2000 15:26:58 -0700 Date: Mon, 24 Jul 2000 15:26:23 -0700 (PDT) From: Matthew Jacob Reply-To: mjacob@feral.com To: cvs-all@freebsd.org Subject: stuck cvs lock? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cvs server: [15:21:50] waiting for ncvs's lock in /home/ncvs/src/sys/dev/aic7xxx cvs server: [15:22:20] waiting for ncvs's lock in /home/ncvs/src/sys/dev/aic7xxx cvs server: [15:22:50] waiting for ncvs's lock in /home/ncvs/src/sys/dev/aic7xxx cvs server: [15:23:20] waiting for ncvs's lock in /home/ncvs/src/sys/dev/aic7xxx cvs server: [15:23:50] waiting for ncvs's lock in /home/ncvs/src/sys/dev/aic7xxx cvs server: [15:24:20] waiting for ncvs's lock in /home/ncvs/src/sys/dev/aic7xxx cvs server: [15:24:50] waiting for ncvs's lock in /home/ncvs/src/sys/dev/aic7xxx cvs server: [15:25:20] waiting for ncvs's lock in /home/ncvs/src/sys/dev/aic7xxx cvs server: [15:25:50] waiting for ncvs's lock in /home/ncvs/src/sys/dev/aic7xx ..... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 15:27:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 27D4737BBFD; Mon, 24 Jul 2000 15:27:34 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA17882; Mon, 24 Jul 2000 15:27:33 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007242227.PAA17882@freefall.freebsd.org> From: SADA Kenji Date: Mon, 24 Jul 2000 15:27:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/24 15:27:33 PDT Modified files: . modules Log: ja-elisp-manual --> ports/japanese/elisp-manual Revision Changes Path 1.1451 +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 Jul 24 15:27:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F4FA37C04C; Mon, 24 Jul 2000 15:27:42 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Received: (from gibbs@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA17914; Mon, 24 Jul 2000 15:27:41 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Message-Id: <200007242227.PAA17914@freefall.freebsd.org> From: "Justin T. Gibbs" Date: Mon, 24 Jul 2000 15:27:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/aic7xxx aic7xxx.c aic7xxx.h aic7xxx.seq X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG gibbs 2000/07/24 15:27:41 PDT Modified files: sys/dev/aic7xxx aic7xxx.c aic7xxx.h aic7xxx.seq Log: aic7xxx.c: Correct the BUILD_TCL macro. It was placing the target id in the wrong bits. This was only an issue for adapters that do not perform SCB paging (aha-3940AUW for instance). Don't bother inlining ahc_index_busy_tcl. It is never used in a performance critical path and is a bit chunky. Correct ahc_index_busy_tcl to deal with "busy target tables" embedded in the latter half of 64byte SCBs. Don't initialize the busy target table to its empty state until after we have finished extracting configuration information from chip SRAM. In the common case of using 16 bytes of chip SRAM to do untagged target lookups, we were trashing the last 8 targets configuration data. (actually only target 8 because of the bug in the BUILD_TCL macro). Cram the "bus reset delivered" message back under bootverbose. Fix the cleanup of the SCB busy target table when aborting commands. If the lun is wildcarded, we must loop through all possible luns. aic7xxx.h: Only bother supporting 64 luns right now. It doesn't seem like either this driver or any peripherals will be doing information unit transfers (where the lun number is a 32 bit integer) any time soon. aic7xxx.seq: Fix support for the aic7895. We must flush the data FIFO if performing a manual transfer that is not a multiple of 8 bytes. We were doing this quite regularly for embedded cdbs. Manaually flush the fifo on earlier adapters when dealing with embedded cdbs too. We were stuffing the FIFO with 16 bytes instead, but triggering the flush is more efficient and allows us to remove two instructions from the "copy_to_fifo" routine. Revision Changes Path 1.46 +85 -35 src/sys/dev/aic7xxx/aic7xxx.c 1.21 +3 -6 src/sys/dev/aic7xxx/aic7xxx.h 1.97 +7 -11 src/sys/dev/aic7xxx/aic7xxx.seq To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 15:29:28 2000 Delivered-To: cvs-all@freebsd.org Received: from gndrsh.dnsmgr.net (GndRsh.dnsmgr.net [198.145.92.4]) by hub.freebsd.org (Postfix) with ESMTP id 6DE8737BD00; Mon, 24 Jul 2000 15:29:21 -0700 (PDT) (envelope-from freebsd@gndrsh.dnsmgr.net) Received: (from freebsd@localhost) by gndrsh.dnsmgr.net (8.9.3/8.9.3) id OAA49346; Mon, 24 Jul 2000 14:58:37 -0700 (PDT) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <200007242158.OAA49346@gndrsh.dnsmgr.net> Subject: Re: cvs commit: src/sys/i386/i386 mem.c In-Reply-To: <200007242151.OAA12058@freefall.freebsd.org> from "David E. O'Brien" at "Jul 24, 2000 02:51:05 pm" To: obrien@FreeBSD.org (David E. O'Brien) Date: Mon, 24 Jul 2000 14:58:36 -0700 (PDT) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > obrien 2000/07/24 14:51:05 PDT > > Modified files: (Branch: RELENG_4) > sys/i386/i386 mem.c > Log: > must come in out-of-sorted order for proper prototyping. > > Approved by: JKH I take it that this shuts up the compiler warnings about splx/splbio, and thanks for getting this one in to 4.1. -- Rod Grimes - KD7CAX @ CN85sl - (RWG25) rgrimes@gndrsh.dnsmgr.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 15:29:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 270B337BD00; Mon, 24 Jul 2000 15:29:47 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA18069; Mon, 24 Jul 2000 15:29:47 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007242229.PAA18069@freefall.freebsd.org> From: SADA Kenji Date: Mon, 24 Jul 2000 15:29:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/elisp-manual - Imported sources X-FreeBSD-CVS-Branch: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/24 15:29:46 PDT ports/japanese/elisp-manual - Imported sources Update of /home/ncvs/ports/japanese/elisp-manual In directory freefall.freebsd.org:/d/home/sada/work/elisp-manual Log Message: New port for a Japanese translation of the GNU Emacs Lisp Reference Manual edition 2.5. PR: ports/17771 Submitted by: OKAZAKI Tetsurou Status: Vendor Tag: OKAZAKI Release Tags: v2_5_20000508 N ports/japanese/elisp-manual/Makefile N ports/japanese/elisp-manual/files/Makefile.in N ports/japanese/elisp-manual/files/md5 N ports/japanese/elisp-manual/files/PORT_TEXIFMT.MK N ports/japanese/elisp-manual/files/patch-texinfmt.el.patch N ports/japanese/elisp-manual/pkg/COMMENT N ports/japanese/elisp-manual/pkg/DESCR N ports/japanese/elisp-manual/pkg/PLIST N ports/japanese/elisp-manual/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 Mon Jul 24 15:32:28 2000 Delivered-To: cvs-all@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id E8EC437BCE6; Mon, 24 Jul 2000 15:32:24 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from semuta.feral.com (semuta [192.67.166.70]) by feral.com (8.9.3/8.9.3) with ESMTP id PAA26781; Mon, 24 Jul 2000 15:32:24 -0700 Date: Mon, 24 Jul 2000 15:31:48 -0700 (PDT) From: Matthew Jacob Reply-To: mjacob@feral.com To: "Justin T. Gibbs" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/aic7xxx aic7xxx.c aic7xxx.h aic7xxx.seq In-Reply-To: <200007242227.PAA17914@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > aic7xxx.h: > Only bother supporting 64 luns right now. It doesn't seem > like either this driver or any peripherals will be doing > information unit transfers (where the lun number is a > 32 bit integer) any time soon. Newer Qlogic 12160 F/W has 64 lun support in it now. And SCCLUN f/w for the FC cards has 65535 lun support. We *will* implement the Report Luns command soon, eh? Without that, anything above lun 8 is pretty chancy. -matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 15:34: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EC30D37BD4B; Mon, 24 Jul 2000 15:33:57 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA18612; Mon, 24 Jul 2000 15:33:57 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007242233.PAA18612@freefall.freebsd.org> From: SADA Kenji Date: Mon, 24 Jul 2000 15:33:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/24 15:33:57 PDT Modified files: japanese Makefile Log: Activate ja-elisp-manual. PR: ports/17771 Submitted by: OKAZAKI Tetsurou Revision Changes Path 1.283 +2 -1 ports/japanese/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 15:35:36 2000 Delivered-To: cvs-all@freebsd.org Received: from alcanet.com.au (mail.alcanet.com.au [203.62.196.10]) by hub.freebsd.org (Postfix) with ESMTP id 303A937BCC3; Mon, 24 Jul 2000 15:35:23 -0700 (PDT) (envelope-from jeremyp@gsmx07.alcatel.com.au) Received: by border.alcanet.com.au id <115240>; Tue, 25 Jul 2000 08:35:14 +1000 Content-return: prohibited Date: Tue, 25 Jul 2000 08:35:06 +1000 From: Peter Jeremy Subject: Re: cvs commit: ports/Mk bsd.port.mk In-reply-to: <200007191641.JAA57673@freefall.freebsd.org>; from asami@FreeBSD.ORG on Wed, Jul 19, 2000 at 09:41:23AM -0700 To: Satoshi Asami Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Message-Id: <00Jul25.083514est.115240@border.alcanet.com.au> MIME-version: 1.0 X-Mailer: Mutt 1.0i Content-type: text/plain; charset=us-ascii References: <200007191641.JAA57673@freefall.freebsd.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 2000-Jul-19 09:41:23 -0700, Satoshi Asami wrote: >asami 2000/07/19 09:41:23 PDT > > Modified files: > Mk bsd.port.mk > Log: > (1) Add MASTER_SORT functionality. For instance, by setting > MASTER_SORT="foo.bar.co.jp bar.co.jp .jp" bsd.port.mk will try the > machine foo.bar.co.jp, then any machine in the domain bar.co.jp, > then any machine in the domain .jp. It might be useful for people > in an island (network-topologically speaking). > Submitted by: knu > Obtained from: NetBSD This breaks fetching from cdrom. Previously, if /cdrom/ports/distfile/ existed, it was the first thing searched for the distfile. After this change, external FTP sites are preferred to my local CD-ROM. This is undesirable. Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 15:47:50 2000 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 132AF37BD8B; Mon, 24 Jul 2000 15:47:38 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id PAA67678; Mon, 24 Jul 2000 15:47:07 -0700 (PDT) (envelope-from obrien) Date: Mon, 24 Jul 2000 15:47:07 -0700 From: "David O'Brien" To: "Rodney W. Grimes" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 mem.c Message-ID: <20000724154707.A67660@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200007242151.OAA12058@freefall.freebsd.org> <200007242158.OAA49346@gndrsh.dnsmgr.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200007242158.OAA49346@gndrsh.dnsmgr.net>; from freebsd@gndrsh.dnsmgr.net on Mon, Jul 24, 2000 at 02:58:36PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Jul 24, 2000 at 02:58:36PM -0700, Rodney W. Grimes wrote: > I take it that this shuts up the compiler warnings about splx/splbio, > and thanks for getting this one in to 4.1. Yes. I will do the same in -CURRENT as soon as GENERIC builds for me again. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 16:20:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 21B9437B5CC; Mon, 24 Jul 2000 16:20:31 -0700 (PDT) (envelope-from marko@FreeBSD.org) Received: (from marko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA23822; Mon, 24 Jul 2000 16:20:31 -0700 (PDT) (envelope-from marko@FreeBSD.org) Message-Id: <200007242320.QAA23822@freefall.freebsd.org> From: Mark Ovens Date: Mon, 24 Jul 2000 16:20:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/astro/xearth/files freebsd.committers.markers X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marko 2000/07/24 16:20:30 PDT Modified files: astro/xearth/files freebsd.committers.markers Log: Make my mark on the world. Revision Changes Path 1.29 +1 -0 ports/astro/xearth/files/freebsd.committers.markers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 17:11: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 66DEC37B783; Mon, 24 Jul 2000 17:10:59 -0700 (PDT) (envelope-from archie@FreeBSD.org) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA29294; Mon, 24 Jul 2000 17:10:59 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200007250010.RAA29294@freefall.freebsd.org> From: Archie Cobbs Date: Mon, 24 Jul 2000 17:10:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/kaffe Makefile ports/java/kaffe/files md5 ports/java/kaffe/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/07/24 17:10:59 PDT Modified files: java/kaffe Makefile java/kaffe/files md5 java/kaffe/pkg PLIST Log: Upgrade to version 1.0.6. Revision Changes Path 1.52 +2 -2 ports/java/kaffe/Makefile 1.25 +1 -1 ports/java/kaffe/files/md5 1.31 +13 -10 ports/java/kaffe/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 Jul 24 17:23:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B63FE37B51A; Mon, 24 Jul 2000 17:23:20 -0700 (PDT) (envelope-from archie@FreeBSD.org) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA30444; Mon, 24 Jul 2000 17:23:20 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200007250023.RAA30444@freefall.freebsd.org> From: Archie Cobbs Date: Mon, 24 Jul 2000 17:23:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netgraph ng_pptpgre.c ng_pptpgre.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/07/24 17:23:20 PDT Modified files: sys/netgraph ng_pptpgre.c ng_pptpgre.h Log: Several fixes: - Fix slowness when operating over fast connections, where the timeout(9) granularity is on the same order of magnitude as the round trip time. timeout(9) can happen up to 1 tick early, which was causing receive ack timeouts to happen too early, causing bogus "lost" packets. - Increase the local time counter to 64 bits to avoid roll-over. - Keep statistics on memory allocation failures. - Add a new option to always include the ack when sending data packets. Might be useful in high packet loss situations. Might not. Revision Changes Path 1.8 +55 -26 src/sys/netgraph/ng_pptpgre.c 1.3 +6 -2 src/sys/netgraph/ng_pptpgre.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 17:30:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EBB3337B51E; Mon, 24 Jul 2000 17:30:14 -0700 (PDT) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA31323; Mon, 24 Jul 2000 17:30:14 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200007250030.RAA31323@freefall.freebsd.org> From: Brian Feldman Date: Mon, 24 Jul 2000 17:30:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/diff util.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/07/24 17:30:14 PDT Modified files: (Branch: RELENG_4) contrib/diff util.c Log: MFC: util.c rev 1.3, fix for stupid complaining about no trailed LF Approved by: jkh Revision Changes Path 1.2.6.1 +2 -3 src/contrib/diff/util.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 17:56: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D6E8C37B51C; Mon, 24 Jul 2000 17:56:00 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA34070; Mon, 24 Jul 2000 17:56:00 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200007250056.RAA34070@freefall.freebsd.org> From: Kevin Lo Date: Mon, 24 Jul 2000 17:56:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/syslog-ng Makefile ports/sysutils/syslog-ng/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/07/24 17:56:00 PDT Modified files: sysutils/syslog-ng Makefile sysutils/syslog-ng/files md5 Log: Update to version 1.4.5 PR: 20160 Submitted by: MAINTAINER Revision Changes Path 1.4 +2 -2 ports/sysutils/syslog-ng/Makefile 1.3 +1 -1 ports/sysutils/syslog-ng/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 17:59:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A0A037B590; Mon, 24 Jul 2000 17:59:35 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA34516; Mon, 24 Jul 2000 17:59:35 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200007250059.RAA34516@freefall.freebsd.org> From: Kevin Lo Date: Mon, 24 Jul 2000 17:59:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/aolserver Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/07/24 17:59:35 PDT Modified files: www/aolserver Makefile Log: Update MASTER_SITES PR: 20158 Submitted by: MAINTAINER Revision Changes Path 1.6 +2 -2 ports/www/aolserver/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 18: 3:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 13D5337B724; Mon, 24 Jul 2000 18:03:26 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA34876; Mon, 24 Jul 2000 18:03:26 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007250103.SAA34876@freefall.freebsd.org> From: SADA Kenji Date: Mon, 24 Jul 2000 18:03:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/ppxp/patches patch-ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/24 18:03:25 PDT Added files: net/ppxp/patches patch-ac Log: Fix the compilation error. PR: ports/20146 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 Mon Jul 24 18: 8:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 10FB537B771; Mon, 24 Jul 2000 18:08:10 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA36957; Mon, 24 Jul 2000 18:08:10 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200007250108.SAA36957@freefall.freebsd.org> From: Kris Kennaway Date: Mon, 24 Jul 2000 18:08:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/secure/libexec Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/07/24 18:08:09 PDT Modified files: (Branch: RELENG_4) secure/libexec Makefile Log: Don't build crypto-enabled telnetd if NO_OPENSSL is defined, since it attempts to link against libcrypto. Revision Changes Path 1.4.2.1 +2 -2 src/secure/libexec/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 18: 8:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4408F37B771; Mon, 24 Jul 2000 18:08:50 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA37081; Mon, 24 Jul 2000 18:08:50 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200007250108.SAA37081@freefall.freebsd.org> From: Kris Kennaway Date: Mon, 24 Jul 2000 18:08:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/secure/libexec Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/07/24 18:08:50 PDT Modified files: (Branch: RELENG_4) secure/libexec Makefile Log: Back out previous unapproved commit, it went to the wrong branch. Revision Changes Path 1.4.2.2 +2 -2 src/secure/libexec/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 18:11:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C88D237BC91; Mon, 24 Jul 2000 18:11:18 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA37435; Mon, 24 Jul 2000 18:11:18 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200007250111.SAA37435@freefall.freebsd.org> From: Kris Kennaway Date: Mon, 24 Jul 2000 18:11:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/secure/libexec Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/07/24 18:11:18 PDT Modified files: secure/libexec Makefile Log: Don't build crypto-enabled telnetd if NO_OPENSSL is defined, since it attempts to link against libcrypto. Revision Changes Path 1.6 +2 -2 src/secure/libexec/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 18:18:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F275237B838; Mon, 24 Jul 2000 18:18:43 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA38154; Mon, 24 Jul 2000 18:18:43 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200007250118.SAA38154@freefall.freebsd.org> From: Kevin Lo Date: Mon, 24 Jul 2000 18:18:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/kannel/patches patch-ag X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/07/24 18:18:43 PDT Added files: www/kannel/patches patch-ag Log: kannel installs dumb start-stop-daemon, that is absolutely unnecessary and should not included in port. also it breaks the PLIST PR: 20153 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 Mon Jul 24 18:26:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BB81437B78A; Mon, 24 Jul 2000 18:26:09 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA38892; Mon, 24 Jul 2000 18:26:09 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200007250126.SAA38892@freefall.freebsd.org> From: Kevin Lo Date: Mon, 24 Jul 2000 18:26:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/freetds/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/07/24 18:26:09 PDT Modified files: databases/freetds/pkg PLIST Log: PLIST @dirrm should be added to configuration directory. PR: 20152 Submitted by: MAINTAINER Revision Changes Path 1.5 +1 -0 ports/databases/freetds/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 Jul 24 18:31:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 283A437B883; Mon, 24 Jul 2000 18:31:34 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA39487; Mon, 24 Jul 2000 18:31:34 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200007250131.SAA39487@freefall.freebsd.org> From: Kevin Lo Date: Mon, 24 Jul 2000 18:31:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/archivers/ppunpack Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/07/24 18:31:33 PDT Modified files: archivers/ppunpack Makefile Log: MAKE_FLAGS -> MAKE_ARGS PR: 20147 Submitted by: Ports Fury Revision Changes Path 1.3 +4 -3 ports/archivers/ppunpack/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 18:43:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 57B1D37B816; Mon, 24 Jul 2000 18:43:23 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA40791; Mon, 24 Jul 2000 18:43:23 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200007250143.SAA40791@freefall.freebsd.org> From: Kevin Lo Date: Mon, 24 Jul 2000 18:43:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/robodoc Makefile ports/devel/robodoc/files md5 ports/devel/robodoc/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/07/24 18:43:23 PDT Modified files: devel/robodoc Makefile devel/robodoc/files md5 devel/robodoc/pkg PLIST Log: Update to version 3.2.2 PR: 20149 Submitted by: Ports Fury Revision Changes Path 1.5 +16 -17 ports/devel/robodoc/Makefile 1.2 +1 -1 ports/devel/robodoc/files/md5 1.2 +21 -9 ports/devel/robodoc/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 Jul 24 19:28:46 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id B85A737B8D2; Mon, 24 Jul 2000 19:28:36 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id UAA23511; Mon, 24 Jul 2000 20:28:33 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id UAA85362; Mon, 24 Jul 2000 20:28:15 -0600 (MDT) Message-Id: <200007250228.UAA85362@harmony.village.org> To: "Andrey A. Chernov" Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Cc: "Jordan K. Hubbard" , Marcel Moolenaar , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Tue, 25 Jul 2000 05:51:25 +0400." <20000725055124.A35927@nagual.pp.ru> References: <20000725055124.A35927@nagual.pp.ru> <20000724085030.A28936@nagual.pp.ru> <25873.964459115@localhost> Date: Mon, 24 Jul 2000 20:28:15 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <20000725055124.A35927@nagual.pp.ru> "Andrey A. Chernov" writes: : This week moaning was basically related to strtofflags() and not to my : changes. Which part is related to my changes I know only after I start : discussion after backing out, before this moment no one inform me after I : fix 'make world' for -current. I agree. It took about a week of brokenness before we understood the problem. There was strong evidence that it was mtree, but not for the reasons that people think. Andrey's changes were only incidental to the whole fiasco. If one looks at the string of events, one could also conclude that joe@ was responsible for the problems because his fixes of June 17, 2000 also caused the bootstrap problem. The other problems, fixing mtree to not follow symbolic links (which was the right thing to do) hit on July 16, 2000. If the changes were in reverse order, then we'd not have the -L problem, but rather we'd be talking about the strtofflags problem. : > Andrey basically did a hit-and-run on the tree and then declined to : > participate seriously in the discussion and suggested fixes which : > followed, a decision which makes any subsequent accusation of : : Where is example of my decline? BTW, I already express just totally : opposite opinion, but at this moment I want to add some general thoughts. : Basically the longer someone stays in the project, the more conflicts : should arised, it is just pure time-dependend function, if he does some : work. This is normal if conflicts are resolved in the spirit of : cooperation. You, as head of the project, are supposed to understand this : far better. Yes. I'd like to see this as well. One thing that I did wrong was not CC andrey (and joe) on the changes that I made. I should have had them huddle and come up with something. Finally, the -L changes were correct. The reason that we need them for the buildworld, but not for other uses is fairly simple. The buildworld process requires mtree to set permissions. But come to think of it, I'm not at all sure why we need to have mtree follow symbolic links in the build process. I thought I understood that, but now cannot find the words to explain it and am in doubt of my understanding of it. I don't think there's the need to dog pile on Andrey over this. Sure, his changes caused a world breakage. It was a rather difficult world breakage to figure out, but it was no worse than, say, my breaking the alpha world build with some pccard changes or any of a dozen other world breakages that happen, people fix and we move on with life. Screaming at him for a problem that wasn't well understood for a while is counter productive. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 19:55:10 2000 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 862C637B8C9; Mon, 24 Jul 2000 19:55:03 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.9.3/8.9.3) id GAA36456; Tue, 25 Jul 2000 06:52:16 +0400 (MSD) (envelope-from ache) Date: Tue, 25 Jul 2000 06:52:15 +0400 From: "Andrey A. Chernov" To: Warner Losh Cc: "Jordan K. Hubbard" , Marcel Moolenaar , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000725065215.A36350@nagual.pp.ru> References: <20000725055124.A35927@nagual.pp.ru> <20000724085030.A28936@nagual.pp.ru> <25873.964459115@localhost> <20000725055124.A35927@nagual.pp.ru> <200007250228.UAA85362@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <200007250228.UAA85362@harmony.village.org>; from imp@village.org on Mon, Jul 24, 2000 at 08:28:15PM -0600 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Jul 24, 2000 at 08:28:15PM -0600, Warner Losh wrote: > But come to think of it, I'm not at all sure why we need to have mtree > follow symbolic links in the build process. I thought I understood > that, but now cannot find the words to explain it and am in doubt of > my understanding of it. It depends of the way disks set organized. If people have several disks with symlinks to /tmp, /var/mail etc., they need -L to set correct permissions, otherwise they are under security risk. But other people don't need this thing. The acceptable solution will be /etc/make.conf option defaulted to -L to minimize risk. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 19:56:48 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id C00FE37B931; Mon, 24 Jul 2000 19:56:37 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id UAA23597; Mon, 24 Jul 2000 20:56:36 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id UAA85575; Mon, 24 Jul 2000 20:56:18 -0600 (MDT) Message-Id: <200007250256.UAA85575@harmony.village.org> To: "Andrey A. Chernov" Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Cc: "Jordan K. Hubbard" , Marcel Moolenaar , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Tue, 25 Jul 2000 06:52:15 +0400." <20000725065215.A36350@nagual.pp.ru> References: <20000725065215.A36350@nagual.pp.ru> <20000725055124.A35927@nagual.pp.ru> <20000724085030.A28936@nagual.pp.ru> <25873.964459115@localhost> <20000725055124.A35927@nagual.pp.ru> <200007250228.UAA85362@harmony.village.org> Date: Mon, 24 Jul 2000 20:56:18 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <20000725065215.A36350@nagual.pp.ru> "Andrey A. Chernov" writes: : On Mon, Jul 24, 2000 at 08:28:15PM -0600, Warner Losh wrote: : > But come to think of it, I'm not at all sure why we need to have mtree : > follow symbolic links in the build process. I thought I understood : > that, but now cannot find the words to explain it and am in doubt of : > my understanding of it. : : It depends of the way disks set organized. If people have several disks : with symlinks to /tmp, /var/mail etc., they need -L to set correct : permissions, otherwise they are under security risk. But other people : don't need this thing. The acceptable solution will be /etc/make.conf : option defaulted to -L to minimize risk. Let me understand. If I have /tmp a symbolic link to /big/disk/tmp and /var/tmp a symbolic link to /big/disk/var/tmp, then without -L my /big/disk/tmp and /big/disk/var/tmp directories will not be touched by the mtree and may retain bad permissions? Is that correct? If so, then an option in /etc/make.conf will be the best way to handle this since that's relatively rare and people tend to setup those sorts of systems correctly. We'd need to document it, of course, but that shouldn't be too hard. And it would allow your changes back into the tree as they are otherwise benign. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 20: 7: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 1645737B931; Mon, 24 Jul 2000 20:06:47 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.9.3/8.9.3) id HAA36543; Tue, 25 Jul 2000 07:02:37 +0400 (MSD) (envelope-from ache) Date: Tue, 25 Jul 2000 07:02:36 +0400 From: "Andrey A. Chernov" To: Warner Losh Cc: "Jordan K. Hubbard" , Marcel Moolenaar , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000725070236.A36496@nagual.pp.ru> References: <20000725065215.A36350@nagual.pp.ru> <20000725055124.A35927@nagual.pp.ru> <20000724085030.A28936@nagual.pp.ru> <25873.964459115@localhost> <20000725055124.A35927@nagual.pp.ru> <200007250228.UAA85362@harmony.village.org> <20000725065215.A36350@nagual.pp.ru> <200007250256.UAA85575@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <200007250256.UAA85575@harmony.village.org>; from imp@village.org on Mon, Jul 24, 2000 at 08:56:18PM -0600 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Jul 24, 2000 at 08:56:18PM -0600, Warner Losh wrote: > Let me understand. If I have /tmp a symbolic link to /big/disk/tmp > and /var/tmp a symbolic link to /big/disk/var/tmp, then without -L my > /big/disk/tmp and /big/disk/var/tmp directories will not be touched by > the mtree and may retain bad permissions? Is that correct? Yes. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 20:30:11 2000 Delivered-To: cvs-all@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id 42BE737B5E0; Mon, 24 Jul 2000 20:29:59 -0700 (PDT) (envelope-from knu@idaemons.org) Received: from daemon.local.idaemons.org (203-165-77-17.sugnm1.kt.home.ne.jp [203.165.77.17]) by ms.tokyo.jcom.ne.jp (8.9.3/3.7W 04/27/00) with ESMTP id MAA27228; Tue, 25 Jul 2000 12:29:51 +0900 (JST) Received: by daemon.local.idaemons.org (8.9.3/3.7W) id MAA55297; Tue, 25 Jul 2000 12:29:19 +0900 (JST) Date: Tue, 25 Jul 2000 12:29:18 +0900 Message-ID: <86wviaopkh.wl@localhost.local.idaemons.org> From: "Akinori -Aki- MUSHA" To: Peter Jeremy Cc: Satoshi Asami , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/Mk bsd.port.mk In-Reply-To: In your message of "Tue, 25 Jul 2000 08:35:06 +1000" <00Jul25.083514est.115240@border.alcanet.com.au> References: <200007191641.JAA57673@freefall.freebsd.org> <00Jul25.083514est.115240@border.alcanet.com.au> User-Agent: Wanderlust/2.3.0 (Roam) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 10) (Capitol Reef) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 1BEF D9B2 BABD 25D7 659A FD08 89C2 F3BE E981 4E16 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At Tue, 25 Jul 2000 08:35:06 +1000, Peter Jeremy wrote: > On 2000-Jul-19 09:41:23 -0700, Satoshi Asami wrote: > >asami 2000/07/19 09:41:23 PDT > > > > Modified files: > > Mk bsd.port.mk > > Log: > > (1) Add MASTER_SORT functionality. For instance, by setting > > MASTER_SORT="foo.bar.co.jp bar.co.jp .jp" bsd.port.mk will try the > > machine foo.bar.co.jp, then any machine in the domain bar.co.jp, > > then any machine in the domain .jp. It might be useful for people > > in an island (network-topologically speaking). > > Submitted by: knu > > Obtained from: NetBSD > > This breaks fetching from cdrom. Previously, if /cdrom/ports/distfile/ > existed, it was the first thing searched for the distfile. After this > change, external FTP sites are preferred to my local CD-ROM. This is > undesirable. Try setting MASTER_SORT_REGEX='^file:' too. This should be documented and should probably be by default in make.conf, I suppose. -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( @ idaemons.org / FreeBSD.org "We're only at home when we're on the run, on the wing, on the fly" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 20:37:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BB2D537B7A0; Mon, 24 Jul 2000 20:37:37 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: (from rwatson@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA55757; Mon, 24 Jul 2000 20:37:37 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Message-Id: <200007250337.UAA55757@freefall.freebsd.org> From: Robert Watson Date: Mon, 24 Jul 2000 20:37:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_cap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG rwatson 2000/07/24 20:37:37 PDT Modified files: sys/kern kern_cap.c Log: o Add missing function return types from capability syscall call stubs, fix compiler warning. Submitted by: jake Revision Changes Path 1.3 +5 -1 src/sys/kern/kern_cap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 20:39:29 2000 Delivered-To: cvs-all@freebsd.org Received: from relay.butya.kz (butya-gw.butya.kz [212.154.129.94]) by hub.freebsd.org (Postfix) with ESMTP id 68DC737B7A0; Mon, 24 Jul 2000 20:39:17 -0700 (PDT) (envelope-from bp@butya.kz) Received: by relay.butya.kz (Postfix, from userid 1000) id C4E5728CF9; Tue, 25 Jul 2000 10:39:13 +0700 (ALMST) Received: from localhost (localhost [127.0.0.1]) by relay.butya.kz (Postfix) with ESMTP id 8C59728CF8; Tue, 25 Jul 2000 10:39:13 +0700 (ALMST) Date: Tue, 25 Jul 2000 10:39:13 +0700 (ALMST) From: Boris Popov To: Warner Losh Cc: "Andrey A. Chernov" , "Jordan K. Hubbard" , Marcel Moolenaar , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs In-Reply-To: <200007250228.UAA85362@harmony.village.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 24 Jul 2000, Warner Losh wrote: > In message <20000725055124.A35927@nagual.pp.ru> "Andrey A. Chernov" writes: > : This week moaning was basically related to strtofflags() and not to my > : changes. Which part is related to my changes I know only after I start > : discussion after backing out, before this moment no one inform me after I > : fix 'make world' for -current. > > I agree. It took about a week of brokenness before we understood the > problem. There was strong evidence that it was mtree, but not for the > reasons that people think. Andrey's changes were only incidental to > the whole fiasco. If one looks at the string of events, one could Thank you for clarifying things. Now we got yet another good lesson that doing things in the rush never give correct results and has very bad side effects which can not be 'backed out'. -- Boris Popov http://www.butya.kz/~bp/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 21:16:43 2000 Delivered-To: cvs-all@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id D2C0E37BD3B; Mon, 24 Jul 2000 21:16:26 -0700 (PDT) (envelope-from nate@yogotech.com) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id SAA21389; Sun, 23 Jul 2000 18:11:05 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id SAA03300; Sun, 23 Jul 2000 18:11:00 -0600 (MDT) (envelope-from nate) Date: Sun, 23 Jul 2000 18:11:00 -0600 (MDT) Message-Id: <200007240011.SAA03300@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Matt Dillon Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/sys rfork.2 In-Reply-To: <200007231955.MAA52603@freefall.freebsd.org> References: <200007231955.MAA52603@freefall.freebsd.org> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > dillon 2000/07/23 12:55:16 PDT > > Modified files: (Branch: RELENG_4) > lib/libc/sys rfork.2 > Log: > Clarify RFMEM operation for rfork, which in fact clones the entire > address space (whether segments are shared or not), and does NOT > split the stack. Thanks for doing this! Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 21:39:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7E7D837BA06; Mon, 24 Jul 2000 21:39:20 -0700 (PDT) (envelope-from iwasaki@FreeBSD.org) Received: (from iwasaki@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA65350; Mon, 24 Jul 2000 21:39:20 -0700 (PDT) (envelope-from iwasaki@FreeBSD.org) Message-Id: <200007250439.VAA65350@freefall.freebsd.org> From: Mitsuru IWASAKI Date: Mon, 24 Jul 2000 21:39:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pccard pcic.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG iwasaki 2000/07/24 21:39:20 PDT Modified files: (Branch: RELENG_4) sys/pccard pcic.c Log: MFC: pcic.c 1.93 -> 1.94 Fix a bug so that we have correct number of pccard instances in pcic_attach(). Reviewed by: imp Approved by: jkh Revision Changes Path 1.89.2.2 +2 -2 src/sys/pccard/pcic.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 22:12: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F38B637B73F; Mon, 24 Jul 2000 22:11:57 -0700 (PDT) (envelope-from mckusick@FreeBSD.org) Received: (from mckusick@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA70725; Mon, 24 Jul 2000 22:11:57 -0700 (PDT) (envelope-from mckusick@FreeBSD.org) Message-Id: <200007250511.WAA70725@freefall.freebsd.org> From: Kirk McKusick Date: Mon, 24 Jul 2000 22:11:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/mfs mfs_vnops.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mckusick 2000/07/24 22:11:57 PDT Modified files: sys/ufs/mfs mfs_vnops.c Log: Eliminate periodic 'mfs_badop[vop_getwritemount] = 45' messages. Submitted by: Sheldon Hearn Revision Changes Path 1.54 +2 -1 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 Mon Jul 24 22:29: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4228937B693; Mon, 24 Jul 2000 22:29:00 -0700 (PDT) (envelope-from mckusick@FreeBSD.org) Received: (from mckusick@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA74590; Mon, 24 Jul 2000 22:29:00 -0700 (PDT) (envelope-from mckusick@FreeBSD.org) Message-Id: <200007250529.WAA74590@freefall.freebsd.org> From: Kirk McKusick Date: Mon, 24 Jul 2000 22:29:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ffs ffs_softdep_stub.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mckusick 2000/07/24 22:29:00 PDT Modified files: sys/ufs/ffs ffs_softdep_stub.c Log: Add stub for softdep_flushworklist() so that kernels compiled without the SOFTUPDATES option will load correctly. Obtained from: John Baldwin Revision Changes Path 1.13 +11 -1 src/sys/ufs/ffs/ffs_softdep_stub.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jul 24 22:39: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F367037B75B; Mon, 24 Jul 2000 22:38:57 -0700 (PDT) (envelope-from mckusick@FreeBSD.org) Received: (from mckusick@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA75577; Mon, 24 Jul 2000 22:38:57 -0700 (PDT) (envelope-from mckusick@FreeBSD.org) Message-Id: <200007250538.WAA75577@freefall.freebsd.org> From: Kirk McKusick Date: Mon, 24 Jul 2000 22:38:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_syscalls.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mckusick 2000/07/24 22:38:57 PDT Modified files: sys/kern vfs_syscalls.c Log: Do not need vrele(nd.ni_vp) as that is done by NDFREE(&nd, 0); Submitted by: Peter Holm Revision Changes Path 1.160 +1 -6 src/sys/kern/vfs_syscalls.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 0:11:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A92BD37BA56; Tue, 25 Jul 2000 00:11:11 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA88094; Tue, 25 Jul 2000 00:11:11 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007250711.AAA88094@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 25 Jul 2000 00:11:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/gftp Makefile ports/ftp/gftp/files md5 ports/ftp/gftp/patches patch-ae ports/ftp/gftp/pkg DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/25 00:11:10 PDT Modified files: ftp/gftp Makefile ftp/gftp/files md5 ftp/gftp/pkg DESCR PLIST Removed files: ftp/gftp/patches patch-ae Log: Update to 2.0.7a and make the following cleanups: - Replace pthread configure patch with perl regex (should make future upgrades easier); - use installed libintl instead of port's own version; - add WWW to pkg/DESCR and remove absolete lines from there; - correctly place Gnome icon into share/gnome/pixmap instead of share/pixmap; - add gnomecc into RUN_DEPENDS to exsure correct removal of Gnome bits. Obtained from: http://www.gnome.org/ Revision Changes Path 1.12 +18 -4 ports/ftp/gftp/Makefile 1.6 +1 -1 ports/ftp/gftp/files/md5 1.2 +3 -2 ports/ftp/gftp/pkg/DESCR 1.5 +8 -1 ports/ftp/gftp/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 Jul 25 0:20:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 20B6137BAC1; Tue, 25 Jul 2000 00:20:05 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA88877; Tue, 25 Jul 2000 00:20:05 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200007250720.AAA88877@freefall.freebsd.org> From: Jun Kuriyama Date: Tue, 25 Jul 2000 00:20:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/xml4j Makefile ports/textproc/xml4j/files md5 ports/textproc/xml4j/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/07/25 00:20:04 PDT Modified files: textproc/xml4j Makefile textproc/xml4j/files md5 textproc/xml4j/pkg PLIST Log: Upgrade to 3.0.1. Submitted by: dirk Revision Changes Path 1.16 +7 -7 ports/textproc/xml4j/Makefile 1.7 +1 -1 ports/textproc/xml4j/files/md5 1.6 +313 -397 ports/textproc/xml4j/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 Jul 25 0:24: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B16437B6BD; Tue, 25 Jul 2000 00:24:03 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA89256; Tue, 25 Jul 2000 00:24:03 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200007250724.AAA89256@freefall.freebsd.org> From: Jun Kuriyama Date: Tue, 25 Jul 2000 00:24:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/xt Makefile ports/textproc/xt/files xt-xp.sh xt-xml4j.sh ports/textproc/xt/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/07/25 00:24:02 PDT Modified files: textproc/xt Makefile textproc/xt/files xt-xml4j.sh textproc/xt/pkg PLIST Added files: textproc/xt/files xt-xp.sh Log: Modify class path in xt-xml4j.sh and add xt-xp.sh. Submitted by: dirk Revision Changes Path 1.13 +4 -2 ports/textproc/xt/Makefile 1.4 +3 -4 ports/textproc/xt/files/xt-xml4j.sh 1.5 +1 -0 ports/textproc/xt/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 Jul 25 0:24:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B14F337BE4A; Tue, 25 Jul 2000 00:24:19 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA89320; Tue, 25 Jul 2000 00:24:20 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200007250724.AAA89320@freefall.freebsd.org> From: Akinori MUSHA Date: Tue, 25 Jul 2000 00:24:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/vje30 Makefile ports/japanese/vje30/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/07/25 00:24:19 PDT Modified files: japanese/vje30 Makefile japanese/vje30/files md5 Log: Apply the newly supplied updater. Change the default behavior to use the updater. Note that you still have WITHOUT_MINORUPDATE to define, just in case the new update includes some bugs yet again. :p Revision Changes Path 1.12 +6 -6 ports/japanese/vje30/Makefile 1.5 +2 -2 ports/japanese/vje30/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 Jul 25 0:28:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 59C6237BA86; Tue, 25 Jul 2000 00:28:43 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA89782; Tue, 25 Jul 2000 00:28:43 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200007250728.AAA89782@freefall.freebsd.org> From: Akinori MUSHA Date: Tue, 25 Jul 2000 00:28:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/esecanna-module-vje30 Makefile ports/japanese/esecanna-module-vje30/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/07/25 00:28:43 PDT Modified files: japanese/esecanna-module-vje30 Makefile japanese/esecanna-module-vje30/files md5 Log: Update to 0.14.8. Revision Changes Path 1.14 +2 -2 ports/japanese/esecanna-module-vje30/Makefile 1.8 +1 -1 ports/japanese/esecanna-module-vje30/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 Jul 25 0:32:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2025B37B9DD; Tue, 25 Jul 2000 00:32:15 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: (from ps@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA90250; Tue, 25 Jul 2000 00:32:15 -0700 (PDT) (envelope-from ps@FreeBSD.org) Message-Id: <200007250732.AAA90250@freefall.freebsd.org> From: Paul Saab Date: Tue, 25 Jul 2000 00:32:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ps 2000/07/25 00:32:15 PDT Modified files: sys/conf files Log: kern_accf.c is now uipc_accf.c after repo copy. Revision Changes Path 1.392 +2 -2 src/sys/conf/files To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 0:38:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 65B8E37B92A; Tue, 25 Jul 2000 00:38:23 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA90815; Tue, 25 Jul 2000 00:38:23 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200007250738.AAA90815@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Tue, 25 Jul 2000 00:38:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/sysinstall tcpip.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/07/25 00:38:23 PDT Modified files: release/sysinstall tcpip.c Log: Restore the screen after possibly spamming it. Reported by: Brian J. McGovern Revision Changes Path 1.106 +4 -1 src/release/sysinstall/tcpip.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 0:45:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 564B037BA94; Tue, 25 Jul 2000 00:45:21 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA91667; Tue, 25 Jul 2000 00:45:21 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200007250745.AAA91667@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Tue, 25 Jul 2000 00:45:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/sysinstall Makefile dist.c install.c menus.c tcpip.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/07/25 00:45:21 PDT Modified files: (Branch: RELENG_4) release/sysinstall Makefile dist.c install.c menus.c tcpip.c Log: MFC: tcpip screen clear, nuke X_AS_PACKAGE Revision Changes Path 1.92.2.6 +0 -3 src/release/sysinstall/Makefile 1.175.2.4 +1 -19 src/release/sysinstall/dist.c 1.268.2.9 +1 -18 src/release/sysinstall/install.c 1.252.2.14 +1 -5 src/release/sysinstall/menus.c 1.103.2.3 +4 -1 src/release/sysinstall/tcpip.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 0:48:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7233B37BAE7; Tue, 25 Jul 2000 00:48:25 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: (from ps@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA92141; Tue, 25 Jul 2000 00:48:25 -0700 (PDT) (envelope-from ps@FreeBSD.org) Message-Id: <200007250748.AAA92141@freefall.freebsd.org> From: Paul Saab Date: Tue, 25 Jul 2000 00:48:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/fsync fsync.1 fsync.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ps 2000/07/25 00:48:25 PDT Modified files: (Branch: RELENG_4) usr.bin/fsync fsync.1 fsync.c Log: MFC: fsync.c: [rev 1.2] typos and spelling fixes. fsync.1: [rev 1.3] typos and spelling fixes. [rev 1.4] Avoid the need to capitalize an extraneous argument to the Nm macro and be more precise about the handling of command-line arguments. Approved by: jkh Revision Changes Path 1.2.2.2 +10 -7 src/usr.bin/fsync/fsync.1 1.1.2.2 +6 -3 src/usr.bin/fsync/fsync.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 1:16:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BABAF37B840; Tue, 25 Jul 2000 01:16:11 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA95649; Tue, 25 Jul 2000 01:16:11 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200007250816.BAA95649@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Tue, 25 Jul 2000 01:16:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/07/25 01:16:10 PDT Modified files: release Makefile Log: Actually make the date printing hack work. Revision Changes Path 1.559 +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 Tue Jul 25 1:16:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EA58237B840; Tue, 25 Jul 2000 01:16:38 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA95700; Tue, 25 Jul 2000 01:16:38 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200007250816.BAA95700@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Tue, 25 Jul 2000 01:16:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/07/25 01:16:38 PDT Modified files: (Branch: RELENG_4) release Makefile Log: MFC: fix date hack Revision Changes Path 1.536.2.17 +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 Tue Jul 25 1:20:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D0FF37B840; Tue, 25 Jul 2000 01:20:21 -0700 (PDT) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA96059; Tue, 25 Jul 2000 01:20:20 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200007250820.BAA96059@freefall.freebsd.org> From: Brian Feldman Date: Tue, 25 Jul 2000 01:20:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern imgact_elf.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/07/25 01:20:20 PDT Modified files: (Branch: RELENG_4) sys/kern imgact_elf.c Log: MFC: check for truncated files and also set VTEXT on external included files Approved by: jkh Revision Changes Path 1.73.2.2 +33 -4 src/sys/kern/imgact_elf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 1:25:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 54B8537BB7E; Tue, 25 Jul 2000 01:25:50 -0700 (PDT) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA96563; Tue, 25 Jul 2000 01:25:49 -0700 (PDT) (envelope-from billf@FreeBSD.org) Message-Id: <200007250825.BAA96563@freefall.freebsd.org> From: Bill Fumerola Date: Tue, 25 Jul 2000 01:25:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/conf GENERIC X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG billf 2000/07/25 01:25:49 PDT Modified files: sys/i386/conf GENERIC Log: s%LINT%NOTES%g Revision Changes Path 1.266 +5 -5 src/sys/i386/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 1:41:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C0B137BF4C; Tue, 25 Jul 2000 01:40:59 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA98082; Tue, 25 Jul 2000 01:40:59 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007250840.BAA98082@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 25 Jul 2000 01:40:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/gtm Makefile ports/ftp/gtm/files md5 ports/ftp/gtm/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/25 01:40:59 PDT Added files: ftp/gtm Makefile ftp/gtm/files md5 ftp/gtm/pkg COMMENT DESCR PLIST Log: Revive gtm - it's now hosted on Sourceforge and update it to 0.4.5. Other fixes/cleanups: - use two perl regexs to replace dozen one-line patches; - use installed linintl instead of port's own; - correct WWW and MASTER_SITES to reflect new location of the project; - add gnomecc to RUN_DEPENDS to ensure correct removal of the package. Obtained from: http://www.gnome.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 1:47: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 61B3D37BD66; Tue, 25 Jul 2000 01:47:01 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA98871; Tue, 25 Jul 2000 01:47:01 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007250847.BAA98871@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 25 Jul 2000 01:47:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/25 01:47:01 PDT Modified files: ftp Makefile Log: Re-add gtm. Revision Changes Path 1.14 +2 -1 ports/ftp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 1:48: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4444937BBFE; Tue, 25 Jul 2000 01:48:00 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA98970; Tue, 25 Jul 2000 01:48:00 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007250848.BAA98970@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 25 Jul 2000 01:48:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/25 01:48:00 PDT Modified files: . modules Log: gtm --> ports/ftp/gtm Revision Changes Path 1.1452 +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 Jul 25 1:56:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6053F37BB41; Tue, 25 Jul 2000 01:56:25 -0700 (PDT) (envelope-from shige@FreeBSD.org) Received: (from shige@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA00160; Tue, 25 Jul 2000 01:56:25 -0700 (PDT) (envelope-from shige@FreeBSD.org) Message-Id: <200007250856.BAA00160@freefall.freebsd.org> From: Shigeyuki Fukushima Date: Tue, 25 Jul 2000 01:56:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/kterm16c Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG shige 2000/07/25 01:56:25 PDT Modified files: japanese/kterm16c Makefile Log: Fix build error (distfiles sub-directory error). Submitted by: Motoyuki Konno Revision Changes Path 1.24 +3 -2 ports/japanese/kterm16c/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 2: 1:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A7C937B988; Tue, 25 Jul 2000 02:01:38 -0700 (PDT) (envelope-from shige@FreeBSD.org) Received: (from shige@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA00895; Tue, 25 Jul 2000 02:01:38 -0700 (PDT) (envelope-from shige@FreeBSD.org) Message-Id: <200007250901.CAA00895@freefall.freebsd.org> From: Shigeyuki Fukushima Date: Tue, 25 Jul 2000 02:01:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Mk bsd.emacs.mk X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG shige 2000/07/25 02:01:38 PDT Modified files: Mk bsd.emacs.mk Log: Change RUN_DEPENDS file when EMACS_COMMON_PORT=YES. Because -common port doesn't have ${EMACS_CMD}. Pointed by: asami-san Revision Changes Path 1.8 +9 -2 ports/Mk/bsd.emacs.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 2:33:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 781C237B540; Tue, 25 Jul 2000 02:33:46 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA05589; Tue, 25 Jul 2000 02:33:46 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200007250933.CAA05589@freefall.freebsd.org> From: Kris Kennaway Date: Tue, 25 Jul 2000 02:33:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/secure/libexec Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/07/25 02:33:46 PDT Modified files: (Branch: RELENG_4) secure/libexec Makefile Log: MFC: Don't build telnetd if NO_OPENSSL defined (now that I have permission :-) Approved by: jkh Revision Changes Path 1.4.2.3 +2 -2 src/secure/libexec/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 2:34:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7182937B6A3; Tue, 25 Jul 2000 02:34:16 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA05699; Tue, 25 Jul 2000 02:34:16 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200007250934.CAA05699@freefall.freebsd.org> From: Alexander Langer Date: Tue, 25 Jul 2000 02:34:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/kernelconfig chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/07/25 02:34:16 PDT Modified files: en_US.ISO_8859-1/books/handbook/kernelconfig chapter.sgml Log: For the new buildkernel/installkernel targets, /usr/src/* must exist. release-versions of FreeBSD might only contain /usr/src/sys. The old description lead to misunderstandings for newbies. Clarify that you still have to use the old method if you don't sync src/ with the FreeBSD project. PR: 20136 Reported by: Stephen Montgomery-Smith (different patch suggested) Revision Changes Path 1.30 +10 -4 doc/en_US.ISO_8859-1/books/handbook/kernelconfig/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 3: 8:21 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2363937BAA5; Tue, 25 Jul 2000 03:08:19 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA11167; Tue, 25 Jul 2000 03:08:18 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007251008.DAA11167@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 25 Jul 2000 03:08:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games Makefile ports/games/bombermaze Makefile ports/games/bombermaze/files md5 ports/games/bombermaze/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/25 03:08:17 PDT Modified files: games Makefile Added files: games/bombermaze Makefile games/bombermaze/files md5 games/bombermaze/pkg COMMENT DESCR PLIST Log: Add bombermaze - a bomberman clone for GNOME desktop. Revision Changes Path 1.287 +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 Jul 25 3: 8:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A03E837BF25; Tue, 25 Jul 2000 03:08:46 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA11221; Tue, 25 Jul 2000 03:08:46 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007251008.DAA11221@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 25 Jul 2000 03:08:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/25 03:08:46 PDT Modified files: . modules Log: bombermaze --> ports/games/bombermaze Revision Changes Path 1.1453 +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 Jul 25 3:15:38 2000 Delivered-To: cvs-all@freebsd.org Received: from mout1.silyn-tek.de (mout1.silyn-tek.de [194.25.165.69]) by hub.freebsd.org (Postfix) with ESMTP id 3349037BC47; Tue, 25 Jul 2000 03:15:28 -0700 (PDT) (envelope-from alex@big.endian.de) Received: from [192.168.32.34] (helo=mx2.silyn-tek.de) by mout1.silyn-tek.de with esmtp (Exim 3.13 #1) id 13H1kF-0000jg-00; Tue, 25 Jul 2000 12:15:27 +0200 Received: from p3e9d38bc.dip0.t-ipconnect.de ([62.157.56.188] helo=neutron.cichlids.com) by mx2.silyn-tek.de with esmtp (Exim 3.13 #1) id 13H1kC-0002Df-00; Tue, 25 Jul 2000 12:15:24 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id 56FC6AB91; Tue, 25 Jul 2000 12:17:27 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id 4926514A65; Tue, 25 Jul 2000 12:15:23 +0200 (CEST) Date: Tue, 25 Jul 2000 12:15:23 +0200 To: Maxim Sobolev Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/games Makefile ports/games/bombermaze Makefile ports/games/bombermaze/files md5 ports/games/bombermaze/pkg COMMENT DESCR PLIST Message-ID: <20000725121523.A455@cichlids.cichlids.com> References: <200007251008.DAA11167@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200007251008.DAA11167@freefall.freebsd.org>; from sobomax@FreeBSD.org on Tue, Jul 25, 2000 at 03:08:17AM -0700 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. From: alex@big.endian.de (Alexander Langer) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Maxim Sobolev (sobomax@FreeBSD.org): > 1.287 +2 -1 ports/games/Makefile Time to split the games section? alex:/usr/ports/games $ ls | wc -l 284 I suggest something like: games games-x11 at least, maybe x11 can be split to x11, gtk, gnome and kde. Alex -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 3:31:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B947137BD44; Tue, 25 Jul 2000 03:31:35 -0700 (PDT) (envelope-from nik@FreeBSD.org) Received: (from nik@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA14695; Tue, 25 Jul 2000 03:31:36 -0700 (PDT) (envelope-from nik@FreeBSD.org) Message-Id: <200007251031.DAA14695@freefall.freebsd.org> From: Nik Clayton Date: Tue, 25 Jul 2000 03:31:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/share/sgml freebsd.dsl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nik 2000/07/25 03:31:36 PDT Modified files: share/sgml freebsd.dsl Log: Turn on callout graphics. Forgot this from about a week ago. Revision Changes Path 1.15 +43 -2 doc/share/sgml/freebsd.dsl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 3:43:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 40E1437B6CC; Tue, 25 Jul 2000 03:43:05 -0700 (PDT) (envelope-from roger@FreeBSD.org) Received: (from roger@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA16755; Tue, 25 Jul 2000 03:43:05 -0700 (PDT) (envelope-from roger@FreeBSD.org) Message-Id: <200007251043.DAA16755@freefall.freebsd.org> From: Roger Hardiman Date: Tue, 25 Jul 2000 03:43:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/vbidecode Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG roger 2000/07/25 03:43:05 PDT Modified files: misc/vbidecode Makefile Log: Get source from my copy at people.freebsd.org/~roger as the original author no longer supports this program. Spotted By: the automatic ports file checker Revision Changes Path 1.6 +2 -2 ports/misc/vbidecode/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 3:46:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1457A37BA2C; Tue, 25 Jul 2000 03:46:11 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA17439; Tue, 25 Jul 2000 03:46:10 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200007251046.DAA17439@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Tue, 25 Jul 2000 03:46:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/docbook Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/07/25 03:46:10 PDT Modified files: textproc/docbook Makefile Log: Update port to include the latest docbook ports. Revision Changes Path 1.11 +7 -3 ports/textproc/docbook/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 3:46:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1006A37BD12; Tue, 25 Jul 2000 03:46:49 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA17599; Tue, 25 Jul 2000 03:46:48 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200007251046.DAA17599@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Tue, 25 Jul 2000 03:46:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/dtd-catalogs Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/07/25 03:46:48 PDT Modified files: textproc/dtd-catalogs Makefile Log: Update port to include the last docbook ports. Also add the jade catalog to the main catalog file if it exists. Revision Changes Path 1.7 +13 -8 ports/textproc/dtd-catalogs/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 3:56:28 2000 Delivered-To: cvs-all@freebsd.org Received: from lucifer.ninth-circle.org (lucifer.bart.nl [194.158.168.74]) by hub.freebsd.org (Postfix) with ESMTP id BFD6F37B9DA; Tue, 25 Jul 2000 03:56:14 -0700 (PDT) (envelope-from asmodai@lucifer.ninth-circle.org) Received: (from asmodai@localhost) by lucifer.ninth-circle.org (8.9.3/8.9.3) id MAA49103; Tue, 25 Jul 2000 12:56:09 +0200 (CEST) (envelope-from asmodai) Date: Tue, 25 Jul 2000 12:56:09 +0200 From: Jeroen Ruigrok van der Werven To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/textproc/dtd-catalogs Makefile Message-ID: <20000725125609.G47156@lucifer.bart.nl> References: <200007251046.DAA17599@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200007251046.DAA17599@freefall.freebsd.org>; from asmodai@FreeBSD.org on Tue, Jul 25, 2000 at 03:46:48AM -0700 Organisation: VIA Net.Works The Netherlands Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -On [20000725 12:50], Jeroen Ruigrok van der Werven (asmodai@FreeBSD.org) wrote: >asmodai 2000/07/25 03:46:48 PDT > > Modified files: > textproc/dtd-catalogs Makefile > Log: > Update port to include the last docbook ports. > Also add the jade catalog to the main catalog file if it exists. Woops. Both were approved by Nik. But I forgot to look at the MAINTAINER for this one. Sorry Fukushima-san. I'll pass this by you next time. Apologies, -- Jeroen Ruigrok van der Werven Network- and systemadministrator VIA Net.Works The Netherlands BSD: Technical excellence at its best http://www.via-net-works.nl Truth is always exciting. Speak it, then. Life is boring without it... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 4: 0:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CA43937BD54; Tue, 25 Jul 2000 04:00:40 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA21292; Tue, 25 Jul 2000 04:00:39 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007251100.EAA21292@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 25 Jul 2000 04:00:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/librep Makefile ports/lang/librep/files md5 ports/lang/librep/patches patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/25 04:00:39 PDT Modified files: lang/librep Makefile lang/librep/files md5 Added files: lang/librep/patches patch-ab Log: Update to 0.12.4. Revision Changes Path 1.17 +2 -2 ports/lang/librep/Makefile 1.10 +1 -1 ports/lang/librep/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 Jul 25 4: 8:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F39BB37BD86; Tue, 25 Jul 2000 04:08:44 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA25617; Tue, 25 Jul 2000 04:08:44 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007251108.EAA25617@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 25 Jul 2000 04:08:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/sawfish Makefile ports/x11-wm/sawfish/files md5 ports/x11-wm/sawfish/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/25 04:08:44 PDT Modified files: x11-wm/sawfish Makefile x11-wm/sawfish/files md5 x11-wm/sawfish/pkg PLIST Log: Update to 0.30.3. Revision Changes Path 1.25 +2 -2 ports/x11-wm/sawfish/Makefile 1.17 +1 -1 ports/x11-wm/sawfish/files/md5 1.19 +1 -0 ports/x11-wm/sawfish/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 Jul 25 4:13:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5BB0F37BD54; Tue, 25 Jul 2000 04:13:13 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA26647; Tue, 25 Jul 2000 04:13:13 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200007251113.EAA26647@freefall.freebsd.org> From: Kris Kennaway Date: Tue, 25 Jul 2000 04:13:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts/i386 RELNOTES.TXT src/release/texts/alpha RELNOTES.TXT X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/07/25 04:13:13 PDT Modified files: (Branch: RELENG_4) release/texts/i386 RELNOTES.TXT release/texts/alpha RELNOTES.TXT Log: Note KAME import and format-string code audit. Revision Changes Path 1.72.2.16 +41 -0 src/release/texts/i386/RELNOTES.TXT 1.31.2.25 +41 -0 src/release/texts/alpha/RELNOTES.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 4:21: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 98E9137BA2C; Tue, 25 Jul 2000 04:21:01 -0700 (PDT) (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA28254; Tue, 25 Jul 2000 04:21:01 -0700 (PDT) (envelope-from ume@FreeBSD.org) Message-Id: <200007251121.EAA28254@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Tue, 25 Jul 2000 04:21:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net rtsock.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ume 2000/07/25 04:21:01 PDT Modified files: sys/net rtsock.c Log: Workaround to avoid panic during detach pccard nic. Revision Changes Path 1.47 +5 -2 src/sys/net/rtsock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 4:37: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0ADE337BDA0; Tue, 25 Jul 2000 04:36:56 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA31888; Tue, 25 Jul 2000 04:36:54 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Message-Id: <200007251136.EAA31888@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Tue, 25 Jul 2000 04:36:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/pngcrush Makefile ports/graphics/pngcrush/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jedgar 2000/07/25 04:36:54 PDT Modified files: graphics/pngcrush Makefile graphics/pngcrush/files md5 Log: Update port to 1.5.0 Revision Changes Path 1.18 +2 -2 ports/graphics/pngcrush/Makefile 1.16 +1 -1 ports/graphics/pngcrush/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 Jul 25 4:45:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BFEAE37BD40; Tue, 25 Jul 2000 04:45:39 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA33916; Tue, 25 Jul 2000 04:45:39 -0700 (PDT) (envelope-from des@FreeBSD.org) Message-Id: <200007251145.EAA33916@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 25 Jul 2000 04:45:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libfetch common.h ftp.c http.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG des 2000/07/25 04:45:39 PDT Modified files: lib/libfetch common.h ftp.c http.c Log: Centralize the default port finding code. Work around YA Apache bug: don't send port in Host: header if it's the default port. Revision Changes Path 1.11 +4 -1 src/lib/libfetch/common.h 1.38 +18 -18 src/lib/libfetch/ftp.c 1.34 +24 -17 src/lib/libfetch/http.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 5: 0:23 2000 Delivered-To: cvs-all@freebsd.org Received: from gw.nectar.com (gw.nectar.com [208.42.49.153]) by hub.freebsd.org (Postfix) with ESMTP id 54DAB37BE49; Tue, 25 Jul 2000 05:00:18 -0700 (PDT) (envelope-from nectar@nectar.com) Received: from hamlet.nectar.com (hamlet.nectar.com [10.0.1.102]) by gw.nectar.com (Postfix) with ESMTP id F2510195F4; Tue, 25 Jul 2000 07:00:16 -0500 (CDT) Received: (from nectar@localhost) by hamlet.nectar.com (8.9.3/8.9.3) id HAA49799; Tue, 25 Jul 2000 07:00:16 -0500 (CDT) (envelope-from nectar@spawn.nectar.com) Date: Tue, 25 Jul 2000 07:00:11 -0500 From: "Jacques A. Vidrine" To: Maxim Sobolev Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/ftp/gtm Makefile ports/ftp/gtm/files md5 ports/ftp/gtm/pkg COMMENT DESCR PLIST Message-ID: <20000725070011.A4207@hamlet.nectar.com> Mail-Followup-To: "Jacques A. Vidrine" , Maxim Sobolev , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200007250840.BAA98082@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <200007250840.BAA98082@freefall.freebsd.org>; from sobomax@FreeBSD.org on Tue, Jul 25, 2000 at 01:40:59AM -0700 X-Url: http://www.nectar.com/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Heh, just my luck, a few days after removing it in disgust, the author wises up and adds support for non-Linux systems. -- Jacques Vidrine / n@nectar.com / jvidrine@verio.net / nectar@FreeBSD.org On Tue, Jul 25, 2000 at 01:40:59AM -0700, Maxim Sobolev wrote: > sobomax 2000/07/25 01:40:59 PDT > > Added files: > ftp/gtm Makefile > ftp/gtm/files md5 > ftp/gtm/pkg COMMENT DESCR PLIST > Log: > Revive gtm - it's now hosted on Sourceforge and update it to 0.4.5. > > Other fixes/cleanups: > - use two perl regexs to replace dozen one-line patches; > - use installed linintl instead of port's own; > - correct WWW and MASTER_SITES to reflect new location of the project; > - add gnomecc to RUN_DEPENDS to ensure correct removal of the package. > > Obtained from: http://www.gnome.org/ > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 5:13:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A998A37BD40; Tue, 25 Jul 2000 05:13:00 -0700 (PDT) (envelope-from hanai@FreeBSD.org) Received: (from hanai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA41480; Tue, 25 Jul 2000 05:13:01 -0700 (PDT) (envelope-from hanai@FreeBSD.org) Message-Id: <200007251213.FAA41480@freefall.freebsd.org> From: Hanai Hiroyuki Date: Tue, 25 Jul 2000 05:13:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/books/handbook/linuxemu chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hanai 2000/07/25 05:13:01 PDT Modified files: ja_JP.eucJP/books/handbook/linuxemu chapter.sgml Log: catch up with the English version. Revision Changes Path 1.14 +541 -934 doc/ja_JP.eucJP/books/handbook/linuxemu/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 5:33: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C616637BDA8; Tue, 25 Jul 2000 05:33:00 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA44127; Tue, 25 Jul 2000 05:33:00 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007251233.FAA44127@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 25 Jul 2000 05:33:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/screem Makefile ports/www/screem/files md5 ports/www/screem/patches patch-aa patch-ab patch-ae patch-af patch-ag ports/www/screem/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/25 05:33:00 PDT Modified files: www/screem Makefile www/screem/files md5 www/screem/pkg PLIST Removed files: www/screem/patches patch-aa patch-ab patch-ae patch-af patch-ag Log: Update to 0.2.10. Replace couple of patches with perl regex. Revision Changes Path 1.10 +11 -4 ports/www/screem/Makefile 1.4 +1 -1 ports/www/screem/files/md5 1.5 +173 -173 ports/www/screem/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 Jul 25 5:38:16 2000 Delivered-To: cvs-all@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 28FD637BDA8; Tue, 25 Jul 2000 05:38:03 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.106]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id PAA04483; Tue, 25 Jul 2000 15:36:26 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.9.3/8.9.3) with ESMTP id PAA25717; Tue, 25 Jul 2000 15:37:58 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <397D8A21.75BE9C6A@FreeBSD.org> Date: Tue, 25 Jul 2000 15:37:53 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.74 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/screem Makefile ports/www/screem/files md5ports/www/screem/patches patch-aa patch-ab patch-ae patch-afpatch-ag ports/www/screem/pkg PLIST References: <200007251233.FAA44127@freefall.freebsd.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Maxim Sobolev wrote: > 1.5 +173 -173 ports/www/screem/pkg/PLIST ^^^^^^^^^^^^^^^^ - hehe, sorting ;). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 6: 1:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1437337BD53; Tue, 25 Jul 2000 06:01:35 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA47160; Tue, 25 Jul 2000 06:01:34 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007251301.GAA47160@freefall.freebsd.org> From: Sheldon Hearn Date: Tue, 25 Jul 2000 06:01:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/cmp cmp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/25 06:01:34 PDT Modified files: usr.bin/cmp cmp.c Log: Fix a bug introduced in rev 1.8, where special files ended up being treated like regular files because of missing braces. PR: 20143 Revision Changes Path 1.9 +3 -2 src/usr.bin/cmp/cmp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 6: 4:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2572F37BD77; Tue, 25 Jul 2000 06:04:42 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA47594; Tue, 25 Jul 2000 06:04:42 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007251304.GAA47594@freefall.freebsd.org> From: Sheldon Hearn Date: Tue, 25 Jul 2000 06:04:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/cmp cmp.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/25 06:04:41 PDT Modified files: (Branch: RELENG_4) usr.bin/cmp cmp.c Log: MFC rev 1.9: add missing braces Revision Changes Path 1.6.6.3 +3 -2 src/usr.bin/cmp/cmp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 6: 9:41 2000 Delivered-To: cvs-all@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.2.163]) by hub.freebsd.org (Postfix) with ESMTP id B9D8337B653; Tue, 25 Jul 2000 06:09:35 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.15 #1) id 13H4Sj-0002ZY-00; Tue, 25 Jul 2000 15:09:33 +0200 From: Sheldon Hearn To: cvs-committers@FreeBSD.org Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/cmp cmp.c In-reply-to: Your message of "Tue, 25 Jul 2000 06:04:41 MST." <200007251304.GAA47594@freefall.freebsd.org> Date: Tue, 25 Jul 2000 15:09:33 +0200 Message-ID: <9891.964530573@axl.ops.uunet.co.za> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 25 Jul 2000 06:04:41 MST, Sheldon Hearn wrote: > Modified files: (Branch: RELENG_4) > usr.bin/cmp cmp.c > Log: > MFC rev 1.9: add missing braces The bug was introduced on June 17, close to code slush time, at the request of a junior release engineer. Not the best ever excuse for committing without approval during code slush, but I don't think I'm going to get roasted for this. :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 6:11:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4032537B511; Tue, 25 Jul 2000 06:11:32 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: (from wilko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA50428; Tue, 25 Jul 2000 06:11:30 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Message-Id: <200007251311.GAA50428@freefall.freebsd.org> From: Wilko Bulte Date: Tue, 25 Jul 2000 06:11:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts/alpha HARDWARE.TXT X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wilko 2000/07/25 06:11:30 PDT Modified files: (Branch: RELENG_4) release/texts/alpha HARDWARE.TXT Log: Document PCI_PARITY SRM flag. Document ECU use. Revision Changes Path 1.22.2.22 +9 -0 src/release/texts/alpha/HARDWARE.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 6:15:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B14C37B511; Tue, 25 Jul 2000 06:15:54 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: (from wilko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA51064; Tue, 25 Jul 2000 06:15:54 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Message-Id: <200007251315.GAA51064@freefall.freebsd.org> From: Wilko Bulte Date: Tue, 25 Jul 2000 06:15:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts/alpha HARDWARE.TXT X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wilko 2000/07/25 06:15:54 PDT Modified files: release/texts/alpha HARDWARE.TXT Log: sync with the RELENG_4 HARDWARE.TXT Revision Changes Path 1.51 +24 -8 src/release/texts/alpha/HARDWARE.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 7:41:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8378937B67D; Tue, 25 Jul 2000 07:41:02 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA23033; Tue, 25 Jul 2000 07:41:03 -0700 (PDT) (envelope-from des@FreeBSD.org) Message-Id: <200007251441.HAA23033@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 25 Jul 2000 07:41:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libfetch ftp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG des 2000/07/25 07:41:03 PDT Modified files: lib/libfetch ftp.c Log: If the server reports the size as 0, treat it as unknown. This works around a bug in some ftp servers (most notably ftp.vmunix.com) which report the size of a file correctly in ascii mode, but report it as 0 in binary mode. Reported by: asmodai Also remove an unneeded initialization. Revision Changes Path 1.39 +3 -4 src/lib/libfetch/ftp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 7:42:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F1E4937B5B4; Tue, 25 Jul 2000 07:42:29 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA23256; Tue, 25 Jul 2000 07:42:30 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007251442.HAA23256@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 25 Jul 2000 07:42:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/wget/pkg DESCR X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/25 07:42:30 PDT Modified files: ftp/wget/pkg DESCR Log: Add a WWW. Revision Changes Path 1.2 +2 -0 ports/ftp/wget/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 8:16:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9C7DC37B599; Tue, 25 Jul 2000 08:16:46 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA28330; Tue, 25 Jul 2000 08:16:45 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007251516.IAA28330@freefall.freebsd.org> From: SADA Kenji Date: Tue, 25 Jul 2000 08:16:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/netscape4-communicator/files md5 ports/www/netscape47-communicator Makefile ports/www/netscape47-navigator Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/25 08:16:45 PDT Modified files: www/netscape4-communicator/files md5 www/netscape47-communicator Makefile www/netscape47-navigator Makefile Log: Upgrade to 4.74. Now many users out of U.S. could use 128bit key encryption. Revision Changes Path 1.40 +4 -8 ports/www/netscape4-communicator/files/md5 1.66 +9 -9 ports/www/netscape47-communicator/Makefile 1.50 +6 -6 ports/www/netscape47-navigator/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 8:40:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 07C9C37B67B; Tue, 25 Jul 2000 08:40:27 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA31421; Tue, 25 Jul 2000 08:40:21 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200007251540.IAA31421@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Tue, 25 Jul 2000 08:40:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/conf NOTES X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/07/25 08:40:21 PDT Modified files: sys/i386/conf NOTES Log: Document IPFILTER_DEFAULT_BLOCK. PR: 20075 Submitted by: Arjan de Vet Revision Changes Path 1.805 +2 -1 src/sys/i386/conf/NOTES To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 9:33:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 453F737B646; Tue, 25 Jul 2000 09:33:12 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA43141; Tue, 25 Jul 2000 09:33:12 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200007251633.JAA43141@freefall.freebsd.org> From: Akinori MUSHA Date: Tue, 25 Jul 2000 09:33:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/esecanna-module-vje30 Makefile ports/japanese/esecanna-module-vje30/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/07/25 09:33:12 PDT Modified files: japanese/esecanna-module-vje30 Makefile japanese/esecanna-module-vje30/files md5 Log: Update to 0.14.9. Revision Changes Path 1.15 +2 -2 ports/japanese/esecanna-module-vje30/Makefile 1.9 +1 -1 ports/japanese/esecanna-module-vje30/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 Jul 25 9:49:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DB6F937B69B; Tue, 25 Jul 2000 09:49:48 -0700 (PDT) (envelope-from marko@FreeBSD.org) Received: (from marko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA45438; Tue, 25 Jul 2000 09:49:48 -0700 (PDT) (envelope-from marko@FreeBSD.org) Message-Id: <200007251649.JAA45438@freefall.freebsd.org> From: Mark Ovens Date: Tue, 25 Jul 2000 09:49:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh ssh.1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marko 2000/07/25 09:49:48 PDT Modified files: crypto/openssh ssh.1 Log: Committed, Thanks!! PR: 20108 Submitted by: Doug Lee Revision Changes Path 1.12 +2 -2 src/crypto/openssh/ssh.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 10:44:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CF84F37B6D4; Tue, 25 Jul 2000 10:44:42 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA53578; Tue, 25 Jul 2000 10:44:42 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200007251744.KAA53578@freefall.freebsd.org> From: Jim Mock Date: Tue, 25 Jul 2000 10:44:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/install chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/07/25 10:44:42 PDT Modified files: en_US.ISO_8859-1/books/handbook/install chapter.sgml Log: Add a missing drive letter in the ``how to make the boot floppies'' example. Submitted by: Ryan G. Coleman on -doc Revision Changes Path 1.54 +2 -2 doc/en_US.ISO_8859-1/books/handbook/install/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 11:23:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 981E437B784; Tue, 25 Jul 2000 11:23:45 -0700 (PDT) (envelope-from ben@FreeBSD.org) Received: (from ben@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA61651; Tue, 25 Jul 2000 11:23:45 -0700 (PDT) (envelope-from ben@FreeBSD.org) Message-Id: <200007251823.LAA61651@freefall.freebsd.org> From: Ben Smithurst Date: Tue, 25 Jul 2000 11:23:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/share/sgml freebsd.dsl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ben 2000/07/25 11:23:45 PDT Modified files: share/sgml freebsd.dsl Log: Add some magic which puts double quotes around text. Submitted by: nik Revision Changes Path 1.16 +12 -1 doc/share/sgml/freebsd.dsl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 11:24:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 176FE37B7CD; Tue, 25 Jul 2000 11:24:49 -0700 (PDT) (envelope-from ben@FreeBSD.org) Received: (from ben@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA61883; Tue, 25 Jul 2000 11:24:49 -0700 (PDT) (envelope-from ben@FreeBSD.org) Message-Id: <200007251824.LAA61883@freefall.freebsd.org> From: Ben Smithurst Date: Tue, 25 Jul 2000 11:24:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/faq book.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ben 2000/07/25 11:24:49 PDT Modified files: en_US.ISO_8859-1/books/faq book.sgml Log: Use instead of in my question about cron errors. Pointed out by: nik Revision Changes Path 1.80 +3 -3 doc/en_US.ISO_8859-1/books/faq/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 11:28:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1C65C37B75C; Tue, 25 Jul 2000 11:28:47 -0700 (PDT) (envelope-from mckusick@FreeBSD.org) Received: (from mckusick@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA62730; Tue, 25 Jul 2000 11:28:47 -0700 (PDT) (envelope-from mckusick@FreeBSD.org) Message-Id: <200007251828.LAA62730@freefall.freebsd.org> From: Kirk McKusick Date: Tue, 25 Jul 2000 11:28:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_bio.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mckusick 2000/07/25 11:28:47 PDT Modified files: sys/kern vfs_bio.c Log: Now that buffer locks can be recursive, we need to delete the panics that complain about them. Obtained from: Brian Fundakowski Feldman Revision Changes Path 1.261 +1 -5 src/sys/kern/vfs_bio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 11:50:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 241E837B8F9; Tue, 25 Jul 2000 11:50:23 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA66749; Tue, 25 Jul 2000 11:50:23 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Message-Id: <200007251850.LAA66749@freefall.freebsd.org> From: Matt Dillon Date: Tue, 25 Jul 2000 11:50:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys rfork.2 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dillon 2000/07/25 11:50:22 PDT Modified files: lib/libc/sys rfork.2 Log: MFC 1.11.2.3 from -stable to -current Revision Changes Path 1.14 +22 -7 src/lib/libc/sys/rfork.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 11:57:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E9AC37B625; Tue, 25 Jul 2000 11:57:22 -0700 (PDT) (envelope-from archie@FreeBSD.org) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA67849; Tue, 25 Jul 2000 11:57:22 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200007251857.LAA67849@freefall.freebsd.org> From: Archie Cobbs Date: Tue, 25 Jul 2000 11:57:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netgraph ng_pptpgre.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/07/25 11:57:22 PDT Modified files: sys/netgraph ng_pptpgre.c Log: Followup to previous commit.. - It's worthwhile to use untimeout(9), even though we must still protect against "false" timeouts, because most of the time it saves having to handle a dummy timeout event. - Slight tweaks to the delayed ACK algorithm paramters. Revision Changes Path 1.9 +41 -21 src/sys/netgraph/ng_pptpgre.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 12: 5:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 72C7B37B9F6; Tue, 25 Jul 2000 12:05:11 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA69201; Tue, 25 Jul 2000 12:05:11 -0700 (PDT) (envelope-from imp@FreeBSD.org) Message-Id: <200007251905.MAA69201@freefall.freebsd.org> From: Warner Losh Date: Tue, 25 Jul 2000 12:05:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/mtree mtree.8 mtree.c verify.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/07/25 12:05:11 PDT Modified files: usr.sbin/mtree mtree.8 mtree.c verify.c Log: Add -q. this will cause the warning messages about missing directories to not be printed. This is from OpenBSD (and I think NetBSD also) and makes our mtree more compatible with other BSDs. This makes cross compilation easier than it was before. Other changes will be needed to allow NetBSD or OpenBSD to cross build on FreeBSD, but this is a start. Reviewed by: andrey Obtained from: OpenBSD Concentric Red Circles by: My own stupidity Revision Changes Path 1.27 +7 -2 src/usr.sbin/mtree/mtree.8 1.16 +6 -3 src/usr.sbin/mtree/mtree.c 1.14 +12 -4 src/usr.sbin/mtree/verify.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 12:17:51 2000 Delivered-To: cvs-all@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id E109F37B9C8; Tue, 25 Jul 2000 12:17:38 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo.feral.com (beppo [192.67.166.79]) by feral.com (8.9.3/8.9.3) with ESMTP id MAA30506; Tue, 25 Jul 2000 12:17:38 -0700 Date: Tue, 25 Jul 2000 12:17:41 -0700 (PDT) From: Matthew Jacob Reply-To: mjacob@feral.com To: Matt Dillon Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/sys rfork.2 In-Reply-To: <200007251850.LAA66749@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ????????? I am stone confused by this. I *KNOW* we had some song and dance about -stable moving ahead because -current was broken, but that model doesn't seem to have been actually followed. I'm confused. On Tue, 25 Jul 2000, Matt Dillon wrote: > dillon 2000/07/25 11:50:22 PDT > > Modified files: > lib/libc/sys rfork.2 > Log: > MFC 1.11.2.3 from -stable to -current > > Revision Changes Path > 1.14 +22 -7 src/lib/libc/sys/rfork.2 > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 13: 8:16 2000 Delivered-To: cvs-all@freebsd.org Received: from earth.backplane.com (backplane-inc.SanFranciscosfd.cw.net [206.24.214.242]) by hub.freebsd.org (Postfix) with ESMTP id 0E96A37B927; Tue, 25 Jul 2000 13:08:06 -0700 (PDT) (envelope-from dillon@earth.backplane.com) Received: (from dillon@localhost) by earth.backplane.com (8.9.3/8.9.3) id NAA47274; Tue, 25 Jul 2000 13:07:59 -0700 (PDT) (envelope-from dillon) Date: Tue, 25 Jul 2000 13:07:59 -0700 (PDT) From: Matt Dillon Message-Id: <200007252007.NAA47274@earth.backplane.com> To: Matthew Jacob Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libc/sys rfork.2 References: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG : : :????????? : :I am stone confused by this. I *KNOW* we had some song and dance about -stable :moving ahead because -current was broken, but that model doesn't seem to have :been actually followed. : :I'm confused. It's just a man page. I committed it to 4.x before I committed it to 5.x, is all. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 13:13:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5EF9F37B68B; Tue, 25 Jul 2000 13:13:52 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id NAA81760; Tue, 25 Jul 2000 13:13:52 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Tue, 25 Jul 2000 13:13:52 -0700 (PDT) From: Kris Kennaway To: Matthew Jacob Cc: Matt Dillon , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/sys rfork.2 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 25 Jul 2000, Matthew Jacob wrote: > I am stone confused by this. I *KNOW* we had some song and dance about -stable > moving ahead because -current was broken, but that model doesn't seem to have > been actually followed. Minor doc commits are traditionally allowed without permission during the code freeze, since after all it's a *code* freeze :-) Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 13:22:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BEEBA37BA44; Tue, 25 Jul 2000 13:22:08 -0700 (PDT) (envelope-from gj@FreeBSD.org) Received: (from gj@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA82888; Tue, 25 Jul 2000 13:22:08 -0700 (PDT) (envelope-from gj@FreeBSD.org) Message-Id: <200007252022.NAA82888@freefall.freebsd.org> From: Gary Jennejohn Date: Tue, 25 Jul 2000 13:22:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/xemacs21 Makefile ports/editors/xemacs21/files md5 ports/editors/xemacs21/patches patch-af patch-an patch-al ports/editors/xemacs21/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG gj 2000/07/25 13:22:08 PDT Modified files: editors/xemacs21 Makefile editors/xemacs21/files md5 editors/xemacs21/patches patch-af patch-an editors/xemacs21/pkg PLIST Removed files: editors/xemacs21/patches patch-al Log: Update to version 21.1.11. Patch patch-al was obsoleted by a change in the target file. Except for one minor change in PLIST the submitted patch worked without errors. Excellent ! Submitted by: kiri@pis.toba-cmt.ac.jp Revision Changes Path 1.49 +3 -3 ports/editors/xemacs21/Makefile 1.12 +3 -3 ports/editors/xemacs21/files/md5 1.11 +6 -6 ports/editors/xemacs21/patches/patch-af 1.2 +11 -11 ports/editors/xemacs21/patches/patch-an 1.21 +470 -527 ports/editors/xemacs21/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 Jul 25 13:38:51 2000 Delivered-To: cvs-all@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id 5E61337B864; Tue, 25 Jul 2000 13:38:47 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from semuta.feral.com (semuta [192.67.166.70]) by feral.com (8.9.3/8.9.3) with ESMTP id NAA30939; Tue, 25 Jul 2000 13:38:42 -0700 Date: Tue, 25 Jul 2000 13:38:02 -0700 (PDT) From: Matthew Jacob Reply-To: mjacob@feral.com To: Matt Dillon Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libc/sys rfork.2 In-Reply-To: <200007252007.NAA47274@earth.backplane.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "oh" On Tue, 25 Jul 2000, Matt Dillon wrote: > > : > : > :????????? > : > :I am stone confused by this. I *KNOW* we had some song and dance about -stable > :moving ahead because -current was broken, but that model doesn't seem to have > :been actually followed. > : > :I'm confused. > > It's just a man page. I committed it to 4.x before I committed it to > 5.x, is all. > > -Matt > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 13:40:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8D21937B864; Tue, 25 Jul 2000 13:40:35 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Received: (from gibbs@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA85659; Tue, 25 Jul 2000 13:40:35 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Message-Id: <200007252040.NAA85659@freefall.freebsd.org> From: "Justin T. Gibbs" Date: Tue, 25 Jul 2000 13:40:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/aic7xxx aic7xxx.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG gibbs 2000/07/25 13:40:35 PDT Modified files: sys/dev/aic7xxx aic7xxx.c Log: Properly handle the case where the residual is 0, but, as the target didn't bother to send a saved data pointers after the last transfer, is not recorded in sgptr. This was only a problem if the target reported non-zero status as we always check the residual in that case. Revision Changes Path 1.47 +13 -6 src/sys/dev/aic7xxx/aic7xxx.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 14:18:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 870CD37B949; Tue, 25 Jul 2000 14:18:47 -0700 (PDT) (envelope-from markm@FreeBSD.org) Received: (from markm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA90913; Tue, 25 Jul 2000 14:18:47 -0700 (PDT) (envelope-from markm@FreeBSD.org) Message-Id: <200007252118.OAA90913@freefall.freebsd.org> From: Mark Murray Date: Tue, 25 Jul 2000 14:18:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys random.h src/sys/dev/randomdev harvest.c randomdev.c yarrow.c yarrow.h src/sys/dev/syscons syscons.c sysmouse.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG markm 2000/07/25 14:18:47 PDT Modified files: sys/sys random.h sys/dev/randomdev harvest.c randomdev.c yarrow.c yarrow.h sys/dev/syscons syscons.c sysmouse.c Log: o Fix a horrible bug where small reads (< 8 bytes) would return the wrong bytes. o Improve the public interface; use void* instead of char* or u_int64_t to pass arbitrary data around. Submitted by: kris ("horrible bug") Revision Changes Path 1.25 +6 -5 src/sys/sys/random.h 1.4 +5 -5 src/sys/dev/randomdev/harvest.c 1.9 +13 -3 src/sys/dev/randomdev/randomdev.c 1.13 +31 -14 src/sys/dev/randomdev/yarrow.c 1.5 +3 -3 src/sys/dev/randomdev/yarrow.h 1.345 +2 -3 src/sys/dev/syscons/syscons.c 1.4 +2 -5 src/sys/dev/syscons/sysmouse.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 14:22:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 74D8037B9BF; Tue, 25 Jul 2000 14:22:17 -0700 (PDT) (envelope-from markm@FreeBSD.org) Received: (from markm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA91294; Tue, 25 Jul 2000 14:22:17 -0700 (PDT) (envelope-from markm@FreeBSD.org) Message-Id: <200007252122.OAA91294@freefall.freebsd.org> From: Mark Murray Date: Tue, 25 Jul 2000 14:22:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/randomdev yarrow.c randomdev.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG markm 2000/07/25 14:22:17 PDT Modified files: sys/dev/randomdev yarrow.c randomdev.c Log: Forgot from last commit: o if the device is being written to, and the user is not root, or the securelevel is greater than 0, then fail with EPERM. Revision Changes Path 1.14 +1 -1 src/sys/dev/randomdev/yarrow.c 1.10 +1 -1 src/sys/dev/randomdev/randomdev.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 15:24:46 2000 Delivered-To: cvs-all@freebsd.org Received: from netplex.com.au (adsl-63-207-30-186.dsl.snfc21.pacbell.net [63.207.30.186]) by hub.freebsd.org (Postfix) with ESMTP id 4A07B37BA6B; Tue, 25 Jul 2000 15:24:38 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (peter@localhost [127.0.0.1]) by netplex.com.au (8.9.3/8.9.3) with ESMTP id PAA34677; Tue, 25 Jul 2000 15:13:02 -0700 (PDT) (envelope-from peter@netplex.com.au) Message-Id: <200007252213.PAA34677@netplex.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: Warner Losh Cc: "Andrey A. Chernov" , "Jordan K. Hubbard" , Marcel Moolenaar , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs In-Reply-To: Message from Warner Losh of "Mon, 24 Jul 2000 20:28:15 MDT." <200007250228.UAA85362@harmony.village.org> Date: Tue, 25 Jul 2000 15:13:01 -0700 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Warner Losh wrote: [..] > Finally, the -L changes were correct. The reason that we need them > for the buildworld, but not for other uses is fairly simple. The > buildworld process requires mtree to set permissions. > > But come to think of it, I'm not at all sure why we need to have mtree > follow symbolic links in the build process. I thought I understood > that, but now cannot find the words to explain it and am in doubt of > my understanding of it. [..] Our tree as it stands today: peter@daintree[3:08pm]~src/usr.sbin/mtree-107> cvs diff -r CSRG mtree.c | grep ftsopt < int ftsoptions = FTS_PHYSICAL; > int ftsoptions = FTS_LOGICAL; This makes mtree(8) follows symlinks as if they were not there. eg: if you have SHARED=symlinks for /usr/include, then 'installworld' will chown fragments of your src/sys tree. This pisses me off a lot because I do not leave the source owned by root and do all my work as non-root. On a semi-regular basis, buildworld has chowned the src/sys tree as well, but this seems to have been fixed. IMHO, we need to restore FTS_PHYSICAL by default, as it was on 4.4BSD and as (I believe) it is on the other *BSD's. Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 15:30:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2C28A37BAA1; Tue, 25 Jul 2000 15:30:10 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA99382; Tue, 25 Jul 2000 15:30:10 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200007252230.PAA99382@freefall.freebsd.org> From: John Baldwin Date: Tue, 25 Jul 2000 15:30:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/07/25 15:30:09 PDT Modified files: release Makefile Log: Grrr, build a non-crypto version of tcpdump to stick in the bin distribution. Submitted by: kris Revision Changes Path 1.560 +3 -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 Tue Jul 25 15:58:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EF52A37B8BE; Tue, 25 Jul 2000 15:58:52 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA02186; Tue, 25 Jul 2000 15:58:52 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200007252258.PAA02186@freefall.freebsd.org> From: John Baldwin Date: Tue, 25 Jul 2000 15:58:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys linker.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/07/25 15:58:52 PDT Modified files: sys/sys linker.h Log: style(9)'ify all the function prototypes by protecting all the parameter names with a leading underscore. Notably, the 'stat' parameter in the kld_stat() prototype conflicted with stat() and generated a BDE warning. Approved by: peter Revision Changes Path 1.22 +29 -27 src/sys/sys/linker.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 16:22:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F1F9D37BAE8; Tue, 25 Jul 2000 16:22:22 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA05643; Tue, 25 Jul 2000 16:22:17 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200007252322.QAA05643@freefall.freebsd.org> From: John Baldwin Date: Tue, 25 Jul 2000 16:22:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/sysinstall ftp.c menus.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/07/25 16:22:17 PDT Modified files: release/sysinstall ftp.c menus.c Log: Use a much saner method of locating the release directory on an FTP server. Now, if a release is specified, instead of just looking for a directory with the same name as the release, try several possible directories (each suffixed with the release name) relative to the base directory including ".", "releases/MACHINE", "snapshots/MACHINE", and each of those prefixed with "pub/FreeBSD/". This will allow us to remove the evil symlinks under pub/FreeBSD/releases/MACHINE/ to the snapshots on the ftp site. Revision Changes Path 1.39 +46 -18 src/release/sysinstall/ftp.c 1.268 +89 -98 src/release/sysinstall/menus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 16:23:10 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 935AC37BB4A; Tue, 25 Jul 2000 16:23:04 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id RAA28486; Tue, 25 Jul 2000 17:23:02 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id RAA24596; Tue, 25 Jul 2000 17:22:41 -0600 (MDT) Message-Id: <200007252322.RAA24596@harmony.village.org> To: Peter Wemm Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Cc: "Andrey A. Chernov" , "Jordan K. Hubbard" , Marcel Moolenaar , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Tue, 25 Jul 2000 15:13:01 PDT." <200007252213.PAA34677@netplex.com.au> References: <200007252213.PAA34677@netplex.com.au> Date: Tue, 25 Jul 2000 17:22:40 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <200007252213.PAA34677@netplex.com.au> Peter Wemm writes: : Our tree as it stands today: : peter@daintree[3:08pm]~src/usr.sbin/mtree-107> cvs diff -r CSRG mtree.c | grep ftsopt : < int ftsoptions = FTS_PHYSICAL; : > int ftsoptions = FTS_LOGICAL; : : This makes mtree(8) follows symlinks as if they were not there. : : eg: if you have SHARED=symlinks for /usr/include, then 'installworld' : will chown fragments of your src/sys tree. This pisses me off a lot because : I do not leave the source owned by root and do all my work as non-root. : On a semi-regular basis, buildworld has chowned the src/sys tree as well, : but this seems to have been fixed. : : IMHO, we need to restore FTS_PHYSICAL by default, as it was on 4.4BSD and : as (I believe) it is on the other *BSD's. Right. We should have FTS_PHYSICAL by default (which is easy to do with Andrey's changes). We should also provide a way to cause the mtree to do the old behavior if the user needs it (and they will for sybolic links for things like /tmp). So two changes need to happen. Once, the mtree should be changed and two the build system needs a minor tweak to allow a MTREE_FLAGS parameter to mtree. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 16:24:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6703537BB05; Tue, 25 Jul 2000 16:24:27 -0700 (PDT) (envelope-from marko@FreeBSD.org) Received: (from marko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA05828; Tue, 25 Jul 2000 16:24:27 -0700 (PDT) (envelope-from marko@FreeBSD.org) Message-Id: <200007252324.QAA05828@freefall.freebsd.org> From: Mark Ovens Date: Tue, 25 Jul 2000 16:24:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh ssh.1 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marko 2000/07/25 16:24:27 PDT Modified files: (Branch: RELENG_4) crypto/openssh ssh.1 Log: MFC rev 1.12 Fix minor typo PR: 20108 Submitted by: Doug Lee Revision Changes Path 1.4.2.2 +2 -2 src/crypto/openssh/ssh.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 16:37:23 2000 Delivered-To: cvs-all@freebsd.org Received: from palrel1.hp.com (palrel1.hp.com [156.153.255.242]) by hub.freebsd.org (Postfix) with ESMTP id 607A937BB80; Tue, 25 Jul 2000 16:37:17 -0700 (PDT) (envelope-from marcel@cup.hp.com) Received: from adlmail.cup.hp.com (adlmail.cup.hp.com [15.0.100.30]) by palrel1.hp.com (Postfix) with ESMTP id 03F72C17; Tue, 25 Jul 2000 16:37:14 -0700 (PDT) Received: from cup.hp.com (gauss.cup.hp.com [15.28.97.152]) by adlmail.cup.hp.com (8.9.3 (PHNE_18979)/8.9.3 SMKit7.02) with ESMTP id QAA19273; Tue, 25 Jul 2000 16:37:13 -0700 (PDT) Message-ID: <397E24A9.81AA57BA@cup.hp.com> Date: Tue, 25 Jul 2000 16:37:13 -0700 From: Marcel Moolenaar Organization: Hewlett-Packard X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Warner Losh Cc: Peter Wemm , "Andrey A. Chernov" , "Jordan K. Hubbard" , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs References: <200007252213.PAA34677@netplex.com.au> <200007252322.RAA24596@harmony.village.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Warner Losh wrote: > > Right. We should have FTS_PHYSICAL by default (which is easy to do > with Andrey's changes). We should also provide a way to cause the > mtree to do the old behavior if the user needs it (and they will for > sybolic links for things like /tmp). So two changes need to happen. > Once, the mtree should be changed and two the build system needs a > minor tweak to allow a MTREE_FLAGS parameter to mtree. Andrey changed the default and provided a -L switch. Nothing wrong with that. Why *exactly* do we need the build system to use FTS_LOGICAL instead of the mtree-default? I guess I'm confused, why having a default of FTS_PHYSICAL is ok, except for the build process... -- Marcel Moolenaar mail: marcel@cup.hp.com / marcel@FreeBSD.org tel: (408) 447-4222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 16:41: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id B033737BB97; Tue, 25 Jul 2000 16:40:50 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id RAA28560; Tue, 25 Jul 2000 17:40:44 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id RAA24778; Tue, 25 Jul 2000 17:40:23 -0600 (MDT) Message-Id: <200007252340.RAA24778@harmony.village.org> To: Marcel Moolenaar Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Cc: Peter Wemm , "Andrey A. Chernov" , "Jordan K. Hubbard" , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Tue, 25 Jul 2000 16:37:13 PDT." <397E24A9.81AA57BA@cup.hp.com> References: <397E24A9.81AA57BA@cup.hp.com> <200007252213.PAA34677@netplex.com.au> <200007252322.RAA24596@harmony.village.org> Date: Tue, 25 Jul 2000 17:40:23 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <397E24A9.81AA57BA@cup.hp.com> Marcel Moolenaar writes: : Andrey changed the default and provided a -L switch. Nothing wrong with : that. Why *exactly* do we need the build system to use FTS_LOGICAL : instead of the mtree-default? I guess I'm confused, why having a default : of FTS_PHYSICAL is ok, except for the build process... Andrey has explained this, but here goes again. The problem is that if you have a symbolic link for things like /tmp, /var/tmp, /var/mail, etc then without -L you'd continue to have insecure permissions if you botched the initial install. It is a relatively weak reason, but an important one for those that need it. I don't think there's any reason to not ptu Andrey's changes back in as well as allowing a MTREE_FLAGS (or whatever the standard is) knob in /etc/make.conf plus some other places to allow those that need it or want it to still have it. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 16:50:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AD10337BC03; Tue, 25 Jul 2000 16:50:31 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Received: (from nsayer@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA08047; Tue, 25 Jul 2000 16:50:31 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Message-Id: <200007252350.QAA08047@freefall.freebsd.org> From: Nick Sayer Date: Tue, 25 Jul 2000 16:50:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net if_tap.c if_tapvar.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nsayer 2000/07/25 16:50:31 PDT Modified files: sys/net if_tap.c if_tapvar.h Log: Change to support vmware... SIOCSIFADDR on the character device sets the (notional) "remote" ethernet address. Submitted by: vsilyaev@mindspring.com Revision Changes Path 1.3 +7 -7 src/sys/net/if_tap.c 1.3 +3 -1 src/sys/net/if_tapvar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 16:54: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 8A2B237BB47; Tue, 25 Jul 2000 16:53:52 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.9.3/8.9.3) id DAA45022; Wed, 26 Jul 2000 03:46:47 +0400 (MSD) (envelope-from ache) Date: Wed, 26 Jul 2000 03:46:40 +0400 From: "Andrey A. Chernov" To: Marcel Moolenaar Cc: Warner Losh , Peter Wemm , "Jordan K. Hubbard" , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000726034634.A44979@nagual.pp.ru> References: <200007252213.PAA34677@netplex.com.au> <200007252322.RAA24596@harmony.village.org> <397E24A9.81AA57BA@cup.hp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <397E24A9.81AA57BA@cup.hp.com>; from marcel@cup.hp.com on Tue, Jul 25, 2000 at 04:37:13PM -0700 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Jul 25, 2000 at 04:37:13PM -0700, Marcel Moolenaar wrote: > Andrey changed the default and provided a -L switch. Nothing wrong with > that. Why *exactly* do we need the build system to use FTS_LOGICAL > instead of the mtree-default? I guess I'm confused, why having a default > of FTS_PHYSICAL is ok, except for the build process... Because in the build process mtree is used to set permissions for /tmp and /var/mail. With mtree defaults (restored) they left in unknown state in systems which use symlinks for them, so why -L (optionally) needed. Probably setting permissions and creating directories, i.e. 'make hierarchy' does not belong to build process at all, I am not sure. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 16:54:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E524737BDFE; Tue, 25 Jul 2000 16:54:35 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA08431; Tue, 25 Jul 2000 16:54:35 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007252354.QAA08431@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 25 Jul 2000 16:54:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/sysinstall dist.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/25 16:54:35 PDT Modified files: release/sysinstall dist.c Log: Don't give the DEC Alpha user the chance to install the X servers that are non-existant on non-i386 platforms. Revision Changes Path 1.179 +7 -1 src/release/sysinstall/dist.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 17: 5:33 2000 Delivered-To: cvs-all@freebsd.org Received: from palrel1.hp.com (palrel1.hp.com [156.153.255.242]) by hub.freebsd.org (Postfix) with ESMTP id 3258F37BB47; Tue, 25 Jul 2000 17:05:23 -0700 (PDT) (envelope-from marcel@cup.hp.com) Received: from adlmail.cup.hp.com (adlmail.cup.hp.com [15.0.100.30]) by palrel1.hp.com (Postfix) with ESMTP id 6CB60FE5; Tue, 25 Jul 2000 17:04:44 -0700 (PDT) Received: from cup.hp.com (gauss.cup.hp.com [15.28.97.152]) by adlmail.cup.hp.com (8.9.3 (PHNE_18979)/8.9.3 SMKit7.02) with ESMTP id RAA20964; Tue, 25 Jul 2000 17:04:43 -0700 (PDT) Message-ID: <397E2B1B.896E430F@cup.hp.com> Date: Tue, 25 Jul 2000 17:04:43 -0700 From: Marcel Moolenaar Organization: Hewlett-Packard X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Warner Losh Cc: Peter Wemm , "Andrey A. Chernov" , "Jordan K. Hubbard" , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs References: <397E24A9.81AA57BA@cup.hp.com> <200007252213.PAA34677@netplex.com.au> <200007252322.RAA24596@harmony.village.org> <200007252340.RAA24778@harmony.village.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Warner Losh wrote: > > The problem is that if you have a symbolic link for things like /tmp, > /var/tmp, /var/mail, etc then without -L you'd continue to have > insecure permissions if you botched the initial install. It is a > relatively weak reason, but an important one for those that need it. How do other BSDs handle this? How does this weight up to the problem Peter mentions? -- Marcel Moolenaar mail: marcel@cup.hp.com / marcel@FreeBSD.org tel: (408) 447-4222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 17:19: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 3606637B645; Tue, 25 Jul 2000 17:18:55 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id SAA28697; Tue, 25 Jul 2000 18:18:53 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id SAA25201; Tue, 25 Jul 2000 18:18:30 -0600 (MDT) Message-Id: <200007260018.SAA25201@harmony.village.org> To: Marcel Moolenaar Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Cc: Peter Wemm , "Andrey A. Chernov" , "Jordan K. Hubbard" , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Tue, 25 Jul 2000 17:04:43 PDT." <397E2B1B.896E430F@cup.hp.com> References: <397E2B1B.896E430F@cup.hp.com> <397E24A9.81AA57BA@cup.hp.com> <200007252213.PAA34677@netplex.com.au> <200007252322.RAA24596@harmony.village.org> <200007252340.RAA24778@harmony.village.org> Date: Tue, 25 Jul 2000 18:18:30 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <397E2B1B.896E430F@cup.hp.com> Marcel Moolenaar writes: : Warner Losh wrote: : > : > The problem is that if you have a symbolic link for things like /tmp, : > /var/tmp, /var/mail, etc then without -L you'd continue to have : > insecure permissions if you botched the initial install. It is a : > relatively weak reason, but an important one for those that need it. : : How do other BSDs handle this? Other BSDs do PHYSICAL. : How does this weight up to the problem Peter mentions? Peter's problems are the reason that we should have PHYSICAL by default and a knob to make it LOGICAL for those few people that need it. I think I've said this about 20 times now... Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 17:43:15 2000 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id DB6DE37B8AF; Tue, 25 Jul 2000 17:43:09 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.9.3/8.9.3) id EAA45436; Wed, 26 Jul 2000 04:34:49 +0400 (MSD) (envelope-from ache) Date: Wed, 26 Jul 2000 04:34:49 +0400 From: "Andrey A. Chernov" To: Warner Losh Cc: Marcel Moolenaar , Peter Wemm , "Jordan K. Hubbard" , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000726043448.A45394@nagual.pp.ru> References: <397E2B1B.896E430F@cup.hp.com> <397E24A9.81AA57BA@cup.hp.com> <200007252213.PAA34677@netplex.com.au> <200007252322.RAA24596@harmony.village.org> <200007252340.RAA24778@harmony.village.org> <397E2B1B.896E430F@cup.hp.com> <200007260018.SAA25201@harmony.village.org> <20000726043259.A45303@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <20000726043259.A45303@nagual.pp.ru>; from ache@nagual.pp.ru on Wed, Jul 26, 2000 at 04:33:00AM +0400 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Jul 26, 2000 at 04:33:00AM +0400, Andrey A. Chernov wrote: > I don't think so. We should use LOGICAL by default since not all admins > are expirienced enough to understand whole issue or don't wish to deal > with so complex setup on many machines. Without LOGICAL they are under > security risk. Better to have secure variant by default. For the case > Peter describe we should use PHYSICAL. It is only special case with > symlinked includes. I mean building process, of course, not mtree defaults which should stay to PHYSICAL. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 17:43:37 2000 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 134AC37BDBA; Tue, 25 Jul 2000 17:43:18 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.9.3/8.9.3) id EAA45377; Wed, 26 Jul 2000 04:33:02 +0400 (MSD) (envelope-from ache) Date: Wed, 26 Jul 2000 04:33:00 +0400 From: "Andrey A. Chernov" To: Warner Losh Cc: Marcel Moolenaar , Peter Wemm , "Jordan K. Hubbard" , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000726043259.A45303@nagual.pp.ru> References: <397E2B1B.896E430F@cup.hp.com> <397E24A9.81AA57BA@cup.hp.com> <200007252213.PAA34677@netplex.com.au> <200007252322.RAA24596@harmony.village.org> <200007252340.RAA24778@harmony.village.org> <397E2B1B.896E430F@cup.hp.com> <200007260018.SAA25201@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <200007260018.SAA25201@harmony.village.org>; from imp@village.org on Tue, Jul 25, 2000 at 06:18:30PM -0600 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Jul 25, 2000 at 06:18:30PM -0600, Warner Losh wrote: > : How does this weight up to the problem Peter mentions? > > Peter's problems are the reason that we should have PHYSICAL by > default and a knob to make it LOGICAL for those few people that need > it. I think I've said this about 20 times now... I don't think so. We should use LOGICAL by default since not all admins are expirienced enough to understand whole issue or don't wish to deal with so complex setup on many machines. Without LOGICAL they are under security risk. Better to have secure variant by default. For the case Peter describe we should use PHYSICAL. It is only special case with symlinked includes. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 17:46:52 2000 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 1F62237BCC9; Tue, 25 Jul 2000 17:46:47 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.9.3/8.9.3) id EAA45506; Wed, 26 Jul 2000 04:38:24 +0400 (MSD) (envelope-from ache) Date: Wed, 26 Jul 2000 04:38:23 +0400 From: "Andrey A. Chernov" To: Warner Losh Cc: Marcel Moolenaar , Peter Wemm , "Jordan K. Hubbard" , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000726043822.A45473@nagual.pp.ru> References: <397E2B1B.896E430F@cup.hp.com> <397E24A9.81AA57BA@cup.hp.com> <200007252213.PAA34677@netplex.com.au> <200007252322.RAA24596@harmony.village.org> <200007252340.RAA24778@harmony.village.org> <397E2B1B.896E430F@cup.hp.com> <200007260018.SAA25201@harmony.village.org> <20000726043259.A45303@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <20000726043259.A45303@nagual.pp.ru>; from ache@nagual.pp.ru on Wed, Jul 26, 2000 at 04:33:00AM +0400 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Jul 26, 2000 at 04:33:00AM +0400, Andrey A. Chernov wrote: > Peter describe we should use PHYSICAL. It is only special case with > symlinked includes. I mean to call mtree for symlinked includes without -L option, but with it for other directories. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 17:53:26 2000 Delivered-To: cvs-all@freebsd.org Received: from palrel1.hp.com (palrel1.hp.com [156.153.255.242]) by hub.freebsd.org (Postfix) with ESMTP id 97D2137BCE4; Tue, 25 Jul 2000 17:53:19 -0700 (PDT) (envelope-from marcel@cup.hp.com) Received: from adlmail.cup.hp.com (adlmail.cup.hp.com [15.0.100.30]) by palrel1.hp.com (Postfix) with ESMTP id 752F5584; Tue, 25 Jul 2000 17:53:17 -0700 (PDT) Received: from cup.hp.com (gauss.cup.hp.com [15.28.97.152]) by adlmail.cup.hp.com (8.9.3 (PHNE_18979)/8.9.3 SMKit7.02) with ESMTP id RAA23354; Tue, 25 Jul 2000 17:53:16 -0700 (PDT) Message-ID: <397E367C.E49F9FAE@cup.hp.com> Date: Tue, 25 Jul 2000 17:53:16 -0700 From: Marcel Moolenaar Organization: Hewlett-Packard X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: "Andrey A. Chernov" Cc: Warner Losh , Peter Wemm , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs References: <397E2B1B.896E430F@cup.hp.com> <397E24A9.81AA57BA@cup.hp.com> <200007252213.PAA34677@netplex.com.au> <200007252322.RAA24596@harmony.village.org> <200007252340.RAA24778@harmony.village.org> <397E2B1B.896E430F@cup.hp.com> <200007260018.SAA25201@harmony.village.org> <20000726043259.A45303@nagual.pp.ru> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Andrey A. Chernov" wrote: > > On Tue, Jul 25, 2000 at 06:18:30PM -0600, Warner Losh wrote: > > : How does this weight up to the problem Peter mentions? > > > > Peter's problems are the reason that we should have PHYSICAL by > > default and a knob to make it LOGICAL for those few people that need > > it. I think I've said this about 20 times now... > > I don't think so. We should use LOGICAL by default since not all admins > are expirienced enough to understand whole issue or don't wish to deal > with so complex setup on many machines. Without LOGICAL they are under > security risk. Better to have secure variant by default. For the case > Peter describe we should use PHYSICAL. It is only special case with > symlinked includes. So here is where the confusion comes from... Since Warner just told me that other BSDs don't handle this (ie they only do PHYSICAL), why do you think *we* should handle this? If we're going to default for safety, why change the mtree defaults to the unsave variant in the first place? I think that you undermine your reasoning by changing the mtree defaults. I think we should either leave it as it is, or change mtree to use FTS_PHYSICAL and with that, change the defaults in our build process. Thoughts? -- Marcel Moolenaar mail: marcel@cup.hp.com / marcel@FreeBSD.org tel: (408) 447-4222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 17:57:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 853D137BBF8; Tue, 25 Jul 2000 17:57:21 -0700 (PDT) (envelope-from ben@FreeBSD.org) Received: (from ben@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA15357; Tue, 25 Jul 2000 17:57:21 -0700 (PDT) (envelope-from ben@FreeBSD.org) Message-Id: <200007260057.RAA15357@freefall.freebsd.org> From: Ben Smithurst Date: Tue, 25 Jul 2000 17:57:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/share/sgml man-refs.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ben 2000/07/25 17:57:21 PDT Modified files: share/sgml man-refs.ent Log: Add more(1) and less(1), which will be needed when I add des' mini CVS primer to the committers-guide. Revision Changes Path 1.44 +3 -1 doc/share/sgml/man-refs.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 18: 1:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EB50437BCD7; Tue, 25 Jul 2000 18:01:06 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA15848; Tue, 25 Jul 2000 18:01:06 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Message-Id: <200007260101.SAA15848@freefall.freebsd.org> From: Nick Hibma Date: Tue, 25 Jul 2000 18:01:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb umass.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG n_hibma 2000/07/25 18:01:06 PDT Modified files: sys/dev/usb umass.c Log: Remove the preliminary support for ATAPI. It does not work and breaks (physically) IBM Microdrives. Revision Changes Path 1.28 +7 -1 src/sys/dev/usb/umass.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 18: 5:49 2000 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 1FB4337BC03; Tue, 25 Jul 2000 18:05:44 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.9.3/8.9.3) id FAA46008; Wed, 26 Jul 2000 05:01:44 +0400 (MSD) (envelope-from ache) Date: Wed, 26 Jul 2000 05:01:43 +0400 From: "Andrey A. Chernov" To: Marcel Moolenaar Cc: Warner Losh , Peter Wemm , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000726050143.A45963@nagual.pp.ru> References: <397E2B1B.896E430F@cup.hp.com> <397E24A9.81AA57BA@cup.hp.com> <200007252213.PAA34677@netplex.com.au> <200007252322.RAA24596@harmony.village.org> <200007252340.RAA24778@harmony.village.org> <397E2B1B.896E430F@cup.hp.com> <200007260018.SAA25201@harmony.village.org> <20000726043259.A45303@nagual.pp.ru> <397E367C.E49F9FAE@cup.hp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <397E367C.E49F9FAE@cup.hp.com>; from marcel@cup.hp.com on Tue, Jul 25, 2000 at 05:53:16PM -0700 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Jul 25, 2000 at 05:53:16PM -0700, Marcel Moolenaar wrote: > Since Warner just told me that other BSDs don't handle this (ie they > only do PHYSICAL), why do you think *we* should handle this? We should do this safe variant for security reasons. Other BSDs are either broken in that place or create their directories differently by the ways unknown to me. > If we're going to default for safety, why change the mtree defaults to > the unsave variant in the first place? Mtree is just an application and have nothing related to system security by itself. Better keep applications in sync when possible since when people use them for their own needs, they suppose that applications are the same. Safe or unsafe terms can't be used for mtree as application. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 18:14:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C72937BD0F; Tue, 25 Jul 2000 18:14:23 -0700 (PDT) (envelope-from ben@FreeBSD.org) Received: (from ben@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA18351; Tue, 25 Jul 2000 18:14:23 -0700 (PDT) (envelope-from ben@FreeBSD.org) Message-Id: <200007260114.SAA18351@freefall.freebsd.org> From: Ben Smithurst Date: Tue, 25 Jul 2000 18:14:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/ppp-primer book.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ben 2000/07/25 18:14:23 PDT Modified files: en_US.ISO_8859-1/books/ppp-primer book.sgml Log: * Mention the samples in /usr/share/examples/ppp as well as /etc/ppp * RFC 1597 -> RFC 1918, the former is now obsolete * Clarify that people can use the 192.168.* addresses on their own networks if they want. Revision Changes Path 1.4 +48 -15 doc/en_US.ISO_8859-1/books/ppp-primer/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 18:17:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8987137BE6C; Tue, 25 Jul 2000 18:17:19 -0700 (PDT) (envelope-from ben@FreeBSD.org) Received: (from ben@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA18607; Tue, 25 Jul 2000 18:17:19 -0700 (PDT) (envelope-from ben@FreeBSD.org) Message-Id: <200007260117.SAA18607@freefall.freebsd.org> From: Ben Smithurst Date: Tue, 25 Jul 2000 18:17:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/articles/committers-guide article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ben 2000/07/25 18:17:19 PDT Modified files: en_US.ISO_8859-1/articles/committers-guide article.sgml Log: Add mini CVS primer. Text submitted by: des Approved by: jhb Revision Changes Path 1.29 +590 -0 doc/en_US.ISO_8859-1/articles/committers-guide/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 18:27:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A451F37BCFA; Tue, 25 Jul 2000 18:27:24 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA19452; Tue, 25 Jul 2000 18:27:24 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200007260127.SAA19452@freefall.freebsd.org> From: John Baldwin Date: Tue, 25 Jul 2000 18:27:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/scripts/X11 generate_plists.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/07/25 18:27:24 PDT Added files: release/scripts/X11 generate_plists.sh Log: This script uses an existing set of XFree86 distribution tarballs to generate a packing list for each tarball. We can later use these packing lists to roll our own tarballs. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 18:31:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 28DD337BD11; Tue, 25 Jul 2000 18:31:48 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA19958; Tue, 25 Jul 2000 18:31:48 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200007260131.SAA19958@freefall.freebsd.org> From: John Baldwin Date: Tue, 25 Jul 2000 18:31:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/scripts/X11 XF86.patch build_x.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/07/25 18:31:47 PDT Added files: release/scripts/X11 XF86.patch build_x.sh Log: This script uses the XFree86 and XFree86-contrib ports to build and install XFree86 3.3.6 into a scratch directory. The patch file patches the XFree86 port to not ask any questions and to actually be able to install some things like the i810 server link kit bits. If you want XF86Setup to build, you should have tk80 (not tk82) installed. If you want to XF86Setup_jp to build you need to have ja-tk80 installed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 18:35: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 215C737BD11; Tue, 25 Jul 2000 18:35:00 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA20423; Tue, 25 Jul 2000 18:35:00 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200007260135.SAA20423@freefall.freebsd.org> From: Kevin Lo Date: Tue, 25 Jul 2000 18:35:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/lesstif Makefile ports/x11-toolkits/lesstif/files md5 ports/x11-toolkits/lesstif/patches patch-aa ports/x11-toolkits/lesstif/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/07/25 18:34:59 PDT Modified files: x11-toolkits/lesstif Makefile x11-toolkits/lesstif/files md5 x11-toolkits/lesstif/patches patch-aa x11-toolkits/lesstif/pkg PLIST Log: Update to version 0.91.4 PR: 20182 Submitted by: MAINTAINER Revision Changes Path 1.45 +2 -2 ports/x11-toolkits/lesstif/Makefile 1.24 +1 -1 ports/x11-toolkits/lesstif/files/md5 1.2 +4 -4 ports/x11-toolkits/lesstif/patches/patch-aa 1.28 +1 -0 ports/x11-toolkits/lesstif/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 Jul 25 18:36:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D546637BF2A; Tue, 25 Jul 2000 18:36:22 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA20719; Tue, 25 Jul 2000 18:36:22 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200007260136.SAA20719@freefall.freebsd.org> From: John Baldwin Date: Tue, 25 Jul 2000 18:36:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/scripts/X11 generate_tarballs.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/07/25 18:36:22 PDT Added files: release/scripts/X11 generate_tarballs.sh Log: This script takes the packing lists we generated earlier and generates the corresponding tarball from it. It uses the packing list name to determine the tarball name. If the tarball name ends in 'gz', it will be gzipped, if it ends in 'bz', it will be bzip2'd. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 18:37:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DF6BE37BD59; Tue, 25 Jul 2000 18:37:23 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA20913; Tue, 25 Jul 2000 18:37:23 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200007260137.SAA20913@freefall.freebsd.org> From: John Baldwin Date: Tue, 25 Jul 2000 18:37:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/scripts/X11 package_x_dists.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/07/25 18:37:23 PDT Added files: release/scripts/X11 package_x_dists.sh Log: This script uses the other scripts in this directory to build XFree86 3.3.6 in a work directory and package it up into a set of tarballs that can be used in a release. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 18:39:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B368E37BD89; Tue, 25 Jul 2000 18:39:23 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA21286; Tue, 25 Jul 2000 18:39:23 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200007260139.SAA21286@freefall.freebsd.org> From: John Baldwin Date: Tue, 25 Jul 2000 18:39:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/scripts/X11/plists/i386 X9set.tgz.plist Xbin.tgz.plist Xcfg.tgz.plist Xdoc.tgz.plist Xf100.tgz.plist Xfcyr.tgz.plist Xfnon.tgz.plist Xfnts.tgz.plist Xfscl.tgz.plist Xfsrv.tgz.plist Xhtml.tgz.plist Xjdoc.tgz.plist Xjset.tgz.plist Xlib.tgz.plist ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/07/25 18:39:23 PDT Added files: release/scripts/X11/plists/i386 X9set.tgz.plist Xbin.tgz.plist Xcfg.tgz.plist Xdoc.tgz.plist Xf100.tgz.plist Xfcyr.tgz.plist Xfnon.tgz.plist Xfnts.tgz.plist Xfscl.tgz.plist Xfsrv.tgz.plist Xhtml.tgz.plist Xjdoc.tgz.plist Xjset.tgz.plist Xlib.tgz.plist Xlk98.tgz.plist Xlkit.tgz.plist Xman.tgz.plist Xnest.tgz.plist Xprog.tgz.plist Xprt.tgz.plist Xps.tgz.plist Xset.tgz.plist Xvfb.tgz.plist release/scripts/X11/plists/i386/PC98-Servers X9480.tgz.plist X9EGC.tgz.plist X9GA9.tgz.plist X9GAN.tgz.plist X9LPW.tgz.plist X9MGA.tgz.plist X9NKV.tgz.plist X9NS3.tgz.plist X9SPW.tgz.plist X9SVG.tgz.plist X9TGU.tgz.plist X9WEP.tgz.plist X9WS.tgz.plist X9WSN.tgz.plist release/scripts/X11/plists/i386/Servers X3DL.tgz.plist X8514.tgz.plist XAGX.tgz.plist XI128.tgz.plist XMa32.tgz.plist XMa64.tgz.plist XMa8.tgz.plist XMono.tgz.plist XP9K.tgz.plist XS3.tgz.plist XS3V.tgz.plist XSVGA.tgz.plist XVG16.tgz.plist XW32.tgz.plist Log: Since the XFree86 port builds and installs some extras not found in the 3.3.6 base distribution, some of the packing lists needed hacking so that they would pack up everything in the right place. As a result, go ahead and just add a directory for the packing lists. These are the i386 packing lists. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 18:52:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 332C937B56C; Tue, 25 Jul 2000 18:52:21 -0700 (PDT) (envelope-from hanai@FreeBSD.org) Received: (from hanai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA22878; Tue, 25 Jul 2000 18:52:21 -0700 (PDT) (envelope-from hanai@FreeBSD.org) Message-Id: <200007260152.SAA22878@freefall.freebsd.org> From: Hanai Hiroyuki Date: Tue, 25 Jul 2000 18:52:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/linuxemu chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hanai 2000/07/25 18:52:21 PDT Modified files: en_US.ISO_8859-1/books/handbook/linuxemu chapter.sgml Log: correct misspelling. Approved by: marcel@cup.hp.com Revision Changes Path 1.32 +3 -2 doc/en_US.ISO_8859-1/books/handbook/linuxemu/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 18:55:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0369037BDA4; Tue, 25 Jul 2000 18:55:35 -0700 (PDT) (envelope-from hanai@FreeBSD.org) Received: (from hanai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA23234; Tue, 25 Jul 2000 18:55:34 -0700 (PDT) (envelope-from hanai@FreeBSD.org) Message-Id: <200007260155.SAA23234@freefall.freebsd.org> From: Hanai Hiroyuki Date: Tue, 25 Jul 2000 18:55:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/books/handbook/linuxemu chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hanai 2000/07/25 18:55:34 PDT Modified files: ja_JP.eucJP/books/handbook/linuxemu chapter.sgml Log: just increment `original revision' because the change in en version was to correct misspelling. Revision Changes Path 1.15 +2 -2 doc/ja_JP.eucJP/books/handbook/linuxemu/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 19:51:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 89C0A37BBFF; Tue, 25 Jul 2000 19:51:48 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA30474; Tue, 25 Jul 2000 19:51:48 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200007260251.TAA30474@freefall.freebsd.org> From: John Baldwin Date: Tue, 25 Jul 2000 19:51:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/sysinstall termcap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/07/25 19:51:48 PDT Modified files: release/sysinstall termcap.c Log: Bump an upper limit test so the xterm termcap selection actually works. Revision Changes Path 1.27 +1 -1 src/release/sysinstall/termcap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 20: 2:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3CE8E37BDD3; Tue, 25 Jul 2000 20:02:25 -0700 (PDT) (envelope-from jseger@FreeBSD.org) Received: (from jseger@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA31379; Tue, 25 Jul 2000 20:02:24 -0700 (PDT) (envelope-from jseger@FreeBSD.org) Message-Id: <200007260302.UAA31379@freefall.freebsd.org> From: "Justin M. Seger" Date: Tue, 25 Jul 2000 20:02:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/ImageMagick Makefile ports/graphics/ImageMagick/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jseger 2000/07/25 20:02:24 PDT Modified files: graphics/ImageMagick Makefile graphics/ImageMagick/files md5 Log: Upgrade to 5.2.2. Host a snapshot of this changing distfile in my directory. Revision Changes Path 1.90 +3 -3 ports/graphics/ImageMagick/Makefile 1.47 +1 -1 ports/graphics/ImageMagick/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 Jul 25 20:41: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AA91A37BDDE; Tue, 25 Jul 2000 20:40:52 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Received: (from jdp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA36288; Tue, 25 Jul 2000 20:40:51 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Message-Id: <200007260340.UAA36288@freefall.freebsd.org> From: John Polstra Date: Tue, 25 Jul 2000 20:40:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/pm3-base Makefile ports/lang/pm3-base/files md5 ports/lang/pm3-base/patches patch-dy patch-aa patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-aj patch-ak patch-al patch-am patch-an patch-ao patch-ap ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jdp 2000/07/25 20:40:50 PDT Modified files: lang/pm3-base Makefile lang/pm3-base/files md5 lang/pm3-base/patches patch-dy lang/pm3-forms Makefile lang/pm3-gui Makefile lang/pm3-m3tk Makefile lang/pm3-net Makefile lang/pm3-netobj Makefile Removed files: lang/pm3-base/patches patch-aa patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-aj patch-ak patch-al patch-am patch-an patch-ao patch-ap patch-aq patch-ar patch-as patch-at patch-au patch-av patch-aw patch-ax patch-ay patch-az patch-ba patch-bb patch-bc patch-bd patch-be patch-bf patch-bg patch-bh patch-bi patch-bj patch-bk patch-bl patch-bm patch-bn patch-bo patch-bp patch-bq patch-br patch-bs patch-bt patch-bu patch-bv patch-bw patch-bx patch-by patch-bz patch-ca patch-cb patch-cc patch-cd patch-ce patch-cf patch-cg patch-ch patch-ci patch-cj patch-ck patch-cl patch-cm patch-cn patch-co patch-cp patch-cq patch-cr patch-cs patch-ct patch-cu patch-cv patch-cw patch-cx patch-cy patch-cz patch-da patch-db patch-dc patch-dd patch-de patch-df patch-dg patch-dh patch-di patch-dj patch-dk patch-dl patch-dm patch-dn patch-do patch-dp patch-dq patch-dr patch-ds patch-dt patch-du patch-dv patch-dw patch-dx patch-dz Log: Upgrade to pm3-1.1.14. This eliminates 103 patch files. :-) Revision Changes Path 1.6 +3 -3 ports/lang/pm3-base/Makefile 1.2 +5 -5 ports/lang/pm3-base/files/md5 1.2 +7 -6 ports/lang/pm3-base/patches/patch-dy 1.5 +2 -2 ports/lang/pm3-forms/Makefile 1.5 +2 -2 ports/lang/pm3-gui/Makefile 1.4 +2 -2 ports/lang/pm3-m3tk/Makefile 1.5 +2 -2 ports/lang/pm3-net/Makefile 1.5 +2 -2 ports/lang/pm3-netobj/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 21:24:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B71537BDD4; Tue, 25 Jul 2000 21:24:42 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Received: (from jdp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA41799; Tue, 25 Jul 2000 21:24:41 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Message-Id: <200007260424.VAA41799@freefall.freebsd.org> From: John Polstra Date: Tue, 25 Jul 2000 21:24:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/rtld-elf rtld.c rtld.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jdp 2000/07/25 21:24:41 PDT Modified files: libexec/rtld-elf rtld.c rtld.h Log: Revamp the code that calls shared libraries' init and fini functions. Formerly the init functions were called in the opposite of the order in which libraries were loaded, and libraries were loaded according to a breadth-first traversal of the dependency graph. That ordering came from SVR4.0, and it was easy to implement but not always sensible. Now we do a depth-first walk over the dependency graph and call the init functions in an order such that each shared object's needed objects are initialized before the shared object itself. At the same time we build a list of finalization (fini) functions in the opposite order, to guarantee correct C++ destructor ordering whenever possible. (It may not be possible if dlopen and dlclose are used in strange ways, but we come as close as one can come.) The need for this renovation has become apparent as more programs have started using multithreading. The multithreaded C library libc_r requires initialization, whereas the standard libc does not. Since virtually every other object depends on the C library, it is important that it get initialized first. Revision Changes Path 1.47 +184 -99 src/libexec/rtld-elf/rtld.c 1.19 +3 -9 src/libexec/rtld-elf/rtld.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 21:28:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6342637B555; Tue, 25 Jul 2000 21:28:22 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA42235; Tue, 25 Jul 2000 21:28:22 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200007260428.VAA42235@freefall.freebsd.org> From: John Baldwin Date: Tue, 25 Jul 2000 21:28:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/07/25 21:28:22 PDT Modified files: release Makefile Log: Take a lesson from picoBSD: symlink /bin and /sbin to /stand in the mfsroot and install dhclient-script in stand/. Revision Changes Path 1.561 +6 -3 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 Tue Jul 25 21:47:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1DD6F37B555; Tue, 25 Jul 2000 21:47:18 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Received: (from jdp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA44122; Tue, 25 Jul 2000 21:47:17 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Message-Id: <200007260447.VAA44122@freefall.freebsd.org> From: John Polstra Date: Tue, 25 Jul 2000 21:47:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ldconfig elfhints.c ldconfig.8 ldconfig.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jdp 2000/07/25 21:47:17 PDT Modified files: sbin/ldconfig elfhints.c ldconfig.8 ldconfig.c Log: If a directory is world-writable or is not owned by root, skip it and emit a warning. This is a security measure since ldconfig influences the shared libraries used by all programs. I think the check should be made even more stringent by also ignoring group-writable directories. I will make that change soon unless we encounter a good reason not to do it. Submitted by: Maxime Henrion Revision Changes Path 1.4 +17 -2 src/sbin/ldconfig/elfhints.c 1.21 +5 -5 src/sbin/ldconfig/ldconfig.8 1.33 +16 -1 src/sbin/ldconfig/ldconfig.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 22: 1:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 906B437B555; Tue, 25 Jul 2000 22:01:39 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA45707; Tue, 25 Jul 2000 22:01:39 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200007260501.WAA45707@freefall.freebsd.org> From: Satoshi Asami Date: Tue, 25 Jul 2000 22:01:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Mk bsd.port.mk X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/07/25 22:01:39 PDT Modified files: Mk bsd.port.mk Log: Revert mtree change for now. Requested by: marcel, ache Revision Changes Path 1.344 +1 -5 ports/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 Tue Jul 25 22: 8:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2CF1737B555; Tue, 25 Jul 2000 22:08:16 -0700 (PDT) (envelope-from hanai@FreeBSD.org) Received: (from hanai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA47687; Tue, 25 Jul 2000 22:08:15 -0700 (PDT) (envelope-from hanai@FreeBSD.org) Message-Id: <200007260508.WAA47687@freefall.freebsd.org> From: Hanai Hiroyuki Date: Tue, 25 Jul 2000 22:08:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/mail chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hanai 2000/07/25 22:08:15 PDT Modified files: en_US.ISO_8859-1/books/handbook/mail chapter.sgml Log: correct grammatical stuff. close an unclosed parenthesis. add some Emacs stuff. Revision Changes Path 1.20 +14 -3 doc/en_US.ISO_8859-1/books/handbook/mail/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 22:12:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B273037B555; Tue, 25 Jul 2000 22:12:38 -0700 (PDT) (envelope-from hanai@FreeBSD.org) Received: (from hanai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA48469; Tue, 25 Jul 2000 22:12:38 -0700 (PDT) (envelope-from hanai@FreeBSD.org) Message-Id: <200007260512.WAA48469@freefall.freebsd.org> From: Hanai Hiroyuki Date: Tue, 25 Jul 2000 22:12:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/books/handbook/mail chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hanai 2000/07/25 22:12:38 PDT Modified files: ja_JP.eucJP/books/handbook/mail chapter.sgml Log: catch up with the current en version (1.20). Revision Changes Path 1.6 +389 -576 doc/ja_JP.eucJP/books/handbook/mail/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 22:35:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EC3DD37BE56; Tue, 25 Jul 2000 22:35:46 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA52654; Tue, 25 Jul 2000 22:35:46 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Message-Id: <200007260535.WAA52654@freefall.freebsd.org> From: Chris Piazza Date: Tue, 25 Jul 2000 22:35:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/pgpkeys chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cpiazza 2000/07/25 22:35:46 PDT Modified files: en_US.ISO_8859-1/books/handbook/pgpkeys chapter.sgml Log: Remove my key for now, I've misplaced all the private key files for this so it's pretty useless. Revision Changes Path 1.39 +1 -43 doc/en_US.ISO_8859-1/books/handbook/pgpkeys/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 23:32:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3DB5537BE16; Tue, 25 Jul 2000 23:32:06 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA59112; Tue, 25 Jul 2000 23:32:06 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200007260632.XAA59112@freefall.freebsd.org> From: John Baldwin Date: Tue, 25 Jul 2000 23:32:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/07/25 23:32:06 PDT Modified files: (Branch: RELENG_4) release Makefile Log: MFC: Symlink /bin and /sbin to /stand on the boot floppy. Approved by: jkh Revision Changes Path 1.536.2.18 +6 -3 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 Tue Jul 25 23:41: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E0AB637B65F; Tue, 25 Jul 2000 23:40:56 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA59915; Tue, 25 Jul 2000 23:40:56 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200007260640.XAA59915@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Tue, 25 Jul 2000 23:40:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/07/25 23:40:56 PDT Modified files: (Branch: RELENG_4) share/man/man4 Makefile Log: Add md.4 to build list. Requested by: ben Revision Changes Path 1.83.2.9 +2 -2 src/share/man/man4/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jul 25 23:47:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 906DA37B697; Tue, 25 Jul 2000 23:47:57 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA60529; Tue, 25 Jul 2000 23:47:57 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200007260647.XAA60529@freefall.freebsd.org> From: John Baldwin Date: Tue, 25 Jul 2000 23:47:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/sysinstall termcap.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/07/25 23:47:57 PDT Modified files: (Branch: RELENG_4) release/sysinstall termcap.c Log: MFC: Allow the xterm termcap to be selected. Approved by: jkh Revision Changes Path 1.24.6.3 +1 -1 src/release/sysinstall/termcap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 0:24:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BE2C437B5F4; Wed, 26 Jul 2000 00:24:13 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA65913; Wed, 26 Jul 2000 00:24:13 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200007260724.AAA65913@freefall.freebsd.org> From: John Baldwin Date: Wed, 26 Jul 2000 00:24:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/07/26 00:24:13 PDT Modified files: (Branch: RELENG_4) release Makefile Log: MFC: Build a non-crypto tcpdump for the bin dist. Approved by: jkh Revision Changes Path 1.536.2.19 +2 -1 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 Wed Jul 26 0:28:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EFEFF37B63B; Wed, 26 Jul 2000 00:28:33 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA66439; Wed, 26 Jul 2000 00:28:33 -0700 (PDT) (envelope-from des@FreeBSD.org) Message-Id: <200007260728.AAA66439@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 26 Jul 2000 00:28:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/fetch fetch.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG des 2000/07/26 00:28:33 PDT Modified files: usr.bin/fetch fetch.c Log: Restore the old semantics of deleting the output file when interrupted. Some people liked this and some didn't, so POLA won. Revision Changes Path 1.17 +5 -3 src/usr.bin/fetch/fetch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 0:33:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 63BAD37B5F4; Wed, 26 Jul 2000 00:33:30 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA67076; Wed, 26 Jul 2000 00:33:30 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007260733.AAA67076@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 26 Jul 2000 00:33:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/png Makefile ports/graphics/png/files md5 ports/graphics/png/patches patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/26 00:33:26 PDT Modified files: graphics/png Makefile graphics/png/files md5 graphics/png/patches patch-aa Log: Update to 1.0.8. This release includes experimental MMX support, but it should explicitly turned on by defining WITH_MMX make variable. Revision Changes Path 1.30 +18 -4 ports/graphics/png/Makefile 1.12 +1 -4 ports/graphics/png/files/md5 1.16 +14 -3 ports/graphics/png/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 Jul 26 0:43:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E4F9137B5F4; Wed, 26 Jul 2000 00:43:49 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA68239; Wed, 26 Jul 2000 00:43:49 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007260743.AAA68239@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 26 Jul 2000 00:43:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/ghostscript5 Makefile ports/print/ghostscript55 Makefile ports/graphics/png Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/26 00:43:49 PDT Modified files: print/ghostscript5 Makefile print/ghostscript55 Makefile graphics/png Makefile Log: Create ${WRKSRC} --> ${WRKDIR}/libpng sysmlink and use it in ghostscript ports instead of hardcoded ${WRKSRC}/libpng-png.version.number. Revision Changes Path 1.43 +2 -2 ports/print/ghostscript5/Makefile 1.44 +2 -2 ports/print/ghostscript55/Makefile 1.31 +5 -4 ports/graphics/png/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 0:46:58 2000 Delivered-To: cvs-all@freebsd.org Received: from zippy.osd.bsdi.com (zippy.osd.bsdi.com [204.216.27.228]) by hub.freebsd.org (Postfix) with ESMTP id A444837BE45; Wed, 26 Jul 2000 00:46:48 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) Received: from localhost (jkh@localhost [127.0.0.1]) by zippy.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id AAA10670; Wed, 26 Jul 2000 00:37:12 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) To: Warner Losh Cc: Marcel Moolenaar , Peter Wemm , "Andrey A. Chernov" , "Jordan K. Hubbard" , Will Andrews , Marcel Moolenaar , cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs In-reply-to: Your message of "Tue, 25 Jul 2000 17:40:23 MDT." <200007252340.RAA24778@harmony.village.org> Date: Wed, 26 Jul 2000 00:37:12 -0700 Message-ID: <10667.964597032@localhost> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > The problem is that if you have a symbolic link for things like /tmp, > /var/tmp, /var/mail, etc then without -L you'd continue to have > insecure permissions if you botched the initial install. It is a > relatively weak reason, but an important one for those that need it. I'm still not convinced that we're not trying to out-clever ourselves and the administrator who is _supposed_ to know what they are doing through this change. I've read Andrey's arguments and, at best, they strike me as _seriously_ weak. I'm also still wondering what the other *BSDs are doing here - I don't have a NetBSD or OpenBSD box to check, but if someone else does I'd very much like 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 Wed Jul 26 0:53:40 2000 Delivered-To: cvs-all@freebsd.org Received: from zippy.osd.bsdi.com (zippy.osd.bsdi.com [204.216.27.228]) by hub.freebsd.org (Postfix) with ESMTP id 0942D37B652; Wed, 26 Jul 2000 00:53:33 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) Received: from localhost (jkh@localhost [127.0.0.1]) by zippy.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id AAA10736; Wed, 26 Jul 2000 00:46:41 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) To: Peter Wemm Cc: Warner Losh , "Andrey A. Chernov" , "Jordan K. Hubbard" , Marcel Moolenaar , Will Andrews , Marcel Moolenaar , cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs In-reply-to: Your message of "Tue, 25 Jul 2000 15:13:01 PDT." <200007252213.PAA34677@netplex.com.au> Date: Wed, 26 Jul 2000 00:46:41 -0700 Message-ID: <10733.964597601@localhost> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > IMHO, we need to restore FTS_PHYSICAL by default, as it was on 4.4BSD and > as (I believe) it is on the other *BSD's. If that's the way it is on the other *BSDs, that's a good enough argument for me. Nothing browns-off a system administrator more than variant, astonishing behavior at 3am. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 0:54:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BC21237BE4A; Wed, 26 Jul 2000 00:54:20 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA69448; Wed, 26 Jul 2000 00:54:20 -0700 (PDT) (envelope-from des@FreeBSD.org) Message-Id: <200007260754.AAA69448@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 26 Jul 2000 00:54:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libfetch common.h ftp.c http.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG des 2000/07/26 00:54:20 PDT Modified files: (Branch: RELENG_4) lib/libfetch common.h ftp.c http.c Log: MFC: Sync with -CURRENT (work around bugs in FTP and HTTP servers) Approved by: jkh Revision Changes Path 1.7.2.3 +4 -1 src/lib/libfetch/common.h 1.16.2.7 +20 -21 src/lib/libfetch/ftp.c 1.13.2.7 +24 -17 src/lib/libfetch/http.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 0:56:21 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B97B37B652; Wed, 26 Jul 2000 00:56:18 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA69618; Wed, 26 Jul 2000 00:56:18 -0700 (PDT) (envelope-from des@FreeBSD.org) Message-Id: <200007260756.AAA69618@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 26 Jul 2000 00:56:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/fetch fetch.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG des 2000/07/26 00:56:18 PDT Modified files: (Branch: RELENG_4) usr.bin/fetch fetch.c Log: MFC: revert to old behavior of deleting the output file when interrupted. Approved by: jkh Revision Changes Path 1.10.2.6 +5 -3 src/usr.bin/fetch/fetch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 1:20:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 88F6137BE4F; Wed, 26 Jul 2000 01:20:29 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA73317; Wed, 26 Jul 2000 01:20:29 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200007260820.BAA73317@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Wed, 26 Jul 2000 01:20:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/sysinstall dist.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/07/26 01:20:29 PDT Modified files: (Branch: RELENG_4) release/sysinstall dist.c Log: Disable X servers which don't exist for non-i386 machines Requested-by: obrien Revision Changes Path 1.175.2.5 +7 -1 src/release/sysinstall/dist.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 1:28: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from nothing-going-on.demon.co.uk (nothing-going-on.demon.co.uk [193.237.89.66]) by hub.freebsd.org (Postfix) with ESMTP id 530E937B6FA; Wed, 26 Jul 2000 01:27:49 -0700 (PDT) (envelope-from nik@nothing-going-on.demon.co.uk) Received: (from nik@localhost) by nothing-going-on.demon.co.uk (8.9.3/8.9.3) id BAA16144; Wed, 26 Jul 2000 01:32:48 +0100 (BST) (envelope-from nik) Date: Wed, 26 Jul 2000 01:32:47 +0100 From: Nik Clayton To: Kris Kennaway Cc: Matthew Jacob , Matt Dillon , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/sys rfork.2 Message-ID: <20000726013247.B16065@catkin.nothing-going-on.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: ; from kris@FreeBSD.org on Tue, Jul 25, 2000 at 01:13:52PM -0700 Organization: FreeBSD Project Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Jul 25, 2000 at 01:13:52PM -0700, Kris Kennaway wrote: > On Tue, 25 Jul 2000, Matthew Jacob wrote: > > > I am stone confused by this. I *KNOW* we had some song and dance about -stable > > moving ahead because -current was broken, but that model doesn't seem to have > > been actually followed. > > Minor doc commits are traditionally allowed without permission during the > code freeze, since after all it's a *code* freeze :-) They are? That's not my policy. If it's a 'doc fix' to a branch that's frozen (whether that's src/ or ports/) then it should go through either Jordan or Satoshi (or whoever they designate) as necessary. They might then give that committer carte blanche to carry on with these sorts of commits during the code freeze, or they might request the committer carry on funnelling this stuff through them. But that's their individual decision. If this isn't how Jordan or Satoshi want things to operate then fine, but that needs to be said somewhere in the committers' guide. Otherwise I strongly suggest that people play it safe during a freeze, and *always* submit it to the appropriate person for review first. N -- Internet connection, $19.95 a month. Computer, $799.95. Modem, $149.95. Telephone line, $24.95 a month. Software, free. USENET transmission, hundreds if not thousands of dollars. Thinking before posting, priceless. Somethings in life you can't buy. For everything else, there's MasterCard. -- Graham Reed, in the Scary Devil Monastery To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 1:52: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8652D37B6E3; Wed, 26 Jul 2000 01:51:58 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA76254; Wed, 26 Jul 2000 01:51:58 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007260851.BAA76254@freefall.freebsd.org> From: Sheldon Hearn Date: Wed, 26 Jul 2000 01:51:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/sysctl sysctl.8 src/share/man/man4 syncer.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/26 01:51:58 PDT Modified files: sbin/sysctl sysctl.8 share/man/man4 syncer.4 Log: Describe the syncer(4)-related sysctls kern.filedelay, kern.dirdelay and kern.metadelay, thanks to mckusick's feedback. Revision Changes Path 1.25 +4 -2 src/sbin/sysctl/sysctl.8 1.5 +14 -6 src/share/man/man4/syncer.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 1:54: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C656737B72D; Wed, 26 Jul 2000 01:53:58 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id BAA76423; Wed, 26 Jul 2000 01:53:58 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Wed, 26 Jul 2000 01:53:58 -0700 (PDT) From: Kris Kennaway To: Nik Clayton Cc: jkh@freebsd.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/sys rfork.2 In-Reply-To: <20000726013247.B16065@catkin.nothing-going-on.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 26 Jul 2000, Nik Clayton wrote: > > > I am stone confused by this. I *KNOW* we had some song and dance about -stable > > > moving ahead because -current was broken, but that model doesn't seem to have > > > been actually followed. > > > > Minor doc commits are traditionally allowed without permission during the > > code freeze, since after all it's a *code* freeze :-) > > They are? That's not my policy. If it's a 'doc fix' to a branch that's > frozen (whether that's src/ or ports/) then it should go through either > Jordan or Satoshi (or whoever they designate) as necessary. Well, someone (Jordan) please correct me if I'm wrong, but I thought this is how we operated prior to 4.0, at least - after code freeze and until the tag was laid down manpage fixes were still allowed without approval, because they (mostly) don't introduce any functional bugs. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 1:54:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C1C4B37BE92; Wed, 26 Jul 2000 01:54:44 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA76529; Wed, 26 Jul 2000 01:54:44 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007260854.BAA76529@freefall.freebsd.org> From: Sheldon Hearn Date: Wed, 26 Jul 2000 01:54:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/sysctl sysctl.8 src/share/man/man4 syncer.4 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/26 01:54:44 PDT Modified files: (Branch: RELENG_4) sbin/sysctl sysctl.8 share/man/man4 syncer.4 Log: MFC: describe syncer(4)-related sysctls. Revision Changes Path 1.23.2.1 +4 -2 src/sbin/sysctl/sysctl.8 1.3.2.3 +14 -6 src/share/man/man4/syncer.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 2: 9:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F73937B893; Wed, 26 Jul 2000 02:09:11 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Received: (from dburr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA79459; Wed, 26 Jul 2000 02:09:11 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Message-Id: <200007260909.CAA79459@freefall.freebsd.org> From: Donald Burr Date: Wed, 26 Jul 2000 02:09:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/ubh Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dburr 2000/07/26 02:09:10 PDT Modified files: news/ubh Makefile Log: Removed a spurious RUN_DEPENDS line. Revision Changes Path 1.2 +1 -2 ports/news/ubh/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 2:10:27 2000 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 42E6537BE8D; Wed, 26 Jul 2000 02:10:21 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id CAA08328; Wed, 26 Jul 2000 02:10:20 -0700 (PDT) (envelope-from obrien) Date: Wed, 26 Jul 2000 02:10:20 -0700 From: "David O'Brien" To: Nik Clayton Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libc/sys rfork.2 Message-ID: <20000726021019.A8245@dragon.nuxi.com> Reply-To: obrien@freebsd.org References: <20000726013247.B16065@catkin.nothing-going-on.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000726013247.B16065@catkin.nothing-going-on.org>; from nik@freebsd.org on Wed, Jul 26, 2000 at 01:32:47AM +0100 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Jul 26, 2000 at 01:32:47AM +0100, Nik Clayton wrote: > > Minor doc commits are traditionally allowed without permission during the > > code freeze, since after all it's a *code* freeze :-) > > They are? That's not my policy. If it's a 'doc fix' to a branch that's "doc" here is docs in /usr/src, such as src/release/texts/ , manpages, examples, etc. Ie, non-code that cannot possibly break the build, or affect stability. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 2:12:39 2000 Delivered-To: cvs-all@freebsd.org Received: from zippy.osd.bsdi.com (zippy.osd.bsdi.com [204.216.27.228]) by hub.freebsd.org (Postfix) with ESMTP id 4B8B637BFB5; Wed, 26 Jul 2000 02:12:29 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) Received: from localhost (jkh@localhost [127.0.0.1]) by zippy.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id CAA11382; Wed, 26 Jul 2000 02:12:26 -0700 (PDT) (envelope-from jkh@zippy.osd.bsdi.com) To: Kris Kennaway Cc: Nik Clayton , jkh@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/sys rfork.2 In-reply-to: Your message of "Wed, 26 Jul 2000 01:53:58 PDT." Date: Wed, 26 Jul 2000 02:12:25 -0700 Message-ID: <11379.964602745@localhost> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Well, someone (Jordan) please correct me if I'm wrong, but I thought this > is how we operated prior to 4.0, at least - after code freeze and until > the tag was laid down manpage fixes were still allowed without approval, > because they (mostly) don't introduce any functional bugs. It's a "soft limit" - during the initial days of code freeze I've been very lenient on people just jumping in and doing doc fixes since the potential risk is so small, and on a few releases I've even stated that such carte-blanche was available for such-and-such a period of time. At other times, and on other releases, I've been a bit more hard-nosed about any changes under src/. Like I said, it's a soft limit and in cases of uncertainty, assume the hard limits apply. :-) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 2:26: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ED8BD37BE8C; Wed, 26 Jul 2000 02:25:58 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA81710; Wed, 26 Jul 2000 02:25:58 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Message-Id: <200007260925.CAA81710@freefall.freebsd.org> From: Joseph Koshy Date: Wed, 26 Jul 2000 02:25:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/news press.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkoshy 2000/07/26 02:25:58 PDT Modified files: en/news press.sgml Log: Add Chapters article on FreeBSD. Submitted by: jkh Revision Changes Path 1.159 +10 -2 www/en/news/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 Jul 26 2:52:43 2000 Delivered-To: cvs-all@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.2.163]) by hub.freebsd.org (Postfix) with ESMTP id 98A9237BE8E; Wed, 26 Jul 2000 02:52:28 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.15 #1) id 13HNrE-00009R-00; Wed, 26 Jul 2000 11:52:08 +0200 From: Sheldon Hearn To: "Jordan K. Hubbard" Cc: Kris Kennaway , Nik Clayton , jkh@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libc/sys rfork.2 In-reply-to: Your message of "Wed, 26 Jul 2000 02:12:25 MST." <11379.964602745@localhost> Date: Wed, 26 Jul 2000 11:52:08 +0200 Message-ID: <584.964605128@axl.ops.uunet.co.za> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 26 Jul 2000 02:12:25 MST, "Jordan K. Hubbard" wrote: > Like I said, it's a soft limit and in cases of uncertainty, assume the > hard limits apply. :-) Plus you have at least one person checking every delta to the manual page domain at the moment, so the release is unlikely to go out with last-minute boo-boo's in the manuals. :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 3:37: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 53B1537B83B; Wed, 26 Jul 2000 03:37:03 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA95784; Wed, 26 Jul 2000 03:37:03 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007261037.DAA95784@freefall.freebsd.org> From: SADA Kenji Date: Wed, 26 Jul 2000 03:37:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/netscape47-communicator Makefile ports/japanese/netscape47-communicator/files md5 ports/japanese/netscape47-communicator/patches patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/26 03:37:02 PDT Modified files: japanese/netscape47-communicator Makefile japanese/netscape47-communicator/files md5 japanese/netscape47-communicator/patches patch-aa Log: Upgrade to 4.74. Revision Changes Path 1.21 +3 -3 ports/japanese/netscape47-communicator/Makefile 1.14 +1 -1 ports/japanese/netscape47-communicator/files/md5 1.8 +10 -10 ports/japanese/netscape47-communicator/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 Jul 26 4:32: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E79737B97F; Wed, 26 Jul 2000 04:32:01 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA03867; Wed, 26 Jul 2000 04:32:00 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200007261132.EAA03867@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Wed, 26 Jul 2000 04:32:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf newvers.sh X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/07/26 04:32:00 PDT Modified files: (Branch: RELENG_4) sys/conf newvers.sh Log: Set to 4.1-RELEASE for tag. Revision Changes Path 1.44.2.4 +2 -2 src/sys/conf/newvers.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 4:35:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CF4F237B5D3; Wed, 26 Jul 2000 04:35:22 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA04188; Wed, 26 Jul 2000 04:35:22 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200007261135.EAA04188@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Wed, 26 Jul 2000 04:35:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf newvers.sh X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/07/26 04:35:22 PDT Modified files: (Branch: RELENG_4) sys/conf newvers.sh Log: Now we're in 4.1-STABLE Revision Changes Path 1.44.2.5 +2 -2 src/sys/conf/newvers.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 5:19:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0FF8537B616; Wed, 26 Jul 2000 05:19:21 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA09640; Wed, 26 Jul 2000 05:19:20 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200007261219.FAA09640@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Wed, 26 Jul 2000 05:19:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/07/26 05:19:20 PDT Modified files: release Makefile Log: Fix a paste-o error which broke the build Pointy-hat to: jhb Revision Changes Path 1.562 +2 -3 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 Wed Jul 26 5:20:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2195A37B616; Wed, 26 Jul 2000 05:20:26 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA09807; Wed, 26 Jul 2000 05:20:25 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200007261220.FAA09807@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Wed, 26 Jul 2000 05:20:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/07/26 05:20:25 PDT Modified files: (Branch: RELENG_4) release Makefile Log: MFC: fix last-minute paste-o Revision Changes Path 1.536.2.20 +2 -3 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 Wed Jul 26 5:26: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A65C37BEA7; Wed, 26 Jul 2000 05:25:53 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA10317; Wed, 26 Jul 2000 05:25:52 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007261225.FAA10317@freefall.freebsd.org> From: Sheldon Hearn Date: Wed, 26 Jul 2000 05:25:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/exim/patches patch-ag X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/26 05:25:52 PDT Removed files: mail/exim/patches patch-ag Log: Update to 3.16: Bugfix release, featuring a fix for one critical bug in the handling of messages frozen by system filters for manual thawing. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 5:28:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9327F37B5D3; Wed, 26 Jul 2000 05:28:54 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA10651; Wed, 26 Jul 2000 05:28:54 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007261228.FAA10651@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 26 Jul 2000 05:28:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www Makefile ports/www/glibwww2 Makefile ports/www/glibwww2/files md5 ports/www/glibwww2/patches patch-aa ports/www/glibwww2/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/26 05:28:54 PDT Modified files: www Makefile Added files: www/glibwww2 Makefile www/glibwww2/files md5 www/glibwww2/patches patch-aa www/glibwww2/pkg COMMENT DESCR PLIST Log: Add libwww2 - a glib/gtk/gnome wrapper for libwww. Revision Changes Path 1.232 +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 Wed Jul 26 5:29:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7833337B5D3; Wed, 26 Jul 2000 05:29:34 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA10723; Wed, 26 Jul 2000 05:29:34 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007261229.FAA10723@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 26 Jul 2000 05:29:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/26 05:29:34 PDT Modified files: . modules Log: glibwww2 --> ports/www/glibwww2 Revision Changes Path 1.1454 +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 Jul 26 5:44:27 2000 Delivered-To: cvs-all@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 5DDFB37B6FA; Wed, 26 Jul 2000 05:44:14 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.106]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id PAA01667; Wed, 26 Jul 2000 15:42:35 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.9.3/8.9.3) with ESMTP id PAA01818; Wed, 26 Jul 2000 15:44:04 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <397EDD13.B7650AF0@FreeBSD.org> Date: Wed, 26 Jul 2000 15:44:03 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.74 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www Makefile ports/www/glibwww2 Makefileports/www/glibwww2/files md5 ports/www/glibwww2/patches patch-aaports/www/glibwww2/pkg COMMENT DESCR PLIST References: <200007261228.FAA10651@freefall.freebsd.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Maxim Sobolev wrote: sobomax 2000/07/26 05:28:54 PDT Modified files: www Makefile Added files: www/glibwww2 Makefile www/glibwww2/files md5 www/glibwww2/patches patch-aa www/glibwww2/pkg COMMENT DESCR PLIST Log: Add libwww2 - a glib/gtk/gnome wrapper for libwww. s/Add lib/Add glib/ Sibmitted by: Alexandr A Listopad - -Maxim -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.1i iQA/AwUBOX7A83HtC0ejtdGfEQLrNgCgutv4lmxkENSAKXrGmxbpBqXMpMoAn1gm 9/SjXSMX8dhpX+oAARfuCcsz =lIi2 -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 5:50:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 25FE937BA32; Wed, 26 Jul 2000 05:50:35 -0700 (PDT) (envelope-from sanpei@FreeBSD.org) Received: (from sanpei@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA12416; Wed, 26 Jul 2000 05:50:35 -0700 (PDT) (envelope-from sanpei@FreeBSD.org) Message-Id: <200007261250.FAA12416@freefall.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Wed, 26 Jul 2000 05:50:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/wicontrol wicontrol.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sanpei 2000/07/26 05:50:35 PDT Modified files: usr.sbin/wicontrol wicontrol.8 Log: Update the description of available channel for Japan. The regulations has been changed to adopt 802.11b since Oct. 99. For 11Mbps NICs sold in Japan, all DS channels (1..14) are available. Thank you, itojun. Obtained from: NetBSD:basesrc/usr.sbin/wiconfig/wiconfig.8 Rev.1.5 ->1.6 Revision Changes Path 1.15 +16 -15 src/usr.sbin/wicontrol/wicontrol.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 5:55:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 673D937BA32; Wed, 26 Jul 2000 05:55:44 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA12905; Wed, 26 Jul 2000 05:55:44 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007261255.FAA12905@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 26 Jul 2000 05:55:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www Makefile ports/www/encompass Makefile ports/www/encompass/files md5 ports/www/encompass/patches patch-aa patch-ab ports/www/encompass/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/26 05:55:44 PDT Modified files: www Makefile Added files: www/encompass Makefile www/encompass/files md5 www/encompass/patches patch-aa patch-ab www/encompass/pkg COMMENT DESCR PLIST Log: Add encompass - a lightweight web browser for the Gnome Desktop Environment Revision Changes Path 1.233 +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 Wed Jul 26 5:56:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A9C837BF30; Wed, 26 Jul 2000 05:56:23 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA12978; Wed, 26 Jul 2000 05:56:24 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007261256.FAA12978@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 26 Jul 2000 05:56:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/26 05:56:23 PDT Modified files: . modules Log: encompass --> ports/www/encompass Revision Changes Path 1.1455 +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 Jul 26 7:45:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B2AD937B937; Wed, 26 Jul 2000 07:45:38 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: (from wilko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA27366; Wed, 26 Jul 2000 07:45:38 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Message-Id: <200007261445.HAA27366@freefall.freebsd.org> From: Wilko Bulte Date: Wed, 26 Jul 2000 07:45:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts/alpha INSTALL.TXT X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wilko 2000/07/26 07:45:38 PDT Modified files: release/texts/alpha INSTALL.TXT Log: Remove the 'going nowhere' warning as this belongs in the RELNOTES only (if it does not get resolved in the first place) Revision Changes Path 1.11 +1 -8 src/release/texts/alpha/INSTALL.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 7:45:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 81E7E37BF38; Wed, 26 Jul 2000 07:45:42 -0700 (PDT) (envelope-from cjh@FreeBSD.org) Received: (from cjh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA27428; Wed, 26 Jul 2000 07:45:41 -0700 (PDT) (envelope-from cjh@FreeBSD.org) Message-Id: <200007261445.HAA27428@freefall.freebsd.org> From: CHOI Junho Date: Wed, 26 Jul 2000 07:45:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/korean/netscape47-communicator Makefile ports/korean/netscape47-communicator/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cjh 2000/07/26 07:45:41 PDT Modified files: korean/netscape47-communicator Makefile korean/netscape47-communicator/files md5 Log: Upgrade to 4.74 Korean kit. Revision Changes Path 1.20 +3 -3 ports/korean/netscape47-communicator/Makefile 1.11 +1 -1 ports/korean/netscape47-communicator/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 Jul 26 8: 7:13 2000 Delivered-To: cvs-all@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id 78F3F37B9BA; Wed, 26 Jul 2000 08:07:06 -0700 (PDT) (envelope-from nate@yogotech.com) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id IAA04212; Wed, 26 Jul 2000 08:57:00 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id IAA11238; Wed, 26 Jul 2000 08:56:51 -0600 (MDT) (envelope-from nate) Date: Wed, 26 Jul 2000 08:56:51 -0600 (MDT) Message-Id: <200007261456.IAA11238@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: "Jordan K. Hubbard" Cc: Peter Wemm , Warner Losh , "Andrey A. Chernov" , Marcel Moolenaar , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs In-Reply-To: <10733.964597601@localhost> References: <200007252213.PAA34677@netplex.com.au> <10733.964597601@localhost> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > IMHO, we need to restore FTS_PHYSICAL by default, as it was on 4.4BSD and > > as (I believe) it is on the other *BSD's. > > If that's the way it is on the other *BSDs, that's a good enough > argument for me. Nothing browns-off a system administrator more than > variant, astonishing behavior at 3am. Given that FreeBSD's user-base exceeds all of the other BSD's, I find *this* a very weak argument. Folks who use FreeBSD rarely use the other BSDs, so most wouldn't be astonished at all, as they more likely have experience with Linux or WinXX than with another BSD. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 8:56:46 2000 Delivered-To: cvs-all@freebsd.org Received: from nothing-going-on.demon.co.uk (nothing-going-on.demon.co.uk [193.237.89.66]) by hub.freebsd.org (Postfix) with ESMTP id 8AA7C37BBE9; Wed, 26 Jul 2000 08:56:36 -0700 (PDT) (envelope-from nik@nothing-going-on.demon.co.uk) Received: (from nik@localhost) by nothing-going-on.demon.co.uk (8.9.3/8.9.3) id PAA19335; Wed, 26 Jul 2000 15:28:02 +0100 (BST) (envelope-from nik) Date: Wed, 26 Jul 2000 15:28:01 +0100 From: Nik Clayton To: Ben Smithurst Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/share/sgml man-refs.ent Message-ID: <20000726152801.A19316@catkin.nothing-going-on.org> References: <200007260057.RAA15357@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200007260057.RAA15357@freefall.freebsd.org>; from ben@FreeBSD.org on Tue, Jul 25, 2000 at 05:57:21PM -0700 Organization: FreeBSD Project Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Jul 25, 2000 at 05:57:21PM -0700, Ben Smithurst wrote: > Add more(1) and less(1), which will be needed when I add des' mini > CVS primer to the committers-guide. Is it worth pulling that out into it's own article? It's going to be useful to more than just committers. N -- Internet connection, $19.95 a month. Computer, $799.95. Modem, $149.95. Telephone line, $24.95 a month. Software, free. USENET transmission, hundreds if not thousands of dollars. Thinking before posting, priceless. Somethings in life you can't buy. For everything else, there's MasterCard. -- Graham Reed, in the Scary Devil Monastery To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 9:57:33 2000 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id B8CA637B5BB; Wed, 26 Jul 2000 09:57:21 -0700 (PDT) (envelope-from billf@jade.chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id A4CCE1C66; Wed, 26 Jul 2000 12:57:21 -0400 (EDT) Date: Wed, 26 Jul 2000 12:57:21 -0400 From: Bill Fumerola To: Nate Williams Cc: "Jordan K. Hubbard" , Peter Wemm , Warner Losh , "Andrey A. Chernov" , Marcel Moolenaar , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000726125721.Z51462@jade.chc-chimes.com> References: <200007252213.PAA34677@netplex.com.au> <10733.964597601@localhost> <200007261456.IAA11238@nomad.yogotech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200007261456.IAA11238@nomad.yogotech.com>; from nate@yogotech.com on Wed, Jul 26, 2000 at 08:56:51AM -0600 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Jul 26, 2000 at 08:56:51AM -0600, Nate Williams wrote: > > argument for me. Nothing browns-off a system administrator more than > > variant, astonishing behavior at 3am. > > Given that FreeBSD's user-base exceeds all of the other BSD's, I find > *this* a very weak argument. Folks who use FreeBSD rarely use the other > BSDs, so most wouldn't be astonished at all, as they more likely have > experience with Linux or WinXX than with another BSD. So we should use our large userbase to implement non-standard behavior and justify it based soley on the fact that people will just accept it out of ignorance on how other systems do it? Woah, this sounds alllll too familiar.... -- Bill Fumerola - Network Architect, BOFH / Chimes, Inc. billf@chimesnet.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 10: 4:40 2000 Delivered-To: cvs-all@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id F2E9637B713; Wed, 26 Jul 2000 10:04:22 -0700 (PDT) (envelope-from nate@yogotech.com) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id KAA04651; Wed, 26 Jul 2000 10:59:56 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id KAA11807; Wed, 26 Jul 2000 10:59:48 -0600 (MDT) (envelope-from nate) Date: Wed, 26 Jul 2000 10:59:48 -0600 (MDT) Message-Id: <200007261659.KAA11807@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Bill Fumerola Cc: Nate Williams , "Jordan K. Hubbard" , Peter Wemm , Warner Losh , "Andrey A. Chernov" , Marcel Moolenaar , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs In-Reply-To: <20000726125721.Z51462@jade.chc-chimes.com> References: <200007252213.PAA34677@netplex.com.au> <10733.964597601@localhost> <200007261456.IAA11238@nomad.yogotech.com> <20000726125721.Z51462@jade.chc-chimes.com> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > argument for me. Nothing browns-off a system administrator more than > > > variant, astonishing behavior at 3am. > > > > Given that FreeBSD's user-base exceeds all of the other BSD's, I find > > *this* a very weak argument. Folks who use FreeBSD rarely use the other > > BSDs, so most wouldn't be astonished at all, as they more likely have > > experience with Linux or WinXX than with another BSD. > > So we should use our large userbase to implement non-standard behavior > and justify it based soley on the fact that people will just accept it > out of ignorance on how other systems do it? Gimme a break Bill. Andrey and Warner (as security officer) has already explained why we're doing things differently. If the other OS's choose to be insecure, then let them. We don't always have to respond to security issues *after* every one else fixes them. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 10:12:33 2000 Delivered-To: cvs-all@freebsd.org Received: from palrel1.hp.com (palrel1.hp.com [156.153.255.242]) by hub.freebsd.org (Postfix) with ESMTP id 4936037B713; Wed, 26 Jul 2000 10:12:29 -0700 (PDT) (envelope-from marcel@cup.hp.com) Received: from adlmail.cup.hp.com (adlmail.cup.hp.com [15.0.100.30]) by palrel1.hp.com (Postfix) with ESMTP id 2F8891994; Wed, 26 Jul 2000 10:10:32 -0700 (PDT) Received: from cup.hp.com (gauss.cup.hp.com [15.28.97.152]) by adlmail.cup.hp.com (8.9.3 (PHNE_18979)/8.9.3 SMKit7.02) with ESMTP id KAA20067; Wed, 26 Jul 2000 10:10:07 -0700 (PDT) Message-ID: <397F1B6F.46320037@cup.hp.com> Date: Wed, 26 Jul 2000 10:10:07 -0700 From: Marcel Moolenaar Organization: Hewlett-Packard X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Nate Williams Cc: Bill Fumerola , "Jordan K. Hubbard" , Peter Wemm , Warner Losh , "Andrey A. Chernov" , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs References: <200007252213.PAA34677@netplex.com.au> <10733.964597601@localhost> <200007261456.IAA11238@nomad.yogotech.com> <20000726125721.Z51462@jade.chc-chimes.com> <200007261659.KAA11807@nomad.yogotech.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Nate Williams wrote: > > Gimme a break Bill. Andrey and Warner (as security officer) has already > explained why we're doing things differently. > > If the other OS's choose to be insecure, then let them. We don't always > have to respond to security issues *after* every one else fixes them. The question I have is why do we then want to change mtree back to the "insecure" behaviour? Clearly, security can not be the driving force here... -- Marcel Moolenaar mail: marcel@cup.hp.com / marcel@FreeBSD.org tel: (408) 447-4222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 10:17:38 2000 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id B813437BB5E; Wed, 26 Jul 2000 10:17:26 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.9.3/8.9.3) id VAA50360; Wed, 26 Jul 2000 21:12:47 +0400 (MSD) (envelope-from ache) Date: Wed, 26 Jul 2000 21:12:47 +0400 From: "Andrey A. Chernov" To: Nate Williams Cc: Bill Fumerola , "Jordan K. Hubbard" , Peter Wemm , Warner Losh , Marcel Moolenaar , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000726211246.A50294@nagual.pp.ru> References: <200007252213.PAA34677@netplex.com.au> <10733.964597601@localhost> <200007261456.IAA11238@nomad.yogotech.com> <20000726125721.Z51462@jade.chc-chimes.com> <200007261659.KAA11807@nomad.yogotech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <200007261659.KAA11807@nomad.yogotech.com>; from nate@yogotech.com on Wed, Jul 26, 2000 at 10:59:48AM -0600 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Jul 26, 2000 at 10:59:48AM -0600, Nate Williams wrote: > Gimme a break Bill. Andrey and Warner (as security officer) has already > explained why we're doing things differently. > > If the other OS's choose to be insecure, then let them. We don't always > have to respond to security issues *after* every one else fixes them. To be more concrete, with my -L changes: 1) We keep mtree (as application) the same as in other *BSD camps by default. Mtree as userland application have nothing common with system security issues. 2) With adding -L to building process we handle security problems with directories permissions. I don't know how other *BSD camps handle this. Either they not handle (since they not have -L addition in mtree) or in some different ways. Jordan says that symlinked admins must know what they do, but will be even better to handle it automatically for them since people make mistakes sometimes and security area not the place for experiments. 3) In some cases (as Peter describe) -L not needed for some parts of building process. Ok, just don't use it there. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 10:20:51 2000 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 7B51837BD71; Wed, 26 Jul 2000 10:20:38 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.9.3/8.9.3) id VAA50383; Wed, 26 Jul 2000 21:17:34 +0400 (MSD) (envelope-from ache) Date: Wed, 26 Jul 2000 21:17:34 +0400 From: "Andrey A. Chernov" To: Marcel Moolenaar Cc: Nate Williams , Bill Fumerola , "Jordan K. Hubbard" , Peter Wemm , Warner Losh , Will Andrews , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000726211733.B50294@nagual.pp.ru> References: <200007252213.PAA34677@netplex.com.au> <10733.964597601@localhost> <200007261456.IAA11238@nomad.yogotech.com> <20000726125721.Z51462@jade.chc-chimes.com> <200007261659.KAA11807@nomad.yogotech.com> <397F1B6F.46320037@cup.hp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <397F1B6F.46320037@cup.hp.com>; from marcel@cup.hp.com on Wed, Jul 26, 2000 at 10:10:07AM -0700 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Jul 26, 2000 at 10:10:07AM -0700, Marcel Moolenaar wrote: > The question I have is why do we then want to change mtree back to the > "insecure" behaviour? I already answer this once. Mtree _as_application_ is just userland program and can't be secure or insecure. It must act how it was originally designed to make less confuse to users which know this application. And it was designed with defaults to PHYSICAL. Since we use this application to create system directories, which _is_ security issue, I add -L to handle that case. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 10:24:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 97B2337BD03; Wed, 26 Jul 2000 10:24:21 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA49342; Wed, 26 Jul 2000 10:24:15 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200007261724.KAA49342@freefall.freebsd.org> From: Jim Mock Date: Wed, 26 Jul 2000 10:24:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en availability.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/07/26 10:24:15 PDT Modified files: en availability.sgml Log: Add a link to the ``Installing FreeBSD'' section of the handbook. PR: 20184 Submitted by: Bob Johnson Revision Changes Path 1.26 +7 -3 www/en/availability.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 10:38:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9BE1437BDAF; Wed, 26 Jul 2000 10:38:16 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA50913; Wed, 26 Jul 2000 10:38:16 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200007261738.KAA50913@freefall.freebsd.org> From: Jim Mock Date: Wed, 26 Jul 2000 10:38:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/kernelconfig chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/07/26 10:38:15 PDT Modified files: en_US.ISO_8859-1/books/handbook/kernelconfig chapter.sgml Log: Let it be known that it is not always necessary to build world before building a kernel. PR: 20191 Submitted by: Dan Langille Expanded on by: Eric Ogren Revision Changes Path 1.31 +24 -4 doc/en_US.ISO_8859-1/books/handbook/kernelconfig/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 10:38:33 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id D50DD37BF6B; Wed, 26 Jul 2000 10:38:10 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id LAA32268; Wed, 26 Jul 2000 11:38:08 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id LAA30792; Wed, 26 Jul 2000 11:38:06 -0600 (MDT) Message-Id: <200007261738.LAA30792@harmony.village.org> To: "Andrey A. Chernov" Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Wed, 26 Jul 2000 21:17:34 +0400." <20000726211733.B50294@nagual.pp.ru> References: <20000726211733.B50294@nagual.pp.ru> <200007252213.PAA34677@netplex.com.au> <10733.964597601@localhost> <200007261456.IAA11238@nomad.yogotech.com> <20000726125721.Z51462@jade.chc-chimes.com> <200007261659.KAA11807@nomad.yogotech.com> <397F1B6F.46320037@cup.hp.com> Date: Wed, 26 Jul 2000 11:38:06 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [[ CCs trimmed ]] In message <20000726211733.B50294@nagual.pp.ru> "Andrey A. Chernov" writes: : On Wed, Jul 26, 2000 at 10:10:07AM -0700, Marcel Moolenaar wrote: : > The question I have is why do we then want to change mtree back to the : > "insecure" behaviour? : : I already answer this once. Mtree _as_application_ is just userland : program and can't be secure or insecure. It must act how it was originally : designed to make less confuse to users which know this application. And : it was designed with defaults to PHYSICAL. : : Since we use this application to create system directories, which _is_ : security issue, I add -L to handle that case. Yes. mtree should be PHYSICAL. That's what BSD traditionally does and that's what the other BSDs still do. It would be a security issue to have it do something different by default, despite FreeBSD's larger install base. The case for the build is less clear. We have two problems. First problem is that of the symbolic links for critical system directories (those in / and /var). If you have a symbolic link, you might setup the linked to directory improperly and the ned make installworld right now will fix it for you. However, once fixed, these directories will remain fixed until the sysadmin does something to the directory. Or maybe the sysadmin knows what he's doing better than FreeBSD. So we need a way to turn this on/off. I have proposed a knob in /etc/make.conf to do this, which people seem to be ignoring. Second problem is the one Peter and others have raised. Namely that if you have sybolic links for your sys tree, which is fully supported, then the files that you used to own will become owned by root when you do the installworld. This again argues for a knob that will turn this on/off for people that need it. The one area that Andrey and I don't agree on at the moment is if it should be on by default or off by default. I guess the first person to find time to implement it will get to choose :-). Maybe this issue needs to be addressed in a more creative way. If we were to update /etc/security to warn of these insecure directories, then we could easily have -L off and the system admin would know, via the handbook docs that we could write, to run mtree -L once to fix the problems. Since the directories stay fixed once fixed, absenst enemy action, this might be a good solution. Also, we might put something in the buildworld process that checks at the end so that people would know if they had a problem right away. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 10:53: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 088A537BF1C; Wed, 26 Jul 2000 10:53:06 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA52635; Wed, 26 Jul 2000 10:53:05 -0700 (PDT) (envelope-from phk@FreeBSD.org) Message-Id: <200007261753.KAA52635@freefall.freebsd.org> From: Poul-Henning Kamp Date: Wed, 26 Jul 2000 10:53:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/mfs mfs_vnops.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phk 2000/07/26 10:53:05 PDT Modified files: sys/ufs/mfs mfs_vnops.c Log: Fix the "mfs_badop[vop_getwritemount] = 45" messages. Revision Changes Path 1.55 +2 -1 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 Wed Jul 26 10:53:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D061B37BD79; Wed, 26 Jul 2000 10:53:22 -0700 (PDT) (envelope-from ben@FreeBSD.org) Received: (from ben@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA52697; Wed, 26 Jul 2000 10:53:22 -0700 (PDT) (envelope-from ben@FreeBSD.org) Message-Id: <200007261753.KAA52697@freefall.freebsd.org> From: Ben Smithurst Date: Wed, 26 Jul 2000 10:53:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/articles/committers-guide article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ben 2000/07/26 10:53:22 PDT Modified files: en_US.ISO_8859-1/articles/committers-guide article.sgml Log: Fix some stupid mistakes I made when adding des' CVS primer: * $FreeBSD$ shouldn't be expanded when used in the explanation of conflicts. * Add some markup bits I missed, fix typoes, fix broken hyphenation caused by joining lines together which had hyphenated words split over them. Revision Changes Path 1.30 +9 -8 doc/en_US.ISO_8859-1/articles/committers-guide/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 11: 1:46 2000 Delivered-To: cvs-all@freebsd.org Received: from burka.rdy.com (burka.rdy.com [205.149.189.91]) by hub.freebsd.org (Postfix) with ESMTP id 6EE1B37B790; Wed, 26 Jul 2000 11:01:34 -0700 (PDT) (envelope-from dima@laptop.rdy.com) Received: from laptop.rdy.com (mg-20425426-40.ricochet.net [204.254.26.40]) by burka.rdy.com (8.9.3/8.9.3) with ESMTP id LAA38215; Wed, 26 Jul 2000 11:01:28 -0700 (PDT) (envelope-from dima@laptop.rdy.com) Received: (from dima@localhost) by laptop.rdy.com (8.9.3/8.9.3) id LAA02808; Wed, 26 Jul 2000 11:01:22 -0700 (PDT) (envelope-from dima) Message-Id: <200007261801.LAA02808@laptop.rdy.com> Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs In-Reply-To: <200007261738.LAA30792@harmony.village.org> "from Warner Losh at Jul 26, 2000 11:38:06 am" To: Warner Losh Date: Wed, 26 Jul 2000 11:01:19 -0700 (PDT) Cc: "Andrey A. Chernov" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Class: Fast Organization: HackerDome Reply-To: dima@rdy.com From: dima@rdy.com (Dima Ruban) X-Mailer: ELM [version 2.4ME+ PL77 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Warner Losh writes: > [[ CCs trimmed ]] > > The one area that Andrey and I don't agree on at the moment is if it > should be on by default or off by default. I guess the first person > to find time to implement it will get to choose :-). > > Maybe this issue needs to be addressed in a more creative way. If we > were to update /etc/security to warn of these insecure directories, > then we could easily have -L off and the system admin would know, via > the handbook docs that we could write, to run mtree -L once to fix the > problems. Since the directories stay fixed once fixed, absenst enemy > action, this might be a good solution. Also, we might put something > in the buildworld process that checks at the end so that people would > know if they had a problem right away. I like this solution. > > Warner > > > -- dima To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 11: 8: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B4E1E37B790; Wed, 26 Jul 2000 11:07:59 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA55556; Wed, 26 Jul 2000 11:08:00 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200007261808.LAA55556@freefall.freebsd.org> From: Jim Mock Date: Wed, 26 Jul 2000 11:07:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/install chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/07/26 11:07:59 PDT Modified files: en_US.ISO_8859-1/books/handbook/install chapter.sgml Log: Add a link to the Hardware Guide in the FAQ. PR: 20192 Submitted by: Dan Langille Revision Changes Path 1.55 +3 -3 doc/en_US.ISO_8859-1/books/handbook/install/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 11: 9:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 59C4E37B790; Wed, 26 Jul 2000 11:09:11 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA55750; Wed, 26 Jul 2000 11:09:11 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200007261809.LAA55750@freefall.freebsd.org> From: Jim Mock Date: Wed, 26 Jul 2000 11:09:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/kernelconfig chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/07/26 11:09:11 PDT Modified files: en_US.ISO_8859-1/books/handbook/kernelconfig chapter.sgml Log: 4.0-STABLE -> 4-STABLE Submitted by: Eric Ogren Revision Changes Path 1.32 +3 -3 doc/en_US.ISO_8859-1/books/handbook/kernelconfig/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 11:11:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 650A237BD48; Wed, 26 Jul 2000 11:11:38 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA56073; Wed, 26 Jul 2000 11:11:39 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200007261811.LAA56073@freefall.freebsd.org> From: Jim Mock Date: Wed, 26 Jul 2000 11:11:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/install chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/07/26 11:11:38 PDT Modified files: en_US.ISO_8859-1/books/handbook/install chapter.sgml Log: Cleanup from last commit. Whitespace changes only. Revision Changes Path 1.56 +5 -4 doc/en_US.ISO_8859-1/books/handbook/install/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 11:24:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 925A037B50F; Wed, 26 Jul 2000 11:24:51 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA57514; Wed, 26 Jul 2000 11:24:51 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200007261824.LAA57514@freefall.freebsd.org> From: Jim Mock Date: Wed, 26 Jul 2000 11:24:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/articles/fonts article.sgml doc/en_US.ISO_8859-1/articles/formatting-media article.sgml doc/en_US.ISO_8859-1/articles/mh article.sgml doc/en_US.ISO_8859-1/articles/multi-os article.sgml doc/en_US.ISO_8859-1/articles/new-users article.sgml doc/en_US.ISO_8859-1/articles/programming-tools article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/07/26 11:24:51 PDT Modified files: en_US.ISO_8859-1/articles/fonts article.sgml en_US.ISO_8859-1/articles/formatting-media article.sgml en_US.ISO_8859-1/articles/mh article.sgml en_US.ISO_8859-1/articles/multi-os article.sgml en_US.ISO_8859-1/articles/new-users article.sgml en_US.ISO_8859-1/articles/programming-tools article.sgml Log: Close tags with instead of . PR: 20183 Submitted by: Udo Erdelhoff Revision Changes Path 1.9 +19 -19 doc/en_US.ISO_8859-1/articles/fonts/article.sgml 1.14 +3 -3 doc/en_US.ISO_8859-1/articles/formatting-media/article.sgml 1.8 +149 -149 doc/en_US.ISO_8859-1/articles/mh/article.sgml 1.13 +31 -31 doc/en_US.ISO_8859-1/articles/multi-os/article.sgml 1.14 +63 -63 doc/en_US.ISO_8859-1/articles/new-users/article.sgml 1.12 +30 -30 doc/en_US.ISO_8859-1/articles/programming-tools/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 11:33:17 2000 Delivered-To: cvs-all@freebsd.org Received: from palrel1.hp.com (palrel1.hp.com [156.153.255.242]) by hub.freebsd.org (Postfix) with ESMTP id 39D8137B982; Wed, 26 Jul 2000 11:33:12 -0700 (PDT) (envelope-from marcel@cup.hp.com) Received: from adlmail.cup.hp.com (adlmail.cup.hp.com [15.0.100.30]) by palrel1.hp.com (Postfix) with ESMTP id AD140230D; Wed, 26 Jul 2000 11:10:49 -0700 (PDT) Received: from cup.hp.com (gauss.cup.hp.com [15.28.97.152]) by adlmail.cup.hp.com (8.9.3 (PHNE_18979)/8.9.3 SMKit7.02) with ESMTP id LAA22916; Wed, 26 Jul 2000 11:10:06 -0700 (PDT) Message-ID: <397F297E.2E7D6C37@cup.hp.com> Date: Wed, 26 Jul 2000 11:10:06 -0700 From: Marcel Moolenaar Organization: Hewlett-Packard X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Warner Losh Cc: "Andrey A. Chernov" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs References: <20000726211733.B50294@nagual.pp.ru> <200007252213.PAA34677@netplex.com.au> <10733.964597601@localhost> <200007261456.IAA11238@nomad.yogotech.com> <20000726125721.Z51462@jade.chc-chimes.com> <200007261659.KAA11807@nomad.yogotech.com> <397F1B6F.46320037@cup.hp.com> <200007261738.LAA30792@harmony.village.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Warner Losh wrote: > > [[ CCs trimmed ]] > > In message <20000726211733.B50294@nagual.pp.ru> "Andrey A. Chernov" writes: > : On Wed, Jul 26, 2000 at 10:10:07AM -0700, Marcel Moolenaar wrote: > : > The question I have is why do we then want to change mtree back to the > : > "insecure" behaviour? > : > : I already answer this once. Mtree _as_application_ is just userland > : program and can't be secure or insecure. It must act how it was originally > : designed to make less confuse to users which know this application. And > : it was designed with defaults to PHYSICAL. > : > : Since we use this application to create system directories, which _is_ > : security issue, I add -L to handle that case. > > Yes. mtree should be PHYSICAL. That's what BSD traditionally does > and that's what the other BSDs still do. It would be a security issue > to have it do something different by default, despite FreeBSD's larger > install base. I'm not disagreeing; I'm just playing devils advocate. People are using security in ambiguous ways, IMO. > Second problem is the one Peter and others have raised. Namely that > if you have sybolic links for your sys tree, which is fully supported, > then the files that you used to own will become owned by root when > you do the installworld. Which is a security issue as well, right? > The one area that Andrey and I don't agree on at the moment is if it > should be on by default or off by default. I guess the first person > to find time to implement it will get to choose :-). I think the mtree default should be good enough for the build process. > Maybe this issue needs to be addressed in a more creative way. If we > were to update /etc/security to warn of these insecure directories, > then we could easily have -L off and the system admin would know, via > the handbook docs that we could write, to run mtree -L once to fix the > problems. I can remember, fuzzy though, that my OS at that time, NetBSD IIRC, had exactly that. It did a daily scan over the disk to report any mismatches on MODs and ownership. I don't know the details anymore and am probably mistaken... It sounds like a good solution with a general function, though. -- Marcel Moolenaar mail: marcel@cup.hp.com / marcel@FreeBSD.org tel: (408) 447-4222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 11:51: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A00F837BA79; Wed, 26 Jul 2000 11:51:06 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA60161; Wed, 26 Jul 2000 11:51:06 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200007261851.LAA60161@freefall.freebsd.org> From: Jim Mock Date: Wed, 26 Jul 2000 11:51:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/ppp-and-slip chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/07/26 11:51:05 PDT Modified files: en_US.ISO_8859-1/books/handbook/ppp-and-slip chapter.sgml Log: /etc/ppp/*.sample -> /usr/share/examples/ppp/*.sample PR: 20180 Submitted by: George Russell Revision Changes Path 1.28 +7 -7 doc/en_US.ISO_8859-1/books/handbook/ppp-and-slip/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 12:39:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 25A0F37BE1D; Wed, 26 Jul 2000 12:39:47 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA66195; Wed, 26 Jul 2000 12:39:47 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200007261939.MAA66195@freefall.freebsd.org> From: John Baldwin Date: Wed, 26 Jul 2000 12:39:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/conf NOTES X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/07/26 12:39:47 PDT Modified files: sys/i386/conf NOTES Log: Document the SYSV IPC kernel options. Also, remove the SHM_PHYS_BACKED option as it is no longer used. PR: docs/20080 Submitted by: Michael Robinson Revision Changes Path 1.806 +49 -15 src/sys/i386/conf/NOTES To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 12:40:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 83C9E37BDB6; Wed, 26 Jul 2000 12:40:42 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA66291; Wed, 26 Jul 2000 12:40:42 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200007261940.MAA66291@freefall.freebsd.org> From: John Baldwin Date: Wed, 26 Jul 2000 12:40:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf options X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/07/26 12:40:42 PDT Modified files: sys/conf options Log: Remove the SHM_PHYS_BACKED option. Approved by: peter (in principle) Revision Changes Path 1.219 +1 -2 src/sys/conf/options To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 13: 4:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2330F37B872; Wed, 26 Jul 2000 13:04:22 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA68554; Wed, 26 Jul 2000 13:04:21 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200007262004.NAA68554@freefall.freebsd.org> From: Jim Mock Date: Wed, 26 Jul 2000 13:04:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/share/sgml man-refs.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/07/26 13:04:21 PDT Modified files: share/sgml man-refs.ent Log: Add entities for the few thousand man pages not already in this file. PR: 20130 Submitted by: Udo Erdelhoff Revision Changes Path 1.45 +3301 -10 doc/share/sgml/man-refs.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 13:12:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C99B137BE1D; Wed, 26 Jul 2000 13:12:47 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA71037; Wed, 26 Jul 2000 13:12:47 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200007262012.NAA71037@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Wed, 26 Jul 2000 13:12:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/newfs_msdos newfs_msdos.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/07/26 13:12:47 PDT Modified files: sbin/newfs_msdos newfs_msdos.c Log: Fix the reporting of a raw device node. Change a warnx to an errx since we should only attempt to use this utility on a character device. Approved by: green Revision Changes Path 1.12 +3 -3 src/sbin/newfs_msdos/newfs_msdos.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 13:29:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D2B0837B651; Wed, 26 Jul 2000 13:29:21 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: (from rwatson@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA73060; Wed, 26 Jul 2000 13:29:21 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Message-Id: <200007262029.NAA73060@freefall.freebsd.org> From: Robert Watson Date: Wed, 26 Jul 2000 13:29:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_syscalls.c vnode_if.src X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG rwatson 2000/07/26 13:29:21 PDT Modified files: sys/kern vfs_syscalls.c vnode_if.src Log: o Lock vnode before calling extattr_* VOP's, and modify vnode spec to allow for that. o Remember to call NDFREE() if exiting as a result of a failed vn_start_write() when snapshotting. Reviewed by: mckusick Obtained from: TrustedBSD Project Revision Changes Path 1.161 +12 -7 src/sys/kern/vfs_syscalls.c 1.31 +2 -2 src/sys/kern/vnode_if.src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 13:29:59 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 3F15537B5D3; Wed, 26 Jul 2000 13:29:53 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id OAA32983; Wed, 26 Jul 2000 14:29:50 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id OAA32129; Wed, 26 Jul 2000 14:29:43 -0600 (MDT) Message-Id: <200007262029.OAA32129@harmony.village.org> To: Marcel Moolenaar Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Cc: "Andrey A. Chernov" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Wed, 26 Jul 2000 11:10:06 PDT." <397F297E.2E7D6C37@cup.hp.com> References: <397F297E.2E7D6C37@cup.hp.com> <20000726211733.B50294@nagual.pp.ru> <200007252213.PAA34677@netplex.com.au> <10733.964597601@localhost> <200007261456.IAA11238@nomad.yogotech.com> <20000726125721.Z51462@jade.chc-chimes.com> <200007261659.KAA11807@nomad.yogotech.com> <397F1B6F.46320037@cup.hp.com> <200007261738.LAA30792@harmony.village.org> Date: Wed, 26 Jul 2000 14:29:43 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <397F297E.2E7D6C37@cup.hp.com> Marcel Moolenaar writes: : I can remember, fuzzy though, that my OS at that time, NetBSD IIRC, had : exactly that. It did a daily scan over the disk to report any mismatches : on MODs and ownership. I don't know the details anymore and am probably : mistaken... OpenBSD does this as well. It looks like they do two different crypto hashes on the binaries as well as looking for simple permissions problems. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 13:54:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AE6E637BEE8; Wed, 26 Jul 2000 13:54:52 -0700 (PDT) (envelope-from dannyboy@FreeBSD.org) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA75986; Wed, 26 Jul 2000 13:54:52 -0700 (PDT) (envelope-from dannyboy@FreeBSD.org) Message-Id: <200007262054.NAA75986@freefall.freebsd.org> From: Daniel Harris Date: Wed, 26 Jul 2000 13:54:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/merlin/pkg DESCR X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dannyboy 2000/07/26 13:54:52 PDT Modified files: games/merlin/pkg DESCR Log: Fix typo in WWW (...ic.ac.uk, not ...ac.ic.uk). Revision Changes Path 1.4 +1 -1 ports/games/merlin/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 14:12:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DB4B937BF5F; Wed, 26 Jul 2000 14:12:35 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA79030; Wed, 26 Jul 2000 14:12:34 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200007262112.OAA79030@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Wed, 26 Jul 2000 14:12:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts README.TXT src/release/texts/alpha RELNOTES.TXT src/release/texts/i386 RELNOTES.TXT X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/07/26 14:12:34 PDT Modified files: (Branch: RELENG_4) release/texts README.TXT release/texts/alpha RELNOTES.TXT release/texts/i386 RELNOTES.TXT Log: Fix up for 4.1-RELEASE (good thing my build fell over for another reason and had to be restarted - this would have been embarassing). Noticed by: Bruce A Mah Revision Changes Path 1.9.2.5 +7 -28 src/release/texts/README.TXT 1.31.2.26 +4 -3 src/release/texts/alpha/RELNOTES.TXT 1.72.2.17 +4 -3 src/release/texts/i386/RELNOTES.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 14:16:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4F1C937BE79; Wed, 26 Jul 2000 14:16:46 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA79552; Wed, 26 Jul 2000 14:16:46 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200007262116.OAA79552@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Wed, 26 Jul 2000 14:16:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts README.TXT src/release/texts/alpha RELNOTES.TXT src/release/texts/i386 RELNOTES.TXT X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/07/26 14:16:46 PDT Modified files: (Branch: RELENG_4) release/texts README.TXT release/texts/alpha RELNOTES.TXT release/texts/i386 RELNOTES.TXT Log: Adjust the docs to now be in a post 4.1-RELEASE world. Revision Changes Path 1.9.2.6 +19 -3 src/release/texts/README.TXT 1.31.2.27 +5 -124 src/release/texts/alpha/RELNOTES.TXT 1.72.2.18 +5 -108 src/release/texts/i386/RELNOTES.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 15: 7:13 2000 Delivered-To: cvs-all@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id 78DE437C025; Wed, 26 Jul 2000 15:07:02 -0700 (PDT) (envelope-from ben@scientia.demon.co.uk) Received: from strontium.scientia.demon.co.uk ([192.168.91.36] ident=exim) by scientia.demon.co.uk with esmtp (Exim 3.15 #1) id 13HZ6y-0007NO-00; Wed, 26 Jul 2000 22:53:08 +0100 Received: (from ben) by strontium.scientia.demon.co.uk (Exim 3.15 #1) id 13HZ6y-0008hD-00; Wed, 26 Jul 2000 22:53:08 +0100 Date: Wed, 26 Jul 2000 22:53:08 +0100 From: Ben Smithurst To: Nik Clayton Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/share/sgml man-refs.ent Message-ID: <20000726225308.R28657@strontium.scientia.demon.co.uk> References: <200007260057.RAA15357@freefall.freebsd.org> <20000726152801.A19316@catkin.nothing-going-on.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000726152801.A19316@catkin.nothing-going-on.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Nik Clayton wrote: > On Tue, Jul 25, 2000 at 05:57:21PM -0700, Ben Smithurst wrote: >> Add more(1) and less(1), which will be needed when I add des' mini >> CVS primer to the committers-guide. > > Is it worth pulling that out into it's own article? Probably, I suppose it's not too FreeBSD specific for that. -- Ben Smithurst / ben@FreeBSD.org / PGP: 0x99392F7D FreeBSD Documentation Project / To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 15:10: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 97AEE37C025; Wed, 26 Jul 2000 15:09:57 -0700 (PDT) (envelope-from ben@FreeBSD.org) Received: (from ben@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA86216; Wed, 26 Jul 2000 15:09:56 -0700 (PDT) (envelope-from ben@FreeBSD.org) Message-Id: <200007262209.PAA86216@freefall.freebsd.org> From: Ben Smithurst Date: Wed, 26 Jul 2000 15:09:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/share/sgml man-refs.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ben 2000/07/26 15:09:56 PDT Modified files: share/sgml man-refs.ent Log: Fix the doc build by adding back less(1) and more(1), which were mysteriously removed in the last commit. Revision Changes Path 1.46 +3 -1 doc/share/sgml/man-refs.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 16: 7: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F8F637BFD7; Wed, 26 Jul 2000 16:07:02 -0700 (PDT) (envelope-from mckusick@FreeBSD.org) Received: (from mckusick@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA93463; Wed, 26 Jul 2000 16:07:01 -0700 (PDT) (envelope-from mckusick@FreeBSD.org) Message-Id: <200007262307.QAA93463@freefall.freebsd.org> From: Kirk McKusick Date: Wed, 26 Jul 2000 16:07:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ffs ffs_inode.c ffs_snapshot.c src/sys/ufs/ufs ufs_lookup.c ufs_vnops.c src/sys/vm vm_mmap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mckusick 2000/07/26 16:07:01 PDT Modified files: sys/ufs/ffs ffs_inode.c ffs_snapshot.c sys/ufs/ufs ufs_lookup.c ufs_vnops.c sys/vm vm_mmap.c Log: Clean up the snapshot code so that it no longer depends on the use of the SF_IMMUTABLE flag to prevent writing. Instead put in explicit checking for the SF_SNAPSHOT flag in the appropriate places. With this change, it is now possible to rename and link to snapshot files. It is also possible to set or clear any of the owner, group, or other read bits on the file, though none of the write or execute bits can be set. There is also an explicit test to prevent the setting or clearing of the SF_SNAPSHOT flag via chflags() or fchflags(). Note also that the modify time cannot be changed as it needs to accurately reflect the time that the snapshot was taken. Submitted by: Robert Watson Revision Changes Path 1.64 +4 -1 src/sys/ufs/ffs/ffs_inode.c 1.4 +7 -9 src/sys/ufs/ffs/ffs_snapshot.c 1.38 +15 -1 src/sys/ufs/ufs/ufs_lookup.c 1.141 +15 -5 src/sys/ufs/ufs/ufs_vnops.c 1.115 +2 -2 src/sys/vm/vm_mmap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 16:10: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F3B8B37C079; Wed, 26 Jul 2000 16:10:02 -0700 (PDT) (envelope-from mckusick@FreeBSD.org) Received: (from mckusick@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA93840; Wed, 26 Jul 2000 16:10:02 -0700 (PDT) (envelope-from mckusick@FreeBSD.org) Message-Id: <200007262310.QAA93840@freefall.freebsd.org> From: Kirk McKusick Date: Wed, 26 Jul 2000 16:10:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys buf.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mckusick 2000/07/26 16:10:02 PDT Modified files: sys/sys buf.h Log: Disable LK_CANRECURSE on buffer locks. The recusion is needed only for certain uses of snapshots and currently appears to be causing some other problems. So for now, I am reverting to the old semantics until I have had time to investigate what is causing the other problems. Revision Changes Path 1.107 +2 -2 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 Wed Jul 26 16:16: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9218837BFEE; Wed, 26 Jul 2000 16:15:52 -0700 (PDT) (envelope-from archie@FreeBSD.org) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA94636; Wed, 26 Jul 2000 16:15:51 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200007262315.QAA94636@freefall.freebsd.org> From: Archie Cobbs Date: Wed, 26 Jul 2000 16:15:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libalias alias_smedia.c HISTORY Makefile alias.c alias.h alias_db.c alias_local.h libalias.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/07/26 16:15:47 PDT Modified files: lib/libalias HISTORY Makefile alias.c alias.h alias_db.c alias_local.h libalias.3 Added files: lib/libalias alias_smedia.c Log: Add address translation support for RTSP/RTP used by RealPlayer and Quicktime streaming media applications. Add a BUGS section to the man page. Submitted by: Erik Salander Revision Changes Path 1.9 +5 -1 src/lib/libalias/HISTORY 1.16 +3 -2 src/lib/libalias/Makefile 1.21 +135 -2 src/lib/libalias/alias.c 1.18 +4 -1 src/lib/libalias/alias.h 1.35 +214 -1 src/lib/libalias/alias_db.c 1.16 +15 -1 src/lib/libalias/alias_local.h 1.34 +23 -2 src/lib/libalias/libalias.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 16:46:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1932C37BFA8; Wed, 26 Jul 2000 16:46:29 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA97849; Wed, 26 Jul 2000 16:46:28 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200007262346.QAA97849@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Wed, 26 Jul 2000 16:46:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libedit sig.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/07/26 16:46:28 PDT Modified files: lib/libedit sig.c Log: Fix temp. singnals blocking. Only one signal was blocked due to typo pasted many times. Revision Changes Path 1.4 +5 -3 src/lib/libedit/sig.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 16:55:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3CB1937B7C4; Wed, 26 Jul 2000 16:55:36 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Received: (from wpaul@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA98863; Wed, 26 Jul 2000 16:55:35 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Message-Id: <200007262355.QAA98863@freefall.freebsd.org> From: Bill Paul Date: Wed, 26 Jul 2000 16:55:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci ti_fw2.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wpaul 2000/07/26 16:55:35 PDT Modified files: sys/pci ti_fw2.h Log: Use a custom Tigon 2 firmware image, hopefully temporarily. This is the 12.4.11 firmware with a few changes to the link handling code merged in from the 12.4.13 release. I'm doing this because the 12.4.13 firmware doesn't seem to handle 10/100 link settings properly on 1000baseT cards. Note that the revision codes still identify the firmware as 12.4.13 because both ti_fw2.h and ti_fw.h have to have the same revision values, and I wanted to keep the 12.4.13 firmware for Tigon 1 cards. It's nice to have firmware source. Revision Changes Path 1.10 +1728 -1683src/sys/pci/ti_fw2.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 17:18:40 2000 Delivered-To: cvs-all@freebsd.org Received: from mailhost.netbenefit.co.uk (mailhost.netbenefit.co.uk [212.53.64.39]) by hub.freebsd.org (Postfix) with ESMTP id 11E5B37BCC2; Wed, 26 Jul 2000 17:18:29 -0700 (PDT) (envelope-from pierre.dampure@alveley.org) Received: from usereu70.uk.uudial.com ([62.188.17.154] helo=alveley.org) by mailhost.netbenefit.co.uk with esmtp (NetBenefit 1.5) id 13HakZ-0002g6-00 ; Thu, 27 Jul 2000 00:38:07 +0100 Message-ID: <397F7658.5E375FDC@alveley.org> Date: Thu, 27 Jul 2000 00:38:00 +0100 From: "Dampure, Pierre Y." X-Mailer: Mozilla 4.73 [en] (X11; U; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: Warner Losh Cc: Marcel Moolenaar , "Andrey A. Chernov" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs References: <397F297E.2E7D6C37@cup.hp.com> <20000726211733.B50294@nagual.pp.ru> <200007252213.PAA34677@netplex.com.au> <10733.964597601@localhost> <200007261456.IAA11238@nomad.yogotech.com> <20000726125721.Z51462@jade.chc-chimes.com> <200007261659.KAA11807@nomad.yogotech.com> <397F1B6F.46320037@cup.hp.com> <200007261738.LAA30792@harmony.village.org> <200007262029.OAA32129@harmony.village.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Warner Losh wrote: > > In message <397F297E.2E7D6C37@cup.hp.com> Marcel Moolenaar writes: > : I can remember, fuzzy though, that my OS at that time, NetBSD IIRC, had > : exactly that. It did a daily scan over the disk to report any mismatches > : on MODs and ownership. I don't know the details anymore and am probably > : mistaken... > > OpenBSD does this as well. It looks like they do two different crypto > hashes on the binaries as well as looking for simple permissions > problems. I might be completely out of order here but, as demonstrated by the recent (and now corrected) breakage in bsd.ports.mk, we CAN control the behaviour of mtree at install time via something like MTREE_ARGS. So, if we think that -L is better at install time due to what was discussed at length on these lists, we just DO NOT make -L the default, but set the corresponding MTREE_ARGS at install time. Andrey gets what he thinks is most secure, the compatibility issue is sorted (if it really existed in the first place), and everyone's happy... Regards, PYD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 17:36:15 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id A605837BF64; Wed, 26 Jul 2000 17:35:59 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id SAA33960; Wed, 26 Jul 2000 18:35:51 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id SAA34592; Wed, 26 Jul 2000 18:35:48 -0600 (MDT) Message-Id: <200007270035.SAA34592@harmony.village.org> To: "Dampure, Pierre Y." Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Cc: Marcel Moolenaar , "Andrey A. Chernov" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Thu, 27 Jul 2000 00:38:00 BST." <397F7658.5E375FDC@alveley.org> References: <397F7658.5E375FDC@alveley.org> <397F297E.2E7D6C37@cup.hp.com> <20000726211733.B50294@nagual.pp.ru> <200007252213.PAA34677@netplex.com.au> <10733.964597601@localhost> <200007261456.IAA11238@nomad.yogotech.com> <20000726125721.Z51462@jade.chc-chimes.com> <200007261659.KAA11807@nomad.yogotech.com> <397F1B6F.46320037@cup.hp.com> <200007261738.LAA30792@harmony.village.org> <200007262029.OAA32129@harmony.village.org> Date: Wed, 26 Jul 2000 18:35:48 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <397F7658.5E375FDC@alveley.org> "Dampure, Pierre Y." writes: : I might be completely out of order here but, as demonstrated by the : recent (and now corrected) breakage in bsd.ports.mk, we CAN control the : behaviour of mtree at install time via something like MTREE_ARGS. So, if : we think that -L is better at install time due to what was discussed at : length on these lists, we just DO NOT make -L the default, but set the : corresponding MTREE_ARGS at install time. Andrey gets what he thinks is : most secure, the compatibility issue is sorted (if it really existed in : the first place), and everyone's happy... I suggested this about 5 rounds of this dicussion ago. I may still implement it. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 17:46:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9C23E37BC5A; Wed, 26 Jul 2000 17:46:30 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA05912; Wed, 26 Jul 2000 17:46:30 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200007270046.RAA05912@freefall.freebsd.org> From: John Baldwin Date: Wed, 26 Jul 2000 17:46:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/sysinstall config.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/07/26 17:46:29 PDT Modified files: release/sysinstall config.c Log: Fix an annoying bogon in the form of a missing tab when generating CD-ROM mount points in /etc/fstab. Requested by: obrien Revision Changes Path 1.161 +2 -2 src/release/sysinstall/config.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 18:22:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 95ACE37B59D; Wed, 26 Jul 2000 18:22:25 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA10514; Wed, 26 Jul 2000 18:22:25 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200007270122.SAA10514@freefall.freebsd.org> From: Marcel Moolenaar Date: Wed, 26 Jul 2000 18:22:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/linux linux_sysvec.c linux_util.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/07/26 18:22:25 PDT Modified files: sys/i386/linux linux_sysvec.c linux_util.h Log: Remove the only use of SCARG and perform dead code elimination. Revision Changes Path 1.60 +3 -4 src/sys/i386/linux/linux_sysvec.c 1.12 +1 -5 src/sys/i386/linux/linux_util.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 20:41:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C616637B55C; Wed, 26 Jul 2000 20:41:36 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA25219; Wed, 26 Jul 2000 20:41:37 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007270341.UAA25219@freefall.freebsd.org> From: SADA Kenji Date: Wed, 26 Jul 2000 20:41:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/linux-netscape47-communicator Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/26 20:41:37 PDT Modified files: www/linux-netscape47-communicator Makefile Log: Remove duplicated entry of RUN_DEPENDS. Revision Changes Path 1.24 +5 -11 ports/www/linux-netscape47-communicator/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 20:45:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4BBF337BFF5; Wed, 26 Jul 2000 20:45:20 -0700 (PDT) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA25641; Wed, 26 Jul 2000 20:45:20 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200007270345.UAA25641@freefall.freebsd.org> From: Brian Feldman Date: Wed, 26 Jul 2000 20:45:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern sys_generic.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/07/26 20:45:19 PDT Modified files: sys/kern sys_generic.c Log: Distinguish between whether ktraceing was enabled before an IO operation or after it. If the ktrace operation was enabled while the process was blocked doing IO, the race would allow it to pass down invalid (uninitialized) data and panic later down the call stack. Revision Changes Path 1.62 +7 -3 src/sys/kern/sys_generic.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 20:47: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4001937C024; Wed, 26 Jul 2000 20:46:52 -0700 (PDT) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA25758; Wed, 26 Jul 2000 20:46:52 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200007270346.UAA25758@freefall.freebsd.org> From: Brian Feldman Date: Wed, 26 Jul 2000 20:46:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern sys_generic.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/07/26 20:46:52 PDT Modified files: (Branch: RELENG_4) sys/kern sys_generic.c Log: MFC: rev. 1.62, race fixes Revision Changes Path 1.55.2.5 +7 -3 src/sys/kern/sys_generic.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 20:50:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C536237BF88; Wed, 26 Jul 2000 20:50:25 -0700 (PDT) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA26129; Wed, 26 Jul 2000 20:50:25 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200007270350.UAA26129@freefall.freebsd.org> From: Brian Feldman Date: Wed, 26 Jul 2000 20:50:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf Makefile.alpha Makefile.i386 Makefile.pc98 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/07/26 20:50:25 PDT Modified files: sys/conf Makefile.alpha Makefile.i386 Makefile.pc98 Log: -mkdir the ${DESTDIR}/modules directory upon modules-install in case it doesn't exist. This could bite you by allowing you merrily install your modules one on top of the other as the regular file ${DESTDIR}/modules and think it completed properly... Revision Changes Path 1.67 +2 -1 src/sys/conf/Makefile.alpha 1.197 +2 -1 src/sys/conf/Makefile.i386 1.97 +2 -1 src/sys/conf/Makefile.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 20:50:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0815A37BFFC; Wed, 26 Jul 2000 20:50:55 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA26210; Wed, 26 Jul 2000 20:50:55 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200007270350.UAA26210@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 26 Jul 2000 20:50:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/xml4j Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/07/26 20:50:55 PDT Modified files: textproc/xml4j Makefile Log: XML Parser for Java uses Apache Software License, now. Revision Changes Path 1.17 +1 -2 ports/textproc/xml4j/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 20:51:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5EA3937C00C; Wed, 26 Jul 2000 20:51:45 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA26298; Wed, 26 Jul 2000 20:51:45 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200007270351.UAA26298@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 26 Jul 2000 20:51:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports LEGAL X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/07/26 20:51:45 PDT Modified files: . LEGAL Log: XML Parser for Java uses Apache Software License, now. Revision Changes Path 1.171 +1 -2 ports/LEGAL To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 21: 4:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 652F037B643; Wed, 26 Jul 2000 21:04:13 -0700 (PDT) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA27504; Wed, 26 Jul 2000 21:04:13 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200007270404.VAA27504@freefall.freebsd.org> From: Brian Feldman Date: Wed, 26 Jul 2000 21:04:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern sys_generic.c X-FreeBSD-CVS-Branch: RELENG_3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/07/26 21:04:12 PDT Modified files: (Branch: RELENG_3) sys/kern sys_generic.c Log: MFC: rev. 1.62, fix races Revision Changes Path 1.43.2.4 +7 -3 src/sys/kern/sys_generic.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jul 26 22:40:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CA56B37B9E3; Wed, 26 Jul 2000 22:40:55 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA43580; Wed, 26 Jul 2000 22:40:55 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200007270540.WAA43580@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 26 Jul 2000 22:40:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/jwhois Makefile ports/net/jwhois/files md5 ports/net/jwhois/patches patch-aa patch-ab ports/net/jwhois/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/07/26 22:40:55 PDT Modified files: net Makefile Added files: net/jwhois Makefile net/jwhois/files md5 net/jwhois/patches patch-aa patch-ab net/jwhois/pkg COMMENT DESCR PLIST Log: Yet another whois client. Submitted by: Makoto MATSUSHITA PR: ports/20135 Revision Changes Path 1.384 +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 Jul 26 22:41:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AEF5237C0D4; Wed, 26 Jul 2000 22:41:03 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA43629; Wed, 26 Jul 2000 22:41:03 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200007270541.WAA43629@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 26 Jul 2000 22:41:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/07/26 22:41:03 PDT Modified files: . modules Log: jwhois --> ports/net/jwhois Revision Changes Path 1.1456 +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 Jul 26 22:46:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 524F437B941; Wed, 26 Jul 2000 22:46:33 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA44077; Wed, 26 Jul 2000 22:46:32 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200007270546.WAA44077@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 26 Jul 2000 22:46:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/vmware2 Makefile ports/emulators/vmware2/files md5 ports/emulators/vmware2/patches patch-aa patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/07/26 22:46:32 PDT Modified files: emulators/vmware2 Makefile emulators/vmware2/files md5 Removed files: emulators/vmware2/patches patch-aa patch-ab Log: Update the vmmon-freebsd module to Vladmir's latest version, 0.97-b1. - Improve LBA magic for huge IDE drives Revision Changes Path 1.19 +2 -2 ports/emulators/vmware2/Makefile 1.8 +1 -1 ports/emulators/vmware2/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 Jul 26 23:46:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E517137C037; Wed, 26 Jul 2000 23:46:49 -0700 (PDT) (envelope-from dirk@FreeBSD.org) Received: (from dirk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA50786; Wed, 26 Jul 2000 23:46:50 -0700 (PDT) (envelope-from dirk@FreeBSD.org) Message-Id: <200007270646.XAA50786@freefall.freebsd.org> From: Dirk Froemberg Date: Wed, 26 Jul 2000 23:46:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/palm/malsync Makefile ports/palm/malsync/files md5 ports/palm/malsync/patches patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dirk 2000/07/26 23:46:49 PDT Modified files: palm/malsync Makefile palm/malsync/files md5 palm/malsync/patches patch-aa Log: Upgrade to 2.04. Submitted by: roberto Revision Changes Path 1.5 +6 -7 ports/palm/malsync/Makefile 1.2 +1 -1 ports/palm/malsync/files/md5 1.2 +19 -22 ports/palm/malsync/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 Jul 27 0: 6: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7ACCE37C045; Thu, 27 Jul 2000 00:06:03 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA54147; Thu, 27 Jul 2000 00:06:03 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007270706.AAA54147@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 27 Jul 2000 00:06:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/amaterus/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/27 00:06:02 PDT Modified files: x11-wm/amaterus/pkg PLIST Log: Remove %D/share/gnome if empty. Submitted by: bento Revision Changes Path 1.3 +2 -0 ports/x11-wm/amaterus/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 Jul 27 0:22:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D5B2A37B959; Thu, 27 Jul 2000 00:22:48 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA55638; Thu, 27 Jul 2000 00:22:48 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007270722.AAA55638@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 27 Jul 2000 00:22:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/balsa Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/27 00:22:48 PDT Modified files: mail/balsa Makefile Log: Add gnomecore and gnomeaudio to RUN_DEPENDS to ensure correct removal of share/gnome. Submitted by: bento Revision Changes Path 1.22 +4 -2 ports/mail/balsa/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 0:26:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 570A137C061; Thu, 27 Jul 2000 00:26:08 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA56038; Thu, 27 Jul 2000 00:26:08 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007270726.AAA56038@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 27 Jul 2000 00:26:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/extace/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/27 00:26:08 PDT Modified files: audio/extace/pkg PLIST Log: Remove share/gnome if empty. Submitted by: bento Revision Changes Path 1.2 +3 -0 ports/audio/extace/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 Jul 27 0:58:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9AA9237B576; Thu, 27 Jul 2000 00:58:48 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA59117; Thu, 27 Jul 2000 00:58:48 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200007270758.AAA59117@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Thu, 27 Jul 2000 00:58:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/wall wall.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/07/27 00:58:48 PDT Modified files: usr.bin/wall wall.c Log: Let wall report the local timezone as well on output. PR: 17867 Submitted by: Joel Ray Holveck Nagged by: nrahlstr Revision Changes Path 1.14 +3 -3 src/usr.bin/wall/wall.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 1:15:56 2000 Delivered-To: cvs-all@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.2.163]) by hub.freebsd.org (Postfix) with ESMTP id CFEA437C098; Thu, 27 Jul 2000 01:15:41 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.16 #1) id 13HipP-000DUV-00; Thu, 27 Jul 2000 10:15:39 +0200 From: Sheldon Hearn To: Jeroen Ruigrok van der Werven Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/wall wall.c In-reply-to: Your message of "Thu, 27 Jul 2000 00:58:48 MST." <200007270758.AAA59117@freefall.freebsd.org> Date: Thu, 27 Jul 2000 10:15:38 +0200 Message-ID: <51862.964685738@axl.ops.uunet.co.za> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 27 Jul 2000 00:58:48 MST, Jeroen Ruigrok van der Werven wrote: > Modified files: > usr.bin/wall wall.c > Log: > Let wall report the local timezone as well on output. Might it not be better to use strftime() to handle the timezone gracefully? That way, when strftime() conforms to the ANSI C standard, it'll "do the right thing". See PR misc/20159 for more info. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 1:16:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B7CAF37BACC; Thu, 27 Jul 2000 01:16:55 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA62440; Thu, 27 Jul 2000 01:16:55 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007270816.BAA62440@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 27 Jul 2000 01:16:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/gtkhtml Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/27 01:16:55 PDT Modified files: www/gtkhtml Makefile Log: Add gconf.8 to LIB_DEPENDS. This should fix bento's PLIST error. Submitted by: bento Revision Changes Path 1.5 +3 -2 ports/www/gtkhtml/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 1:20:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4583137BACC; Thu, 27 Jul 2000 01:20:41 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Received: (from dburr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA63019; Thu, 27 Jul 2000 01:20:41 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Message-Id: <200007270820.BAA63019@freefall.freebsd.org> From: Donald Burr Date: Thu, 27 Jul 2000 01:20:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dburr 2000/07/27 01:20:40 PDT Modified files: . modules Log: opennap --> ports/audio/opennap Revision Changes Path 1.1457 +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 Jul 27 1:21:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 292B737C087; Thu, 27 Jul 2000 01:21:26 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Received: (from dburr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA63120; Thu, 27 Jul 2000 01:21:26 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Message-Id: <200007270821.BAA63120@freefall.freebsd.org> From: Donald Burr Date: Thu, 27 Jul 2000 01:21:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/opennap - Imported sources X-FreeBSD-CVS-Branch: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dburr 2000/07/27 01:21:25 PDT ports/audio/opennap - Imported sources Update of /home/ncvs/ports/audio/opennap In directory freefall.freebsd.org:/d/home/dburr/opennap Log Message: New port audio/opennap, an open source Napster(tm) server. Status: Vendor Tag: DBURR Release Tags: opennap_0_35 N ports/audio/opennap/Makefile N ports/audio/opennap/files/md5 N ports/audio/opennap/files/opennap.sh N ports/audio/opennap/pkg/COMMENT N ports/audio/opennap/pkg/DESCR N ports/audio/opennap/pkg/PLIST N ports/audio/opennap/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 Thu Jul 27 1:25:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 15F9A37C009; Thu, 27 Jul 2000 01:25:37 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Received: (from dburr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA63701; Thu, 27 Jul 2000 01:25:37 -0700 (PDT) (envelope-from dburr@FreeBSD.org) Message-Id: <200007270825.BAA63701@freefall.freebsd.org> From: Donald Burr Date: Thu, 27 Jul 2000 01:25:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dburr 2000/07/27 01:25:37 PDT Modified files: audio Makefile Log: Activate opennap. Revision Changes Path 1.150 +2 -1 ports/audio/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 1:48:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D23C837BB7F; Thu, 27 Jul 2000 01:48:49 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA66407; Thu, 27 Jul 2000 01:48:49 -0700 (PDT) (envelope-from des@FreeBSD.org) Message-Id: <200007270848.BAA66407@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 27 Jul 2000 01:48:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libfetch ftp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG des 2000/07/27 01:48:49 PDT Modified files: lib/libfetch ftp.c Log: Don't fail if _ftp_stat() reports a protocol error, since that most likely means that the server doesn't understand SIZE or MDTM, which should not be a hard failure. Submitted by: ume Revision Changes Path 1.40 +2 -1 src/lib/libfetch/ftp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 2:54:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A09A137B6DA; Thu, 27 Jul 2000 02:54:51 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA74109; Thu, 27 Jul 2000 02:54:51 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200007270954.CAA74109@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Thu, 27 Jul 2000 02:54:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci pcisupport.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/07/27 02:54:51 PDT Modified files: sys/pci pcisupport.c Log: Document the 0x12258086 PCI id. This is in fact an Intel Orion chipset (82454KX/GX) which has been used in HP NetServer's LS4 range. HP Probably relabeled the DID. That's the only explanation I can find plausible to this `mystery'. Revision Changes Path 1.164 +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 Thu Jul 27 3: 4: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A5C437B9F2; Thu, 27 Jul 2000 03:03:59 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA74908; Thu, 27 Jul 2000 03:03:59 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007271003.DAA74908@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 27 Jul 2000 03:03:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/commoncpp Makefile ports/devel/commoncpp/files md5 ports/devel/commoncpp/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/27 03:03:59 PDT Modified files: devel Makefile Added files: devel/commoncpp Makefile devel/commoncpp/files md5 devel/commoncpp/pkg COMMENT DESCR PLIST Log: Add CommonC++ - a portable class framework for C++ Obtained from: http://download.sourceforge.net/cplusplus/CommonC++-1.1.0.ports Revision Changes Path 1.317 +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 Jul 27 3: 4:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E95C137B9C9; Thu, 27 Jul 2000 03:04:25 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA74965; Thu, 27 Jul 2000 03:04:25 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007271004.DAA74965@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 27 Jul 2000 03:04:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/27 03:04:25 PDT Modified files: . modules Log: commoncpp --> ports/devel/commoncpp Revision Changes Path 1.1458 +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 Jul 27 3:19:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 483A437B938; Thu, 27 Jul 2000 03:19:45 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA77683; Thu, 27 Jul 2000 03:19:45 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007271019.DAA77683@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 27 Jul 2000 03:19:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/jext Makefile ports/editors/jext/pkg DESCR X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/27 03:19:44 PDT Modified files: editors/jext Makefile editors/jext/pkg DESCR Log: The project changed its location. Revision Changes Path 1.8 +3 -2 ports/editors/jext/Makefile 1.2 +1 -1 ports/editors/jext/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 Jul 27 4:37:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 06CA537B63E; Thu, 27 Jul 2000 04:37:27 -0700 (PDT) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA88858; Thu, 27 Jul 2000 04:37:27 -0700 (PDT) (envelope-from tg@FreeBSD.org) Message-Id: <200007271137.EAA88858@freefall.freebsd.org> From: Thomas Gellekum Date: Thu, 27 Jul 2000 04:37:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/astro/sattrack/patches patch-ab patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tg 2000/07/27 04:37:27 PDT Modified files: astro/sattrack/patches patch-aa Added files: astro/sattrack/patches patch-ab Log: patch-aa: Respect $CFLAGS. patch-ab: Y2K fix. Revision Changes Path 1.3 +2 -2 ports/astro/sattrack/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 Jul 27 4:39:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6152C37B5A3; Thu, 27 Jul 2000 04:39:34 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA89073; Thu, 27 Jul 2000 04:39:34 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200007271139.EAA89073@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Thu, 27 Jul 2000 04:39:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc csh.login profile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/07/27 04:39:34 PDT Modified files: etc csh.login profile Log: Remove all mention of LANG and MM_CHARSET. Add hints towards login.conf(5), which should be the preferred way to set this systemwide without having to worry about the shell used. PR: 9245 Submitted by: martin Kammerhofer Revision Changes Path 1.20 +5 -7 src/etc/csh.login 1.13 +6 -9 src/etc/profile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 4:43:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EE7E437B669; Thu, 27 Jul 2000 04:43:17 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA89493; Thu, 27 Jul 2000 04:43:17 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200007271143.EAA89493@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Thu, 27 Jul 2000 04:43:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_vnops.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/07/27 04:43:17 PDT Modified files: (Branch: RELENG_4) sys/kern vfs_vnops.c Log: MFC: comment typo fix. Do - > does. Revision Changes Path 1.87.2.3 +2 -2 src/sys/kern/vfs_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 Jul 27 4:45:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 32F9037B89B; Thu, 27 Jul 2000 04:45:10 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA89785; Thu, 27 Jul 2000 04:45:09 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200007271145.EAA89785@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 27 Jul 2000 04:45:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/tclreadline Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/07/27 04:45:09 PDT Modified files: devel/tclreadline Makefile Log: MASTER_SITE has moved to sourceforge Submitted by: maintainer Revision Changes Path 1.8 +2 -2 ports/devel/tclreadline/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 5:19:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E4FFA37B9EF; Thu, 27 Jul 2000 05:19:39 -0700 (PDT) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA94122; Thu, 27 Jul 2000 05:19:39 -0700 (PDT) (envelope-from tg@FreeBSD.org) Message-Id: <200007271219.FAA94122@freefall.freebsd.org> From: Thomas Gellekum Date: Thu, 27 Jul 2000 05:19:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/python Makefile ports/lang/python/files Setup.tk X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tg 2000/07/27 05:19:39 PDT Modified files: lang/python Makefile Removed files: lang/python/files Setup.tk Log: - Clarify comment on thread support. - Don't link against libxpg4 on newer systems. - Remove last remnants of Tkinter support, it's all in x11-toolkits/py-tkinter. Revision Changes Path 1.66 +11 -7 ports/lang/python/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 6: 7:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7586C37B8AF; Thu, 27 Jul 2000 06:07:20 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA05105; Thu, 27 Jul 2000 06:07:20 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200007271307.GAA05105@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Thu, 27 Jul 2000 06:07:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases Makefile www/en/releases/4.1R Makefile announce.sgml errata.sgml notes.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/07/27 06:07:19 PDT Modified files: en/releases Makefile Added files: en/releases/4.1R Makefile announce.sgml errata.sgml notes.sgml Log: 4.1 is released - make it known. Revision Changes Path 1.24 +2 -2 www/en/releases/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 6:57:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DAB4E37B891; Thu, 27 Jul 2000 06:57:09 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Received: (from nsayer@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA14016; Thu, 27 Jul 2000 06:57:09 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Message-Id: <200007271357.GAA14016@freefall.freebsd.org> From: Nick Sayer Date: Thu, 27 Jul 2000 06:57:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc MAKEDEV src/share/man/man4 tap.4 Makefile src/sys/conf files src/sys/modules Makefile src/sys/modules/if_tap Makefile src/sys/net if_tap.c if_tap.h if_tapvar.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nsayer 2000/07/27 06:57:05 PDT Modified files: (Branch: RELENG_4) etc MAKEDEV share/man/man4 Makefile sys/conf files sys/modules Makefile Added files: (Branch: RELENG_4) share/man/man4 tap.4 sys/modules/if_tap Makefile sys/net if_tap.c if_tap.h if_tapvar.h Log: MFC: tap driver. Virtual Ethernet device, mostly used in bridged configurations. Used by vmware and vtun ports, among other things. Revision Changes Path 1.243.2.10 +13 -1 src/etc/MAKEDEV 1.83.2.10 +3 -3 src/share/man/man4/Makefile 1.340.2.18 +2 -1 src/sys/conf/files 1.110.2.12 +2 -2 src/sys/modules/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 7:33: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7E7C437B934; Thu, 27 Jul 2000 07:33:01 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA22241; Thu, 27 Jul 2000 07:33:01 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Message-Id: <200007271433.HAA22241@freefall.freebsd.org> From: Neil Blakey-Milner Date: Thu, 27 Jul 2000 07:33:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/biology Makefile ports/biology/sim4 Makefile ports/biology/sim4/files md5 ports/biology/sim4/patches patch-aa ports/biology/sim4/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nbm 2000/07/27 07:33:01 PDT Modified files: biology Makefile Added files: biology/sim4 Makefile biology/sim4/files md5 biology/sim4/patches patch-aa biology/sim4/pkg COMMENT DESCR PLIST Log: Add sim4, an implementation of the sim4 algorithm for aligning expressed DNA with genomic sequences PR: ports/20219 Submitted by: Johann Visagie Revision Changes Path 1.16 +2 -1 ports/biology/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 7:33:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CFE3D37BA63; Thu, 27 Jul 2000 07:33:04 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA22279; Thu, 27 Jul 2000 07:33:04 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Message-Id: <200007271433.HAA22279@freefall.freebsd.org> From: Neil Blakey-Milner Date: Thu, 27 Jul 2000 07:33:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nbm 2000/07/27 07:33:04 PDT Modified files: . modules Log: sim4 --> ports/biology/sim4 Revision Changes Path 1.1459 +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 Jul 27 7:44:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 44C2D37B94A; Thu, 27 Jul 2000 07:44:26 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA24036; Thu, 27 Jul 2000 07:44:26 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007271444.HAA24036@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 27 Jul 2000 07:44:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail Makefile ports/mail/pmail Makefile ports/mail/pmail/files md5 ports/mail/pmail/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/27 07:44:26 PDT Modified files: mail Makefile Added files: mail/pmail Makefile mail/pmail/files md5 mail/pmail/pkg COMMENT DESCR PLIST Log: Add pmail - a yet anther brick in our collection of buggy mailers (py-gnome based this time). Revision Changes Path 1.148 +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 Thu Jul 27 7:45: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C2A9437B94A; Thu, 27 Jul 2000 07:44:54 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA24107; Thu, 27 Jul 2000 07:44:54 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007271444.HAA24107@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 27 Jul 2000 07:44:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/27 07:44:54 PDT Modified files: . modules Log: pmail --> ports/mail/pmail Revision Changes Path 1.1460 +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 Jul 27 7:59:43 2000 Delivered-To: cvs-all@freebsd.org Received: from eeyore.local.dohd.org (d0030.dtk.chello.nl [213.46.0.30]) by hub.freebsd.org (Postfix) with ESMTP id 5BADF37B5C9; Thu, 27 Jul 2000 07:59:35 -0700 (PDT) (envelope-from freebsd@dohd.org) Received: by eeyore.local.dohd.org (Postfix+IPv6, from userid 1008) id B1F32BA9F; Thu, 27 Jul 2000 16:59:32 +0200 (MET DST) Date: Thu, 27 Jul 2000 16:59:32 +0200 From: Mark Huizer To: John Polstra Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/ldconfig elfhints.c ldconfig.8 ldconfig.c Message-ID: <20000727165932.A6878@dohd.cx> References: <200007260447.VAA44122@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200007260447.VAA44122@freefall.freebsd.org>; from jdp@FreeBSD.org on Tue, Jul 25, 2000 at 09:47:17PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Jul 25, 2000 at 09:47:17PM -0700, John Polstra wrote: > jdp 2000/07/25 21:47:17 PDT > > Modified files: > sbin/ldconfig elfhints.c ldconfig.8 ldconfig.c > Log: > If a directory is world-writable or is not owned by root, skip it > and emit a warning. This is a security measure since ldconfig > influences the shared libraries used by all programs. > > I think the check should be made even more stringent by also > ignoring group-writable directories. I will make that change soon > unless we encounter a good reason not to do it. > > Submitted by: Maxime Henrion group-writable is a bad thing I'd say. We have machines with a /usr/local and /usr/exp writable for groupmembers of local and exp. The people in local are trusted enough to install libs in /usr/local/lib. So it's group writable. Mark -- Nice testing in little China... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 8:32:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B4BA37B5AC; Thu, 27 Jul 2000 08:32:25 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA40560; Thu, 27 Jul 2000 08:32:25 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200007271532.IAA40560@freefall.freebsd.org> From: Kevin Lo Date: Thu, 27 Jul 2000 08:32:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/p5-NetAddr-IP Makefile ports/net/p5-NetAddr-IP/files md5 ports/net/p5-NetAddr-IP/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/07/27 08:32:24 PDT Modified files: net Makefile Added files: net/p5-NetAddr-IP Makefile net/p5-NetAddr-IP/files md5 net/p5-NetAddr-IP/pkg COMMENT DESCR PLIST Log: Initial import of p5-NetAddr-IP version 2.0 p5-NetAddr-IP is Perl module for working with IP addresses and blocks thereof PR: 19905 Submitted by: Christopher N. Harrell Revision Changes Path 1.385 +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 Thu Jul 27 8:32:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E89F737C147; Thu, 27 Jul 2000 08:32:30 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA40623; Thu, 27 Jul 2000 08:32:30 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200007271532.IAA40623@freefall.freebsd.org> From: Kevin Lo Date: Thu, 27 Jul 2000 08:32:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/07/27 08:32:30 PDT Modified files: . modules Log: p5-NetAddr-IP --> ports/net/p5-NetAddr-IP Revision Changes Path 1.1461 +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 Jul 27 9: 3:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AA9EE37B9F6; Thu, 27 Jul 2000 09:03:25 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA48484; Thu, 27 Jul 2000 09:03:25 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200007271603.JAA48484@freefall.freebsd.org> From: Kevin Lo Date: Thu, 27 Jul 2000 09:03:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/udmsearch Makefile ports/www/udmsearch/files md5 ports/www/udmsearch/patches patch-ab ports/www/udmsearch/pkg DESCR MESSAGE PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/07/27 09:03:25 PDT Modified files: www/udmsearch Makefile www/udmsearch/files md5 www/udmsearch/pkg DESCR MESSAGE PLIST Added files: www/udmsearch/patches patch-ab Log: Update to version 3.0.20 PR: 20215 Submitted by: MAINTAINER Revision Changes Path 1.8 +8 -11 ports/www/udmsearch/Makefile 1.6 +1 -1 ports/www/udmsearch/files/md5 1.3 +1 -4 ports/www/udmsearch/pkg/DESCR 1.3 +3 -24 ports/www/udmsearch/pkg/MESSAGE 1.6 +55 -53 ports/www/udmsearch/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 Jul 27 9:28:45 2000 Delivered-To: cvs-all@freebsd.org Received: from hotmail.com (oe37.law9.hotmail.com [64.4.8.94]) by hub.freebsd.org (Postfix) with SMTP id 25DA637C0B0 for ; Thu, 27 Jul 2000 09:28:38 -0700 (PDT) (envelope-from vinxs_@hotmail.com) Received: (qmail 19766 invoked by uid 65534); 27 Jul 2000 16:28:36 -0000 Message-ID: <20000727162836.19765.qmail@hotmail.com> X-Originating-IP: [194.109.60.172] From: "Vincent Bruijnes" To: , Subject: softupdates? Date: Thu, 27 Jul 2000 18:28:01 +0200 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Anyone knows, if the softupdates in the latest stable source have been updated? Cause there were empty files. Thanks, Vincent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 10:17:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 76B1937C107; Thu, 27 Jul 2000 10:17:29 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA75869; Thu, 27 Jul 2000 10:17:29 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Message-Id: <200007271717.KAA75869@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Thu, 27 Jul 2000 10:17:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/lbdb/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jedgar 2000/07/27 10:17:29 PDT Modified files: mail/lbdb/files md5 Log: Update MD5 for version 0.19.5 PR: 20222 Submitted by: ats@first.gmd.de Revision Changes Path 1.3 +1 -1 ports/mail/lbdb/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 Jul 27 10:21:11 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 79CF037C116; Thu, 27 Jul 2000 10:21:08 -0700 (PDT) (envelope-from marko@FreeBSD.org) Received: (from marko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA76583; Thu, 27 Jul 2000 10:21:08 -0700 (PDT) (envelope-from marko@FreeBSD.org) Message-Id: <200007271721.KAA76583@freefall.freebsd.org> From: Mark Ovens Date: Thu, 27 Jul 2000 10:21:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh ssh.1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marko 2000/07/27 10:21:08 PDT Modified files: crypto/openssh ssh.1 Log: Fixed a minor typo in the header. Pointed out by: asmodai Revision Changes Path 1.13 +1 -1 src/crypto/openssh/ssh.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 10:28:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 83BA637BD05; Thu, 27 Jul 2000 10:28:25 -0700 (PDT) (envelope-from marko@FreeBSD.org) Received: (from marko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA78633; Thu, 27 Jul 2000 10:28:25 -0700 (PDT) (envelope-from marko@FreeBSD.org) Message-Id: <200007271728.KAA78633@freefall.freebsd.org> From: Mark Ovens Date: Thu, 27 Jul 2000 10:28:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh ssh.1 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marko 2000/07/27 10:28:24 PDT Modified files: (Branch: RELENG_4) crypto/openssh ssh.1 Log: MFC rev 1.13 Revision Changes Path 1.4.2.3 +1 -1 src/crypto/openssh/ssh.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 10:58:34 2000 Delivered-To: cvs-all@freebsd.org Received: from wop21.wop.wtb.tue.nl (wop21.wop.wtb.tue.nl [131.155.56.216]) by hub.freebsd.org (Postfix) with ESMTP id 8E65737BC2B; Thu, 27 Jul 2000 10:58:26 -0700 (PDT) (envelope-from karelj@wop21.wop.wtb.tue.nl) Received: (from karelj@localhost) by wop21.wop.wtb.tue.nl (8.9.3/8.9.3) id TAA01753; Thu, 27 Jul 2000 19:58:20 +0200 (CEST) (envelope-from karelj) Date: Thu, 27 Jul 2000 19:58:00 +0200 From: "Karel J. Bosschaart" To: Vincent Bruijnes Cc: cvs-all@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG Subject: Re: softupdates? Message-ID: <20000727195800.A1726@wop21.wop.wtb.tue.nl> Reply-To: K.J.Bosschaart@tue.nl References: <20000727162836.19765.qmail@hotmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000727162836.19765.qmail@hotmail.com>; from vinxs_@hotmail.com on Thu, Jul 27, 2000 at 06:28:01PM +0200 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Jul 27, 2000 at 06:28:01PM +0200, Vincent Bruijnes wrote: > Anyone knows, if the softupdates in the latest stable source have been > updated? > Cause there were empty files. > Not really, but since the license changed, the softupdates do not require the symlinks anymore and now they are where you would have the symlinks before. Remove the links before CVSupping. I didn't do this and got errors while compiling softupdates ;-). Karel. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 11:18:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9428337BCB6; Thu, 27 Jul 2000 11:18:48 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA97727; Thu, 27 Jul 2000 11:18:48 -0700 (PDT) (envelope-from phk@FreeBSD.org) Message-Id: <200007271818.LAA97727@freefall.freebsd.org> From: Poul-Henning Kamp Date: Thu, 27 Jul 2000 11:18:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/miscfs/kernfs kernfs.h kernfs_vfsops.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phk 2000/07/27 11:18:48 PDT Modified files: sys/miscfs/kernfs kernfs.h kernfs_vfsops.c Log: Remove stale, unused and bogus root device hunting code. Revision Changes Path 1.14 +1 -2 src/sys/miscfs/kernfs/kernfs.h 1.36 +1 -25 src/sys/miscfs/kernfs/kernfs_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 Jul 27 11:31:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 456CF37BA92; Thu, 27 Jul 2000 11:31:37 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA99261; Thu, 27 Jul 2000 11:31:37 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200007271831.LAA99261@freefall.freebsd.org> From: Jim Mock Date: Thu, 27 Jul 2000 11:31:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc/xchat Makefile ports/irc/xchat/files md5 ports/irc/xchat/pkg PLIST PLIST.gnome X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/07/27 11:31:36 PDT Modified files: irc/xchat Makefile irc/xchat/files md5 irc/xchat/pkg PLIST PLIST.gnome Log: Update to version 1.5.6 Revision Changes Path 1.61 +2 -2 ports/irc/xchat/Makefile 1.39 +1 -1 ports/irc/xchat/files/md5 1.9 +1 -1 ports/irc/xchat/pkg/PLIST 1.6 +1 -1 ports/irc/xchat/pkg/PLIST.gnome To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 11:57:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B2F9A37B7B5; Thu, 27 Jul 2000 11:57:06 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA02195; Thu, 27 Jul 2000 11:57:06 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200007271857.LAA02195@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Thu, 27 Jul 2000 11:57:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases index.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/07/27 11:57:06 PDT Modified files: en/releases index.sgml Log: Whoops, forgot to note 4.1 here as well. Revision Changes Path 1.41 +13 -6 www/en/releases/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 12: 7:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0AE5537BB57; Thu, 27 Jul 2000 12:07:41 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA04899; Thu, 27 Jul 2000 12:07:41 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200007271907.MAA04899@freefall.freebsd.org> From: Jim Mock Date: Thu, 27 Jul 2000 12:07:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc/irssi Makefile ports/irc/irssi/files md5 ports/irc/irssi/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/07/27 12:07:40 PDT Modified files: irc/irssi Makefile irc/irssi/files md5 irc/irssi/pkg PLIST Log: Update to version 0.7.94. Revision Changes Path 1.36 +2 -2 ports/irc/irssi/Makefile 1.27 +1 -1 ports/irc/irssi/files/md5 1.11 +104 -0 ports/irc/irssi/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 Jul 27 12:13:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 660BC37B9F7; Thu, 27 Jul 2000 12:13:32 -0700 (PDT) (envelope-from markm@FreeBSD.org) Received: (from markm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA05315; Thu, 27 Jul 2000 12:13:32 -0700 (PDT) (envelope-from markm@FreeBSD.org) Message-Id: <200007271913.MAA05315@freefall.freebsd.org> From: Mark Murray Date: Thu, 27 Jul 2000 12:13:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man3 queue.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG markm 2000/07/27 12:13:32 PDT Modified files: share/man/man3 queue.3 Log: Fix minor typo. Revision Changes Path 1.19 +2 -2 src/share/man/man3/queue.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 12:17:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3AEED37B5A7; Thu, 27 Jul 2000 12:17:32 -0700 (PDT) (envelope-from ben@FreeBSD.org) Received: (from ben@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA05671; Thu, 27 Jul 2000 12:17:32 -0700 (PDT) (envelope-from ben@FreeBSD.org) Message-Id: <200007271917.MAA05671@freefall.freebsd.org> From: Ben Smithurst Date: Thu, 27 Jul 2000 12:17:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/share/sgml man-refs.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ben 2000/07/27 12:17:32 PDT Modified files: share/sgml man-refs.ent Log: Fix some entities added in rev 1.45. ("c" -> "c++", likewise for lex++, flex++ and g++) Revision Changes Path 1.47 +5 -5 doc/share/sgml/man-refs.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 12:21:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D15FF37B728; Thu, 27 Jul 2000 12:21:15 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA06010; Thu, 27 Jul 2000 12:21:15 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200007271921.MAA06010@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Thu, 27 Jul 2000 12:21:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh ssh.1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/07/27 12:21:15 PDT Modified files: crypto/openssh ssh.1 Log: Fix a weird typo, is -> are. The OpenSSH maintainer probably want to contribute this back to the real OpenSSH guys. Submitted by: Jon Perkin Revision Changes Path 1.14 +2 -2 src/crypto/openssh/ssh.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 13:31:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 033DD37BE94; Thu, 27 Jul 2000 13:31:37 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA17555; Thu, 27 Jul 2000 13:31:36 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200007272031.NAA17555@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 27 Jul 2000 13:31:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/syscons scterm-sc.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/07/27 13:31:36 PDT Modified files: (Branch: RELENG_4) sys/dev/syscons scterm-sc.c Log: MFC: reset fix and SGR 22,24,25,27 Revision Changes Path 1.4.2.7 +23 -2 src/sys/dev/syscons/scterm-sc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 13:41:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A861337B871; Thu, 27 Jul 2000 13:41:26 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA20067; Thu, 27 Jul 2000 13:41:26 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200007272041.NAA20067@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 27 Jul 2000 13:41:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/termcap termcap.src X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/07/27 13:41:26 PDT Modified files: (Branch: RELENG_4) share/termcap termcap.src Log: MFC: cons*: ue/se/rs/md fixes (needs updated kernel) dosansi: mh fix dtterm: no color Revision Changes Path 1.89.2.7 +8 -9 src/share/termcap/termcap.src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 13:43:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9FE6A37BA9A; Thu, 27 Jul 2000 13:43:30 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA20434; Thu, 27 Jul 2000 13:43:30 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200007272043.NAA20434@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 27 Jul 2000 13:43:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc termcap.small X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/07/27 13:43:30 PDT Modified files: (Branch: RELENG_4) etc termcap.small Log: MFC: sync with main termcap Revision Changes Path 1.16.2.3 +8 -8 src/etc/termcap.small To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 13:48:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F218B37B92E; Thu, 27 Jul 2000 13:48:33 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA21399; Thu, 27 Jul 2000 13:48:33 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200007272048.NAA21399@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 27 Jul 2000 13:48:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 screen.4 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/07/27 13:48:33 PDT Modified files: (Branch: RELENG_4) share/man/man4 screen.4 Log: MFC: describe SGR 22,24,25,27 and reset Revision Changes Path 1.14.2.7 +16 -10 src/share/man/man4/screen.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 13:49:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DA68137BAD9; Thu, 27 Jul 2000 13:49:25 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA21515; Thu, 27 Jul 2000 13:49:24 -0700 (PDT) (envelope-from imp@FreeBSD.org) Message-Id: <200007272049.NAA21515@freefall.freebsd.org> From: Warner Losh Date: Thu, 27 Jul 2000 13:49:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src UPDATING X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/07/27 13:49:24 PDT Modified files: . UPDATING Log: typos from asmodai, one important for device.hints Revision Changes Path 1.99 +5 -5 src/UPDATING To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 13:49:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 04D4D37C0B5; Thu, 27 Jul 2000 13:49:28 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA21541; Thu, 27 Jul 2000 13:49:27 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007272049.NAA21541@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 27 Jul 2000 13:49:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/dhclient - Imported sources X-FreeBSD-CVS-Branch: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/27 13:49:27 PDT src/sbin/dhclient - Imported sources Update of /home/ncvs/src/sbin/dhclient In directory freefall.freebsd.org:/c/tmp/cvs-serv21266 Log Message: Alternate script for dhclient to use in setting the received configuration on the host. PR: 15342 Submitted by: Patrick Bihan-Faou Status: Vendor Tag: MINDSTEP Release Tags: v19991207 N src/sbin/dhclient/dhclient-script.sh 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 Jul 27 13:54:42 2000 Delivered-To: cvs-all@freebsd.org Received: from genius.systems.pavilion.net (genesis.tao.org.uk [194.242.131.254]) by hub.freebsd.org (Postfix) with ESMTP id A31DB37C0D2; Thu, 27 Jul 2000 13:54:36 -0700 (PDT) (envelope-from joe@pavilion.net) Received: by genius.systems.pavilion.net (Postfix, from userid 100) id E256A9B03; Thu, 27 Jul 2000 21:54:42 +0100 (BST) Date: Thu, 27 Jul 2000 21:54:42 +0100 From: Josef Karthauser To: Warner Losh Cc: "Andrey A. Chernov" , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile src/include Makefile src/release Makefile src/release/picobsd/build Makefile.mfs src/release/picobsd/custom Makefile.mfs src/release/picobsd/dial Makefile.mfs src/release/picobsd/install Makefile.mfs Message-ID: <20000727215442.E10113@pavilion.net> References: <20000723174125.A38154@freebsd.org> <20000723194837.M47967@argon.gryphonsoft.com> <200007231633.JAA33796@freefall.freebsd.org> <20000723143740.A70582@freebsd.org> <20000723185708.I47967@argon.gryphonsoft.com> <20000723164637.A26164@freebsd.org> <20000723194837.M47967@argon.gryphonsoft.com> <200007240011.SAA75502@harmony.village.org> <20000723174125.A38154@freebsd.org> <200007240339.VAA76413@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <200007240339.VAA76413@harmony.village.org>; from imp@village.org on Sun, Jul 23, 2000 at 09:39:45PM -0600 X-NCC-RegID: uk.pavilion Organisation: Pavilion Internet plc, Lees House, 21-23 Dyke Road, Brighton, England Phone: +44-845-333-5000 Fax: +44-845-333-5001 Mobile: +44-403-596893 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 23, 2000 at 09:39:45PM -0600, Warner Losh wrote: > in time, which I outlined before and are not your fault (I don't > think, but I've not checked to see who did the strtofflags stuff). That was me. (remember getflags/setflags? they became strtofflags and fflagstostr). Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 13:58:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E91837C0CB; Thu, 27 Jul 2000 13:58:11 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA22790; Thu, 27 Jul 2000 13:58:11 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007272058.NAA22790@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 27 Jul 2000 13:58:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/isc-dhcp/client/scripts freebsd X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/27 13:58:10 PDT Modified files: (Branch: RELENG_4) contrib/isc-dhcp/client/scripts freebsd Log: MFC: rev 1.13 (arp(8) invocation fix) Revision Changes Path 1.9.2.2 +4 -4 src/contrib/isc-dhcp/client/scripts/freebsd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 14: 4:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BC52E37BAB2; Thu, 27 Jul 2000 14:04:48 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA23790; Thu, 27 Jul 2000 14:04:48 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200007272104.OAA23790@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 27 Jul 2000 14:04:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/termcap termcap.src X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/07/27 14:04:48 PDT Modified files: share/termcap termcap.src Log: Merge from stable: dtterm color fix Revision Changes Path 1.98 +2 -1 src/share/termcap/termcap.src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 14: 6:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 94EF937BAB2; Thu, 27 Jul 2000 14:06:31 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA25437; Thu, 27 Jul 2000 14:06:31 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200007272106.OAA25437@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 27 Jul 2000 14:06:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/termcap termcap.src X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/07/27 14:06:31 PDT Modified files: (Branch: RELENG_4) share/termcap termcap.src Log: Restore dtterm color fix which was absent in -current and lost in MFC Revision Changes Path 1.89.2.8 +2 -1 src/share/termcap/termcap.src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 14:40:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CD01537C0D0; Thu, 27 Jul 2000 14:40:18 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id OAA29129; Thu, 27 Jul 2000 14:40:18 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Thu, 27 Jul 2000 14:40:18 -0700 (PDT) From: Kris Kennaway To: Nick Sayer Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc MAKEDEV src/share/man/man4 tap.4 Makefile src/sys/conf files src/sys/modules Makefile src/sys/modules/if_tap Makefile src/sys/net if_tap.c if_tap.h if_tapvar.h In-Reply-To: <200007271357.GAA14016@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 27 Jul 2000, Nick Sayer wrote: > Log: > MFC: tap driver. Virtual Ethernet device, mostly used in bridged > configurations. Used by vmware and vtun ports, among other things. Given that there have been unaddressed questions raised about this driver in -current, this should not have been merged. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 14:48:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 50AD837C11B; Thu, 27 Jul 2000 14:48:39 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA30258; Thu, 27 Jul 2000 14:48:39 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007272148.OAA30258@freefall.freebsd.org> From: SADA Kenji Date: Thu, 27 Jul 2000 14:48:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/linux-netscape47-communicator/pkg PLIST ports/www/netscape4-communicator/files md5 ports/www/netscape47-communicator Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/27 14:48:39 PDT Modified files: www/linux-netscape47-communicator/pkg PLIST www/netscape4-communicator/files md5 www/netscape47-communicator Makefile Log: Upgrade to 4.74. Master-site list is increased and applied changes to hold it common between other netscape47 ports. Last committion 1.24 was a mistake, I've updated only l-n47-c/Makefile for this change. PR: ports/20162 Submitted by: maintainer Revision Changes Path 1.11 +3 -1 ports/www/linux-netscape47-communicator/pkg/PLIST 1.41 +2 -3 ports/www/netscape4-communicator/files/md5 1.67 +24 -15 ports/www/netscape47-communicator/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 14:49:47 2000 Delivered-To: cvs-all@freebsd.org Received: from guardian.sftw.com (guardian.sftw.com [209.157.37.25]) by hub.freebsd.org (Postfix) with ESMTP id E327837C11B; Thu, 27 Jul 2000 14:49:37 -0700 (PDT) (envelope-from nsayer@sftw.com) Received: from yoda.sftw.com (yoda.sftw.com [209.157.37.211]) by guardian.sftw.com (8.9.3/8.9.3) with ESMTP id OAA46202; Thu, 27 Jul 2000 14:49:37 -0700 (PDT) (envelope-from nsayer@sftw.com) Received: from sftw.com (localhost [127.0.0.1]) by yoda.sftw.com (8.9.3/8.9.3) with ESMTP id OAA83310; Thu, 27 Jul 2000 14:49:37 -0700 (PDT) (envelope-from nsayer@sftw.com) Message-ID: <3980AE70.A2B1BD21@sftw.com> Date: Thu, 27 Jul 2000 14:49:37 -0700 From: Nick Sayer Reply-To: Nick Sayer X-Mailer: Mozilla 4.72 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: cvs-committers@FreeBSD.org Cc: Kris Kennaway , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc MAKEDEV src/share/man/man4 tap.4 Makefile src/sys/conf files src/sys/modules Makefile src/sys/modules/if_tap Makefile src/sys/net if_tap.c if_tap.h if_tapvar.h References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Kris Kennaway wrote: > On Thu, 27 Jul 2000, Nick Sayer wrote: > > > Log: > > MFC: tap driver. Virtual Ethernet device, mostly used in bridged > > configurations. Used by vmware and vtun ports, among other things. > > Given that there have been unaddressed questions raised about this driver > in -current, this should not have been merged. After extensive searching on my part, I could find no such questions. There were two postings concerning the forgotten module makefile, but that got fixed. If I (or Maxsim or Vladimir) have missed any questions or concerns on anybody's part, I appologise. Please let me know. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 14:55:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 30CF237C10E; Thu, 27 Jul 2000 14:55:49 -0700 (PDT) (envelope-from archie@FreeBSD.org) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA31342; Thu, 27 Jul 2000 14:55:49 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200007272155.OAA31342@freefall.freebsd.org> From: Archie Cobbs Date: Thu, 27 Jul 2000 14:55:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/nghook main.c nghook.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/07/27 14:55:48 PDT Modified files: usr.sbin/nghook main.c nghook.8 Log: Add '-n' flag: don't attempt to read any data from standard input. Revision Changes Path 1.6 +13 -4 src/usr.sbin/nghook/main.c 1.5 +15 -5 src/usr.sbin/nghook/nghook.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 14:59:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AEF5237C0FE; Thu, 27 Jul 2000 14:59:08 -0700 (PDT) (envelope-from archie@FreeBSD.org) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA31677; Thu, 27 Jul 2000 14:59:08 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200007272159.OAA31677@freefall.freebsd.org> From: Archie Cobbs Date: Thu, 27 Jul 2000 14:59:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netgraph ng_ether.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/07/27 14:59:08 PDT Modified files: (Branch: RELENG_4) sys/netgraph ng_ether.c Log: MFC: (rev. 1.5): remove node's name reference when the interface is detached. Revision Changes Path 1.2.2.4 +2 -1 src/sys/netgraph/ng_ether.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 15: 5:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BB6A837B766; Thu, 27 Jul 2000 15:05:36 -0700 (PDT) (envelope-from archie@FreeBSD.org) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA33038; Thu, 27 Jul 2000 15:05:36 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200007272205.PAA33038@freefall.freebsd.org> From: Archie Cobbs Date: Thu, 27 Jul 2000 15:05:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ngctl main.c msg.c ngctl.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/07/27 15:05:36 PDT Modified files: (Branch: RELENG_4) usr.sbin/ngctl main.c msg.c ngctl.h Log: MFC: check for and display any synchronous reply from command line message Revision Changes Path 1.4.2.1 +6 -45 src/usr.sbin/ngctl/main.c 1.1.4.1 +63 -5 src/usr.sbin/ngctl/msg.c 1.6.2.1 +5 -1 src/usr.sbin/ngctl/ngctl.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 15:24:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E41837C13A; Thu, 27 Jul 2000 15:24:44 -0700 (PDT) (envelope-from jlemon@FreeBSD.org) Received: (from jlemon@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA35322; Thu, 27 Jul 2000 15:24:44 -0700 (PDT) (envelope-from jlemon@FreeBSD.org) Message-Id: <200007272224.PAA35322@freefall.freebsd.org> From: Jonathan Lemon Date: Thu, 27 Jul 2000 15:24:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ida ida.c ida_disk.c ida_eisa.c ida_pci.c idareg.h idavar.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jlemon 2000/07/27 15:24:44 PDT Modified files: sys/dev/ida ida.c ida_disk.c ida_eisa.c ida_pci.c idareg.h idavar.h Log: The DEC version of the Smart controller has its configuration information stored at a different location in the PCI space, so adjust accordingly. Also, when using more than two smart controllers in one machine, the disks were assigned the wrong drive number; fix this as well. Revision Changes Path 1.14 +15 -8 src/sys/dev/ida/ida.c 1.20 +5 -3 src/sys/dev/ida/ida_disk.c 1.5 +3 -2 src/sys/dev/ida/ida_eisa.c 1.14 +9 -5 src/sys/dev/ida/ida_pci.c 1.5 +48 -21 src/sys/dev/ida/idareg.h 1.8 +5 -3 src/sys/dev/ida/idavar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 15:27:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 600F137BB48; Thu, 27 Jul 2000 15:27:40 -0700 (PDT) (envelope-from jlemon@FreeBSD.org) Received: (from jlemon@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA35625; Thu, 27 Jul 2000 15:27:40 -0700 (PDT) (envelope-from jlemon@FreeBSD.org) Message-Id: <200007272227.PAA35625@freefall.freebsd.org> From: Jonathan Lemon Date: Thu, 27 Jul 2000 15:27:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ida ida.c ida_disk.c ida_eisa.c ida_pci.c idareg.h idavar.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jlemon 2000/07/27 15:27:40 PDT Modified files: (Branch: RELENG_4) sys/dev/ida ida.c ida_disk.c ida_eisa.c ida_pci.c idareg.h idavar.h Log: MFC: support for DEC version of controller + multiple controller cards. Revision Changes Path 1.7.2.2 +15 -8 src/sys/dev/ida/ida.c 1.12.2.3 +5 -3 src/sys/dev/ida/ida_disk.c 1.1.2.2 +3 -2 src/sys/dev/ida/ida_eisa.c 1.7.2.3 +9 -5 src/sys/dev/ida/ida_pci.c 1.3.2.2 +48 -21 src/sys/dev/ida/idareg.h 1.3.2.2 +5 -3 src/sys/dev/ida/idavar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 15:53:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0FA1137C153; Thu, 27 Jul 2000 15:53:42 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA38046; Thu, 27 Jul 2000 15:53:42 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007272253.PAA38046@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 27 Jul 2000 15:53:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc sysctl.conf X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/27 15:53:42 PDT Added files: etc sysctl.conf Log: Add this empty version of this file to make it easier for pre-4.0 users to find. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 15:55:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B196337C129; Thu, 27 Jul 2000 15:55:44 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA38263; Thu, 27 Jul 2000 15:55:44 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007272255.PAA38263@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 27 Jul 2000 15:55:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 sysctl.conf.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/27 15:55:44 PDT Modified files: share/man/man5 sysctl.conf.5 Log: Add HISTORY. Revision Changes Path 1.4 +6 -1 src/share/man/man5/sysctl.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 15:57:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F21D37C11D; Thu, 27 Jul 2000 15:57:46 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA38544; Thu, 27 Jul 2000 15:57:46 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007272257.PAA38544@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 27 Jul 2000 15:57:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/sysctl sysctl.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/27 15:57:46 PDT Modified files: sbin/sysctl sysctl.8 Log: Add reference to sysctl.conf. Revision Changes Path 1.26 +2 -1 src/sbin/sysctl/sysctl.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 15:59: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 64ABA37C127; Thu, 27 Jul 2000 15:59:01 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA38706; Thu, 27 Jul 2000 15:59:01 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007272259.PAA38706@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 27 Jul 2000 15:59:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/sysctl sysctl.8 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/27 15:59:01 PDT Modified files: (Branch: RELENG_4) sbin/sysctl sysctl.8 Log: MFC: refer to sysctl.conf Revision Changes Path 1.23.2.2 +2 -1 src/sbin/sysctl/sysctl.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 15:59:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2011D37C119; Thu, 27 Jul 2000 15:59:36 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA38869; Thu, 27 Jul 2000 15:59:36 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007272259.PAA38869@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 27 Jul 2000 15:59:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc sysctl.conf X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/27 15:59:36 PDT Added files: (Branch: RELENG_4) etc sysctl.conf Log: MFC: add this empty file To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 16: 0:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E5BF837C127; Thu, 27 Jul 2000 16:00:09 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA38955; Thu, 27 Jul 2000 16:00:09 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007272300.QAA38955@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 27 Jul 2000 16:00:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 sysctl.conf.5 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/27 16:00:09 PDT Modified files: (Branch: RELENG_4) share/man/man5 sysctl.conf.5 Log: MFC: add HISTORY Revision Changes Path 1.3.4.1 +6 -1 src/share/man/man5/sysctl.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 16: 6:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E33537C15C; Thu, 27 Jul 2000 16:06:16 -0700 (PDT) (envelope-from jlemon@FreeBSD.org) Received: (from jlemon@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA41002; Thu, 27 Jul 2000 16:06:16 -0700 (PDT) (envelope-from jlemon@FreeBSD.org) Message-Id: <200007272306.QAA41002@freefall.freebsd.org> From: Jonathan Lemon Date: Thu, 27 Jul 2000 16:06:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_event.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jlemon 2000/07/27 16:06:15 PDT Modified files: sys/kern kern_event.c Log: Have kevent() automatically restart if interrupted by a signal. If this is not desired, then the user can register an EV_SIGNAL filter to explicitly catch a signal event. Change requested by: jayanth, ps, peter "Why is kevent non-restartable after a signal?" Revision Changes Path 1.12 +3 -6 src/sys/kern/kern_event.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 16:18: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E12937C148; Thu, 27 Jul 2000 16:17:53 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Received: (from gibbs@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA42523; Thu, 27 Jul 2000 16:17:53 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Message-Id: <200007272317.QAA42523@freefall.freebsd.org> From: "Justin T. Gibbs" Date: Thu, 27 Jul 2000 16:17:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/aic7xxx ahc_pci.c aic7xxx.h aic7xxx.reg aic7xxx.seq X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG gibbs 2000/07/27 16:17:53 PDT Modified files: sys/dev/aic7xxx ahc_pci.c aic7xxx.h aic7xxx.reg aic7xxx.seq Log: ahc_pci.c: Disable "cache line streaming" for aic7890/91 Rev A chips. I have never seen these chips fail using this feature, but some of Adaptec's regression tests have. Explicitly set "cache line streaming" to on for aic7896/97 chips. This was happening before, but this documents the fact that these chips will not function correctly without CACHETHEEN set. aic7xxx.h: Add new bug types. Fix a typo in a comment. aic7xxx.reg: Add a definition for the SHVALID bit in SSTAT3 for Ultra2/3 chips. This bit inicates whether the bottom most (current) element in the S/G fifo has exhausted its data count. aic7xxx.seq: Be more careful in how we turn off the secondary DMA channel. Being less careful may hang the PCI bus arbitor that negotiates between the two DMA engines. Remove an unecessary and incorrect flag set operation in the overrun case. On Ultra2/3 controllers, clear the dma FIFO before starting to handle an overrun. We don't want any residual bytes from the beginning of the overrun to cause the code that shuts down the DMA engine from hanging because the FIFO is not (and never will be) empty. If the data fifo is empty by the time we notice that a read transaction has completed, there is no need to hit the flush bit on aic7890/91 hardware that will not perform an auto-flush. Skip some cycles by short circuiting the manual flush code in this case. When transitioning out of data phase, make sure that we have the next S/G element loaded for the following reconnect if there is more work to do. The code would do this in most cases before, but there was a small window where the current S/G element could be exhausted before our fetch of the next S/G element completed. Since the S/G fetch is already initiated at this point, it makes sense to just wait for the segment to arrive instead of incuring even more latency by canceling the fetch and initiating it later. Fast path the end of data phase handling for the last S/G segment. In the general case, we might have worked ahead a bit by stuffing the S/G FIFO with additional segments. If we stop before using them all, we need to fixup our location in the S/G stream. Since we can't work past the last S/G segment, no fixups are ever required if we stop somewhere in that final segment. Fix a little buglet in the target mode dma bug handler. We were employing the workaround in all cases instead of only for the chips that require it. Fix the cause of SCB timeouts and possible "lost data" during read operations on the aic7890. When sending a data on any Ultra2/3 controller, the final segment must be marked as such so the FIFO will be flushed and cleaned up correctly when the transfer is ended. We failed to do this for the CDB transfer and so, if the target immediately transfered from command to data phase without an intervening disconnection, the first segment transferred would be any residual bytes from the cdb transfer. The Ultra160 controllers for some reason were not affected by this problem. Many Thanks to Tor Egge for bringing the aic7890 problem to my attention, providing analysis, as well as a mechanism to reproduce the problem. Revision Changes Path 1.33 +18 -2 src/sys/dev/aic7xxx/ahc_pci.c 1.22 +13 -3 src/sys/dev/aic7xxx/aic7xxx.h 1.23 +2 -1 src/sys/dev/aic7xxx/aic7xxx.reg 1.98 +41 -13 src/sys/dev/aic7xxx/aic7xxx.seq To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 16:29:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 860C037B5D1; Thu, 27 Jul 2000 16:29:23 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA44231; Thu, 27 Jul 2000 16:29:23 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200007272329.QAA44231@freefall.freebsd.org> From: John Baldwin Date: Thu, 27 Jul 2000 16:29:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts/i386 RELNOTES.TXT X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/07/27 16:29:23 PDT Modified files: release/texts/i386 RELNOTES.TXT Log: Add in some more new features for the release notes. PR: docs/20065 Submitted by: Bruce A. Mah Revision Changes Path 1.89 +20 -0 src/release/texts/i386/RELNOTES.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 16:58:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A08137B5E5; Thu, 27 Jul 2000 16:58:36 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA47769; Thu, 27 Jul 2000 16:58:36 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200007272358.QAA47769@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 27 Jul 2000 16:58:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libedit read.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/07/27 16:58:35 PDT Modified files: lib/libedit read.c Log: Move terminal descriptor flush before stty to eliminate potential problems whith characters conversion changed like \n -> \r\n and so on. Revision Changes Path 1.8 +2 -2 src/lib/libedit/read.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 17: 7:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E24A737C173; Thu, 27 Jul 2000 17:07:40 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA50369; Thu, 27 Jul 2000 17:07:40 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200007280007.RAA50369@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 27 Jul 2000 17:07:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libedit tty.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/07/27 17:07:40 PDT Modified files: lib/libedit tty.c Log: Fully preserve original tty settings outside of line edition mode. Old variant preserve them only partially, so tty state becomes different after el_* functions used. PR: 20138 Revision Changes Path 1.5 +8 -44 src/lib/libedit/tty.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 17:34: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 03D9B37C16D; Thu, 27 Jul 2000 17:33:54 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA53637; Thu, 27 Jul 2000 17:33:53 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007280033.RAA53637@freefall.freebsd.org> From: SADA Kenji Date: Thu, 27 Jul 2000 17:33:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/27 17:33:53 PDT Modified files: . modules Log: sdts++ --> ports/devel/sdts++ Revision Changes Path 1.1462 +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 Jul 27 17:35:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C9D937C2FE; Thu, 27 Jul 2000 17:35:24 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA53758; Thu, 27 Jul 2000 17:35:24 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007280035.RAA53758@freefall.freebsd.org> From: SADA Kenji Date: Thu, 27 Jul 2000 17:35:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/sdts++ - Imported sources X-FreeBSD-CVS-Branch: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/27 17:35:24 PDT ports/devel/sdts++ - Imported sources Update of /home/ncvs/ports/devel/sdts++ In directory freefall.freebsd.org:/d/home/sada/work/sdts++ Log Message: New port: sdts++ - C++ library for SDTS related development. PR: ports/16794 Submitted by: Erik H. Bakke Status: Vendor Tag: ERIK Release Tags: v1_0_4_1 N ports/devel/sdts++/Makefile N ports/devel/sdts++/pkg/COMMENT N ports/devel/sdts++/pkg/DESCR N ports/devel/sdts++/pkg/PLIST N ports/devel/sdts++/files/md5 N ports/devel/sdts++/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 Jul 27 17:37:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3D8F437C196; Thu, 27 Jul 2000 17:37:04 -0700 (PDT) (envelope-from ben@FreeBSD.org) Received: (from ben@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA53970; Thu, 27 Jul 2000 17:37:04 -0700 (PDT) (envelope-from ben@FreeBSD.org) Message-Id: <200007280037.RAA53970@freefall.freebsd.org> From: Ben Smithurst Date: Thu, 27 Jul 2000 17:37:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/faq book.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ben 2000/07/27 17:37:04 PDT Modified files: en_US.ISO_8859-1/books/faq book.sgml Log: update the "win95 killed my boot manager" question to mention the boot0cfg program. Also mention win98 as well as win95. PR: 20226 Submitted by: John Reynolds Revision Changes Path 1.81 +24 -7 doc/en_US.ISO_8859-1/books/faq/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 17:38: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B7A8437C1E8; Thu, 27 Jul 2000 17:38:04 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA54079; Thu, 27 Jul 2000 17:38:04 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007280038.RAA54079@freefall.freebsd.org> From: SADA Kenji Date: Thu, 27 Jul 2000 17:38:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/27 17:38:04 PDT Modified files: devel Makefile Log: Activate sdts++. PR: ports/16794 Submitted by: Erik H. Bakke Revision Changes Path 1.318 +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 Jul 27 17:40: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0208E37C2B7; Thu, 27 Jul 2000 17:39:57 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA54259; Thu, 27 Jul 2000 17:39:57 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200007280039.RAA54259@freefall.freebsd.org> From: Kevin Lo Date: Thu, 27 Jul 2000 17:39:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/xlines/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/07/27 17:39:56 PDT Modified files: games/xlines/files md5 Log: Update checksum PR: 20218 Submitted by: Andreas Schulz Revision Changes Path 1.5 +1 -1 ports/games/xlines/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 Jul 27 17:43: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BD04837C19F; Thu, 27 Jul 2000 17:42:54 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA54546; Thu, 27 Jul 2000 17:42:54 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200007280042.RAA54546@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 27 Jul 2000 17:42:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libedit term.c term.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/07/27 17:42:54 PDT Modified files: lib/libedit term.c term.h Log: Teach library about Home/End keys Revision Changes Path 1.12 +25 -4 src/lib/libedit/term.c 1.4 +5 -1 src/lib/libedit/term.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 18:19:21 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5BF2837B5CA; Thu, 27 Jul 2000 18:19:18 -0700 (PDT) (envelope-from ben@FreeBSD.org) Received: (from ben@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA61272; Thu, 27 Jul 2000 18:19:18 -0700 (PDT) (envelope-from ben@FreeBSD.org) Message-Id: <200007280119.SAA61272@freefall.freebsd.org> From: Ben Smithurst Date: Thu, 27 Jul 2000 18:19:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/faq book.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ben 2000/07/27 18:19:18 PDT Modified files: en_US.ISO_8859-1/books/faq book.sgml Log: Use 'fdisk' instead of 'boot0cfg' in the last update, since boot0cfg isn't on the fixit floppy. Spotted by: jhb Pointy hat to: ben Revision Changes Path 1.82 +2 -3 doc/en_US.ISO_8859-1/books/faq/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 18:54:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8CB1D37C195; Thu, 27 Jul 2000 18:54:22 -0700 (PDT) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA66976; Thu, 27 Jul 2000 18:54:22 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200007280154.SAA66976@freefall.freebsd.org> From: Brian Feldman Date: Thu, 27 Jul 2000 18:54:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/groff/tmac doc-common X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/07/27 18:54:22 PDT Modified files: contrib/groff/tmac doc-common Log: s/Diggest/Digest/ Revision Changes Path 1.30 +2 -2 src/contrib/groff/tmac/doc-common To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 19:51:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2161A37B683; Thu, 27 Jul 2000 19:51:44 -0700 (PDT) (envelope-from jwd@FreeBSD.org) Received: (from jwd@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA76929; Thu, 27 Jul 2000 19:51:44 -0700 (PDT) (envelope-from jwd@FreeBSD.org) Message-Id: <200007280251.TAA76929@freefall.freebsd.org> From: "John W. De Boskey" Date: Thu, 27 Jul 2000 19:51:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/date date.1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jwd 2000/07/27 19:51:44 PDT Modified files: bin/date date.1 Log: Try to clean the manpage up according to the mail from Sheldon in committers (Message-Id: <72836.964344168@axl.ops.uunet.co.za>). Also cleaned up a .Pq macro which was causing problems previous to the original update I made. Reviewed by: sheldonh Approved by: jkh Revision Changes Path 1.46 +7 -6 src/bin/date/date.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 20:48:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B6C2937B597; Thu, 27 Jul 2000 20:48:46 -0700 (PDT) (envelope-from yokota@FreeBSD.org) Received: (from yokota@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA86958; Thu, 27 Jul 2000 20:48:47 -0700 (PDT) (envelope-from yokota@FreeBSD.org) Message-Id: <200007280348.UAA86958@freefall.freebsd.org> From: Kazutaka YOKOTA Date: Thu, 27 Jul 2000 20:48:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/isa psm.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG yokota 2000/07/27 20:48:46 PDT Modified files: sys/isa psm.c Log: Fix GENERIC_MOUSE_ENTRY. Submitted by: Graham Wheeler and gibbs Revision Changes Path 1.28 +2 -2 src/sys/isa/psm.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 21: 3:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 686BB37B525; Thu, 27 Jul 2000 21:03:49 -0700 (PDT) (envelope-from alfred@FreeBSD.org) Received: (from alfred@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA89584; Thu, 27 Jul 2000 21:03:49 -0700 (PDT) (envelope-from alfred@FreeBSD.org) Message-Id: <200007280403.VAA89584@freefall.freebsd.org> From: Alfred Perlstein Date: Thu, 27 Jul 2000 21:03:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys getsockopt.2 src/share/man/man9 accept_filter.9 Makefile src/sys/conf files options src/sys/i386/conf LINT src/sys/kern kern_accf.c uipc_socket.c uipc_socket2.c src/sys/modules Makefile src/sys/modules/accf_data ... X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alfred 2000/07/27 21:03:49 PDT Modified files: (Branch: RELENG_4) lib/libc/sys getsockopt.2 share/man/man9 Makefile sys/conf files options sys/i386/conf LINT sys/kern uipc_socket.c uipc_socket2.c sys/modules Makefile sys/sys socket.h socketvar.h Added files: (Branch: RELENG_4) share/man/man9 accept_filter.9 sys/kern kern_accf.c sys/modules/accf_data Makefile sys/modules/accf_http Makefile sys/netinet accf_data.c accf_http.c Log: MFC: accept_filters Revision Changes Path 1.12.2.3 +36 -3 src/lib/libc/sys/getsockopt.2 1.60.2.5 +2 -2 src/share/man/man9/Makefile 1.340.2.19 +4 -1 src/sys/conf/files 1.191.2.12 +3 -1 src/sys/conf/options 1.749.2.18 +5 -1 src/sys/i386/conf/Attic/LINT 1.68.2.4 +110 -1 src/sys/kern/uipc_socket.c 1.55.2.2 +12 -1 src/sys/kern/uipc_socket2.c 1.110.2.13 +3 -2 src/sys/modules/Makefile 1.39.2.1 +7 -1 src/sys/sys/socket.h 1.46.2.2 +28 -1 src/sys/sys/socketvar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 21: 5:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 346DA37B74C; Thu, 27 Jul 2000 21:05:05 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Received: (from jdp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA89911; Thu, 27 Jul 2000 21:05:05 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Message-Id: <200007280405.VAA89911@freefall.freebsd.org> From: John Polstra Date: Thu, 27 Jul 2000 21:05:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/netstat if.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jdp 2000/07/27 21:05:05 PDT Modified files: usr.bin/netstat if.c Log: Fix bug: "netstat -si" prints interface information, but the header line is missing. This apparently was broken in revision 1.31 of "if.c". Submitted by: Maxime Henrion Revision Changes Path 1.33 +2 -2 src/usr.bin/netstat/if.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 23:20:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B09E37B76E; Thu, 27 Jul 2000 23:20:12 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA21002; Thu, 27 Jul 2000 23:20:11 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200007280620.XAA21002@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Thu, 27 Jul 2000 23:20:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net if_types.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/07/27 23:20:11 PDT Modified files: sys/net if_types.h Log: Fix if_types.h as per the IANA assignments with regard to IPv6. gif/faith/stf moved to 0xfN entries, since their previous location is allocated to some other interfaces. Also add the IFT_PVC, which is the ATM PVC subinterface from ALTQ. This also syncs us up a bit to NetBSD again. This change requires a total recompilation of all kmem users, as itojun told me. Next in line is synching to the IANI SMI list. Approved by: itojun Revision Changes Path 1.10 +9 -5 src/sys/net/if_types.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jul 27 23:50:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1BDD437B566; Thu, 27 Jul 2000 23:50:26 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA24850; Thu, 27 Jul 2000 23:50:26 -0700 (PDT) (envelope-from imp@FreeBSD.org) Message-Id: <200007280650.XAA24850@freefall.freebsd.org> From: Warner Losh Date: Thu, 27 Jul 2000 23:50:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/make main.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/07/27 23:50:26 PDT Modified files: usr.bin/make main.c Log: Do include for getopt interface. Don't extern it. Revision Changes Path 1.39 +2 -3 src/usr.bin/make/main.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 0:13:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 77D6937B818; Fri, 28 Jul 2000 00:13:27 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA30888; Fri, 28 Jul 2000 00:13:26 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200007280713.AAA30888@freefall.freebsd.org> From: Kris Kennaway Date: Fri, 28 Jul 2000 00:13:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games Makefile ports/games/mindguard Makefile ports/games/mindguard/files md5 ports/games/mindguard/patches patch-aa patch-ab ports/games/mindguard/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/07/28 00:13:26 PDT Modified files: games Makefile Added files: games/mindguard Makefile games/mindguard/files md5 games/mindguard/patches patch-aa patch-ab games/mindguard/pkg COMMENT DESCR PLIST Log: MindGuard protects your mind by jamming and/or scrambling psychotronic mind-control signals and removing harmful engrammic pollutants from your brain. It also has the ability to scan for and decipher into English specific signals so you can see exactly Who wants to control you and what They are trying to make you think. With MindGuard, you can rest assured that your most valuable possession - your mind - is safe from the nefarious tinkering of evil-doers. This port is cleverly hidden in the games category rather than sysutils where it belongs, so the forces of evil are less likely to find it. Revision Changes Path 1.288 +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 Fri Jul 28 0:16:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1C0B537B7F8; Fri, 28 Jul 2000 00:16:55 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA31609; Fri, 28 Jul 2000 00:16:54 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200007280716.AAA31609@freefall.freebsd.org> From: Kris Kennaway Date: Fri, 28 Jul 2000 00:16:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/07/28 00:16:53 PDT Modified files: . modules Log: Put on my aluminium foil deflector beanie and energize the mindguard port. Revision Changes Path 1.1463 +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 Fri Jul 28 0:27:41 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 66C7737B7F8; Fri, 28 Jul 2000 00:27:37 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA33743; Fri, 28 Jul 2000 00:27:36 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007280727.AAA33743@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 28 Jul 2000 00:27:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/squid23 Makefile ports/www/squid23/files md5 ports/www/squid23/patches patch-ak patch-al X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/28 00:27:36 PDT Modified files: www/squid23 Makefile www/squid23/files md5 www/squid23/patches patch-ak patch-al Log: Update to the latest 2.3.STABLE4 version plus official patches. PR: 20211 Submitted by: Naoki IDO Reviewed by: adrian Revision Changes Path 1.72 +7 -4 ports/www/squid23/Makefile 1.55 +3 -2 ports/www/squid23/files/md5 1.3 +17 -18 ports/www/squid23/patches/patch-ak 1.4 +7 -6 ports/www/squid23/patches/patch-al To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 0:58: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6690937B562; Fri, 28 Jul 2000 00:58:03 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA40319; Fri, 28 Jul 2000 00:58:03 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200007280758.AAA40319@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Fri, 28 Jul 2000 00:58:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases index.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/07/28 00:58:02 PDT Modified files: en/releases index.sgml Log: Fix date - 4.1 was released in July. Submitted by: Christoph Haas Revision Changes Path 1.42 +3 -3 www/en/releases/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 1:46:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5853437B992; Fri, 28 Jul 2000 01:46:08 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA47242; Fri, 28 Jul 2000 01:46:08 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007280846.BAA47242@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 28 Jul 2000 01:46:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/isc-dhcp/client/scripts freebsd X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/28 01:46:08 PDT Modified files: contrib/isc-dhcp/client/scripts freebsd Log: The result of 'set' gives parameters starting with $1, not $0. Submitted by: green Revision Changes Path 1.15 +2 -2 src/contrib/isc-dhcp/client/scripts/freebsd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 1:54: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 942EF37BE19; Fri, 28 Jul 2000 01:53:48 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA48640; Fri, 28 Jul 2000 01:53:48 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007280853.BAA48640@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 28 Jul 2000 01:53:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/isc-dhcp/client/scripts freebsd X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/28 01:53:48 PDT Modified files: contrib/isc-dhcp/client/scripts freebsd Log: Prevent 'set' from it interpreting the shell var as an argument. Submitted by: green Revision Changes Path 1.16 +7 -7 src/contrib/isc-dhcp/client/scripts/freebsd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 2:20:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C591F37B992; Fri, 28 Jul 2000 02:20:40 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA53284; Fri, 28 Jul 2000 02:20:40 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007280920.CAA53284@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 28 Jul 2000 02:20:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/isc-dhcp/client/scripts freebsd X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/28 02:20:40 PDT Modified files: contrib/isc-dhcp/client/scripts freebsd Log: Use the cleaner "-n" syntax w/in [] rather then compare against `""'. Submitted by: green Revision Changes Path 1.17 +7 -7 src/contrib/isc-dhcp/client/scripts/freebsd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 2:34:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E604837C1AD; Fri, 28 Jul 2000 02:34:45 -0700 (PDT) (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA54394; Fri, 28 Jul 2000 02:34:45 -0700 (PDT) (envelope-from ume@FreeBSD.org) Message-Id: <200007280934.CAA54394@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 28 Jul 2000 02:34:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/rlogind rlogind.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ume 2000/07/28 02:34:45 PDT Modified files: libexec/rlogind rlogind.c Log: Make compilable without -DINET6. With shut up unused variable warnings. PR: bin/20225 Submitted by: Paul Herman Revision Changes Path 1.30 +3 -7 src/libexec/rlogind/rlogind.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 2:36:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CC20037B93F; Fri, 28 Jul 2000 02:36:38 -0700 (PDT) (envelope-from kato@FreeBSD.org) Received: (from kato@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA54638; Fri, 28 Jul 2000 02:36:38 -0700 (PDT) (envelope-from kato@FreeBSD.org) Message-Id: <200007280936.CAA54638@freefall.freebsd.org> From: KATO Takenori Date: Fri, 28 Jul 2000 02:36:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/pc98 syscons.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kato 2000/07/28 02:36:38 PDT Modified files: sys/pc98/pc98 syscons.c Log: Merged from sys/dev/syscons/syscons.c revision 1.345. Revision Changes Path 1.149 +2 -3 src/sys/pc98/pc98/syscons.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 3:18:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 82F2137C032; Fri, 28 Jul 2000 03:18:01 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA59878; Fri, 28 Jul 2000 03:18:00 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007281018.DAA59878@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 28 Jul 2000 03:18:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/nano Makefile ports/editors/nano/files md5 ports/editors/nano/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/28 03:18:00 PDT Modified files: editors/nano Makefile editors/nano/files md5 editors/nano/pkg PLIST Log: Update to 0.9.14. PR: 20237 Submitted by: maintainer Revision Changes Path 1.2 +2 -2 ports/editors/nano/Makefile 1.2 +1 -1 ports/editors/nano/files/md5 1.2 +2 -0 ports/editors/nano/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 Jul 28 3:37:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CA0AE37BA4B; Fri, 28 Jul 2000 03:37:35 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA62118; Fri, 28 Jul 2000 03:37:35 -0700 (PDT) (envelope-from des@FreeBSD.org) Message-Id: <200007281037.DAA62118@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 28 Jul 2000 03:37:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libfetch ftp.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG des 2000/07/28 03:37:35 PDT Modified files: (Branch: RELENG_4) lib/libfetch ftp.c Log: MFC: don't die if server doesn't grok MDTM Revision Changes Path 1.16.2.8 +2 -1 src/lib/libfetch/ftp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 3:45:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 572A737C1B8; Fri, 28 Jul 2000 03:45:43 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA63009; Fri, 28 Jul 2000 03:45:43 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007281045.DAA63009@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 28 Jul 2000 03:45:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang Makefile ports/lang/ccscript Makefile ports/lang/ccscript/files md5 ports/lang/ccscript/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/28 03:45:43 PDT Modified files: lang Makefile Added files: lang/ccscript Makefile lang/ccscript/files md5 lang/ccscript/pkg COMMENT DESCR PLIST Log: Add ccscript - a state-event driven class extendible C++ script interpreter. PR: 20229 Submitted by: David Sugar Revision Changes Path 1.176 +2 -1 ports/lang/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 3:46:11 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8890437C1C3; Fri, 28 Jul 2000 03:46:03 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA63068; Fri, 28 Jul 2000 03:46:03 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007281046.DAA63068@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 28 Jul 2000 03:46:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/28 03:46:03 PDT Modified files: . modules Log: ccscript --> ports/lang/ccscript Revision Changes Path 1.1464 +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 Fri Jul 28 4: 5: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F2C037BF25; Fri, 28 Jul 2000 04:04:56 -0700 (PDT) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA67268; Fri, 28 Jul 2000 04:04:56 -0700 (PDT) (envelope-from tg@FreeBSD.org) Message-Id: <200007281104.EAA67268@freefall.freebsd.org> From: Thomas Gellekum Date: Fri, 28 Jul 2000 04:04:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/astro/sattrack/patches patch-aa patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tg 2000/07/28 04:04:56 PDT Modified files: astro/sattrack/patches patch-aa patch-ab Log: No, I don't smoke. All evidence to the contrary is just the result of an overactive imagination. Spell `LDFLAGS' correctly. Fix Y2K problem without introducing a Y2001 problem. Revision Changes Path 1.4 +1 -1 ports/astro/sattrack/patches/patch-aa 1.2 +24 -10 ports/astro/sattrack/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 Fri Jul 28 4: 5:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1C39637BF43; Fri, 28 Jul 2000 04:05:28 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA68339; Fri, 28 Jul 2000 04:05:28 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007281105.EAA68339@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 28 Jul 2000 04:05:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio Makefile ports/audio/ccaudio Makefile ports/audio/ccaudio/files md5 ports/audio/ccaudio/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/28 04:05:28 PDT Modified files: audio Makefile Added files: audio/ccaudio Makefile audio/ccaudio/files md5 audio/ccaudio/pkg COMMENT DESCR PLIST Log: Add ccaudio - a generic C++ class library for audio files and devices. PR: 20230 Submitted by: David Sugar Revision Changes Path 1.151 +2 -1 ports/audio/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 4: 5:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C508C37C1C5; Fri, 28 Jul 2000 04:05:49 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA68750; Fri, 28 Jul 2000 04:05:49 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007281105.EAA68750@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 28 Jul 2000 04:05:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/28 04:05:49 PDT Modified files: . modules Log: ccaudio --> ports/audio/ccaudio Revision Changes Path 1.1465 +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 Fri Jul 28 4: 8:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ACD1C37C1D1; Fri, 28 Jul 2000 04:08:07 -0700 (PDT) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA69115; Fri, 28 Jul 2000 04:08:07 -0700 (PDT) (envelope-from tg@FreeBSD.org) Message-Id: <200007281108.EAA69115@freefall.freebsd.org> From: Thomas Gellekum Date: Fri, 28 Jul 2000 04:08:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/python Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tg 2000/07/28 04:08:07 PDT Modified files: lang/python Makefile Log: Clarify comment even further. Revision Changes Path 1.67 +2 -2 ports/lang/python/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 4:54:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BCCFE37B984; Fri, 28 Jul 2000 04:54:09 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA74099; Fri, 28 Jul 2000 04:54:09 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200007281154.EAA74099@freefall.freebsd.org> From: Sheldon Hearn Date: Fri, 28 Jul 2000 04:54:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/mount_null mount_null.c src/sys/boot/forth loader.conf src/sys/miscfs/nullfs null_vfsops.c src/sys/modules/nullfs Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/07/28 04:54:09 PDT Modified files: sbin/mount_null mount_null.c sys/boot/forth loader.conf sys/miscfs/nullfs null_vfsops.c sys/modules/nullfs Makefile Log: Rename the loadable nullfs kernel module: null -> nullfs Revision Changes Path 1.14 +6 -6 src/sbin/mount_null/mount_null.c 1.30 +2 -2 src/sys/boot/forth/loader.conf 1.37 +2 -2 src/sys/miscfs/nullfs/null_vfsops.c 1.13 +2 -2 src/sys/modules/nullfs/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 5: 4:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A9F1A37BA7C; Fri, 28 Jul 2000 05:04:10 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA75313; Fri, 28 Jul 2000 05:04:11 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007281204.FAA75313@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 28 Jul 2000 05:04:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/qiv Makefile ports/graphics/qiv/files md5 ports/graphics/qiv/pkg DESCR X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/28 05:04:11 PDT Modified files: graphics/qiv Makefile graphics/qiv/files md5 graphics/qiv/pkg DESCR Log: Update to 1.4. Also correct WWW while I'm here. Revision Changes Path 1.12 +3 -3 ports/graphics/qiv/Makefile 1.5 +1 -1 ports/graphics/qiv/files/md5 1.3 +1 -1 ports/graphics/qiv/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 6:16:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 57C7837C237; Fri, 28 Jul 2000 06:16:10 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA86599; Fri, 28 Jul 2000 06:16:10 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Message-Id: <200007281316.GAA86599@freefall.freebsd.org> From: Neil Blakey-Milner Date: Fri, 28 Jul 2000 06:16:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/biology Makefile ports/biology/p5-AcePerl Makefile ports/biology/p5-AcePerl/files FREEBSD_DEF md5 ports/biology/p5-AcePerl/patches patch-aa patch-ab ports/biology/p5-AcePerl/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nbm 2000/07/28 06:16:10 PDT Modified files: biology Makefile Added files: biology/p5-AcePerl Makefile biology/p5-AcePerl/files FREEBSD_DEF md5 biology/p5-AcePerl/patches patch-aa patch-ab biology/p5-AcePerl/pkg COMMENT DESCR PLIST Log: Add p5-AcePerl, a perl interface to the ACEDB genome database system PR: ports/20223 Submitted by: Johann Visagie Revision Changes Path 1.17 +2 -1 ports/biology/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 6:16:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E7BAB37C239; Fri, 28 Jul 2000 06:16:12 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA86663; Fri, 28 Jul 2000 06:16:13 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Message-Id: <200007281316.GAA86663@freefall.freebsd.org> From: Neil Blakey-Milner Date: Fri, 28 Jul 2000 06:16:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nbm 2000/07/28 06:16:13 PDT Modified files: . modules Log: p5-AcePerl --> ports/biology/p5-AcePerl Revision Changes Path 1.1466 +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 Fri Jul 28 7: 6:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A471237BC2D; Fri, 28 Jul 2000 07:06:03 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA94549; Fri, 28 Jul 2000 07:06:03 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Message-Id: <200007281406.HAA94549@freefall.freebsd.org> From: Neil Blakey-Milner Date: Fri, 28 Jul 2000 07:06:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/biology Makefile ports/biology/p5-bioperl Makefile ports/biology/p5-bioperl/files md5 ports/biology/p5-bioperl/patches patch-aa ports/biology/p5-bioperl/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nbm 2000/07/28 07:06:03 PDT Modified files: biology Makefile Added files: biology/p5-bioperl Makefile biology/p5-bioperl/files md5 biology/p5-bioperl/patches patch-aa biology/p5-bioperl/pkg COMMENT DESCR PLIST Log: Add BioPerl, a collection of Perl5 mods for bioinformatics/genomics PR: ports/20252 Submitted by: Johann Visagie Revision Changes Path 1.18 +2 -1 ports/biology/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 7: 6:21 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5DD7737C28F; Fri, 28 Jul 2000 07:06:07 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA94589; Fri, 28 Jul 2000 07:06:07 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Message-Id: <200007281406.HAA94589@freefall.freebsd.org> From: Neil Blakey-Milner Date: Fri, 28 Jul 2000 07:06:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nbm 2000/07/28 07:06:07 PDT Modified files: . modules Log: p5-bioperl --> ports/biology/p5-bioperl Revision Changes Path 1.1467 +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 Fri Jul 28 8: 3: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from post.bgnett.no (post.bgnett.no [194.54.96.133]) by hub.freebsd.org (Postfix) with ESMTP id 0A22037C24F; Fri, 28 Jul 2000 08:02:49 -0700 (PDT) (envelope-from erik@habatech.no) Received: from a1u7k9 (127.ppp1-1.brg.world-online.no [213.142.68.127]) by post.bgnett.no (8.8.8/8.8.8) with SMTP id RAA03611; Fri, 28 Jul 2000 17:02:35 +0200 (CEST) (envelope-from erik@habatech.no) Message-ID: <017e01bff8a4$f2809020$0100a8c0@a1u7k9> From: "Erik H. Bakke" To: "SADA Kenji" , , References: <200007280035.RAA53758@freefall.freebsd.org> Subject: Re: cvs commit: ports/devel/sdts++ - Imported sources Date: Fri, 28 Jul 2000 16:54:36 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > sada 2000/07/27 17:35:24 PDT >=20 > =20 > PR: ports/16794 > Submitted by: Erik H. Bakke > =20 Thank you for committing this port, and let me say that I am sorry for the awful condition of the raw materials I submitted. > Status: > =20 > Vendor Tag: ERIK Oh my. I should be flattered :) --- Erik H. Bakke erik@habatech.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 8:42:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 36D9537B535; Fri, 28 Jul 2000 08:42:31 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA06301; Fri, 28 Jul 2000 08:42:31 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007281542.IAA06301@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 28 Jul 2000 08:42:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11 Makefile ports/x11/gswitchit_applet Makefile ports/x11/gswitchit_applet/files md5 ports/x11/gswitchit_applet/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/28 08:42:31 PDT Modified files: x11 Makefile Added files: x11/gswitchit_applet Makefile x11/gswitchit_applet/files md5 x11/gswitchit_applet/pkg COMMENT DESCR PLIST Log: Add gswitchit_applet - a keyboard layout state indicator and switcher for Gnome Desktop. Obtained from: http://www.gnome.org/ Revision Changes Path 1.292 +2 -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 Fri Jul 28 8:43:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E05B837C3DE; Fri, 28 Jul 2000 08:42:54 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA06365; Fri, 28 Jul 2000 08:42:55 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200007281542.IAA06365@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 28 Jul 2000 08:42:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/07/28 08:42:55 PDT Modified files: . modules Log: gswitchit_applet --> ports/x11/gswitchit_applet Revision Changes Path 1.1468 +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 Fri Jul 28 11: 1:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0D1DB37B7E5; Fri, 28 Jul 2000 11:01:05 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA25346; Fri, 28 Jul 2000 11:01:04 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Message-Id: <200007281801.LAA25346@freefall.freebsd.org> From: Michael Haro Date: Fri, 28 Jul 2000 11:01:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/proftpd Makefile ports/ftp/proftpd/files md5 ports/ftp/proftpd/patches patch-ae patch-af patch-aj X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mharo 2000/07/28 11:01:04 PDT Modified files: ftp/proftpd Makefile ftp/proftpd/files md5 ftp/proftpd/patches patch-ae patch-af Removed files: ftp/proftpd/patches patch-aj Log: Update to proftpd 1.2.0rc2 Revision Changes Path 1.28 +3 -5 ports/ftp/proftpd/Makefile 1.13 +1 -1 ports/ftp/proftpd/files/md5 1.7 +30 -33 ports/ftp/proftpd/patches/patch-ae 1.4 +6 -6 ports/ftp/proftpd/patches/patch-af To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 11: 4:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 49A6E37B7F9; Fri, 28 Jul 2000 11:04:04 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA25706; Fri, 28 Jul 2000 11:04:04 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200007281804.LAA25706@freefall.freebsd.org> From: Jim Mock Date: Fri, 28 Jul 2000 11:04:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/07/28 11:04:03 PDT Modified files: en_US.ISO_8859-1/books/handbook/contrib chapter.sgml Log: Add Cyrille Lefevre and Sungman Cho for their work on the open-motif port and Patrick Bihan-Faou for his work on dhclient. Requested by: obrien (who seems to be afraid of the -doc tree :-) Revision Changes Path 1.266 +13 -1 doc/en_US.ISO_8859-1/books/handbook/contrib/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 11:46:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 098A437B6E8; Fri, 28 Jul 2000 11:46:50 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: (from rwatson@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA31393; Fri, 28 Jul 2000 11:46:50 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Message-Id: <200007281846.LAA31393@freefall.freebsd.org> From: Robert Watson Date: Fri, 28 Jul 2000 11:46:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vnode_if.src vfs_syscalls.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG rwatson 2000/07/28 11:46:50 PDT Modified files: (Branch: RELENG_4) sys/kern vnode_if.src vfs_syscalls.c Log: o MFC locking changes in extended attribute interface (locks required on vnodes for all extended attribute vnops) o MFC related formatting changes to decrease diffs between -current and -stable in that code. Obtained from: TrustedBSD Project Revision Changes Path 1.29.2.1 +2 -2 src/sys/kern/vnode_if.src 1.151.2.3 +7 -6 src/sys/kern/vfs_syscalls.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 11:48:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1ACBA37B963; Fri, 28 Jul 2000 11:48:17 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: (from rwatson@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA31643; Fri, 28 Jul 2000 11:48:17 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Message-Id: <200007281848.LAA31643@freefall.freebsd.org> From: Robert Watson Date: Fri, 28 Jul 2000 11:48:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_acl.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG rwatson 2000/07/28 11:48:17 PDT Modified files: (Branch: RELENG_4) sys/kern kern_acl.c Log: o MFC phk's #include optimization in 1.3 to reduce diffs between -current and -stable Revision Changes Path 1.2.2.1 +1 -2 src/sys/kern/kern_acl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 12:43:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C95237BDBB; Fri, 28 Jul 2000 12:43:16 -0700 (PDT) (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA38405; Fri, 28 Jul 2000 12:43:16 -0700 (PDT) (envelope-from ume@FreeBSD.org) Message-Id: <200007281943.MAA38405@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 28 Jul 2000 12:43:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/ucd-snmp Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ume 2000/07/28 12:43:15 PDT Modified files: net/ucd-snmp Makefile Log: Activate IPv6 support. Approved by: billf Revision Changes Path 1.50 +6 -2 ports/net/ucd-snmp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 12:49:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E3A6E37BC8A; Fri, 28 Jul 2000 12:49:44 -0700 (PDT) (envelope-from jmg@FreeBSD.org) Received: (from jmg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA39098; Fri, 28 Jul 2000 12:49:44 -0700 (PDT) (envelope-from jmg@FreeBSD.org) Message-Id: <200007281949.MAA39098@freefall.freebsd.org> From: John-Mark Gurney Date: Fri, 28 Jul 2000 12:49:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/games/fortune/datfiles fortunes X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jmg 2000/07/28 12:49:44 PDT Modified files: games/fortune/datfiles fortunes Log: put the entires back in order.... I forgot to do that after we dicussed this at the BSDi get together... Revision Changes Path 1.41 +8 -8 src/games/fortune/datfiles/fortunes To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 12:52: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9799137BD02; Fri, 28 Jul 2000 12:51:57 -0700 (PDT) (envelope-from marko@FreeBSD.org) Received: (from marko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA39428; Fri, 28 Jul 2000 12:51:57 -0700 (PDT) (envelope-from marko@FreeBSD.org) Message-Id: <200007281951.MAA39428@freefall.freebsd.org> From: Mark Ovens Date: Fri, 28 Jul 2000 12:51:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/amd/amq amq.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marko 2000/07/28 12:51:57 PDT Modified files: contrib/amd/amq amq.8 Log: Remove reference to non-existent manpage (ctl-amd(8)). PR: 20091 Submitted by: Bruce A. Mah Approved by: nik Revision Changes Path 1.6 +2 -3 src/contrib/amd/amq/amq.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 12:52: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CF36937C460; Fri, 28 Jul 2000 12:52:01 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA39460; Fri, 28 Jul 2000 12:52:01 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007281952.MAA39460@freefall.freebsd.org> From: SADA Kenji Date: Fri, 28 Jul 2000 12:52:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/28 12:52:01 PDT Modified files: en_US.ISO_8859-1/books/handbook authors.ent Log: "Kenji SADA" -> "SADA Kenji". Please describe my name in this order. Revision Changes Path 1.111 +2 -2 doc/en_US.ISO_8859-1/books/handbook/authors.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 12:52:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E14C837BD02; Fri, 28 Jul 2000 12:52:38 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: (from rwatson@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA39528; Fri, 28 Jul 2000 12:52:38 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Message-Id: <200007281952.MAA39528@freefall.freebsd.org> From: Robert Watson Date: Fri, 28 Jul 2000 12:52:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_syscalls.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG rwatson 2000/07/28 12:52:38 PDT Modified files: sys/kern vfs_syscalls.c Log: o Modify extattr_{set,get}() syscalls so that partial reads and writes with an error condition such as EINTR, EWOULDBLOCK, and ERESTART, are reported to the application, not silently conceal. This behavior was copied from the {read,write}v() syscalls, and is appropriate there but not here. o Correct a bug in extattr_delete() wherein the LOCKLEAF flag is passed to the wrong argument in namei(), resulting in some unexpected errors during name resolution, and passing in an unlocked vnode. Obtained from: TrustedBSD Project Revision Changes Path 1.162 +6 -2 src/sys/kern/vfs_syscalls.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 12:54:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 10BCF37B6B3; Fri, 28 Jul 2000 12:54:45 -0700 (PDT) (envelope-from marko@FreeBSD.org) Received: (from marko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA39811; Fri, 28 Jul 2000 12:54:45 -0700 (PDT) (envelope-from marko@FreeBSD.org) Message-Id: <200007281954.MAA39811@freefall.freebsd.org> From: Mark Ovens Date: Fri, 28 Jul 2000 12:54:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/amd/amq amq.8 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marko 2000/07/28 12:54:44 PDT Modified files: (Branch: RELENG_4) contrib/amd/amq amq.8 Log: MFC rev 1.6 Revision Changes Path 1.5.2.1 +2 -3 src/contrib/amd/amq/amq.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 13: 2:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 91B3337BD65; Fri, 28 Jul 2000 13:02:42 -0700 (PDT) (envelope-from eivind@FreeBSD.org) Received: (from eivind@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA40571; Fri, 28 Jul 2000 13:02:42 -0700 (PDT) (envelope-from eivind@FreeBSD.org) Message-Id: <200007282002.NAA40571@freefall.freebsd.org> From: Eivind Eklund Date: Fri, 28 Jul 2000 13:02:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/find function.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG eivind 2000/07/28 13:02:42 PDT Modified files: usr.bin/find function.c Log: Make passing unknown fstypes to -fstype result in a warning instead of an error. As it was, which find command lines that would work (be accepted at all) was dependent on the presently running kernel, making script writing and porting hard. Revision Changes Path 1.27 +17 -3 src/usr.bin/find/function.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 13:17:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7923337B5F8; Fri, 28 Jul 2000 13:17:05 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA42952; Fri, 28 Jul 2000 13:17:05 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007282017.NAA42952@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 28 Jul 2000 13:17:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/scripts dokern.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/28 13:17:05 PDT Modified files: release/scripts dokern.sh Log: * Add back DEVRANDOM for all arch's until we deal better with the installation of random sensative packages. * Remove the `ncr' driver in the Alpha case -- the `sym' driver works with every known Alpha. Revision Changes Path 1.30 +2 -3 src/release/scripts/dokern.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 13:22: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2469A37B5E4; Fri, 28 Jul 2000 13:22:01 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA43621; Fri, 28 Jul 2000 13:22:01 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007282022.NAA43621@freefall.freebsd.org> From: SADA Kenji Date: Fri, 28 Jul 2000 13:22:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/28 13:22:00 PDT Modified files: . modules Log: vxtools --> ports/emulators/vxtools Revision Changes Path 1.1469 +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 Fri Jul 28 13:23:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 46EBB37BE97; Fri, 28 Jul 2000 13:23:43 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA43794; Fri, 28 Jul 2000 13:23:43 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007282023.NAA43794@freefall.freebsd.org> From: SADA Kenji Date: Fri, 28 Jul 2000 13:23:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/vxtools - Imported sources X-FreeBSD-CVS-Branch: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/28 13:23:43 PDT ports/emulators/vxtools - Imported sources Update of /home/ncvs/ports/emulators/vxtools In directory freefall.freebsd.org:/d/home/sada/work/vxtools Log Message: New port vxtools - Command-line utilites for reading Veritas Filesystem (VxFS). PR: ports/17436 Submitted by: Martin Hinner Status: Vendor Tag: MARTIN Release Tags: v0_2 N ports/emulators/vxtools/Makefile N ports/emulators/vxtools/files/md5 N ports/emulators/vxtools/pkg/COMMENT N ports/emulators/vxtools/pkg/DESCR N ports/emulators/vxtools/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 Fri Jul 28 13:27:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 87A8237BDDB; Fri, 28 Jul 2000 13:27:43 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA44263; Fri, 28 Jul 2000 13:27:43 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007282027.NAA44263@freefall.freebsd.org> From: SADA Kenji Date: Fri, 28 Jul 2000 13:27:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/28 13:27:43 PDT Modified files: emulators Makefile Log: Activate vxtools. PR: ports/17436 Submitted by: Martin Hinner Revision Changes Path 1.54 +2 -1 ports/emulators/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 13:32:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 532D237B601; Fri, 28 Jul 2000 13:32:20 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA44804; Fri, 28 Jul 2000 13:32:20 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007282032.NAA44804@freefall.freebsd.org> From: SADA Kenji Date: Fri, 28 Jul 2000 13:32:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/28 13:32:19 PDT Modified files: en_US.ISO_8859-1/books/handbook/contrib chapter.sgml Log: Add Martin Hinner for his port emulators/vxtools. Revision Changes Path 1.267 +5 -1 doc/en_US.ISO_8859-1/books/handbook/contrib/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 13:47: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id B86BD37BC8A; Fri, 28 Jul 2000 13:46:49 -0700 (PDT) (envelope-from green@FreeBSD.org) Date: Fri, 28 Jul 2000 16:46:48 -0400 (EDT) From: Brian Fundakowski Feldman X-Sender: green@green.dyndns.org To: Eivind Eklund Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/find function.c In-Reply-To: <200007282002.NAA40571@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 28 Jul 2000, Eivind Eklund wrote: > eivind 2000/07/28 13:02:42 PDT > > Modified files: > usr.bin/find function.c > Log: > Make passing unknown fstypes to -fstype result in a warning instead of > an error. As it was, which find command lines that would work (be > accepted at all) was dependent on the presently running kernel, making > script writing and porting hard. If this means you're back: welcome back :) > Revision Changes Path > 1.27 +17 -3 src/usr.bin/find/function.c -- Brian Fundakowski Feldman \ FreeBSD: The Power to Serve! / green@FreeBSD.org `------------------------------' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 13:48:23 2000 Delivered-To: cvs-all@freebsd.org Received: from netplex.com.au (adsl-63-207-30-186.dsl.snfc21.pacbell.net [63.207.30.186]) by hub.freebsd.org (Postfix) with ESMTP id 72EB337B5F8; Fri, 28 Jul 2000 13:48:13 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (peter@localhost [127.0.0.1]) by netplex.com.au (8.9.3/8.9.3) with ESMTP id NAA49823; Fri, 28 Jul 2000 13:48:11 -0700 (PDT) (envelope-from peter@netplex.com.au) Message-Id: <200007282048.NAA49823@netplex.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: "David E. O'Brien" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/scripts dokern.sh In-Reply-To: Message from "David E. O'Brien" of "Fri, 28 Jul 2000 13:17:05 PDT." <200007282017.NAA42952@freefall.freebsd.org> Date: Fri, 28 Jul 2000 13:48:11 -0700 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "David E. O'Brien" wrote: > obrien 2000/07/28 13:17:05 PDT > * Remove the `ncr' driver in the Alpha case -- the `sym' driver works with > every known Alpha. I think it is time to switch -current to sym-only. No disrespect towards the ncr driver writer intended, but the sym driver is well maintained, robust, up-to-date, not implicated in the recurring fxp+ncr bugs, and supports all the hardware. Cheers, -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 14:21:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D598737B68D; Fri, 28 Jul 2000 14:21:25 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA50964; Fri, 28 Jul 2000 14:21:25 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200007282121.OAA50964@freefall.freebsd.org> From: Akinori MUSHA Date: Fri, 28 Jul 2000 14:21:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/cgi query-pr.cgi X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/07/28 14:21:25 PDT Modified files: en/cgi query-pr.cgi Log: Add a link to get the PR in raw text format. This would help get a PR via web to extract patches/shars in it handily. :) Revision Changes Path 1.21 +9 -2 www/en/cgi/query-pr.cgi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 14:40:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 379AF37B68D; Fri, 28 Jul 2000 14:40:40 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA52622; Fri, 28 Jul 2000 14:40:40 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007282140.OAA52622@freefall.freebsd.org> From: SADA Kenji Date: Fri, 28 Jul 2000 14:40:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/mv mv.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/28 14:40:40 PDT Modified files: (Branch: RELENG_4) bin/mv mv.c Log: MFC: 1.26, 1.27 Fix inhelitance of file flags when files are moved across devices. Revision Changes Path 1.24.2.2 +12 -1 src/bin/mv/mv.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 14:48:57 2000 Delivered-To: cvs-all@freebsd.org Received: from ns1.sunesi.net (ns1.sunesi.net [196.15.192.194]) by hub.freebsd.org (Postfix) with ESMTP id 0363937B8DA; Fri, 28 Jul 2000 14:48:39 -0700 (PDT) (envelope-from nbm@sunesi.net) Received: from nbm by ns1.sunesi.net with local (Exim 3.03 #1) id 13IHzg-000HX2-00; Fri, 28 Jul 2000 23:48:36 +0200 Date: Fri, 28 Jul 2000 23:48:36 +0200 From: Neil Blakey-Milner To: SADA Kenji Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin/mv mv.c Message-ID: <20000728234836.A67366@mithrandr.moria.org> References: <200007282140.OAA52622@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200007282140.OAA52622@freefall.freebsd.org>; from sada@FreeBSD.org on Fri, Jul 28, 2000 at 02:40:40PM -0700 Organization: Sunesi Clinical Systems X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri 2000-07-28 (14:40), SADA Kenji wrote: > sada 2000/07/28 14:40:40 PDT > > Modified files: (Branch: RELENG_4) > bin/mv mv.c > Log: > MFC: 1.26, 1.27 Fix inhelitance of file flags when files are moved > across devices. Is this what causes all those "couldn't set file flags (000000)" messages on NFS filesystems? Neil -- Neil Blakey-Milner Sunesi Clinical Systems nbm@mithrandr.moria.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 14:49: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6504D37C19B; Fri, 28 Jul 2000 14:48:59 -0700 (PDT) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA53468; Fri, 28 Jul 2000 14:48:59 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200007282148.OAA53468@freefall.freebsd.org> From: Brian Feldman Date: Fri, 28 Jul 2000 14:48:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 clocks.7 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/07/28 14:48:59 PDT Modified files: share/man/man7 clocks.7 Log: Capitalize the last two entries. Note that i8254 is a timer. Report that TSC is for any fifth-gneration of later x86 processor, not an i586, and document that it _is_ available to applications. Revision Changes Path 1.10 +9 -5 src/share/man/man7/clocks.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 14:53:58 2000 Delivered-To: cvs-all@freebsd.org Received: from warning.follo.net (warning.follo.net [195.204.136.30]) by hub.freebsd.org (Postfix) with ESMTP id C3D5237B8B3; Fri, 28 Jul 2000 14:53:40 -0700 (PDT) (envelope-from eivind@warning.follo.net) Received: (from eivind@localhost) by warning.follo.net (8.9.3/8.9.3) id XAA42616; Fri, 28 Jul 2000 23:53:36 +0200 (CEST) Date: Fri, 28 Jul 2000 23:53:35 +0200 From: Eivind Eklund To: Brian Fundakowski Feldman Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/find function.c Message-ID: <20000728235335.F93650@warning.follo.net> References: <200007282002.NAA40571@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: ; from green@FreeBSD.org on Fri, Jul 28, 2000 at 04:46:48PM -0400 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Jul 28, 2000 at 04:46:48PM -0400, Brian Fundakowski Feldman wrote: > On Fri, 28 Jul 2000, Eivind Eklund wrote: > > > eivind 2000/07/28 13:02:42 PDT > > > > Modified files: > > usr.bin/find function.c > > Log: > > Make passing unknown fstypes to -fstype result in a warning instead of > > an error. As it was, which find command lines that would work (be > > accepted at all) was dependent on the presently running kernel, making > > script writing and porting hard. > > If this means you're back: welcome back :) It doesn't; I'm just trying to clean out one of my source trees, as I need it for something else. There'll probably be one or two more commits, and then I'm back into hiding for a while more. Thanks, though :) Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 14:57: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id 6071A37B854; Fri, 28 Jul 2000 14:56:59 -0700 (PDT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (robert@fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.9.3/8.9.3) with SMTP id RAA19185; Fri, 28 Jul 2000 17:56:26 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Fri, 28 Jul 2000 17:56:26 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Neil Blakey-Milner Cc: SADA Kenji , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin/mv mv.c In-Reply-To: <20000728234836.A67366@mithrandr.moria.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 28 Jul 2000, Neil Blakey-Milner wrote: > Is this what causes all those "couldn't set file flags (000000)" > messages on NFS filesystems? We should probably decide if it's a problem or not to get EOPNOTSUPP back from various operations on file systems, as file systems are fairly diverse and really do have different capabilities :-). Robert N M Watson robert@fledge.watson.org http://www.watson.org/~robert/ PGP key fingerprint: AF B5 5F FF A6 4A 79 37 ED 5F 55 E9 58 04 6A B1 TIS Labs at Network Associates, Safeport Network Services To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 15: 3:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AE28037B81D; Fri, 28 Jul 2000 15:03:09 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA54548; Fri, 28 Jul 2000 15:03:09 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007282203.PAA54548@freefall.freebsd.org> From: Peter Wemm Date: Fri, 28 Jul 2000 15:03:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm phys_pager.c vm_object.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/28 15:03:09 PDT Modified files: sys/vm phys_pager.c vm_object.h Log: Minor cleanups: - remove unused variables (fix warnings) - use a more consistant ansi style rather than a mixture - remove dead #if 0 code and declarations Revision Changes Path 1.3 +20 -45 src/sys/vm/phys_pager.c 1.68 +1 -12 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 Fri Jul 28 15:17:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B482537B973; Fri, 28 Jul 2000 15:17:43 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA57653; Fri, 28 Jul 2000 15:17:43 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007282217.PAA57653@freefall.freebsd.org> From: Peter Wemm Date: Fri, 28 Jul 2000 15:17:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern sys_generic.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/28 15:17:43 PDT Modified files: sys/kern sys_generic.c Log: Fix a warning that has been annoying me for some time: "kern/sys_generic.c:358: warning: cast discards qualifiers from pointer target type" The idea for using the uintptr_t intermediate cast for de-constifying a pointer was hinted at by bde some time ago. Revision Changes Path 1.63 +2 -2 src/sys/kern/sys_generic.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 15:27: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CC02237B8B3; Fri, 28 Jul 2000 15:27:00 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA58328; Fri, 28 Jul 2000 15:27:00 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007282227.PAA58328@freefall.freebsd.org> From: Peter Wemm Date: Fri, 28 Jul 2000 15:27:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ffs ffs_alloc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/28 15:27:00 PDT Modified files: sys/ufs/ffs ffs_alloc.c Log: Minor change: fix warning - move a 'struct vnode *vp' declaration inside a #ifdef DIAGNOSTIC to match its corresponding usage. Revision Changes Path 1.69 +3 -1 src/sys/ufs/ffs/ffs_alloc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 15:28: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BBAA37B8B3; Fri, 28 Jul 2000 15:28:06 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA58434; Fri, 28 Jul 2000 15:28:06 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007282228.PAA58434@freefall.freebsd.org> From: Peter Wemm Date: Fri, 28 Jul 2000 15:28:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ufs ufs_quota.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/28 15:28:06 PDT Modified files: sys/ufs/ufs ufs_quota.c Log: Minor tweak - removed unused variable 'struct mount *mp'; Revision Changes Path 1.36 +1 -2 src/sys/ufs/ufs/ufs_quota.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 15:32:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B78E737B99C; Fri, 28 Jul 2000 15:32:25 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA58781; Fri, 28 Jul 2000 15:32:25 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007282232.PAA58781@freefall.freebsd.org> From: Peter Wemm Date: Fri, 28 Jul 2000 15:32:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_event.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/28 15:32:25 PDT Modified files: sys/kern kern_event.c Log: Fix warnings - make kevent args in comment match those in syscalls.master. Deal with consts. Revision Changes Path 1.13 +5 -5 src/sys/kern/kern_event.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 15:40:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6634637B7F9; Fri, 28 Jul 2000 15:40:05 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA59472; Fri, 28 Jul 2000 15:40:05 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007282240.PAA59472@freefall.freebsd.org> From: Peter Wemm Date: Fri, 28 Jul 2000 15:40:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_sysctl.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/28 15:40:04 PDT Modified files: sys/kern kern_sysctl.c Log: Fix some style nits. Fix(?) some compile warnings regarding const handling. Revision Changes Path 1.100 +14 -11 src/sys/kern/kern_sysctl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 15:41:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A2C7037B63A; Fri, 28 Jul 2000 15:41:56 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA59680; Fri, 28 Jul 2000 15:41:56 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007282241.PAA59680@freefall.freebsd.org> From: Peter Wemm Date: Fri, 28 Jul 2000 15:41:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern subr_bus.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/28 15:41:56 PDT Modified files: sys/kern subr_bus.c Log: Fix a const related warning. Revision Changes Path 1.76 +2 -2 src/sys/kern/subr_bus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 15:45:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 85DED37B7F9; Fri, 28 Jul 2000 15:45:37 -0700 (PDT) (envelope-from eivind@FreeBSD.org) Received: (from eivind@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA59993; Fri, 28 Jul 2000 15:45:37 -0700 (PDT) (envelope-from eivind@FreeBSD.org) Message-Id: <200007282245.PAA59993@freefall.freebsd.org> From: Eivind Eklund Date: Fri, 28 Jul 2000 15:45:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/defaults rc.conf src/release/sysinstall config.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG eivind 2000/07/28 15:45:37 PDT Modified files: etc/defaults rc.conf release/sysinstall config.c Log: Change the defaults for portmap, sendmail and inetd to be not running them. Make sysinstall override this on install, so the effective behavioural change for a newly installed system is null. Overall, this makes a system with an empty /etc/rc.conf not run any network services, and makes the FreeBSD-provided network services that are running visible in /etc/rc.conf (instead of making people look through /etc/defaults/rc.conf to find the things they need to disable to secure the system.) Reviewed by: jhb Discussed with: The usual cabal Revision Changes Path 1.71 +4 -4 src/etc/defaults/rc.conf 1.162 +5 -1 src/release/sysinstall/config.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 15:51:13 2000 Delivered-To: cvs-all@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id 5C33037B9DB; Fri, 28 Jul 2000 15:51:02 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo.feral.com (beppo [192.67.166.79]) by feral.com (8.9.3/8.9.3) with ESMTP id PAA11501; Fri, 28 Jul 2000 15:50:58 -0700 Date: Fri, 28 Jul 2000 15:51:01 -0700 (PDT) From: Matthew Jacob Reply-To: mjacob@feral.com To: Eivind Eklund Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf src/release/sysinstall config.c In-Reply-To: <200007282245.PAA59993@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Was this discussed in an email forum? I sure didn't see it. If it was discussed only in IRC, that's pretty aggravating. On Fri, 28 Jul 2000, Eivind Eklund wrote: > eivind 2000/07/28 15:45:37 PDT > > Modified files: > etc/defaults rc.conf > release/sysinstall config.c > Log: > Change the defaults for portmap, sendmail and inetd to be not running them. > Make sysinstall override this on install, so the effective behavioural > change for a newly installed system is null. Overall, this makes a system > with an empty /etc/rc.conf not run any network services, and makes the > FreeBSD-provided network services that are running visible in /etc/rc.conf > (instead of making people look through /etc/defaults/rc.conf to find the > things they need to disable to secure the system.) > > Reviewed by: jhb > Discussed with: The usual cabal > > Revision Changes Path > 1.71 +4 -4 src/etc/defaults/rc.conf > 1.162 +5 -1 src/release/sysinstall/config.c > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 15:52:28 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 528E937B694; Fri, 28 Jul 2000 15:52:20 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id QAA43632; Fri, 28 Jul 2000 16:52:17 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id QAA60523; Fri, 28 Jul 2000 16:52:13 -0600 (MDT) Message-Id: <200007282252.QAA60523@harmony.village.org> To: Eivind Eklund Subject: Re: cvs commit: src/etc/defaults rc.conf src/release/sysinstall config.c Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Fri, 28 Jul 2000 15:45:37 PDT." <200007282245.PAA59993@freefall.freebsd.org> References: <200007282245.PAA59993@freefall.freebsd.org> Date: Fri, 28 Jul 2000 16:52:13 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <200007282245.PAA59993@freefall.freebsd.org> Eivind Eklund writes: : Change the defaults for portmap, sendmail and inetd to be not running them. : Make sysinstall override this on install, so the effective behavioural : change for a newly installed system is null. Overall, this makes a system : with an empty /etc/rc.conf not run any network services, and makes the : FreeBSD-provided network services that are running visible in /etc/rc.conf : (instead of making people look through /etc/defaults/rc.conf to find the : things they need to disable to secure the system.) Before people freak out. This has no effect on system security or usability if you use sysinstall. It just makes it easier for people to change things to be secure if they want. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 15:53:35 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id D688437B7D6; Fri, 28 Jul 2000 15:53:24 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id QAA43640; Fri, 28 Jul 2000 16:53:22 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id QAA60555; Fri, 28 Jul 2000 16:53:19 -0600 (MDT) Message-Id: <200007282253.QAA60555@harmony.village.org> To: mjacob@feral.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/release/sysinstall config.c Cc: Eivind Eklund , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Fri, 28 Jul 2000 15:51:01 PDT." References: Date: Fri, 28 Jul 2000 16:53:19 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message Matthew Jacob writes: : Was this discussed in an email forum? I sure didn't see it. If it was : discussed only in IRC, that's pretty aggravating. It was discussed about 4-6 months ago on security@ and with security-officer@. I'm not sure how much of it was on which list, however. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 15:56:25 2000 Delivered-To: cvs-all@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id 7BA9D37B63A; Fri, 28 Jul 2000 15:56:14 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo.feral.com (beppo [192.67.166.79]) by feral.com (8.9.3/8.9.3) with ESMTP id PAA11529; Fri, 28 Jul 2000 15:55:59 -0700 Date: Fri, 28 Jul 2000 15:56:02 -0700 (PDT) From: Matthew Jacob Reply-To: mjacob@feral.com To: Warner Losh Cc: Eivind Eklund , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf src/release/sysinstall config.c In-Reply-To: <200007282253.QAA60555@harmony.village.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Oh. Okay- Eivind, I apologize. Paranoia struck. A private discussion about security is quite an appropriate source of a major change even (for obvious reasons). On Fri, 28 Jul 2000, Warner Losh wrote: > In message Matthew Jacob writes: > : Was this discussed in an email forum? I sure didn't see it. If it was > : discussed only in IRC, that's pretty aggravating. > > It was discussed about 4-6 months ago on security@ and with > security-officer@. I'm not sure how much of it was on which list, > however. > > Warner > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 15:58:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 299A937B674; Fri, 28 Jul 2000 15:58:34 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA61030; Fri, 28 Jul 2000 15:58:28 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007282258.PAA61030@freefall.freebsd.org> From: Peter Wemm Date: Fri, 28 Jul 2000 15:58:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 bios.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/28 15:58:28 PDT Modified files: sys/i386/i386 bios.c Log: Fix warning - isa/isavar.h is a prerequisite for isa/pnpvar.h Revision Changes Path 1.37 +2 -4 src/sys/i386/i386/bios.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 16: 0: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 356D437B670; Fri, 28 Jul 2000 16:00:01 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA61158; Fri, 28 Jul 2000 16:00:01 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007282300.QAA61158@freefall.freebsd.org> From: Peter Wemm Date: Fri, 28 Jul 2000 16:00:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/isa fd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/28 16:00:01 PDT Modified files: sys/isa fd.c Log: Fix a warning re: a potentially unused pccard helper function Revision Changes Path 1.186 +3 -1 src/sys/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 Fri Jul 28 16:10:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9755037B9DB; Fri, 28 Jul 2000 16:10:11 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA63385; Fri, 28 Jul 2000 16:10:11 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007282310.QAA63385@freefall.freebsd.org> From: Peter Wemm Date: Fri, 28 Jul 2000 16:10:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_aio.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/28 16:10:11 PDT Modified files: sys/kern vfs_aio.c Log: Fix the #ifdef VFS_AIO to not compile a whole bunch of unused stuff in the !VFS_AIO case. Lots of things have hooks into here (kqueue, exit(), sockets, etc), I elected to keep the external interfaces the same rather than spread more #ifdefs around the kernel. Revision Changes Path 1.78 +35 -8 src/sys/kern/vfs_aio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 16:12:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E5E3137B9DF; Fri, 28 Jul 2000 16:12:47 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA63628; Fri, 28 Jul 2000 16:12:47 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007282312.QAA63628@freefall.freebsd.org> From: SADA Kenji Date: Fri, 28 Jul 2000 16:12:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/netscape47-communicator Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/28 16:12:47 PDT Modified files: www/netscape47-communicator Makefile Log: Cosmetic change of definition order. Revision Changes Path 1.68 +5 -5 ports/www/netscape47-communicator/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 16:16:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 79D7D37B9DB; Fri, 28 Jul 2000 16:16:31 -0700 (PDT) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA63871; Fri, 28 Jul 2000 16:16:31 -0700 (PDT) (envelope-from billf@FreeBSD.org) Message-Id: <200007282316.QAA63871@freefall.freebsd.org> From: Bill Fumerola Date: Fri, 28 Jul 2000 16:16:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ipfw ipfw.c src/sys/netinet ip_fw.c ip_fw.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG billf 2000/07/28 16:16:31 PDT Modified files: (Branch: RELENG_4) sbin/ipfw ipfw.c sys/netinet ip_fw.c ip_fw.h Log: MFC ipfw.c: r1.84,1.88: tcpoptions support (dan, ras@e-gerbil.net) r1.86: reorder output of 'prob' to match the input method (billf) ip_fw.c: r1.138: tcpoptions support (dan, ras@e-gerbil.net) ip_fw.h: r1.50(partial): complete WF2Q+ merge, comment only (luigi) r1.51: tcpoptions support (dan, ras@e-gerbil.net) Revision Changes Path 1.80.2.4 +72 -6 src/sbin/ipfw/ipfw.c 1.131.2.5 +71 -1 src/sys/netinet/ip_fw.c 1.47.2.2 +12 -2 src/sys/netinet/ip_fw.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 16:30:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 535A537B9D4; Fri, 28 Jul 2000 16:30:31 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA64745; Fri, 28 Jul 2000 16:30:31 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007282330.QAA64745@freefall.freebsd.org> From: Peter Wemm Date: Fri, 28 Jul 2000 16:30:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci if_fxp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/28 16:30:30 PDT Modified files: sys/pci if_fxp.c Log: "Fix" cast qualifier warnings using the uintptr_t intermediate trick. Revision Changes Path 1.84 +7 -4 src/sys/pci/if_fxp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 17:16:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 69E1D37BB01; Fri, 28 Jul 2000 17:16:29 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA70004; Fri, 28 Jul 2000 17:16:29 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007290016.RAA70004@freefall.freebsd.org> From: Peter Wemm Date: Fri, 28 Jul 2000 17:16:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_exit.c makesyscalls.sh syscalls.master src/sys/alpha/osf1 syscalls.master src/sys/i386/ibcs2 syscalls.master src/sys/i386/linux syscalls.master src/sys/svr4 syscalls.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/28 17:16:28 PDT Modified files: sys/kern kern_exit.c makesyscalls.sh syscalls.master sys/alpha/osf1 syscalls.master sys/i386/ibcs2 syscalls.master sys/i386/linux syscalls.master sys/svr4 syscalls.master Log: Change the 'exit()' system call to 'sys_exit()'. This avoids overlapping gcc's internal exit() prototypes and the (futile) hackery that we did to try and avoid warnings. main() was renamed for similar reasons. Remove an exit related hack from makesyscalls.sh. Revision Changes Path 1.99 +3 -3 src/sys/kern/kern_exit.c 1.42 +1 -3 src/sys/kern/makesyscalls.sh 1.80 +2 -2 src/sys/kern/syscalls.master 1.3 +2 -2 src/sys/alpha/osf1/syscalls.master 1.11 +2 -2 src/sys/i386/ibcs2/syscalls.master 1.33 +2 -2 src/sys/i386/linux/syscalls.master 1.9 +2 -2 src/sys/svr4/syscalls.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 17:22: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5B54937BA69; Fri, 28 Jul 2000 17:21:56 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA70517; Fri, 28 Jul 2000 17:21:56 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007290021.RAA70517@freefall.freebsd.org> From: Peter Wemm Date: Fri, 28 Jul 2000 17:21:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/osf1 osf1_proto.h osf1_syscall.h osf1_sysent.c src/sys/i386/ibcs2 ibcs2_proto.h ibcs2_syscall.h ibcs2_sysent.c src/sys/i386/linux linux_proto.h linux_syscall.h linux_sysent.c src/sys/kern init_sysent.c syscalls.c src/sys/svr4 ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/28 17:21:50 PDT Modified files: sys/alpha/osf1 osf1_proto.h osf1_syscall.h osf1_sysent.c sys/i386/ibcs2 ibcs2_proto.h ibcs2_syscall.h ibcs2_sysent.c sys/i386/linux linux_proto.h linux_syscall.h linux_sysent.c sys/kern init_sysent.c syscalls.c sys/svr4 svr4_proto.h svr4_syscall.h svr4_syscallnames.c svr4_sysent.c sys/sys syscall-hide.h syscall.h syscall.mk sysproto.h Log: Regenerate with makesyscalls.sh Revision Changes Path 1.3 +1 -1 src/sys/alpha/osf1/osf1_proto.h 1.3 +2 -2 src/sys/alpha/osf1/osf1_syscall.h 1.3 +2 -2 src/sys/alpha/osf1/osf1_sysent.c 1.12 +1 -1 src/sys/i386/ibcs2/ibcs2_proto.h 1.10 +2 -2 src/sys/i386/ibcs2/ibcs2_syscall.h 1.13 +2 -2 src/sys/i386/ibcs2/ibcs2_sysent.c 1.35 +1 -1 src/sys/i386/linux/linux_proto.h 1.30 +2 -2 src/sys/i386/linux/linux_syscall.h 1.36 +2 -2 src/sys/i386/linux/linux_sysent.c 1.90 +2 -2 src/sys/kern/init_sysent.c 1.79 +2 -2 src/sys/kern/syscalls.c 1.9 +1 -1 src/sys/svr4/svr4_proto.h 1.8 +2 -2 src/sys/svr4/svr4_syscall.h 1.8 +2 -2 src/sys/svr4/svr4_syscallnames.c 1.8 +2 -2 src/sys/svr4/svr4_sysent.c 1.73 +1 -1 src/sys/sys/syscall-hide.h 1.77 +2 -2 src/sys/sys/syscall.h 1.31 +2 -2 src/sys/sys/syscall.mk 1.67 +3 -3 src/sys/sys/sysproto.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 17:28:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F25337BB28; Fri, 28 Jul 2000 17:28:45 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA70861; Fri, 28 Jul 2000 17:28:44 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007290028.RAA70861@freefall.freebsd.org> From: Peter Wemm Date: Fri, 28 Jul 2000 17:28:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys Makefile.inc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/28 17:28:44 PDT Modified files: lib/libc/sys Makefile.inc Log: Deal with the exit entry in MIASM changing to sys_exit. This Is A Hack(TM). Revision Changes Path 1.79 +2 -2 src/lib/libc/sys/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 17:35:51 2000 Delivered-To: cvs-all@freebsd.org Received: from netplex.com.au (adsl-63-207-30-186.dsl.snfc21.pacbell.net [63.207.30.186]) by hub.freebsd.org (Postfix) with ESMTP id 4284A37B7B6; Fri, 28 Jul 2000 17:35:38 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (peter@localhost [127.0.0.1]) by netplex.com.au (8.9.3/8.9.3) with ESMTP id RAA50659; Fri, 28 Jul 2000 17:35:32 -0700 (PDT) (envelope-from peter@netplex.com.au) Message-Id: <200007290035.RAA50659@netplex.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: Eivind Eklund Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf src/release/sysinstall config.c In-Reply-To: Message from Eivind Eklund of "Fri, 28 Jul 2000 15:45:37 PDT." <200007282245.PAA59993@freefall.freebsd.org> Date: Fri, 28 Jul 2000 17:35:31 -0700 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Just a thought.. Do we have any dependency checking here? ie: if you turn on NIS/YP and/or NFS, does that either automatically activate portmap or prompt you that it is needed? Otherwise I expect quite a bit of suprise when somebody turns on NFS just like they used to and it doesn't work... Eivind Eklund wrote: > eivind 2000/07/28 15:45:37 PDT > > Modified files: > etc/defaults rc.conf > release/sysinstall config.c > Log: > Change the defaults for portmap, sendmail and inetd to be not running them. > Make sysinstall override this on install, so the effective behavioural > change for a newly installed system is null. Overall, this makes a system > with an empty /etc/rc.conf not run any network services, and makes the > FreeBSD-provided network services that are running visible in /etc/rc.conf > (instead of making people look through /etc/defaults/rc.conf to find the > things they need to disable to secure the system.) > > Reviewed by: jhb > Discussed with: The usual cabal > > Revision Changes Path > 1.71 +4 -4 src/etc/defaults/rc.conf > 1.162 +5 -1 src/release/sysinstall/config.c > > > Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 17:48: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2494237B5C3; Fri, 28 Jul 2000 17:47:53 -0700 (PDT) (envelope-from ben@FreeBSD.org) Received: (from ben@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA72085; Fri, 28 Jul 2000 17:47:52 -0700 (PDT) (envelope-from ben@FreeBSD.org) Message-Id: <200007290047.RAA72085@freefall.freebsd.org> From: Ben Smithurst Date: Fri, 28 Jul 2000 17:47:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/articles/committers-guide article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ben 2000/07/28 17:47:52 PDT Modified files: en_US.ISO_8859-1/articles/committers-guide article.sgml Log: Mention that SSH is in the base system from 4.0 onwards. Approved by: jhb Revision Changes Path 1.31 +4 -1 doc/en_US.ISO_8859-1/articles/committers-guide/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 18: 0:10 2000 Delivered-To: cvs-all@freebsd.org Received: from home.bsdclub.org (home.bsdclub.org [202.227.26.94]) by hub.freebsd.org (Postfix) with ESMTP id 34C3D37BA69 for ; Fri, 28 Jul 2000 17:59:55 -0700 (PDT) (envelope-from sada@bsdclub.org) Received: (from sada@localhost) by home.bsdclub.org (8.9.3/3.7W) id JAA56160; Sat, 29 Jul 2000 09:58:22 +0900 (JST) Date: Sat, 29 Jul 2000 09:58:22 +0900 (JST) Message-Id: <200007290058.JAA56160@home.bsdclub.org> To: nbm@mithrandr.moria.org Cc: cvs-all@FreeBSD.org, sada@bsdclub.org Subject: Re: cvs commit: src/bin/mv mv.c In-Reply-To: Your message of "Fri, 28 Jul 2000 23:48:36 +0200". <20000728234836.A67366@mithrandr.moria.org> From: SADA Kenji Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Mailer: mnews [version 1.22] 1999-12/19(Sun) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In article <20000728234836.A67366@mithrandr.moria.org> nbm@mithrandr.moria.org writes: >> > Modified files: (Branch: RELENG_4) >> > bin/mv mv.c >> > Log: >> > MFC: 1.26, 1.27 Fix inhelitance of file flags when files are moved >> > across devices. >> >> Is this what causes all those "couldn't set file flags (000000)" >> messages on NFS filesystems? Tell me what revision of src/bin/mv/mv.c you are using. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 18: 0:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4CEF237BA53; Fri, 28 Jul 2000 18:00:25 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA73452; Fri, 28 Jul 2000 18:00:25 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Message-Id: <200007290100.SAA73452@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Fri, 28 Jul 2000 18:00:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/openldap/patches patch-ae X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jedgar 2000/07/28 18:00:25 PDT Added files: net/openldap/patches patch-ae Log: Install ud binary with proper permissions (0755 vs. 0775). Approved by: Maintainer Obtained from: Christian Kleinewaechter (via BugTraq) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 18: 1:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E855037BA66; Fri, 28 Jul 2000 18:01:40 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA73579; Fri, 28 Jul 2000 18:01:40 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Message-Id: <200007290101.SAA73579@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Fri, 28 Jul 2000 18:01:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/ldap/patches patch-ag X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jedgar 2000/07/28 18:01:40 PDT Added files: net/ldap/patches patch-ag Log: Install ud binary with proper permissions (0755 vs. 0775). No response from: Maintainer Obtained from: Christian Kleinewaechter (via BugTraq) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 18:17:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E968937BA66; Fri, 28 Jul 2000 18:17:12 -0700 (PDT) (envelope-from ben@FreeBSD.org) Received: (from ben@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA76650; Fri, 28 Jul 2000 18:17:12 -0700 (PDT) (envelope-from ben@FreeBSD.org) Message-Id: <200007290117.SAA76650@freefall.freebsd.org> From: Ben Smithurst Date: Fri, 28 Jul 2000 18:17:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail Makefile ports/mail/p5-Mail-Sender Makefile ports/mail/p5-Mail-Sender/files md5 ports/mail/p5-Mail-Sender/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ben 2000/07/28 18:17:07 PDT Modified files: mail Makefile Added files: mail/p5-Mail-Sender Makefile mail/p5-Mail-Sender/files md5 mail/p5-Mail-Sender/pkg COMMENT DESCR PLIST Log: Add Mail::Sender: Mail::Sender provides an object oriented interface to sending mails. It doesn't need any outer program. It connects to a mail server directly from Perl, using Socket. PR: 20208 Submitted by: ben Revision Changes Path 1.149 +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 Fri Jul 28 18:18:30 2000 Delivered-To: cvs-all@freebsd.org Received: from warning.follo.net (warning.follo.net [195.204.136.30]) by hub.freebsd.org (Postfix) with ESMTP id E995237BA66; Fri, 28 Jul 2000 18:18:26 -0700 (PDT) (envelope-from eivind@warning.follo.net) Received: (from eivind@localhost) by warning.follo.net (8.9.3/8.9.3) id DAA44871; Sat, 29 Jul 2000 03:18:10 +0200 (CEST) Date: Sat, 29 Jul 2000 03:18:10 +0200 From: Eivind Eklund To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf src/release/sysinstall config.c Message-ID: <20000729031810.H93650@warning.follo.net> References: <200007290035.RAA50659@netplex.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <200007290035.RAA50659@netplex.com.au>; from peter@netplex.com.au on Fri, Jul 28, 2000 at 05:35:31PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Jul 28, 2000 at 05:35:31PM -0700, Peter Wemm wrote: > Just a thought.. Do we have any dependency checking here? ie: if you turn > on NIS/YP and/or NFS, does that either automatically activate portmap or > prompt you that it is needed? Otherwise I expect quite a bit of suprise > when somebody turns on NFS just like they used to and it doesn't work... I sent a heads-up to -current for people upgrading; it does not affect people installing from sysinstall. Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 18:18:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E8E637BC9C; Fri, 28 Jul 2000 18:18:43 -0700 (PDT) (envelope-from ben@FreeBSD.org) Received: (from ben@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA76862; Fri, 28 Jul 2000 18:18:43 -0700 (PDT) (envelope-from ben@FreeBSD.org) Message-Id: <200007290118.SAA76862@freefall.freebsd.org> From: Ben Smithurst Date: Fri, 28 Jul 2000 18:18:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ben 2000/07/28 18:18:42 PDT Modified files: . modules Log: p5-Mail-Sender -> ports/mail/p5-Mail-Sender Revision Changes Path 1.1470 +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 Fri Jul 28 18:31:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BE95D37BBF7; Fri, 28 Jul 2000 18:31:11 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA78182; Fri, 28 Jul 2000 18:31:11 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007290131.SAA78182@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 28 Jul 2000 18:31:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/conf GENERIC src/sys/alpha/conf GENERIC X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/28 18:31:11 PDT Modified files: sys/i386/conf GENERIC sys/alpha/conf GENERIC Log: Comment out `ncr' as `sym' handles all that `ncr' does. (only commented out to make it easy for people to find it that really wants it.) Asked for by: Peter Revision Changes Path 1.267 +3 -3 src/sys/i386/conf/GENERIC 1.87 +3 -3 src/sys/alpha/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 18:37:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 14AF337B6DE; Fri, 28 Jul 2000 18:37:46 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: (from ps@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA78815; Fri, 28 Jul 2000 18:37:45 -0700 (PDT) (envelope-from ps@FreeBSD.org) Message-Id: <200007290137.SAA78815@freefall.freebsd.org> From: Paul Saab Date: Fri, 28 Jul 2000 18:37:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/syslogd syslogd.8 syslogd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ps 2000/07/28 18:37:45 PDT Modified files: usr.sbin/syslogd syslogd.8 syslogd.c Log: Add option 'r' to syslogd which will disable dns queries for every request. This is useful when you have a large site pointed at a single syslog server. Submitted by: Jan Koum Revision Changes Path 1.23 +3 -1 src/usr.sbin/syslogd/syslogd.8 1.65 +11 -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 Fri Jul 28 18:59:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F1A4F37B7AD; Fri, 28 Jul 2000 18:59:32 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA80482; Fri, 28 Jul 2000 18:59:33 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007290159.SAA80482@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 28 Jul 2000 18:59:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/conf GENERIC X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/28 18:59:32 PDT Modified files: sys/alpha/conf GENERIC Log: Add the RAID controller that are known to work (or did on last test). Reviewed by: msmith Revision Changes Path 1.88 +5 -1 src/sys/alpha/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 19: 0:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 43AF637B7AD; Fri, 28 Jul 2000 19:00:13 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Received: (from nsayer@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA80571; Fri, 28 Jul 2000 19:00:13 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Message-Id: <200007290200.TAA80571@freefall.freebsd.org> From: Nick Sayer Date: Fri, 28 Jul 2000 19:00:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net bridge.c bridge.h if_ethersubr.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nsayer 2000/07/28 19:00:12 PDT Modified files: sys/net bridge.c bridge.h if_ethersubr.c Log: Make the bridge_refresh operation automatic when ethernet interfaces are attached or detached. Revision Changes Path 1.23 +7 -2 src/sys/net/bridge.c 1.6 +3 -1 src/sys/net/bridge.h 1.81 +7 -1 src/sys/net/if_ethersubr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 19: 0:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 15D9137B7AD; Fri, 28 Jul 2000 19:00:29 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA80612; Fri, 28 Jul 2000 19:00:29 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007290200.TAA80612@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 28 Jul 2000 19:00:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/conf GENERIC X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/28 19:00:29 PDT Modified files: sys/i386/conf GENERIC Log: Move the RAID controllers next to the SCSI controllers. Revision Changes Path 1.268 +7 -6 src/sys/i386/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 19: 7:50 2000 Delivered-To: cvs-all@freebsd.org Received: from netplex.com.au (adsl-63-207-30-186.dsl.snfc21.pacbell.net [63.207.30.186]) by hub.freebsd.org (Postfix) with ESMTP id 2EABF37B9EB; Fri, 28 Jul 2000 19:07:41 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (peter@localhost [127.0.0.1]) by netplex.com.au (8.9.3/8.9.3) with ESMTP id TAA51058; Fri, 28 Jul 2000 19:07:34 -0700 (PDT) (envelope-from peter@netplex.com.au) Message-Id: <200007290207.TAA51058@netplex.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: Paul Saab Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, jkb@yahoo-inc.com Subject: Re: cvs commit: src/usr.sbin/syslogd syslogd.8 syslogd.c In-Reply-To: Message from Paul Saab of "Fri, 28 Jul 2000 18:37:45 PDT." <200007290137.SAA78815@freefall.freebsd.org> Date: Fri, 28 Jul 2000 19:07:34 -0700 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Paul Saab wrote: > ps 2000/07/28 18:37:45 PDT > > Modified files: > usr.sbin/syslogd syslogd.8 syslogd.c > Log: > Add option 'r' to syslogd which will disable dns queries for every > request. This is useful when you have a large site pointed at a > single syslog server. Actually, -n is pretty much the convention that we use for avoiding dns queries. eg: netstat -rn, route -n, arp -n, who -n, etc. Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 19:12:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A03937B80A; Fri, 28 Jul 2000 19:12:45 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA82803; Fri, 28 Jul 2000 19:12:45 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007290212.TAA82803@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 28 Jul 2000 19:12:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/conf GENERIC X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/28 19:12:45 PDT Modified files: sys/i386/conf GENERIC Log: Revert previous commit. Not all RAID controllers are SCSI. Revision Changes Path 1.269 +6 -7 src/sys/i386/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 19:13:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 054BF37B80A; Fri, 28 Jul 2000 19:13:43 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA82924; Fri, 28 Jul 2000 19:13:42 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007290213.TAA82924@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 28 Jul 2000 19:13:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/conf GENERIC X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/28 19:13:42 PDT Modified files: sys/alpha/conf GENERIC Log: Move RAID controllers to the same position as in i386 GENERIC. Revision Changes Path 1.89 +5 -5 src/sys/alpha/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 19:15:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A8DB537BBA5; Fri, 28 Jul 2000 19:15:29 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA83093; Fri, 28 Jul 2000 19:15:24 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007290215.TAA83093@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 28 Jul 2000 19:15:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/conf GENERIC X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/28 19:15:24 PDT Modified files: (Branch: RELENG_4) sys/alpha/conf GENERIC Log: MFC: add RAID controllers. Revision Changes Path 1.71.2.8 +5 -1 src/sys/alpha/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 19:45:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6FC3437B532; Fri, 28 Jul 2000 19:44:58 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA86260; Fri, 28 Jul 2000 19:44:58 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200007290244.TAA86260@freefall.freebsd.org> From: Will Andrews Date: Fri, 28 Jul 2000 19:44:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/qt21 Makefile ports/x11-toolkits/qt22 Makefile ports/x11-toolkits/qt22/files md5 ports/x11-toolkits/qt22/patches patch-ab ports/x11-toolkits/qt22/pkg DESCR PLIST ports/x11-toolkits/kde-qt-addon Makefile ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/07/28 19:44:58 PDT Modified files: x11-toolkits/qt21 Makefile x11-toolkits/qt22 Makefile x11-toolkits/qt22/files md5 x11-toolkits/qt22/pkg DESCR PLIST x11-toolkits/kde-qt-addon Makefile x11-toolkits/kde-qt-addon/files md5 x11-toolkits/kde-qt-addon/pkg PLIST x11/kdelibs2 Makefile x11/kdelibs2/files md5 x11/kdelibs2/pkg PLIST x11/kdebase2 Makefile x11/kdebase2/files md5 x11/kdebase2/pkg PLIST games/kdegames2 Makefile games/kdegames2/files md5 games/kdegames2/pkg PLIST converters/kdesupport2 Makefile converters/kdesupport2/files md5 converters/kdesupport2/pkg PLIST net/kdenetwork2 Makefile net/kdenetwork2/pkg PLIST x11-clocks/kdetoys2 Makefile x11-clocks/kdetoys2/files md5 x11-clocks/kdetoys2/pkg PLIST editors/koffice Makefile editors/koffice/files md5 editors/koffice/pkg PLIST Removed files: x11-toolkits/qt22/patches patch-ab x11-toolkits/kde-qt-addon/patches patch-aa patch-ab x11/kdelibs2/patches patch-ab patch-ac patch-ad patch-ae patch-ak patch-al patch-am patch-an patch-ao patch-ap patch-aq patch-ar patch-as patch-at patch-au patch-aw x11/kdebase2/patches patch-aa patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-aj patch-ak patch-ax patch-ay patch-ba patch-bb games/kdegames2/patches patch-aa net/kdenetwork2/patches patch-ad x11-clocks/kdetoys2/patches patch-aa editors/koffice/patches patch-aa Log: Update to 20000724A (custom-rolled snapshot). Rejoice, because now Konqueror can load HTML documents, KOffice works semi-well, and KDE2 in general seems less buggy. Only kdeutils was left out of this mega-update. However, it should return soon. :-) The massive reduction in patches is mostly the result of using perl regex replacement. This reduces the amount of time it will take in the future to upgrade these ports, and load on the repository. QT 2.2.0beta0 (aka qt-copy) is officially enabled for the express purpose of allowing KDE2 to compile. It is available in the qt22 port. Additionally, GIF support is re-enabled in both Qt2 ports, so that people can now read GIF images. GIF support is enabled through an internal GIF reader in Qt, and requires no patented libraries. Special effort was made to ensure that people do not install both qt21 and qt22 ports at the same time. I'd like to take a moment to thank the following people for their help: Alex Zepeda , Stephan Kulow , Harri Porten , Waldo Bastian , Marc G. Fournier , Arun Sharma , Matthias Hoelzer-Kluepfel , and many others. Over 150 hours of hard work, testing, etc. were put into this update. Another couple hundred of hours were spent by CPUs trying to compile this behemoth. :-> Special thanks to: Physics Computer Network @ Purdue staff, especially C. Stephen Gunn , for giving me access to an extremely fast machine for doing test builds (it performed 12 full builds of the entire suite in the last 7 days). PR: 18838 Submitted by: Arun Sharma Approved by: imura, asami Revision Changes Path 1.54 +20 -7 ports/x11-toolkits/qt21/Makefile 1.54 +31 -23 ports/x11-toolkits/qt22/Makefile 1.17 +1 -1 ports/x11-toolkits/qt22/files/md5 1.6 +1 -1 ports/x11-toolkits/qt22/pkg/DESCR 1.28 +73 -16 ports/x11-toolkits/qt22/pkg/PLIST 1.5 +20 -9 ports/x11-toolkits/kde-qt-addon/Makefile 1.2 +1 -1 ports/x11-toolkits/kde-qt-addon/files/md5 1.4 +2 -4 ports/x11-toolkits/kde-qt-addon/pkg/PLIST 1.54 +22 -14 ports/x11/kdelibs2/Makefile 1.13 +1 -1 ports/x11/kdelibs2/files/md5 1.26 +164 -187 ports/x11/kdelibs2/pkg/PLIST 1.52 +25 -13 ports/x11/kdebase2/Makefile 1.13 +1 -1 ports/x11/kdebase2/files/md5 1.22 +721 -444 ports/x11/kdebase2/pkg/PLIST 1.41 +17 -11 ports/games/kdegames2/Makefile 1.12 +1 -1 ports/games/kdegames2/files/md5 1.11 +144 -384 ports/games/kdegames2/pkg/PLIST 1.35 +23 -8 ports/converters/kdesupport2/Makefile 1.13 +1 -1 ports/converters/kdesupport2/files/md5 1.16 +2 -6 ports/converters/kdesupport2/pkg/PLIST 1.47 +19 -10 ports/net/kdenetwork2/Makefile 1.15 +230 -78 ports/net/kdenetwork2/pkg/PLIST 1.12 +17 -11 ports/x11-clocks/kdetoys2/Makefile 1.5 +1 -1 ports/x11-clocks/kdetoys2/files/md5 1.4 +12 -11 ports/x11-clocks/kdetoys2/pkg/PLIST 1.5 +19 -12 ports/editors/koffice/Makefile 1.2 +1 -1 ports/editors/koffice/files/md5 1.3 +263 -262 ports/editors/koffice/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 Jul 28 19:50:32 2000 Delivered-To: cvs-all@freebsd.org Received: from home.bsdclub.org (home.bsdclub.org [202.227.26.94]) by hub.freebsd.org (Postfix) with ESMTP id 6D98637B532; Fri, 28 Jul 2000 19:50:15 -0700 (PDT) (envelope-from sada@bsdclub.org) Received: (from sada@localhost) by home.bsdclub.org (8.9.3/3.7W) id LAA57101; Sat, 29 Jul 2000 11:49:59 +0900 (JST) Date: Sat, 29 Jul 2000 11:49:59 +0900 (JST) Message-Id: <200007290249.LAA57101@home.bsdclub.org> To: obrien@FreeBSD.org Cc: cvs-all@FreeBSD.org, sada@bsdclub.org Subject: Re: cvs commit: ports/www/netscape47-communicator.us Makefile ports/www/netscape47-communicator.us/filesmd5 ports/www/netscape47-communicator.us/pkg PLISTports/www/netscape47-navigator.us Makefile ports/www/netscape47-navigator.us/filesmd5 In-Reply-To: Your message of "Mon, 24 Jul 2000 13:41:49 -0700". <20000724134149.B64504@dragon.nuxi.com> From: SADA Kenji Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Mailer: mnews [version 1.22] 1999-12/19(Sun) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In article <20000724134149.B64504@dragon.nuxi.com> obrien@FreeBSD.org writes: >> On Tue, Jul 25, 2000 at 05:34:54AM +0900, SADA Kenji wrote: >> > Why did you remove ``libjsd.so.1.0'' line from >> > ports/www/netscape47-communicator.us/pkg/PLIST ? >> > In my environment that line looks required. >> >> Not in mine. ``make package'' complained bitterly about it and ``find >> ${PREFIX} -name libj\* didn't find anything (on the Alpha). Are you sure >> you don't have a file by that name from a previous version? Of course I >> could be wrong (maybe it is an i386-only thing), and will fix it if >> someone can verify that it should exit. I've checked it and found that ``libjsd.so.1.0'' exactly exists in netscape i386 distributions. So I need your help, could you verify below patch to www/n47-c on your Alpha ? And probably your .us ports also need same fix. Here is the messages on my 4-stable. >> # make deinstall >> ===> Deinstalling for netscape-communicator-4.74.us >> pkg_delete: unable to completely remove directory '/usr/local/lib/netscape' >> pkg_delete: couldn't entirely delete package (perhaps the packing list is >> incorrectly specified?) -- begin 644 diff.gz M'XL(")E!@CD``V1I9F8`K9IK<^(V%(8_XU^A[H:=[A#;&&@N3+--N"1ADY`, M3IKV$R-L`0J^C2P#Z6[^>R5S"1!;2-/N9$#H/*]T='2.K]L)7#2O@SLX04/L M(>WLO__3>DT;\,'JP!R'/C(#9QJ;44AH;,YF,S-`-'9@A&K'NA/Z?A)@!]*0 MF"L?#J<:091@-,7!"!#V%>,P`)9Q=**Y>#@$>@/H`Z`G0)\!G?#^=_]U75__ M*%3*Y;)9/C8K)Z!2K5N5>NVXD`Y3*I4RJ%-0KM0KQXS2SL^!7CFT+%!*/\_/ M-?`9M"!%P"&(?;GU0J%2`Y=H`*S3TV-N?69K9;T%.D81CL>L2],_@X-+@E## M;M6!2@#2Q8(,]T$,70C:\P@<:*7WT0_X;$`##_>]Q^[%7?N/L\)J$OW@1Z-W M_VRW>_V+7O--TSGS9[MG=^Z[#'NWLKXWK;1A_6!D$QAX"'YQF9=;O/VJ=5N?>76P/$2%X'?![%K\`4;$4&&/_FV"&CU\(@%M'IHE=.(WEW8 MC^U>J]/C,QG-)]Y\,PWC/4!;\='`<^_&[C53KUDSI=O0.CWF>5`: MX,`L%I<1+A;U=9NG7;&HE<[1'#G`"X`>#T&1_36V^-HNL6GC\"J?#)($C$V" ME"8^T(<2YIVIBL6N_=1@&U\LFK>=9KMKM[<[NZOAH+MMZ+4O6G<[\%\WZ#5^ M]5N-[>Y!&$Y\2";&F/K;%D&@#!;(;?@%3J'I>#".46Q"/#>'819B:Y9_*[J[2SNS`2A5`I M!92V7VGK=V&/JL!3!5B84$K)M`M3H@`+LRXCXZX:E:I54=,(LS23[S?PZ#=E M4;-K6]91K2H0CJ-$Y6B6A1N#D:I"6":9"F&M9"K&HEW/5HB2*E,AK+-,A;#8 M,A7"NLA4$.4YA.64J8@GR@KE=0CK-E,A4X]YPOU%)E!*5!H>.I;%,D:T*(S# MR"KO@XC2!4@6+B[`3(6P`#,5PG+*5`C+*5,A+*=,A4R*Y`GWIXA`*9$B+Q#5 M]NT^_[$?PN%^)HRH#!:[>S/29'9@,ZD[Z+(&+'[2`&!XSU$C+P]1"*:Q(-!QOW'VIQ0&@;&2YQM M;@:T!2D4V1_#T,L??P7D#=">8RJ.4DH(8Y`2HAA;N7ZV+6O.T/B MYP_0A=.GCL`F$G@<' M!*:-_`5G\]>N($NR);RAXA8['C@C$@D."A\UO-L81](\/W\,PGE%:@X_"F-$ MTH;4VC=XV7!M2'A#T2WJ#8C24H:II*HBD8[PDJ=PA)TPD'$K?('%*V1%`:*2`DK"9.!)GYI7^/);6!4S2)UQO@OL*C@>LDK, M'V--?'AF$'G)"`?LH!(]L-N)C&=O*\##`_Y6=O'3B'>>*1$TPC$EK]N]<80\ M;[UDP\5.ECU"02VN5FJ&"W=>G$S9L%KIW,6$^."#,-.R=#?3EK<'18 M?NR2))=G%CEZ=4:5H_D%FARYN@Z5I1$:#8,C<04/FV_G\+X.=/0$F"M'\!I\ZLK^\D```K ` end To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 19:50:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C41537B737; Fri, 28 Jul 2000 19:50:29 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA86766; Fri, 28 Jul 2000 19:50:29 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200007290250.TAA86766@freefall.freebsd.org> From: Will Andrews Date: Fri, 28 Jul 2000 19:50:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/07/28 19:50:29 PDT Modified files: . modules Log: Add the qt22 module after repo-copy. Revision Changes Path 1.1471 +7 -6 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 20:14:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3403C37B903; Fri, 28 Jul 2000 20:14:34 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA89983; Fri, 28 Jul 2000 20:14:32 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200007290314.UAA89983@freefall.freebsd.org> From: Will Andrews Date: Fri, 28 Jul 2000 20:14:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/kde2 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/07/28 20:14:32 PDT Modified files: x11/kde2 Makefile Log: Update the KDE2 meta-port to 20000724A, and leave out the kdeutils port so that attempts to use this will work. Revision Changes Path 1.32 +2 -5 ports/x11/kde2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 20:54:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 64B0437B7DC; Fri, 28 Jul 2000 20:54:29 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA92958; Fri, 28 Jul 2000 20:54:28 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007290354.UAA92958@freefall.freebsd.org> From: SADA Kenji Date: Fri, 28 Jul 2000 20:54:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/icewm-i18n Makefile ports/x11-wm/icewm-i18n/files md5 ports/x11-wm/icewm-i18n/pkg DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/28 20:54:28 PDT Modified files: x11-wm/icewm-i18n Makefile x11-wm/icewm-i18n/files md5 x11-wm/icewm-i18n/pkg DESCR PLIST Log: Upgrade to 1.0.4 nls patch-level 4. PR: ports/20274 Submitted by: maintainer Revision Changes Path 1.4 +10 -3 ports/x11-wm/icewm-i18n/Makefile 1.3 +1 -1 ports/x11-wm/icewm-i18n/files/md5 1.2 +3 -5 ports/x11-wm/icewm-i18n/pkg/DESCR 1.2 +2 -0 ports/x11-wm/icewm-i18n/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 Jul 28 21: 1:13 2000 Delivered-To: cvs-all@freebsd.org Received: from mercury.mich.com (mercury.mich.com [64.79.64.32]) by hub.freebsd.org (Postfix) with ESMTP id 45E1137BA25; Fri, 28 Jul 2000 21:01:09 -0700 (PDT) (envelope-from will@almanac.yi.org) Received: from argon.gryphonsoft.com (pm005-017.dialup.bignet.net [64.79.80.209]) by mercury.mich.com (8.9.3/8.9.3) with ESMTP id AAA03447; Sat, 29 Jul 2000 00:01:07 -0400 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id CBCEE194F; Fri, 28 Jul 2000 23:58:01 -0400 (EDT) Date: Fri, 28 Jul 2000 23:58:01 -0400 From: Will Andrews To: Ben Smithurst Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/mail Makefile ports/mail/p5-Mail-Sender Makefile ports/mail/p5-Mail-Sender/files md5 ports/mail/p5-Mail-Sender/pkg COMMENT DESCR PLIST Message-ID: <20000728235801.D11880@argon.gryphonsoft.com> References: <200007290117.SAA76650@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200007290117.SAA76650@freefall.freebsd.org>; from ben@FreeBSD.org on Fri, Jul 28, 2000 at 06:17:07PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Jul 28, 2000 at 06:17:07PM -0700, Ben Smithurst wrote: > Submitted by: ben This is default. -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 21: 2:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B0EF937B9B8; Fri, 28 Jul 2000 21:02:35 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: (from ps@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA93632; Fri, 28 Jul 2000 21:02:35 -0700 (PDT) (envelope-from ps@FreeBSD.org) Message-Id: <200007290402.VAA93632@freefall.freebsd.org> From: Paul Saab Date: Fri, 28 Jul 2000 21:02:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/syslogd syslogd.8 syslogd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ps 2000/07/28 21:02:35 PDT Modified files: usr.sbin/syslogd syslogd.8 syslogd.c Log: Change option -r to -n inline with conventions we use elsewhere. I guess it serves me right for using a patch directly from Jan Koum. :) Requested by: many Revision Changes Path 1.24 +3 -3 src/usr.sbin/syslogd/syslogd.8 1.66 +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 Fri Jul 28 21: 8:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9361637B57C; Fri, 28 Jul 2000 21:08:19 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: (from ps@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA95334; Fri, 28 Jul 2000 21:08:19 -0700 (PDT) (envelope-from ps@FreeBSD.org) Message-Id: <200007290408.VAA95334@freefall.freebsd.org> From: Paul Saab Date: Fri, 28 Jul 2000 21:08:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files src/sys/kern uipc_accf.c kern_accf.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ps 2000/07/28 21:08:19 PDT Modified files: (Branch: RELENG_4) sys/conf files Added files: (Branch: RELENG_4) sys/kern uipc_accf.c Removed files: (Branch: RELENG_4) sys/kern kern_accf.c Log: Alfred merged the wrong file for the accept filter core. Revision Changes Path 1.340.2.20 +2 -2 src/sys/conf/files To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 21: 9:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 457F937B81B; Fri, 28 Jul 2000 21:09:08 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: (from ps@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA95443; Fri, 28 Jul 2000 21:09:08 -0700 (PDT) (envelope-from ps@FreeBSD.org) Message-Id: <200007290409.VAA95443@freefall.freebsd.org> From: Paul Saab Date: Fri, 28 Jul 2000 21:09:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_accf.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ps 2000/07/28 21:09:08 PDT Removed files: sys/kern kern_accf.c Log: Remove this file incase of further confusion. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 21:28:15 2000 Delivered-To: cvs-all@freebsd.org Received: from thelab.hub.org (nat193.142.mpoweredpc.net [142.177.193.142]) by hub.freebsd.org (Postfix) with ESMTP id E638337B81B; Fri, 28 Jul 2000 21:28:07 -0700 (PDT) (envelope-from scrappy@hub.org) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.9.3/8.9.3) with ESMTP id BAA74957; Sat, 29 Jul 2000 01:26:03 -0300 (ADT) (envelope-from scrappy@hub.org) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Sat, 29 Jul 2000 01:26:03 -0300 (ADT) From: The Hermit Hacker To: Will Andrews Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/x11/kde2 Makefile In-Reply-To: <200007290314.UAA89983@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG any way of putting in a check for XFree86 version? :) If 4.0 mark as BROKEN and save other ppl the headaches ... ? On Fri, 28 Jul 2000, Will Andrews wrote: > will 2000/07/28 20:14:32 PDT > > Modified files: > x11/kde2 Makefile > Log: > Update the KDE2 meta-port to 20000724A, and leave out the kdeutils > port so that attempts to use this will work. > > Revision Changes Path > 1.32 +2 -5 ports/x11/kde2/Makefile > > Marc G. Fournier ICQ#7615664 IRC Nick: Scrappy Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 21:51: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from mercury.mich.com (mercury.mich.com [64.79.64.32]) by hub.freebsd.org (Postfix) with ESMTP id 1404B37B8C6; Fri, 28 Jul 2000 21:50:52 -0700 (PDT) (envelope-from will@almanac.yi.org) Received: from argon.gryphonsoft.com (pm005-017.dialup.bignet.net [64.79.80.209]) by mercury.mich.com (8.9.3/8.9.3) with ESMTP id AAA10670; Sat, 29 Jul 2000 00:50:48 -0400 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id C9811195E; Sat, 29 Jul 2000 00:47:42 -0400 (EDT) Date: Sat, 29 Jul 2000 00:47:42 -0400 From: Will Andrews To: The Hermit Hacker Cc: Will Andrews , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/x11/kde2 Makefile Message-ID: <20000729004742.E11880@argon.gryphonsoft.com> References: <200007290314.UAA89983@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from scrappy@hub.org on Sat, Jul 29, 2000 at 01:26:03AM -0300 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Jul 29, 2000 at 01:26:03AM -0300, The Hermit Hacker wrote: > any way of putting in a check for XFree86 version? :) If 4.0 mark as > BROKEN and save other ppl the headaches ... ? Find one (i.e. a file in 4.0 not in 4.0.1) and tell me. :-) -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 23:20:37 2000 Delivered-To: cvs-all@freebsd.org Received: from prince.net.ebina.hitachi.co.jp (n00232.max4.PHS.ariake.mopera.ne.jp [210.250.245.232]) by hub.freebsd.org (Postfix) with ESMTP id 1F33A37B5A8; Fri, 28 Jul 2000 23:20:24 -0700 (PDT) (envelope-from sumikawa@ebina.hitachi.co.jp) Received: from localhost (localhost [127.0.0.1]) by prince.net.ebina.hitachi.co.jp (8.9.3/3.7W) with ESMTP id PAA00385; Sat, 29 Jul 2000 15:18:46 +0900 (JST) From: sumikawa@ebina.hitachi.co.jp To: kbyanc@posi.net Cc: sumikawa@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Cc: sumikawa@ebina.hitachi.co.jp Subject: Re: cvs commit: ports/net/mtr Makefile ports/net/mtr/files md5 In-Reply-To: References: <200007191505.IAA38539@freefall.freebsd.org> X-Mailer: xcite1.31> Mew version 1.94.2 on Emacs 20.7 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000729151846V.sumikawa@ebina.hitachi.co.jp> Date: Sat, 29 Jul 2000 15:18:46 +0900 (JST) X-Dispatcher: imput version 20000228(IM140) Lines: 13 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kbyanc> Could you please review my original patch submitted in PR kbyanc> 19339 again. The version in the 20000719 kame patch still kbyanc> does not work with kernels compiled without IPv6 support. As kbyanc> such, this commit still does not fix the problem and mtr is kbyanc> useless unless IPv6 is compiled into the kernel. Thanks, Hmmm, it's curious. I've checked it works on both of IPv4-only kernel and IPv6-enabled kernel in my environment. Ok, I'll try to recheck it. --- Munechika SUMIKAWA @ KAME Project / FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jul 28 23:24: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 04BD537BA07; Fri, 28 Jul 2000 23:24:03 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA08874; Fri, 28 Jul 2000 23:24:03 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007290624.XAA08874@freefall.freebsd.org> From: SADA Kenji Date: Fri, 28 Jul 2000 23:24:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/28 23:24:02 PDT Modified files: . modules Log: tcpillust --> ports/net/tcpillust Revision Changes Path 1.1472 +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 Fri Jul 28 23:26: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 54B6037B5A8; Fri, 28 Jul 2000 23:26:00 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA08976; Fri, 28 Jul 2000 23:26:00 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007290626.XAA08976@freefall.freebsd.org> From: SADA Kenji Date: Fri, 28 Jul 2000 23:26:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/tcpillust - Imported sources X-FreeBSD-CVS-Branch: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/28 23:26:00 PDT ports/net/tcpillust - Imported sources Update of /home/ncvs/ports/net/tcpillust In directory freefall.freebsd.org:/d/home/sada/work/tcpillust Log Message: New port Tcpillust - A graphical TCP connection analysis tool Tcpillust takes tcpdump file(s) specified on the command line and draw pictures like figures in the ``TCP/IP Illustrated'' series. PR: ports/18130 Submitted by: Yoshifumi Nishida Status: Vendor Tag: NISHIDA Release Tags: v1_0a N ports/net/tcpillust/Makefile N ports/net/tcpillust/files/md5 N ports/net/tcpillust/pkg/COMMENT N ports/net/tcpillust/pkg/PLIST N ports/net/tcpillust/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 Fri Jul 28 23:28:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E6DA837BB40; Fri, 28 Jul 2000 23:28:07 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA09123; Fri, 28 Jul 2000 23:28:08 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007290628.XAA09123@freefall.freebsd.org> From: SADA Kenji Date: Fri, 28 Jul 2000 23:28:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/28 23:28:08 PDT Modified files: net Makefile Log: Activate tcpillust. PR: ports/18130 Submitted by: Yoshifumi Nishida Revision Changes Path 1.386 +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 Sat Jul 29 0:11:11 2000 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (beachchick.freebsd.dk [212.242.32.208]) by hub.freebsd.org (Postfix) with ESMTP id 1F75237BA26; Sat, 29 Jul 2000 00:11:02 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.3/8.9.3) with ESMTP id JAA01659; Sat, 29 Jul 2000 09:10:56 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Paul Saab Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/syslogd syslogd.8 syslogd.c In-reply-to: Your message of "Fri, 28 Jul 2000 18:37:45 PDT." <200007290137.SAA78815@freefall.freebsd.org> Date: Sat, 29 Jul 2000 09:10:56 +0200 Message-ID: <1657.964854656@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <200007290137.SAA78815@freefall.freebsd.org>, Paul Saab writes: >ps 2000/07/28 18:37:45 PDT > > Modified files: > usr.sbin/syslogd syslogd.8 syslogd.c > Log: > Add option 'r' to syslogd which will disable dns queries for every > request. This is useful when you have a large site pointed at a > single syslog server. > > Submitted by: Jan Koum > This should be '-n' just line in arp, netstat, route and so on... -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD coreteam member | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 0:14: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E62837BA2E; Sat, 29 Jul 2000 00:14:06 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA13726; Sat, 29 Jul 2000 00:14:05 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007290714.AAA13726@freefall.freebsd.org> From: Peter Wemm Date: Sat, 29 Jul 2000 00:14:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/i386/gen rfork_thread.S Makefile.inc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/29 00:14:05 PDT Modified files: lib/libc/i386/gen Makefile.inc Added files: lib/libc/i386/gen rfork_thread.S Log: rfork(2) wrapper for simple rfork-style threads. I have lost count of the number of times I have given this to people and got asked: why isn't it in libc? It is impossible to do this without assembler glue to reset the stack for the new child process. int rfork_thread(flags, stack_addr, start_fnc, start_arg) int flags; Flags to rfork system call. See rfork(2). void *stack_addr; Top of stack for thread. int (*start_fnc)(void *); Address of thread function to call in child. void *start_arg; Argument to pass to the thread function in child. This is deliberately not documented or prototyped in includes until the corresponding alpha version is written. Revision Changes Path 1.11 +2 -2 src/lib/libc/i386/gen/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 Jul 29 0:15:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 566E137BB02; Sat, 29 Jul 2000 00:15:35 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA13848; Sat, 29 Jul 2000 00:15:35 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007290715.AAA13848@freefall.freebsd.org> From: SADA Kenji Date: Sat, 29 Jul 2000 00:15:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/29 00:15:34 PDT Modified files: . modules Log: nadar --> ports/games/nadar Revision Changes Path 1.1473 +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 Jul 29 0:18:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B888F37BA26; Sat, 29 Jul 2000 00:18:22 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA14343; Sat, 29 Jul 2000 00:18:22 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007290718.AAA14343@freefall.freebsd.org> From: SADA Kenji Date: Sat, 29 Jul 2000 00:18:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/nadar - Imported sources X-FreeBSD-CVS-Branch: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/29 00:18:21 PDT ports/games/nadar - Imported sources Update of /home/ncvs/ports/games/nadar In directory freefall.freebsd.org:/d/home/sada/work/nadar Log Message: New ports - N.A.D.A.R. is a network tank battle game. You can play N.A.D.A.R. with some players over the network. PR: ports/18159 Submitted by: Sakai Hiroaki Status: Vendor Tag: HIROAKI Release Tags: vb05 N ports/games/nadar/Makefile N ports/games/nadar/files/md5 N ports/games/nadar/patches/patch-aa N ports/games/nadar/patches/patch-ab N ports/games/nadar/pkg/PLIST N ports/games/nadar/pkg/DESCR N ports/games/nadar/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 Sat Jul 29 0:20:21 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 28A1137BA2E; Sat, 29 Jul 2000 00:20:18 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA14602; Sat, 29 Jul 2000 00:20:18 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007290720.AAA14602@freefall.freebsd.org> From: SADA Kenji Date: Sat, 29 Jul 2000 00:20:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/29 00:20:17 PDT Modified files: games Makefile Log: Activate nadar. PR: ports/18159 Submitted by: Sakai Hiroaki Revision Changes Path 1.289 +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 Sat Jul 29 0:28:43 2000 Delivered-To: cvs-all@freebsd.org Received: from camel.ethereal.net (camel.ethereal.net [216.200.22.209]) by hub.freebsd.org (Postfix) with ESMTP id EAF7A37BA26; Sat, 29 Jul 2000 00:28:35 -0700 (PDT) (envelope-from jkb@camel.ethereal.net) Received: (from jkb@localhost) by camel.ethereal.net (8.10.0.Beta10/8.10.0.Beta10) id e6T7QxH33282; Sat, 29 Jul 2000 00:26:59 -0700 (PDT) Date: Sat, 29 Jul 2000 00:26:59 -0700 From: Jan Koum To: Peter Wemm Cc: Paul Saab , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.sbin/syslogd syslogd.8 syslogd.c Message-ID: <20000729002659.A32477@ethereal.net> References: <200007290207.TAA51058@netplex.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.1i In-Reply-To: <200007290207.TAA51058@netplex.com.au>; from peter@netplex.com.au on Fri, Jul 28, 2000 at 07:07:34PM -0700 X-Operating-System: FreeBSD camel.ethereal.net 3.4-RELEASE FreeBSD 3.4-RELEASE X-Unix-Uptime: 12:06AM up 21 days, 16:55, 25 users, load averages: 0.14, 0.22, 0.23 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG oops, sorry. all i can say in my defense is that commands listed below as an example are not long living daemons like syslogd (but yes, i still agree with you it should have been -n instead) On Fri, Jul 28, 2000 at 07:07:34PM -0700, Peter Wemm wrote: > Paul Saab wrote: > > ps 2000/07/28 18:37:45 PDT > > > > Modified files: > > usr.sbin/syslogd syslogd.8 syslogd.c > > Log: > > Add option 'r' to syslogd which will disable dns queries for every > > request. This is useful when you have a large site pointed at a > > single syslog server. > > Actually, -n is pretty much the convention that we use for avoiding dns > queries. eg: netstat -rn, route -n, arp -n, who -n, etc. > > Cheers, > -Peter > -- > Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au > "All of this is for nothing if we don't go to the stars" - JMS/B5 > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe cvs-all" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 1:11:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4AE6437B72C; Sat, 29 Jul 2000 01:11:23 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA19838; Sat, 29 Jul 2000 01:11:23 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200007290811.BAA19838@freefall.freebsd.org> From: Jim Mock Date: Sat, 29 Jul 2000 01:11:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en index.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/07/29 01:11:23 PDT Modified files: en index.sgml Log: Rewrite the first paragraph of the site to reflect reality. We don't just support ``PC-compatible'' computers anymore. While I'm here, comment out the ``Sponsored by Walnut Creek CDROM'' logo -- Walnut Creek CDROM is now BSDi. Also shrink down width of the Daemon News and Powered by FreeBSD logos just a tiny bit so the site fits into a browser window width of 585 without the nasty scrollbar on the bottom. If anyone has any objections to the last bit of this commit, feel free to back it out. Partially submitted by: alfred Revision Changes Path 1.89 +12 -9 www/en/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 2:23:58 2000 Delivered-To: cvs-all@freebsd.org Received: from zibbi.mikom.csir.co.za (zibbi.mikom.csir.co.za [146.64.24.58]) by hub.freebsd.org (Postfix) with ESMTP id 0AB6D37B811; Sat, 29 Jul 2000 02:23:37 -0700 (PDT) (envelope-from jhay@zibbi.mikom.csir.co.za) Received: (from jhay@localhost) by zibbi.mikom.csir.co.za (8.10.1/8.10.1) id e6T9Mqc78590; Sat, 29 Jul 2000 11:22:52 +0200 (SAT) From: John Hay Message-Id: <200007290922.e6T9Mqc78590@zibbi.mikom.csir.co.za> Subject: Re: cvs commit: src/release/scripts dokern.sh In-Reply-To: <200007282048.NAA49823@netplex.com.au> from Peter Wemm at "Jul 28, 2000 01:48:11 pm" To: peter@netplex.com.au (Peter Wemm) Date: Sat, 29 Jul 2000 11:22:52 +0200 (SAT) Cc: groudier@club-internet.fr, cvs-committers@freebsd.org, cvs-all@freebsd.org X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > * Remove the `ncr' driver in the Alpha case -- the `sym' driver works with > > every known Alpha. > > I think it is time to switch -current to sym-only. No disrespect towards the > ncr driver writer intended, but the sym driver is well maintained, robust, > up-to-date, not implicated in the recurring fxp+ncr bugs, and supports all > the hardware. It does not support all hardware yet. I have an old 810 card that don't even want to boot using the sym driver. It just go into a loop of printing errors at the stage where it should probe the disks. The same machine works just fine with the ncr driver. John -- John Hay -- John.Hay@icomtek.csir.co.za Console: serial port BIOS drive A: is disk0 BIOS drive C: is disk1 BIOS drive D: is disk2 BIOS 639kB/31744kB available memory FreeBSD/i386 bootstrap loader, Revision 0.8 (jhay@angel.cids.org.za, Sun Jul 16 17:19:03 SAST 2000) Loading /boot/defaults/loader.conf /kernel text=0x152b2a data=0x1f864+0x20af4 syms=[0x4+0x24150+0x4+0x29aea] - Hit [Enter] to boot immediately, or any other key for command prompt. Booting [kernel] in 8 seconds... Type '?' for a list of commands, 'help' for more detailed help. ok boot -v SMAP type=01 base=00000000 00000000 len=00000000 0009fc00 SMAP type=01 base=00000000 0009fc00 len=00000000 00000400 SMAP type=02 base=00000000 000f0000 len=00000000 00010000 SMAP type=01 base=00000000 00100000 len=00000000 01f00000 SMAP type=02 base=00000000 fec00000 len=00000000 00001000 SMAP type=02 base=00000000 fee00000 len=00000000 00001000 SMAP type=02 base=00000000 ffff0000 len=00000000 00010000 Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT #2: Sat Jul 29 09:04:15 SAST 2000 jhay@angel.cids.org.za:/usr/src/sys/compile/TOBY Calibrating clock(s) ... TSC clock: 89997030 Hz, i8254 clock: 1193144 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz CLK_USE_TSC_CALIBRATION not specified - using old calibration method Timecounter "TSC" frequency 80678965 Hz CPU: Pentium/P54C (80.68-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x525 Stepping = 5 Features=0x3bf real memory = 33554432 (32768K bytes) Physical memory chunk(s): 0x00001000 - 0x0009ffff, 651264 bytes (159 pages) 0x002fc000 - 0x01ff7fff, 30392320 bytes (7420 pages) avail memory = 29954048 (29252K bytes) bios32: Found BIOS32 Service Directory header at 0xc00fa520 bios32: Entry = 0xfa850 (c00fa850) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0xf0000+0xa880 Other BIOS signatures found: ACPI: 00000000 Preloaded elf kernel "kernel" at 0xc02e3000. Intel Pentium detected, installing workaround for F00F bug mem: random: nulldev: npx0: on motherboard npx0: INT 16 interface i586_bzero() bandwidth = 59435364 bytes/sec bzero() bandwidth = 29901623 bytes/sec pcib0: on motherboard found-> vendor=0x8086, dev=0x04a3, revid=0x11 class=06-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 found-> vendor=0x8086, dev=0x0482, revid=0x04 class=00-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 found-> vendor=0x5333, dev=0x88f0, revid=0x00 class=03-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=11 map[10]: type 1, range 32, base f0000000, size 25, enabled found-> vendor=0x1000, dev=0x0001, revid=0x01 class=00-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=12 map[10]: type 4, range 32, base 00006000, size 8, enabled map[14]: type 1, range 32, base f2000000, size 8, enabled pci0: on pcib0 pci0: (vendor=0x8086, dev=0x04a3) at 0.0 isab0: at device 2.0 on pci0 eisa0: on isab0 mainboard0: on eisa0 slot 0 isa0: on isab0 pci0: (vendor=0x5333, dev=0x88f0) at 3.0 irq 11 sym0: <810> port 0x6000-0x60ff mem 0xf2000000-0xf20000ff irq 12 at device 4.0 on pci0 sym0: No NVRAM, ID 7, Fast-10, SE, parity checking sym0: open drain IRQ line driver sym0: using NCR-generic firmware. Trying Read_Port at 203 Trying Read_Port at 243 Trying Read_Port at 283 Trying Read_Port at 2c3 Trying Read_Port at 303 Trying Read_Port at 343 Trying Read_Port at 383 Trying Read_Port at 3c3 sc-: sc0 exists, using next available unit number vga-: vga0 exists, using next available unit number isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 fb0: vga0, vga, type:VGA (5), flags:0x7007f fb0: port:0x3c0-0x3df, crtc:0x3d4, mem:0xa0000 0x20000 fb0: init mode:24, bios mode:3, current mode:24 fb0: window:0xc00b8000 size:32k gran:32k, buf:0 size:32k VGA parameters upon power-up 50 18 10 00 00 00 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0e 0f 00 00 04 b0 9c 8e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff VGA parameters in BIOS for mode 24 50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff EGA/VGA parameters to be used for mode 24 50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff atkbd: the current kbd controller command byte 0045 kbdc: DIAGNOSE status:0055 kbdc: TEST_KBD_PORT status:0000 atkbd: keyboard ID 0xffffffff (1) kbdc: RESET_KBD return code:00fa kbdc: RESET_KBD status:00aa sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x0> sc0: fb0, kbd0, terminal emulator: sc (syscons terminal) ata0: iobase=0x01f0 altiobase=0x03f6 bmaddr=0x0000 ata0: mask=00 status0=ff status1=ff ata0: probe allocation failed ata0 failed to probe at port 0x1f0-0x1f7,0x3f6 irq 14 on isa0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 kbd0: atkbd0, AT 84 (1), config:0x0, flags:0x3d0000 psm0: current command byte:0045 kbdc: TEST_AUX_PORT status:0001 psm0: strange result for test aux port (1). kbdc: RESET_AUX return code:ffffffff kbdc: RESET_AUX return code:ffffffff kbdc: RESET_AUX return code:ffffffff kbdc: DIAGNOSE status:0055 kbdc: TEST_KBD_PORT status:0000 psm0: failed to reset the aux device. ed0 at port 0x280-0x29f iomem 0xd8000-0xdbfff irq 5 on isa0 bpf: ed0 attached ed0: address 00:00:c0:d3:de:d6, type SMC8216/SMC8216C (16 bit) fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fd0: <1440-KB 3.5" drive> on fdc0 drive 0 gusc0 failed to probe at port 0x220 irq 5 drq 1 flags 0x13 on isa0 ppc0: parallel port found at 0x378 ppc0: This ppc chipset does not support the extended I/O port range...no problem ppc0: SPP ppc0: at port 0x378-0x37b irq 7 on isa0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode ppi0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port plip0: on ppbus0 bpf: lp0 attached sc1: no video adapter is found. sc1: failed to probe on isa0 sio0: irq maps: 0x1041 0x1051 0x1041 0x1041 sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16450, console sio1: irq maps: 0x1041 0x1049 0x1041 0x1041 sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16450 vga1: failed to probe on isa0 isa_probe_children: probing PnP devices sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). sym0: script cmd = 808cfd02 sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. sym0: PCI STATUS = 0x8100 (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 2:34:13 2000 Delivered-To: cvs-all@freebsd.org Received: from netplex.com.au (adsl-63-207-30-186.dsl.snfc21.pacbell.net [63.207.30.186]) by hub.freebsd.org (Postfix) with ESMTP id C173837B506; Sat, 29 Jul 2000 02:34:07 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (peter@localhost [127.0.0.1]) by netplex.com.au (8.9.3/8.9.3) with ESMTP id CAA52976; Sat, 29 Jul 2000 02:33:49 -0700 (PDT) (envelope-from peter@netplex.com.au) Message-Id: <200007290933.CAA52976@netplex.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: John Hay Cc: groudier@club-internet.fr, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/release/scripts dokern.sh In-Reply-To: Message from John Hay of "Sat, 29 Jul 2000 11:22:52 +0200." <200007290922.e6T9Mqc78590@zibbi.mikom.csir.co.za> Date: Sat, 29 Jul 2000 02:33:49 -0700 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG John Hay wrote: > > > > > * Remove the `ncr' driver in the Alpha case -- the `sym' driver works w ith > > > every known Alpha. > > > > I think it is time to switch -current to sym-only. No disrespect towards t he > > ncr driver writer intended, but the sym driver is well maintained, robust, > > up-to-date, not implicated in the recurring fxp+ncr bugs, and supports all > > the hardware. > > It does not support all hardware yet. I have an old 810 card that don't > even want to boot using the sym driver. It just go into a loop of printing > errors at the stage where it should probe the disks. The same machine > works just fine with the ncr driver. I suppose this is a silly question, but you have reported this already, right? > sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). > sym0: script cmd = 808cfd02 > sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 ff ff ff. > sym0: PCI STATUS = 0x8100 > (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 2:50:41 2000 Delivered-To: cvs-all@freebsd.org Received: from zibbi.mikom.csir.co.za (zibbi.mikom.csir.co.za [146.64.24.58]) by hub.freebsd.org (Postfix) with ESMTP id 3575F37B6FD; Sat, 29 Jul 2000 02:50:31 -0700 (PDT) (envelope-from jhay@zibbi.mikom.csir.co.za) Received: (from jhay@localhost) by zibbi.mikom.csir.co.za (8.10.1/8.10.1) id e6T9nwd79125; Sat, 29 Jul 2000 11:49:58 +0200 (SAT) From: John Hay Message-Id: <200007290949.e6T9nwd79125@zibbi.mikom.csir.co.za> Subject: Re: cvs commit: src/release/scripts dokern.sh In-Reply-To: <200007290933.CAA52976@netplex.com.au> from Peter Wemm at "Jul 29, 2000 02:33:49 am" To: peter@netplex.com.au (Peter Wemm) Date: Sat, 29 Jul 2000 11:49:58 +0200 (SAT) Cc: jhay@icomtek.co.za (John Hay), groudier@club-internet.fr, cvs-committers@freebsd.org, cvs-all@freebsd.org X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > > > > I think it is time to switch -current to sym-only. No disrespect towards t > he > > > ncr driver writer intended, but the sym driver is well maintained, robust, > > > up-to-date, not implicated in the recurring fxp+ncr bugs, and supports all > > > the hardware. > > > > It does not support all hardware yet. I have an old 810 card that don't > > even want to boot using the sym driver. It just go into a loop of printing > > errors at the stage where it should probe the disks. The same machine > > works just fine with the ncr driver. > > I suppose this is a silly question, but you have reported this already, > right? Not so silly. :-/ I didn't realise that the sym driver was supposed to be able to handle the older cards until I read this email. :-/ > > > sym0:0: ERROR (c0:0) (8-0-0) (0/3) @ (scripta 170:720d0000). > > sym0: script cmd = 808cfd02 > > sym0: regdump: ca 00 00 03 47 00 00 1f 00 08 00 00 80 00 0f 02 00 f0 f3 01 20 > ff ff ff. > > sym0: PCI STATUS = 0x8100 > > (noperiph:sym0:0:-1:-1): SCSI BUS reset detected. > John -- John Hay -- John.Hay@icomtek.csir.co.za To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 3: 5:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0D39237B6FD; Sat, 29 Jul 2000 03:05:27 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA28911; Sat, 29 Jul 2000 03:05:26 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007291005.DAA28911@freefall.freebsd.org> From: Peter Wemm Date: Sat, 29 Jul 2000 03:05:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern syscalls.master src/sys/svr4 syscalls.master src/sys/alpha/osf1 syscalls.master src/sys/i386/ibcs2 syscalls.master src/sys/i386/linux syscalls.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/29 03:05:26 PDT Modified files: sys/kern syscalls.master sys/svr4 syscalls.master sys/alpha/osf1 syscalls.master sys/i386/ibcs2 syscalls.master sys/i386/linux syscalls.master Log: Sigh. Fix SYS_exit problems. I misunderstood the significance of these trailing options. Revision Changes Path 1.81 +2 -2 src/sys/kern/syscalls.master 1.10 +2 -2 src/sys/svr4/syscalls.master 1.4 +2 -2 src/sys/alpha/osf1/syscalls.master 1.12 +2 -2 src/sys/i386/ibcs2/syscalls.master 1.34 +2 -2 src/sys/i386/linux/syscalls.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 3: 7:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 75C9C37BBCC; Sat, 29 Jul 2000 03:07:39 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA29991; Sat, 29 Jul 2000 03:07:39 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007291007.DAA29991@freefall.freebsd.org> From: Peter Wemm Date: Sat, 29 Jul 2000 03:07:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/osf1 osf1_proto.h osf1_syscall.h osf1_sysent.c src/sys/i386/linux linux_proto.h linux_syscall.h linux_sysent.c src/sys/i386/ibcs2 ibcs2_proto.h ibcs2_syscall.h ibcs2_sysent.c src/sys/svr4 svr4_proto.h svr4_syscall.h ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/29 03:07:39 PDT Modified files: sys/alpha/osf1 osf1_proto.h osf1_syscall.h osf1_sysent.c sys/i386/linux linux_proto.h linux_syscall.h linux_sysent.c sys/i386/ibcs2 ibcs2_proto.h ibcs2_syscall.h ibcs2_sysent.c sys/svr4 svr4_proto.h svr4_syscall.h svr4_syscallnames.c svr4_sysent.c sys/sys syscall-hide.h syscall.h syscall.mk sysproto.h sys/kern init_sysent.c syscalls.c Log: Regen. (Fix SYS_exit) Revision Changes Path 1.4 +1 -1 src/sys/alpha/osf1/osf1_proto.h 1.4 +2 -2 src/sys/alpha/osf1/osf1_syscall.h 1.4 +2 -2 src/sys/alpha/osf1/osf1_sysent.c 1.36 +1 -1 src/sys/i386/linux/linux_proto.h 1.31 +2 -2 src/sys/i386/linux/linux_syscall.h 1.37 +2 -2 src/sys/i386/linux/linux_sysent.c 1.13 +1 -1 src/sys/i386/ibcs2/ibcs2_proto.h 1.11 +2 -2 src/sys/i386/ibcs2/ibcs2_syscall.h 1.14 +2 -2 src/sys/i386/ibcs2/ibcs2_sysent.c 1.10 +1 -1 src/sys/svr4/svr4_proto.h 1.9 +2 -2 src/sys/svr4/svr4_syscall.h 1.9 +2 -2 src/sys/svr4/svr4_syscallnames.c 1.9 +2 -2 src/sys/svr4/svr4_sysent.c 1.74 +1 -1 src/sys/sys/syscall-hide.h 1.78 +2 -2 src/sys/sys/syscall.h 1.32 +2 -2 src/sys/sys/syscall.mk 1.68 +1 -1 src/sys/sys/sysproto.h 1.91 +2 -2 src/sys/kern/init_sysent.c 1.80 +2 -2 src/sys/kern/syscalls.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 3:30:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B9EAC37B744; Sat, 29 Jul 2000 03:30:09 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA31055; Sat, 29 Jul 2000 03:30:09 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007291030.DAA31055@freefall.freebsd.org> From: SADA Kenji Date: Sat, 29 Jul 2000 03:30:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/29 03:30:08 PDT Modified files: . modules Log: crescendo --> ports/net/crescendo Revision Changes Path 1.1474 +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 Jul 29 3:31:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3BBB237B744; Sat, 29 Jul 2000 03:31:37 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA31152; Sat, 29 Jul 2000 03:31:36 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007291031.DAA31152@freefall.freebsd.org> From: SADA Kenji Date: Sat, 29 Jul 2000 03:31:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/crescendo - Imported sources X-FreeBSD-CVS-Branch: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/29 03:31:36 PDT ports/net/crescendo - Imported sources Update of /home/ncvs/ports/net/crescendo In directory freefall.freebsd.org:/d/home/sada/work/crescendo Log Message: New port crescendo-1.1.5 - A gnome frontend for tinyfuge. PR: ports/18262 Submitted by: Dirk Meyer Status: Vendor Tag: DIRK Release Tags: v1_1_5 N ports/net/crescendo/Makefile N ports/net/crescendo/files/md5 N ports/net/crescendo/pkg/PLIST N ports/net/crescendo/pkg/DESCR N ports/net/crescendo/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 Sat Jul 29 3:36:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C49637BBCC; Sat, 29 Jul 2000 03:36:49 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA31557; Sat, 29 Jul 2000 03:36:48 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007291036.DAA31557@freefall.freebsd.org> From: SADA Kenji Date: Sat, 29 Jul 2000 03:36:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/29 03:36:48 PDT Modified files: net Makefile Log: Activate crescendo. PR: ports/18262 Submitted by: Dirk Meyer Revision Changes Path 1.387 +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 Sat Jul 29 3:39:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 74BBB37B79F; Sat, 29 Jul 2000 03:39:21 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA31811; Sat, 29 Jul 2000 03:39:20 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007291039.DAA31811@freefall.freebsd.org> From: SADA Kenji Date: Sat, 29 Jul 2000 03:39:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/29 03:39:20 PDT Modified files: en_US.ISO_8859-1/books/handbook/contrib chapter.sgml Log: Welcome in Dirk Meyer for his ports/net/crescendo. Revision Changes Path 1.268 +5 -1 doc/en_US.ISO_8859-1/books/handbook/contrib/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 4:17:14 2000 Delivered-To: cvs-all@freebsd.org Received: from mout2.silyn-tek.de (mout2.silyn-tek.de [194.25.165.70]) by hub.freebsd.org (Postfix) with ESMTP id 2E17537B53A; Sat, 29 Jul 2000 04:17:01 -0700 (PDT) (envelope-from alex@big.endian.de) Received: from [192.168.32.34] (helo=mx2.silyn-tek.de) by mout2.silyn-tek.de with esmtp (Exim 3.13 #1) id 13IUc0-0006RB-00; Sat, 29 Jul 2000 13:17:00 +0200 Received: from p3e9eedf6.dip0.t-ipconnect.de ([62.158.237.246] helo=neutron.cichlids.com) by mx2.silyn-tek.de with esmtp (Exim 3.13 #1) id 13IUbv-00066N-00; Sat, 29 Jul 2000 13:16:56 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id DAB07AB91; Sat, 29 Jul 2000 13:16:58 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id 09A0614A65; Sat, 29 Jul 2000 13:16:54 +0200 (CEST) Date: Sat, 29 Jul 2000 13:16:53 +0200 To: Donald Burr Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/audio/opennap - Imported sources Message-ID: <20000729131653.A5088@cichlids.cichlids.com> References: <200007270821.BAA63120@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200007270821.BAA63120@freefall.freebsd.org>; from dburr@FreeBSD.org on Thu, Jul 27, 2000 at 01:21:26AM -0700 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. From: alex@big.endian.de (Alexander Langer) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Donald Burr (dburr@FreeBSD.org): > New port audio/opennap, an open source Napster(tm) server. Won't this make legal problems in regard to the latest decisions on Napster(,Inc)? Alex -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 4:25: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from mta5.snfc21.pbi.net (mta5.snfc21.pbi.net [206.13.28.241]) by hub.freebsd.org (Postfix) with ESMTP id B805037B53A; Sat, 29 Jul 2000 04:24:57 -0700 (PDT) (envelope-from jazepeda@pacbell.net) Received: from ppp-207-214-149-191.snrf01.pacbell.net ([207.214.149.191]) by mta5.snfc21.pbi.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0FYG003PSIBWYN@mta5.snfc21.pbi.net>; Sat, 29 Jul 2000 04:23:58 -0700 (PDT) Date: Sat, 29 Jul 2000 04:25:28 -0700 (PDT) From: Alex Zepeda Subject: Re: cvs commit: ports/x11/kde2 Makefile In-reply-to: <20000729004742.E11880@argon.gryphonsoft.com> X-Sender: alex@zippy.pacbell.net To: Will Andrews Cc: The Hermit Hacker , Will Andrews , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Message-id: MIME-version: 1.0 Content-type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 29 Jul 2000, Will Andrews wrote: > On Sat, Jul 29, 2000 at 01:26:03AM -0300, The Hermit Hacker wrote: > > any way of putting in a check for XFree86 version? :) If 4.0 mark as > > BROKEN and save other ppl the headaches ... ? > > Find one (i.e. a file in 4.0 not in 4.0.1) and tell me. :-) Or a header, and I can put the check into the autoconf stuff. Anyways, why wasn't kdeutils included? It seems to compile fine here. I'll test it tomorrow of course to see if it actually works.... Anyone seen a tutorial or something for the devstat code? Measuring cpu load is fun fun fun when it's separated by type (idle, interrupt, user, whee). Gotta love the example leeenux code. - alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 4:34: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6026137B5B3; Sat, 29 Jul 2000 04:34:05 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA38997; Sat, 29 Jul 2000 04:34:05 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007291134.EAA38997@freefall.freebsd.org> From: Peter Wemm Date: Sat, 29 Jul 2000 04:34:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/i386/gen rfork_thread.S X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/29 04:34:04 PDT Modified files: lib/libc/i386/gen rfork_thread.S Log: Fix some rather interesting bugs that managed to not turn up in various testing and real-life applications: 1) If you returned from the thread function, you got a segv instead of calling _exit() with your return code. 2) clean up some bogus stack management. There was also an underflow on function return. 3) when making syscalls, the kernel is expecting to have to leave space for the function's return address. We need to duplicate this. It was an accident that the rfork syscall actually worked here. :-/ Revision Changes Path 1.2 +6 -6 src/lib/libc/i386/gen/rfork_thread.S To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 4:43:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CFBF337B588; Sat, 29 Jul 2000 04:43:22 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA39836; Sat, 29 Jul 2000 04:43:22 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007291143.EAA39836@freefall.freebsd.org> From: Peter Wemm Date: Sat, 29 Jul 2000 04:43:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/alpha/gen rfork_thread.S Makefile.inc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/29 04:43:22 PDT Modified files: lib/libc/alpha/gen Makefile.inc Added files: lib/libc/alpha/gen rfork_thread.S Log: Take a shot at implementing a functional rfork_thread() for alpha. This was not fun and I am not entirely certain of the correctness, but it seems to work. (in fact, side by side testing of this code vs the x86 version turned up hidden bugs in the x86 code). Revision Changes Path 1.7 +2 -1 src/lib/libc/alpha/gen/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 Jul 29 4:53:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9627E37B5EF; Sat, 29 Jul 2000 04:53:39 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA40505; Sat, 29 Jul 2000 04:53:39 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007291153.EAA40505@freefall.freebsd.org> From: Peter Wemm Date: Sat, 29 Jul 2000 04:53:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include unistd.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/29 04:53:36 PDT Modified files: include unistd.h Log: Add a prototype for rfork_thread(). pid_t rfork_thread(int forkflags, void *stack, int (*func)(void *arg), void *arg); A new process is created, presumably using RFMEM shared address space. The child process switches to the supplied stack, which is set up with a function call frame. The function is called with the supplied arguement. If the function returns, the return value will be used with _exit(2). Revision Changes Path 1.37 +2 -1 src/include/unistd.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 5: 4:55 2000 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 40E3F37B5EF; Sat, 29 Jul 2000 05:04:50 -0700 (PDT) (envelope-from des@flood.ping.uio.no) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id OAA14234; Sat, 29 Jul 2000 14:04:40 +0200 (CEST) (envelope-from des@flood.ping.uio.no) To: Peter Wemm Cc: Eivind Eklund , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf src/release/sysinstall config.c References: <200007290035.RAA50659@netplex.com.au> From: Dag-Erling Smorgrav Date: 29 Jul 2000 14:04:40 +0200 In-Reply-To: Peter Wemm's message of "Fri, 28 Jul 2000 17:35:31 -0700" Message-ID: Lines: 12 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Peter Wemm writes: > Just a thought.. Do we have any dependency checking here? ie: if you turn > on NIS/YP and/or NFS, does that either automatically activate portmap or > prompt you that it is needed? Otherwise I expect quite a bit of suprise > when somebody turns on NFS just like they used to and it doesn't work... Might be an idea to hack rc.network to always run portmap if NIS and/or NFS is enabled. DES -- Dag-Erling Smorgrav - des@flood.ping.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 5: 5:29 2000 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 30F9537B588; Sat, 29 Jul 2000 05:05:15 -0700 (PDT) (envelope-from des@flood.ping.uio.no) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id OAA14242; Sat, 29 Jul 2000 14:05:13 +0200 (CEST) (envelope-from des@flood.ping.uio.no) To: Eivind Eklund Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf src/release/sysinstall config.c References: <200007282245.PAA59993@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 29 Jul 2000 14:05:12 +0200 In-Reply-To: Eivind Eklund's message of "Fri, 28 Jul 2000 15:45:37 -0700 (PDT)" Message-ID: Lines: 9 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Eivind Eklund writes: > Log: > Change the defaults for portmap, sendmail and inetd to be not running them. I owe you a beer. Then again, don't I always? DES -- Dag-Erling Smorgrav - des@flood.ping.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 5:11:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F10B37B67A; Sat, 29 Jul 2000 05:11:29 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA42833; Sat, 29 Jul 2000 05:11:29 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200007291211.FAA42833@freefall.freebsd.org> From: Alexander Langer Date: Sat, 29 Jul 2000 05:11:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/porters-handbook book.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/07/29 05:11:28 PDT Modified files: en_US.ISO_8859-1/books/porters-handbook book.sgml Log: When submitting a new port, one should add a description of the program to the "Description" field and the shar/tarball to the "Fix" field. This helps us when using scripts such as getpr/prpatch. Revision Changes Path 1.117 +8 -3 doc/en_US.ISO_8859-1/books/porters-handbook/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 5:12:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F09B37B6BE; Sat, 29 Jul 2000 05:12:40 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA42918; Sat, 29 Jul 2000 05:12:40 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007291212.FAA42918@freefall.freebsd.org> From: Peter Wemm Date: Sat, 29 Jul 2000 05:12:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen rfork_thread.3 Makefile.inc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/29 05:12:39 PDT Modified files: lib/libc/gen Makefile.inc Added files: lib/libc/gen rfork_thread.3 Log: Add a skeleton rfork_thread(3) man page. Revision Changes Path 1.67 +3 -2 src/lib/libc/gen/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 Jul 29 5:22:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F063C37B6BE; Sat, 29 Jul 2000 05:22:39 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA43745; Sat, 29 Jul 2000 05:22:39 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200007291222.FAA43745@freefall.freebsd.org> From: Alexander Langer Date: Sat, 29 Jul 2000 05:22:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www Makefile ports/www/http_load Makefile ports/www/http_load/files md5 ports/www/http_load/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/07/29 05:22:39 PDT Modified files: www Makefile Added files: www/http_load Makefile www/http_load/files md5 www/http_load/pkg COMMENT DESCR PLIST Log: Add http_load 1.0, a load-tester for WWW servers. PR: 18463 Submitted by: Ask Bjoern Hansen Revision Changes Path 1.234 +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 Jul 29 5:24:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D5C337B7D3; Sat, 29 Jul 2000 05:24:49 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA43973; Sat, 29 Jul 2000 05:24:49 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200007291224.FAA43973@freefall.freebsd.org> From: Alexander Langer Date: Sat, 29 Jul 2000 05:24:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/07/29 05:24:49 PDT Modified files: . modules Log: http_load --> ports/www/http_load Revision Changes Path 1.1475 +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 Jul 29 5:25:28 2000 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id C13F037B64B; Sat, 29 Jul 2000 05:25:08 -0700 (PDT) (envelope-from des@flood.ping.uio.no) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id OAA14333; Sat, 29 Jul 2000 14:24:50 +0200 (CEST) (envelope-from des@flood.ping.uio.no) To: Peter Wemm Cc: Eivind Eklund , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf src/release/sysinstall config.c References: <200007290035.RAA50659@netplex.com.au> From: Dag-Erling Smorgrav Date: 29 Jul 2000 14:24:49 +0200 In-Reply-To: Dag-Erling Smorgrav's message of "29 Jul 2000 14:04:40 +0200" Message-ID: Lines: 17 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --=-=-= Dag-Erling Smorgrav writes: > Might be an idea to hack rc.network to always run portmap if NIS > and/or NFS is enabled. Something like the attached patch maybe? I haven't tested it very thoroughly, so the usual disclaimers apply. --=-=-= Content-Disposition: attachment; filename=diff Content-Description: patch Index: rc.network =================================================================== RCS file: /home/ncvs/src/etc/rc.network,v retrieving revision 1.81 diff -u -r1.81 rc.network --- rc.network 2000/07/14 13:03:36 1.81 +++ rc.network 2000/07/29 12:23:42 @@ -414,6 +414,25 @@ network_pass1_done=YES } +start_portmap() { + case ${portmap_enable} in + [Yy][Ee][Ss]) + echo -n ' portmap'; ${portmap_program:-/usr/sbin/portmap} ${portmap_flags} + ;; + esac +} + +require_portmap() { + case ${portmap_enable} in + [Yy][Ee][Ss]) + ;; + *) + portmap_enable="YES" + start_portmap + ;; + esac +} + network_pass2() { echo -n 'Doing additional network setup:' case ${named_enable} in @@ -441,17 +460,14 @@ ;; esac - case ${portmap_enable} in - [Yy][Ee][Ss]) - echo -n ' portmap'; ${portmap_program:-/usr/sbin/portmap} ${portmap_flags} - ;; - esac + start_portmap # Start ypserv if we're an NIS server. # Run rpc.ypxfrd and rpc.yppasswdd only on the NIS master server. # case ${nis_server_enable} in [Yy][Ee][Ss]) + require_portmap echo -n ' ypserv'; ypserv ${nis_server_flags} case ${nis_ypxfrd_enable} in @@ -474,6 +490,7 @@ # case ${nis_client_enable} in [Yy][Ee][Ss]) + require_portmap echo -n ' ypbind'; ypbind ${nis_client_flags} case ${nis_ypset_enable} in [Yy][Ee][Ss]) @@ -487,6 +504,7 @@ # case ${keyserv_enable} in [Yy][Ee][Ss]) + require_portmap echo -n ' keyserv'; keyserv ${keyserv_flags} ;; esac @@ -495,6 +513,7 @@ # case ${rpc_ypupdated_enable} in [Yy][Ee][Ss]) + require_portmap echo -n ' rpc.ypupdated'; rpc.ypupdated ;; esac @@ -514,6 +533,7 @@ case ${nfs_server_enable} in [Yy][Ee][Ss]) if [ -r /etc/exports ]; then + require_portmap echo -n ' mountd' case ${weak_mountd_authentication} in @@ -555,6 +575,7 @@ case ${single_mountd_enable} in [Yy][Ee][Ss]) if [ -r /etc/exports ]; then + require_portmap echo -n ' mountd' case ${weak_mountd_authentication} in @@ -572,6 +593,7 @@ case ${nfs_client_enable} in [Yy][Ee][Ss]) + require_portmap echo -n ' nfsiod'; nfsiod ${nfs_client_flags} if [ -n "${nfs_access_cache}" ]; then echo -n " NFS access cache time=${nfs_access_cache}" @@ -585,6 +607,7 @@ # sucessfully notified about a previous client shutdown. # If there is no /var/db/mounttab, we do nothing. if [ -f /var/db/mounttab ]; then + require_portmap rpc.umntall -k fi --=-=-= Also, I wasn't sure just which services requires portmap and which ones don't, so I added require_portmap to everything remotely related to NIS, NFS and RPC. DES -- Dag-Erling Smorgrav - des@flood.ping.uio.no --=-=-=-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 5:35: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id 67A0237B64B; Sat, 29 Jul 2000 05:34:57 -0700 (PDT) (envelope-from jedgar@fxp.org) Received: from earth.causticlabs.com (oca-p1-19.hitter.net [207.192.76.19]) by pawn.primelocation.net (Postfix) with ESMTP id 4A9C19B1C; Sat, 29 Jul 2000 08:34:55 -0400 (EDT) Date: Sat, 29 Jul 2000 08:34:54 -0400 (EDT) From: "Chris D. Faulhaber" X-Sender: jedgar@earth.causticlabs.com To: Alexander Langer Cc: Donald Burr , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/audio/opennap - Imported sources In-Reply-To: <20000729131653.A5088@cichlids.cichlids.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 29 Jul 2000, Alexander Langer wrote: > Thus spake Donald Burr (dburr@FreeBSD.org): > > > New port audio/opennap, an open source Napster(tm) server. > > Won't this make legal problems in regard to the latest decisions on > Napster(,Inc)? > It is up to the installee to determine what the legal ramification by using this software in their part of the world. Remember: tools, not policy :) ----- Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 5:43:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B378F37B750; Sat, 29 Jul 2000 05:43:48 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA47283; Sat, 29 Jul 2000 05:43:48 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200007291243.FAA47283@freefall.freebsd.org> From: Alexander Langer Date: Sat, 29 Jul 2000 05:43:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/07/29 05:43:48 PDT Modified files: en_US.ISO_8859-1/books/handbook/contrib chapter.sgml Log: Add Ask Bjoern Hansen for this http_load port. Revision Changes Path 1.269 +5 -1 doc/en_US.ISO_8859-1/books/handbook/contrib/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 5:45: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D75CD37B64B; Sat, 29 Jul 2000 05:44:59 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA47435; Sat, 29 Jul 2000 05:44:59 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200007291244.FAA47435@freefall.freebsd.org> From: Alexander Langer Date: Sat, 29 Jul 2000 05:44:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/adns/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/07/29 05:44:59 PDT Modified files: net/adns/pkg PLIST Log: Add bin/adnsresfilter Submitted by: bento Revision Changes Path 1.3 +1 -0 ports/net/adns/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 Jul 29 5:54: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from netplex.com.au (adsl-63-207-30-186.dsl.snfc21.pacbell.net [63.207.30.186]) by hub.freebsd.org (Postfix) with ESMTP id 8ED2237B7BD; Sat, 29 Jul 2000 05:54:03 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (peter@localhost [127.0.0.1]) by netplex.com.au (8.9.3/8.9.3) with ESMTP id FAA55910; Sat, 29 Jul 2000 05:53:48 -0700 (PDT) (envelope-from peter@netplex.com.au) Message-Id: <200007291253.FAA55910@netplex.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: "Chris D. Faulhaber" Cc: Alexander Langer , Donald Burr , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/audio/opennap - Imported sources In-Reply-To: Message from "Chris D. Faulhaber" of "Sat, 29 Jul 2000 08:34:54 EDT." Date: Sat, 29 Jul 2000 05:53:48 -0700 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Chris D. Faulhaber" wrote: > On Sat, 29 Jul 2000, Alexander Langer wrote: > > > Thus spake Donald Burr (dburr@FreeBSD.org): > > > > > New port audio/opennap, an open source Napster(tm) server. > > > > Won't this make legal problems in regard to the latest decisions on > > Napster(,Inc)? > > > > It is up to the installee to determine what the legal ramification by > using this software in their part of the world. Remember: tools, not > policy :) That's funny.. I seem to recall napster saying pretty much the exact same thing and look at them in court over the last few months... IMHO, on one hand there is user responsibility, but on the other hand there is begging for trouble... This feels to me a bit like waving a red flag at a bull. Lawyers may not be interested in us personally, but they can go for people loaning us hardware, mail relay machines, cvsup servers, etc. If freebsd.org lost its connectivity due to sponsors bailing out because of legal pressure (remember tetris anyone?).. I hate to think.. Cheers, -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 6:11:41 2000 Delivered-To: cvs-all@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id 6F2D137B82F; Sat, 29 Jul 2000 06:11:30 -0700 (PDT) (envelope-from wkb@freebie.demon.nl) Received: from [212.238.54.101] (helo=freebie.demon.nl) by post.mail.nl.demon.net with smtp (Exim 3.14 #2) id 13IWOm-000128-01; Sat, 29 Jul 2000 13:11:28 +0000 Received: (from wkb@localhost) by freebie.demon.nl (8.9.3/8.9.3) id OAA17263; Sat, 29 Jul 2000 14:28:31 +0200 (CEST) (envelope-from wkb) Date: Sat, 29 Jul 2000 14:28:31 +0200 From: Wilko Bulte To: Dag-Erling Smorgrav Cc: Eivind Eklund , cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/etc/defaults rc.conf src/release/sysinstall config.c Message-ID: <20000729142831.A17249@freebie.demon.nl> Reply-To: wilko@freebsd.org References: <200007282245.PAA59993@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: ; from des@flood.ping.uio.no on Sat, Jul 29, 2000 at 02:05:12PM +0200 X-OS: FreeBSD 4.1-STABLE X-PGP: finger wilko@freebsd.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Jul 29, 2000 at 02:05:12PM +0200, Dag-Erling Smorgrav wrote: > Eivind Eklund writes: > > Log: > > Change the defaults for portmap, sendmail and inetd to be not running them. > > I owe you a beer. Then again, don't I always? Well, remembering last time we met I'd say 'yes' to that question :) -- Wilko Bulte wilko@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 6:24:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 01D0137B8A0; Sat, 29 Jul 2000 06:24:14 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA50946; Sat, 29 Jul 2000 06:24:13 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200007291324.GAA50946@freefall.freebsd.org> From: Akinori MUSHA Date: Sat, 29 Jul 2000 06:24:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/cvsweb Makefile ports/devel/cvsweb/files md5 ports/devel/cvsweb/patches patch-ab patch-ac patch-ad patch-ae ports/devel/cvsweb/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/07/29 06:24:11 PDT Modified files: devel/cvsweb Makefile devel/cvsweb/files md5 devel/cvsweb/pkg COMMENT DESCR PLIST Removed files: devel/cvsweb/patches patch-ab patch-ac patch-ad patch-ae Log: Update with my development branch of cvsweb. PORTVERSION 1.93.1.9 indicates that it's knu's cvsweb rev. 1.9, based on Zeller's cvsweb rev. 1.93. I'll keep merging all the changes that will be made on Zeller's version as well as enhancing it to meet our needs. :) Below is an excerpt from README.knu. ---- Added features over Zeller's version: o Customizable "show functions" option You can specify a regexp for each file type to teach rcsdiff(1) to recognize function lines. o Customizable PR categories o Move $prcgi to cvsweb.conf Now each repository can have its own PR categories and query-pr.cgi URL, which can be defined in cvsweb.conf-${cvstree}. It is useful when you have such as NetBSD and/or OpenBSD repositories. o Improved support for text-based browsers Unidiff is the default format for diffs, for text-based browsers. o Enhance hyperlinking PR # feature. The following PR numbers will all be hyperlinked. :) PR: 12345, 67890, .. PR: #12345, #67890, .. PR# sparc/12345, i386/67890 PR: ports/43210 kern/98765 .. is related to bin/4567, which is ... Revision Changes Path 1.21 +11 -8 ports/devel/cvsweb/Makefile 1.8 +1 -1 ports/devel/cvsweb/files/md5 1.4 +1 -1 ports/devel/cvsweb/pkg/COMMENT 1.5 +3 -0 ports/devel/cvsweb/pkg/DESCR 1.5 +1 -0 ports/devel/cvsweb/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 Jul 29 6:33:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BFAB137B65A; Sat, 29 Jul 2000 06:33:23 -0700 (PDT) (envelope-from toshi@FreeBSD.org) Received: (from toshi@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA51626; Sat, 29 Jul 2000 06:33:23 -0700 (PDT) (envelope-from toshi@FreeBSD.org) Message-Id: <200007291333.GAA51626@freefall.freebsd.org> From: Toshihiko ARAI Date: Sat, 29 Jul 2000 06:33:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/sysinstall dmenu.c X-FreeBSD-CVS-Branch: RELENG_3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG toshi 2000/07/29 06:33:22 PDT Modified files: (Branch: RELENG_3) release/sysinstall dmenu.c Log: MFC: rev.1.43 -> rev.1.44. Whoops - really make the "fix" I did to the dmenuToggleVariable logic work. Revision Changes Path 1.37.2.7 +9 -3 src/release/sysinstall/dmenu.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 6:43:18 2000 Delivered-To: cvs-all@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id C80F837B53D; Sat, 29 Jul 2000 06:43:12 -0700 (PDT) (envelope-from ben@scientia.demon.co.uk) Received: from strontium.scientia.demon.co.uk ([192.168.91.36] ident=exim) by scientia.demon.co.uk with esmtp (Exim 3.15 #1) id 13IWQJ-000EE0-00; Sat, 29 Jul 2000 14:13:03 +0100 Received: (from ben) by strontium.scientia.demon.co.uk (Exim 3.15 #1) id 13IWQI-0005vh-00; Sat, 29 Jul 2000 14:13:02 +0100 Date: Sat, 29 Jul 2000 14:13:02 +0100 From: Ben Smithurst To: Will Andrews Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/mail Makefile ports/mail/p5-Mail-Sender Makefile ports/mail/p5-Mail-Sender/files md5 ports/mail/p5-Mail-Sender/pkg COMMENT DESCR PLIST Message-ID: <20000729141302.D59315@strontium.scientia.demon.co.uk> References: <200007290117.SAA76650@freefall.freebsd.org> <20000728235801.D11880@argon.gryphonsoft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000728235801.D11880@argon.gryphonsoft.com> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Will Andrews wrote: > On Fri, Jul 28, 2000 at 06:17:07PM -0700, Ben Smithurst wrote: >> Submitted by: ben > > This is default. I know, but since I'm a docs committer really I thought I'd make it absolutely clear I was only committing it because it's my own port. :-) -- Ben Smithurst / ben@FreeBSD.org / PGP: 0x99392F7D FreeBSD Documentation Project / To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 6:46:45 2000 Delivered-To: cvs-all@freebsd.org Received: from server3.safepages.com (server3.safepages.com [216.127.146.5]) by hub.freebsd.org (Postfix) with ESMTP id A674A37B82F; Sat, 29 Jul 2000 06:46:38 -0700 (PDT) (envelope-from glennpj@bayouhome.net) Received: from gforce.johnson.home (1Cust41.tnt7.new-orleans.la.da.uu.net [63.14.236.41]) by server3.safepages.com (Postfix) with ESMTP id 5457323B4B; Sat, 29 Jul 2000 09:46:30 -0400 (EDT) Received: (from glenn@localhost) by gforce.johnson.home (8.9.3/8.9.3) id IAA00909; Sat, 29 Jul 2000 08:46:27 -0500 (CDT) (envelope-from glenn) From: "Glenn Johnson" Date: Sat, 29 Jul 2000 08:45:50 -0500 To: Alex Zepeda Cc: Will Andrews , The Hermit Hacker , Will Andrews , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/x11/kde2 Makefile Message-ID: <20000729084549.A559@gforce.johnson.home> Mail-Followup-To: glenn, Alex Zepeda , Will Andrews , The Hermit Hacker , Will Andrews , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <20000729004742.E11880@argon.gryphonsoft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: ; from jazepeda@pacbell.net on Sat, Jul 29, 2000 at 04:25:28AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Jul 29, 2000 at 04:25:28AM -0700, Alex Zepeda wrote: > On Sat, 29 Jul 2000, Will Andrews wrote: > > > On Sat, Jul 29, 2000 at 01:26:03AM -0300, The Hermit Hacker wrote: > > > > > any way of putting in a check for XFree86 version? :) If 4.0 mark > > > as BROKEN and save other ppl the headaches ... ? > > > > Find one (i.e. a file in 4.0 not in 4.0.1) and tell me. :-) > > Or a header, and I can put the check into the autoconf stuff. Could you use pkg_info -e XFree86-4.0.0? If this returns true then issue the appropriate notice. -- Glenn Johnson glennpj@bayouhome.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 8:32: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 315A837B6BC; Sat, 29 Jul 2000 08:31:57 -0700 (PDT) (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA21562; Sat, 29 Jul 2000 08:31:56 -0700 (PDT) (envelope-from ume@FreeBSD.org) Message-Id: <200007291531.IAA21562@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Sat, 29 Jul 2000 08:31:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/rlogind rlogind.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ume 2000/07/29 08:31:56 PDT Modified files: (Branch: RELENG_4) libexec/rlogind rlogind.c Log: MFC rev 1.29 -> 1.30: Make compilable without -DINET6. With shut up unused variable warnings. PR: bin/20225 Submitted by: Paul Herman Revision Changes Path 1.29.2.1 +3 -7 src/libexec/rlogind/rlogind.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 8:36:54 2000 Delivered-To: cvs-all@freebsd.org Received: from drama.navipath.com (drama.navipath.com [216.67.14.8]) by hub.freebsd.org (Postfix) with ESMTP id F048337B61B; Sat, 29 Jul 2000 08:36:48 -0700 (PDT) (envelope-from forrie@drama.navipath.com) Received: (from forrie@localhost) by drama.navipath.com with id e6TFYCf21540; Sat, 29 Jul 2000 11:34:12 -0400 (EDT) Date: Sat, 29 Jul 2000 11:34:12 -0400 From: Forrest Aldrich To: Peter Wemm Cc: "Chris D. Faulhaber" , Alexander Langer , Donald Burr , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/audio/opennap - Imported sources Message-ID: <20000729113412.E7543@drama.navipath.com> References: <200007291253.FAA55910@netplex.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <200007291253.FAA55910@netplex.com.au>; from peter@netplex.com.au on Sat, Jul 29, 2000 at 05:53:48AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Maybe in a case such as this, it calls for handling these types of ports differently? For example, the cvsup process could be directed to update certain risky or otherwise questionable ports from a neutral server, one that was not a loaner (or as otherwise described below). I think Peter has a point here, but at the same time I think it's significant to keep these types of ports available, etc. But there begs the question that if FreeBSD itself pointed to another cvs server that had these types of ports on it, could that be guilt- by-association. _F On Sat, Jul 29, 2000 at 05:53:48AM -0700, Peter Wemm wrote: > "Chris D. Faulhaber" wrote: > > On Sat, 29 Jul 2000, Alexander Langer wrote: > > > > > Thus spake Donald Burr (dburr@FreeBSD.org): > > > > > > > New port audio/opennap, an open source Napster(tm) server. > > > > > > Won't this make legal problems in regard to the latest decisions on > > > Napster(,Inc)? > > > > > > > It is up to the installee to determine what the legal ramification by > > using this software in their part of the world. Remember: tools, not > > policy :) > > That's funny.. I seem to recall napster saying pretty much the exact same > thing and look at them in court over the last few months... > > IMHO, on one hand there is user responsibility, but on the other hand there > is begging for trouble... This feels to me a bit like waving a red flag at > a bull. > > Lawyers may not be interested in us personally, but they can go for people > loaning us hardware, mail relay machines, cvsup servers, etc. If > freebsd.org lost its connectivity due to sponsors bailing out because of > legal pressure (remember tetris anyone?).. I hate to think.. > > Cheers, > -Peter > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe cvs-all" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 8:48:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C6A1D37B53D; Sat, 29 Jul 2000 08:48:27 -0700 (PDT) (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA22601; Sat, 29 Jul 2000 08:48:27 -0700 (PDT) (envelope-from ume@FreeBSD.org) Message-Id: <200007291548.IAA22601@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Sat, 29 Jul 2000 08:48:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net rtsock.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ume 2000/07/29 08:48:27 PDT Modified files: (Branch: RELENG_4) sys/net rtsock.c Log: MFC 1.46 -> 1.47: Workaround to avoid panic during detach pccard nic. Revision Changes Path 1.44.2.1 +5 -2 src/sys/net/rtsock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 9: 1:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 248B337B719; Sat, 29 Jul 2000 09:01:34 -0700 (PDT) (envelope-from rse@FreeBSD.org) Received: (from rse@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA23548; Sat, 29 Jul 2000 09:01:34 -0700 (PDT) (envelope-from rse@FreeBSD.org) Message-Id: <200007291601.JAA23548@freefall.freebsd.org> From: "Ralf S. Engelschall" Date: Sat, 29 Jul 2000 09:01:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/shtool Makefile ports/devel/shtool/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG rse 2000/07/29 09:01:33 PDT Modified files: devel/shtool Makefile devel/shtool/files md5 Log: Upgrade to GNU Shtool, version 1.5.1 Revision Changes Path 1.25 +2 -2 ports/devel/shtool/Makefile 1.21 +1 -1 ports/devel/shtool/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 Jul 29 9:18:14 2000 Delivered-To: cvs-all@freebsd.org Received: from gidora.zeta.org.au (gidora.zeta.org.au [203.26.10.25]) by hub.freebsd.org (Postfix) with SMTP id 653C537BA0C for ; Sat, 29 Jul 2000 09:17:53 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: (qmail 29331 invoked from network); 29 Jul 2000 16:17:37 -0000 Received: from unknown (HELO bde.zeta.org.au) (203.2.228.102) by gidora.zeta.org.au with SMTP; 29 Jul 2000 16:17:37 -0000 Date: Sun, 30 Jul 2000 02:17:33 +1000 (EST) From: Bruce Evans X-Sender: bde@besplex.bde.org To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_exit.c makesyscalls.sh syscalls.master src/sys/alpha/osf1 syscalls.master src/sys/i386/ibcs2 syscalls.master src/sys/i386/linux syscalls.master src/sys/svr4 syscalls.master In-Reply-To: <200007290016.RAA70004@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 28 Jul 2000, Peter Wemm wrote: > peter 2000/07/28 17:16:28 PDT > > Modified files: > sys/kern kern_exit.c makesyscalls.sh > syscalls.master > sys/alpha/osf1 syscalls.master > sys/i386/ibcs2 syscalls.master > sys/i386/linux syscalls.master > sys/svr4 syscalls.master > Log: > Change the 'exit()' system call to 'sys_exit()'. This avoids overlapping > gcc's internal exit() prototypes and the (futile) hackery that we did to > try and avoid warnings. main() was renamed for similar reasons. > Remove an exit related hack from makesyscalls.sh. Compiling with -ffreestanding should prevent this sort of problem, but it didn't work right for main() last time I looked. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 9:23:24 2000 Delivered-To: cvs-all@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id A4BCC37BA6C; Sat, 29 Jul 2000 09:23:17 -0700 (PDT) (envelope-from nate@yogotech.com) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id KAA20110; Sat, 29 Jul 2000 10:23:13 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id KAA29162; Sat, 29 Jul 2000 10:23:03 -0600 (MDT) (envelope-from nate) Date: Sat, 29 Jul 2000 10:23:03 -0600 (MDT) Message-Id: <200007291623.KAA29162@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/i386/gen rfork_thread.S Makefile.inc In-Reply-To: <200007290714.AAA13726@freefall.freebsd.org> References: <200007290714.AAA13726@freefall.freebsd.org> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > peter 2000/07/29 00:14:05 PDT > > Modified files: > lib/libc/i386/gen Makefile.inc > Added files: > lib/libc/i386/gen rfork_thread.S > Log: > rfork(2) wrapper for simple rfork-style threads. I have lost count of > the number of times I have given this to people and got asked: why isn't > it in libc? It is impossible to do this without assembler glue to reset > the stack for the new child process. > > int rfork_thread(flags, stack_addr, start_fnc, start_arg) > int flags; Flags to rfork system call. See rfork(2). > void *stack_addr; Top of stack for thread. > int (*start_fnc)(void *); Address of thread function to call in child. > void *start_arg; Argument to pass to the thread function in child. > > This is deliberately not documented or prototyped in includes until the > corresponding alpha version is written. Whoo hoo!! Thanks Peter! Nate > > Revision Changes Path > 1.11 +2 -2 src/lib/libc/i386/gen/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 Jul 29 9:25:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 83F9637B65A; Sat, 29 Jul 2000 09:25:41 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA26998; Sat, 29 Jul 2000 09:25:41 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Message-Id: <200007291625.JAA26998@freefall.freebsd.org> From: Neil Blakey-Milner Date: Sat, 29 Jul 2000 09:25:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/publicfile Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nbm 2000/07/29 09:25:41 PDT Modified files: www/publicfile Makefile Log: Add an ftp version of the MASTER_SITE, since it is available, and I've had one or two people ask me to do so. Revision Changes Path 1.5 +3 -2 ports/www/publicfile/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 9:27:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C3D0E37B661; Sat, 29 Jul 2000 09:27:31 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA27157; Sat, 29 Jul 2000 09:27:31 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Message-Id: <200007291627.JAA27157@freefall.freebsd.org> From: Neil Blakey-Milner Date: Sat, 29 Jul 2000 09:27:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/daemontools Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nbm 2000/07/29 09:27:31 PDT Modified files: sysutils/daemontools Makefile Log: Add the ftp version of the MASTER_SITE, since it is available. Revision Changes Path 1.7 +3 -2 ports/sysutils/daemontools/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 9:32:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8284E37BA27; Sat, 29 Jul 2000 09:32:35 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA27565; Sat, 29 Jul 2000 09:32:35 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Message-Id: <200007291632.JAA27565@freefall.freebsd.org> From: Neil Blakey-Milner Date: Sat, 29 Jul 2000 09:32:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/daemontools53 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nbm 2000/07/29 09:32:35 PDT Modified files: sysutils/daemontools53 Makefile Log: Fix the MASTER_SITE to the canonical locations. PR: ports/20283 Submitted by: Andreas Schulz Revision Changes Path 1.2 +4 -3 ports/sysutils/daemontools53/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 9:39:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2088937B5D5; Sat, 29 Jul 2000 09:39:46 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA28370; Sat, 29 Jul 2000 09:39:45 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Message-Id: <200007291639.JAA28370@freefall.freebsd.org> From: Neil Blakey-Milner Date: Sat, 29 Jul 2000 09:39:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/dnscache Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nbm 2000/07/29 09:39:45 PDT Modified files: net/dnscache Makefile Log: Add the ftp version of the MASTER_SITE Revision Changes Path 1.3 +3 -2 ports/net/dnscache/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 9:46:31 2000 Delivered-To: cvs-all@freebsd.org Received: from mout1.silyn-tek.de (mout1.silyn-tek.de [194.25.165.69]) by hub.freebsd.org (Postfix) with ESMTP id 02F4A37B659; Sat, 29 Jul 2000 09:46:13 -0700 (PDT) (envelope-from alex@big.endian.de) Received: from [192.168.32.34] (helo=mx2.silyn-tek.de) by mout1.silyn-tek.de with esmtp (Exim 3.13 #1) id 13IZkY-00086F-00; Sat, 29 Jul 2000 18:46:10 +0200 Received: from p3e9eedf6.dip0.t-ipconnect.de ([62.158.237.246] helo=neutron.cichlids.com) by mx2.silyn-tek.de with esmtp (Exim 3.13 #1) id 13IZkT-0001J6-00; Sat, 29 Jul 2000 18:46:05 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id C62B3AB91; Sat, 29 Jul 2000 18:45:43 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id 46F0C14A65; Sat, 29 Jul 2000 18:45:12 +0200 (CEST) Date: Sat, 29 Jul 2000 18:45:12 +0200 From: Alexander Langer To: Forrest Aldrich Cc: Peter Wemm , "Chris D. Faulhaber" , Donald Burr , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/audio/opennap - Imported sources Message-ID: <20000729184512.B14005@cichlids.cichlids.com> References: <200007291253.FAA55910@netplex.com.au> <20000729113412.E7543@drama.navipath.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000729113412.E7543@drama.navipath.com>; from forrie@navipath.com on Sat, Jul 29, 2000 at 11:34:12AM -0400 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Forrest Aldrich (forrie@navipath.com): > I think Peter has a point here, but at the same time I think it's > significant to keep these types of ports available, etc. make them RESTRICTED and don't ship packages. Alex -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 10: 7:43 2000 Delivered-To: cvs-all@freebsd.org Received: from mercury.mich.com (mercury.mich.com [64.79.64.32]) by hub.freebsd.org (Postfix) with ESMTP id 10A7B37B88A; Sat, 29 Jul 2000 10:07:28 -0700 (PDT) (envelope-from will@almanac.yi.org) Received: from argon.gryphonsoft.com (pm014-006.dialup.bignet.net [64.79.82.118]) by mercury.mich.com (8.9.3/8.9.3) with ESMTP id NAA23169; Sat, 29 Jul 2000 13:06:53 -0400 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id F3F6D194F; Sat, 29 Jul 2000 13:03:51 -0400 (EDT) Date: Sat, 29 Jul 2000 13:03:51 -0400 From: Will Andrews To: Ben Smithurst Cc: Will Andrews , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/mail Makefile ports/mail/p5-Mail-Sender Makefile ports/mail/p5-Mail-Sender/files md5 ports/mail/p5-Mail-Sender/pkg COMMENT DESCR PLIST Message-ID: <20000729130351.B18449@argon.gryphonsoft.com> References: <200007290117.SAA76650@freefall.freebsd.org> <20000728235801.D11880@argon.gryphonsoft.com> <20000729141302.D59315@strontium.scientia.demon.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000729141302.D59315@strontium.scientia.demon.co.uk>; from ben@FreeBSD.org on Sat, Jul 29, 2000 at 02:13:02PM +0100 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Jul 29, 2000 at 02:13:02PM +0100, Ben Smithurst wrote: > I know, but since I'm a docs committer really I thought I'd make it > absolutely clear I was only committing it because it's my own port. :-) Naw, you can get a "Reviewed by" line suffixed with a veritable ports team member. *THAT* is the right way to do it. :-) But since you had no errors in your port (judging by a cursory glace), I'll say there's no problem. -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 10:11: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from mercury.mich.com (mercury.mich.com [64.79.64.32]) by hub.freebsd.org (Postfix) with ESMTP id 6619F37B512; Sat, 29 Jul 2000 10:10:47 -0700 (PDT) (envelope-from will@almanac.yi.org) Received: from argon.gryphonsoft.com (pm014-006.dialup.bignet.net [64.79.82.118]) by mercury.mich.com (8.9.3/8.9.3) with ESMTP id NAA23779; Sat, 29 Jul 2000 13:10:29 -0400 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id 19CC1194F; Sat, 29 Jul 2000 13:07:29 -0400 (EDT) Date: Sat, 29 Jul 2000 13:07:29 -0400 From: Will Andrews To: Alex Zepeda Cc: Will Andrews , The Hermit Hacker , Will Andrews , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/x11/kde2 Makefile Message-ID: <20000729130729.D18449@argon.gryphonsoft.com> References: <20000729004742.E11880@argon.gryphonsoft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from jazepeda@pacbell.net on Sat, Jul 29, 2000 at 04:25:28AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Jul 29, 2000 at 04:25:28AM -0700, Alex Zepeda wrote: > Or a header, and I can put the check into the autoconf stuff. Well sure, but apparently it doesn't happen on Linux. > Anyways, why wasn't kdeutils included? It seems to compile fine > here. I'll test it tomorrow of course to see if it actually works.... I had some problems ; I don't remember what they were and I rather wanted to get everything else out the door before I lost time to commit them. I rather wanted to get the snap out the door before it became too obsolete. It's my replacement for KDE 1.92 since I had a lot of trouble getting that to compile. That, and I was kinda sick of waiting for mhk/konold to release 1.92. :) > Anyone seen a tutorial or something for the devstat code? Measuring cpu > load is fun fun fun when it's separated by type (idle, interrupt, user, > whee). Gotta love the example leeenux code. There's several examples of code that use FreeBSD's KVM. UMEMOTO-san submitted a patch to the GKrellM author to allow it to work on FreeBSD. Perhaps you could email him or the author directly. Regards, -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 10:12:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 30C5137B566; Sat, 29 Jul 2000 10:12:08 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA32597; Sat, 29 Jul 2000 10:12:08 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200007291712.KAA32597@freefall.freebsd.org> From: Alexander Langer Date: Sat, 29 Jul 2000 10:12:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/07/29 10:12:07 PDT Modified files: . modules Log: de-doc --> doc/de_DE.ISO_8859-1 de-handbook --> doc/de_DE.ISO_8859-1/books/handbook Revision Changes Path 1.1476 +3 -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 Jul 29 10:12:41 2000 Delivered-To: cvs-all@freebsd.org Received: from mercury.mich.com (mercury.mich.com [64.79.64.32]) by hub.freebsd.org (Postfix) with ESMTP id 9404137B566; Sat, 29 Jul 2000 10:12:29 -0700 (PDT) (envelope-from will@almanac.yi.org) Received: from argon.gryphonsoft.com (pm014-006.dialup.bignet.net [64.79.82.118]) by mercury.mich.com (8.9.3/8.9.3) with ESMTP id NAA24085; Sat, 29 Jul 2000 13:12:18 -0400 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id 5756E194F; Sat, 29 Jul 2000 13:09:21 -0400 (EDT) Date: Sat, 29 Jul 2000 13:09:21 -0400 From: Will Andrews To: Alex Zepeda , Will Andrews , The Hermit Hacker , Will Andrews , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/x11/kde2 Makefile Message-ID: <20000729130921.E18449@argon.gryphonsoft.com> References: <20000729004742.E11880@argon.gryphonsoft.com> <20000729084549.A559@gforce.johnson.home> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000729084549.A559@gforce.johnson.home>; from glennpj@bayouhome.net on Sat, Jul 29, 2000 at 08:45:50AM -0500 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [ Hmm, I lost the originator's email address.. ] On Sat, Jul 29, 2000 at 08:45:50AM -0500, Glenn Johnson wrote: > Could you use pkg_info -e XFree86-4.0.0? If this returns true then issue > the appropriate notice. I guess that could work, but there are a number of plausible reasons not to use that method (i.e. they might not have installed from ports; XFree86 is sometimes installed from their package). It's one thing to try.. -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 10:30:22 2000 Delivered-To: cvs-all@freebsd.org Received: from whizzo.transsys.com (whizzo.TransSys.COM [144.202.42.10]) by hub.freebsd.org (Postfix) with ESMTP id 59A3537B703; Sat, 29 Jul 2000 10:30:18 -0700 (PDT) (envelope-from louie@whizzo.transsys.com) Received: from whizzo.transsys.com (localhost.transsys.com [127.0.0.1]) by whizzo.transsys.com (8.9.3/8.9.1) with ESMTP id NAA59562; Sat, 29 Jul 2000 13:30:17 -0400 (EDT) (envelope-from louie@whizzo.transsys.com) Message-Id: <200007291730.NAA59562@whizzo.transsys.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Image-URL: http://www.transsys.com/louie/images/louie-mail.jpg From: "Louis A. Mamakos" Subject: Re: cvs commit: ports/audio/opennap - Imported sources References: <200007291253.FAA55910@netplex.com.au> <20000729113412.E7543@drama.navipath.com> <20000729184512.B14005@cichlids.cichlids.com> In-reply-to: Your message of "Sat, 29 Jul 2000 18:45:12 +0200." <20000729184512.B14005@cichlids.cichlids.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 29 Jul 2000 13:30:17 -0400 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Thus spake Forrest Aldrich (forrie@navipath.com): > > > I think Peter has a point here, but at the same time I think it's > > significant to keep these types of ports available, etc. > > make them RESTRICTED and don't ship packages. I guess we better get rid of all the ports/packages than can "rip" audio tracks from audio CDs, too? This all seems a little silly. louie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 10:48:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D2B7B37B528; Sat, 29 Jul 2000 10:48:26 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA35504; Sat, 29 Jul 2000 10:48:26 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Message-Id: <200007291748.KAA35504@freefall.freebsd.org> From: Neil Blakey-Milner Date: Sat, 29 Jul 2000 10:48:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/deskutils Makefile ports/deskutils/aspostit Makefile ports/deskutils/aspostit/files md5 ports/deskutils/aspostit/patches patch-aa ports/deskutils/aspostit/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nbm 2000/07/29 10:48:26 PDT Modified files: deskutils Makefile Added files: deskutils/aspostit Makefile deskutils/aspostit/files md5 deskutils/aspostit/patches patch-aa deskutils/aspostit/pkg COMMENT DESCR PLIST Log: Add aspostit, an afterstep version of xpostit. PR: ports/9289 Submitted by: Kris Kennaway Revision Changes Path 1.27 +2 -1 ports/deskutils/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 10:48:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8444637C068; Sat, 29 Jul 2000 10:48:36 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA35544; Sat, 29 Jul 2000 10:48:31 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Message-Id: <200007291748.KAA35544@freefall.freebsd.org> From: Neil Blakey-Milner Date: Sat, 29 Jul 2000 10:48:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nbm 2000/07/29 10:48:30 PDT Modified files: . modules Log: aspostit --> ports/deskutils/aspostit Revision Changes Path 1.1477 +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 Jul 29 10:50:33 2000 Delivered-To: cvs-all@freebsd.org Received: from mout2.silyn-tek.de (mout2.silyn-tek.de [194.25.165.70]) by hub.freebsd.org (Postfix) with ESMTP id DA9A637B6F2; Sat, 29 Jul 2000 10:50:27 -0700 (PDT) (envelope-from alex@big.endian.de) Received: from [192.168.32.34] (helo=mx2.silyn-tek.de) by mout2.silyn-tek.de with esmtp (Exim 3.13 #1) id 13IakP-0007My-00; Sat, 29 Jul 2000 19:50:05 +0200 Received: from pc19f34db.dip0.t-ipconnect.de ([193.159.52.219] helo=neutron.cichlids.com) by mx2.silyn-tek.de with esmtp (Exim 3.13 #1) id 13IakM-0001vM-00; Sat, 29 Jul 2000 19:50:03 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id 5F65DAB91; Sat, 29 Jul 2000 19:50:07 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id C65A314BB3; Sat, 29 Jul 2000 19:50:02 +0200 (CEST) Date: Sat, 29 Jul 2000 19:50:02 +0200 To: "Louis A. Mamakos" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/audio/opennap - Imported sources Message-ID: <20000729195002.A15392@cichlids.cichlids.com> References: <200007291253.FAA55910@netplex.com.au> <20000729113412.E7543@drama.navipath.com> <20000729184512.B14005@cichlids.cichlids.com> <200007291730.NAA59562@whizzo.transsys.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200007291730.NAA59562@whizzo.transsys.com>; from louie@TransSys.COM on Sat, Jul 29, 2000 at 01:30:17PM -0400 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. From: alex@big.endian.de (Alexander Langer) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Louis A. Mamakos (louie@TransSys.COM): > > make them RESTRICTED and don't ship packages. > I guess we better get rid of all the ports/packages than can "rip" > audio tracks from audio CDs, too? No, private copies are allowed. > This all seems a little silly. No, it's law. Maybe the law is silly. Alex -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 11:23:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 50B8D37B687; Sat, 29 Jul 2000 11:23:16 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA39382; Sat, 29 Jul 2000 11:23:16 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Message-Id: <200007291823.LAA39382@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Sat, 29 Jul 2000 11:23:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/pngcrush Makefile ports/graphics/pngcrush/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jedgar 2000/07/29 11:23:15 PDT Modified files: graphics/pngcrush Makefile graphics/pngcrush/files md5 Log: Update port to 1.5.1 Revision Changes Path 1.19 +2 -2 ports/graphics/pngcrush/Makefile 1.17 +1 -1 ports/graphics/pngcrush/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 Jul 29 11:26:31 2000 Delivered-To: cvs-all@freebsd.org Received: from bubba.whistle.com (bubba.whistle.com [207.76.205.7]) by hub.freebsd.org (Postfix) with ESMTP id 6CF4637B8EA; Sat, 29 Jul 2000 11:26:07 -0700 (PDT) (envelope-from archie@whistle.com) Received: (from archie@localhost) by bubba.whistle.com (8.9.3/8.9.3) id LAA34544; Sat, 29 Jul 2000 11:24:22 -0700 (PDT) (envelope-from archie) From: Archie Cobbs Message-Id: <200007291824.LAA34544@bubba.whistle.com> Subject: Re: cvs commit: ports/audio/opennap - Imported sources In-Reply-To: <20000729195002.A15392@cichlids.cichlids.com> from Alexander Langer at "Jul 29, 2000 07:50:02 pm" To: Alexander Langer Date: Sat, 29 Jul 2000 11:24:22 -0700 (PDT) Cc: "Louis A. Mamakos" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL68 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Alexander Langer writes: > > > make them RESTRICTED and don't ship packages. > > I guess we better get rid of all the ports/packages than can "rip" > > audio tracks from audio CDs, too? > > No, private copies are allowed. > > > This all seems a little silly. > > No, it's law. Maybe the law is silly. Hang on a second here... Nobody is violating the law simply by installing and running Napster. You clearly violate the law if/when you download copyrighted material that you didn't pay for. Also, there is a legal argument about whether the *company* "Napster" is violating the law by providing the directory service on which Napster clients depend. So IMHO there is no legal issue for the FreeBSD port. -Archie ___________________________________________________________________________ Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 11:30:16 2000 Delivered-To: cvs-all@freebsd.org Received: from bubba.whistle.com (bubba.whistle.com [207.76.205.7]) by hub.freebsd.org (Postfix) with ESMTP id 5F66A37B761; Sat, 29 Jul 2000 11:30:06 -0700 (PDT) (envelope-from archie@whistle.com) Received: (from archie@localhost) by bubba.whistle.com (8.9.3/8.9.3) id LAA34562; Sat, 29 Jul 2000 11:30:03 -0700 (PDT) (envelope-from archie) From: Archie Cobbs Message-Id: <200007291830.LAA34562@bubba.whistle.com> Subject: Re: cvs commit: src/sys/pci if_fxp.c In-Reply-To: <200007282330.QAA64745@freefall.freebsd.org> from Peter Wemm at "Jul 28, 2000 04:30:30 pm" To: Peter Wemm Date: Sat, 29 Jul 2000 11:30:03 -0700 (PDT) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL68 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Peter Wemm writes: > Log: > "Fix" cast qualifier warnings using the uintptr_t intermediate trick. Dumb question. Why don't we just have a vbcopy()? I.e.: void vbcopy __P((const volatile void *from, volatile void *to, size_t len)); ? -Archie ___________________________________________________________________________ Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 12:43:29 2000 Delivered-To: cvs-all@freebsd.org Received: from netplex.com.au (adsl-63-207-30-186.dsl.snfc21.pacbell.net [63.207.30.186]) by hub.freebsd.org (Postfix) with ESMTP id 2409137B595; Sat, 29 Jul 2000 12:43:20 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (peter@localhost [127.0.0.1]) by netplex.com.au (8.9.3/8.9.3) with ESMTP id MAA57302; Sat, 29 Jul 2000 12:43:04 -0700 (PDT) (envelope-from peter@netplex.com.au) Message-Id: <200007291943.MAA57302@netplex.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: Archie Cobbs Cc: Alexander Langer , "Louis A. Mamakos" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/audio/opennap - Imported sources In-Reply-To: <200007291824.LAA34544@bubba.whistle.com> Date: Sat, 29 Jul 2000 12:43:04 -0700 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Archie Cobbs wrote: > Alexander Langer writes: > > > > make them RESTRICTED and don't ship packages. > > > I guess we better get rid of all the ports/packages than can "rip" > > > audio tracks from audio CDs, too? > > > > No, private copies are allowed. > > > > > This all seems a little silly. > > > > No, it's law. Maybe the law is silly. > > Hang on a second here... > > Nobody is violating the law simply by installing and running Napster. > > You clearly violate the law if/when you download copyrighted material > that you didn't pay for. Also, there is a legal argument about whether > the *company* "Napster" is violating the law by providing the directory > service on which Napster clients depend. > > So IMHO there is no legal issue for the FreeBSD port. Exactly. But there is a big "but!". Suppose Metalica (for want of a better example) sues you for contributory copyright infringement. Suppose it is going to cost you over $100K to practically get past the first base to say in court "I have done nothing wrong". It doesn't matter if you are right or not, once you're out of pocket on those sort of amounts it starts killing you. The lawyers know this damn well, and will abuse that to make sure you cannot afford to contest it and that they win by default. Anyway, it is a moot point. Just do not fool yourselves into believing that using napster is completely risk-free - it is not.. And right now, I couldn't think of may worse ways to tempt fate than this.. Particularly so if you actually are using it to copy mp3's etc. Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 12:52:25 2000 Delivered-To: cvs-all@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id 94BF237B7CA; Sat, 29 Jul 2000 12:52:16 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo.feral.com (beppo [192.67.166.79]) by feral.com (8.9.3/8.9.3) with ESMTP id MAA14409; Sat, 29 Jul 2000 12:52:14 -0700 Date: Sat, 29 Jul 2000 12:52:17 -0700 (PDT) From: Matthew Jacob Reply-To: mjacob@feral.com To: Archie Cobbs Cc: Peter Wemm , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci if_fxp.c In-Reply-To: <200007291830.LAA34562@bubba.whistle.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Not a dumb question, but I'd suggest that bcopies from a volatile source at leat should be discouraged. On Sat, 29 Jul 2000, Archie Cobbs wrote: > Peter Wemm writes: > > Log: > > "Fix" cast qualifier warnings using the uintptr_t intermediate trick. > > Dumb question. Why don't we just have a vbcopy()? I.e.: > > void vbcopy __P((const volatile void *from, volatile void *to, size_t len)); > > ? > > -Archie > > ___________________________________________________________________________ > Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 13:26:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AE96437B8A5; Sat, 29 Jul 2000 13:26:23 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Received: (from jdp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA51450; Sat, 29 Jul 2000 13:26:24 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Message-Id: <200007292026.NAA51450@freefall.freebsd.org> From: John Polstra Date: Sat, 29 Jul 2000 13:26:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/rtld-elf rtld.c rtld.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jdp 2000/07/29 13:26:24 PDT Modified files: (Branch: RELENG_4) libexec/rtld-elf rtld.c rtld.h Log: MFC: Call init and fini functions in a proper order based on the interdependencies of the shared libraries. Includes these revisions: rtld.c 1.47 rtld.h 1.19 Revision Changes Path 1.43.2.2 +184 -99 src/libexec/rtld-elf/rtld.c 1.15.2.2 +3 -9 src/libexec/rtld-elf/rtld.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 13:33:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F38F37B55D; Sat, 29 Jul 2000 13:33:39 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Received: (from jdp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA51956; Sat, 29 Jul 2000 13:33:39 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Message-Id: <200007292033.NAA51956@freefall.freebsd.org> From: John Polstra Date: Sat, 29 Jul 2000 13:33:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/netstat if.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jdp 2000/07/29 13:33:39 PDT Modified files: (Branch: RELENG_4) usr.bin/netstat if.c Log: MFC 1.32 -> 1.33: Don't omit header line in output of "netstat -si". Revision Changes Path 1.32.2.1 +2 -2 src/usr.bin/netstat/if.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 13:35:27 2000 Delivered-To: cvs-all@freebsd.org Received: from m08.alpha-net.ne.jp (m08.alpha-net.ne.jp [210.229.64.38]) by hub.freebsd.org (Postfix) with ESMTP id 2E35F37B689; Sat, 29 Jul 2000 13:35:25 -0700 (PDT) (envelope-from k5@cheerful.com) Received: from kyoto-tc012-p160.alpha-net.ne.jp (kyoto-tc012-p160.alpha-net.ne.jp [210.237.118.204]) by m08.alpha-net.ne.jp (8.9.3/3.7W) with ESMTP id FAA29611; Sun, 30 Jul 2000 05:34:32 +0900 (JST) Received: from souffle.bogus-local.net (souffle.bogus-local.net [192.168.1.1]) by kyoto-tc012-p160.alpha-net.ne.jp (Postfix) with ESMTP id 174433D5E; Sun, 30 Jul 2000 05:35:15 +0900 (JST) Date: Sun, 30 Jul 2000 05:35:14 +0900 Message-ID: <863dksn08t.wl@cheerful.com> From: FUJISHIMA Satsuki To: sada@FreeBSD.ORG Cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/www/netscape47-communicator Makefile In-Reply-To: In your message of "Fri, 28 Jul 2000 16:12:47 -0700 (PDT)" <200007282312.QAA63628@freefall.freebsd.org> References: <200007282312.QAA63628@freefall.freebsd.org> User-Agent: Wanderlust/1.1.1 (Purple Rain) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (i386--freebsd) MULE/4.1 (AOI) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -navigators are broken. /usr/ports/www/netscape47-navigator$ make -V NETSCAPE_DIST_GRADE complete_install fix is here: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/netscape47-communicator/Makefile,v retrieving revision 1.68 diff -u -w -B -b -r1.68 Makefile --- Makefile 2000/07/28 23:12:47 1.68 +++ Makefile 2000/07/29 20:17:54 @@ -29,7 +29,7 @@ NETSCAPE_DIST_TAG= alpha-dec-osf4.0 .endif -.if defined(BROWSER) && ${BROWSER} == 'navigator' +.if defined(BROWSER) && ${BROWSER} == "navigator" NETSCAPE_DIST_GRADE= navigator_standalone .endif -- FUJISHIMA Satsuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 13:58:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 00B4137B51B; Sat, 29 Jul 2000 13:58:11 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Received: (from jdp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA53930; Sat, 29 Jul 2000 13:58:10 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Message-Id: <200007292058.NAA53930@freefall.freebsd.org> From: John Polstra Date: Sat, 29 Jul 2000 13:58:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/pm3-base/patches patch-eb X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jdp 2000/07/29 13:58:09 PDT Added files: lang/pm3-base/patches patch-eb Log: Don't crash if the user tries to use a scroller wheel to move a scrollbar. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 13:58:39 2000 Delivered-To: cvs-all@freebsd.org Received: from panzer.kdm.org (panzer.kdm.org [216.160.178.169]) by hub.freebsd.org (Postfix) with ESMTP id B80BC37B51B; Sat, 29 Jul 2000 13:58:25 -0700 (PDT) (envelope-from ken@panzer.kdm.org) Received: (from ken@localhost) by panzer.kdm.org (8.9.3/8.9.1) id OAA06394; Sat, 29 Jul 2000 14:58:04 -0600 (MDT) (envelope-from ken) Date: Sat, 29 Jul 2000 14:58:04 -0600 From: "Kenneth D. Merry" To: Alex Zepeda Cc: Will Andrews , The Hermit Hacker , Will Andrews , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/x11/kde2 Makefile Message-ID: <20000729145804.A6240@panzer.kdm.org> References: <20000729004742.E11880@argon.gryphonsoft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: ; from jazepeda@pacbell.net on Sat, Jul 29, 2000 at 04:25:28AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Jul 29, 2000 at 04:25:28 -0700, Alex Zepeda wrote: > On Sat, 29 Jul 2000, Will Andrews wrote: > > > On Sat, Jul 29, 2000 at 01:26:03AM -0300, The Hermit Hacker wrote: > > > any way of putting in a check for XFree86 version? :) If 4.0 mark as > > > BROKEN and save other ppl the headaches ... ? > > > > Find one (i.e. a file in 4.0 not in 4.0.1) and tell me. :-) > > Or a header, and I can put the check into the autoconf stuff. > > Anyways, why wasn't kdeutils included? It seems to compile fine > here. I'll test it tomorrow of course to see if it actually works.... > > Anyone seen a tutorial or something for the devstat code? Measuring cpu > load is fun fun fun when it's separated by type (idle, interrupt, user, > whee). Gotta love the example leeenux code. There are man pages (devstat(3), devstat(9)) and sample code (iostat(8), systat(1), vmstat(8), rpc.rstatd(8)), but no tutorials. If all you're after is CPU time, though, you really don't need to use devstat(3), since it's primarily aimed at disk-type statistics. The tools that use devstat fetch the CPU stats themselves. top(1) also fetches the CPU time statistics. Anyway, if you need help writing devstat-related code, just let me know. Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 14:14:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 282E937B592; Sat, 29 Jul 2000 14:14:14 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA56515; Sat, 29 Jul 2000 14:14:13 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007292114.OAA56515@freefall.freebsd.org> From: Peter Wemm Date: Sat, 29 Jul 2000 14:14:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys param.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/29 14:14:13 PDT Modified files: (Branch: RELENG_4) sys/sys param.h Log: RELENG_4 is post 4.1-RELEASE - this should have been bumped a while ago. Revision Changes Path 1.61.2.8 +2 -2 src/sys/sys/param.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 14:19: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B492037B5FA; Sat, 29 Jul 2000 14:18:58 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA56978; Sat, 29 Jul 2000 14:18:58 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200007292118.OAA56978@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Sat, 29 Jul 2000 14:18:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook book.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/07/29 14:18:58 PDT Modified files: en_US.ISO_8859-1/books/handbook book.sgml Log: Bump 4.0 to 4.1 since that is the last released version. Revision Changes Path 1.91 +2 -2 doc/en_US.ISO_8859-1/books/handbook/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 15: 2:35 2000 Delivered-To: cvs-all@freebsd.org Received: from thelab.hub.org (nat193.142.mpoweredpc.net [142.177.193.142]) by hub.freebsd.org (Postfix) with ESMTP id 84C5C37B514; Sat, 29 Jul 2000 15:02:30 -0700 (PDT) (envelope-from scrappy@hub.org) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.9.3/8.9.3) with ESMTP id SAA28189; Sat, 29 Jul 2000 18:59:58 -0300 (ADT) (envelope-from scrappy@hub.org) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Sat, 29 Jul 2000 18:59:58 -0300 (ADT) From: The Hermit Hacker To: Will Andrews Cc: Alex Zepeda , Will Andrews , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/x11/kde2 Makefile In-Reply-To: <20000729130921.E18449@argon.gryphonsoft.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 29 Jul 2000, Will Andrews wrote: > [ Hmm, I lost the originator's email address.. ] > > On Sat, Jul 29, 2000 at 08:45:50AM -0500, Glenn Johnson wrote: > > Could you use pkg_info -e XFree86-4.0.0? If this returns true then issue > > the appropriate notice. > > I guess that could work, but there are a number of plausible reasons not > to use that method (i.e. they might not have installed from ports; > XFree86 is sometimes installed from their package). > > It's one thing to try.. make the code that checks for this "overridable" like the BROKEN directive is? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 15: 3:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4D1C837B761; Sat, 29 Jul 2000 15:03:19 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA59762; Sat, 29 Jul 2000 15:03:18 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200007292203.PAA59762@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Sat, 29 Jul 2000 15:03:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/docbook-400/files catalog X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/07/29 15:03:18 PDT Modified files: textproc/docbook-400/files catalog Log: No need for us to copy the 3.1 typo blindly in the catalog file we install. Wish I'd seen this sooner. This fix is purely cosmetic, but it at least might save us from questions in the future. Revision Changes Path 1.4 +1 -1 ports/textproc/docbook-400/files/catalog To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 15:16:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3766C37B76A; Sat, 29 Jul 2000 15:16:56 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA61878; Sat, 29 Jul 2000 15:16:55 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007292216.PAA61878@freefall.freebsd.org> From: Peter Wemm Date: Sat, 29 Jul 2000 15:16:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/chmod chmod.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/29 15:16:55 PDT Modified files: bin/chmod chmod.c Log: Optimize out no-op chmod() syscalls. Revision Changes Path 1.18 +6 -3 src/bin/chmod/chmod.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 15:22:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C649637B76A; Sat, 29 Jul 2000 15:22:11 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA62312; Sat, 29 Jul 2000 15:22:11 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200007292222.PAA62312@freefall.freebsd.org> From: Peter Wemm Date: Sat, 29 Jul 2000 15:22:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/chown chown.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/07/29 15:22:11 PDT Modified files: usr.sbin/chown chown.c Log: Initialize vflag like the rest (not necessary, but this keeps it together) Optimize out chown(2) syscalls if there is no change in uid or gid. Revision Changes Path 1.16 +5 -2 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 Sat Jul 29 15:38:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F07F837B8A5; Sat, 29 Jul 2000 15:38:40 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA63339; Sat, 29 Jul 2000 15:38:41 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200007292238.PAA63339@freefall.freebsd.org> From: Kris Kennaway Date: Sat, 29 Jul 2000 15:38:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/http_load/patches patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/07/29 15:38:40 PDT Added files: www/http_load/patches patch-aa Log: Respect CC and CFLAGS To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 16:15:45 2000 Delivered-To: cvs-all@freebsd.org Received: from whizzo.transsys.com (whizzo.TransSys.COM [144.202.42.10]) by hub.freebsd.org (Postfix) with ESMTP id 024CA37B621; Sat, 29 Jul 2000 16:15:41 -0700 (PDT) (envelope-from louie@whizzo.transsys.com) Received: from whizzo.transsys.com (localhost.transsys.com [127.0.0.1]) by whizzo.transsys.com (8.9.3/8.9.1) with ESMTP id TAA60791; Sat, 29 Jul 2000 19:15:19 -0400 (EDT) (envelope-from louie@whizzo.transsys.com) Message-Id: <200007292315.TAA60791@whizzo.transsys.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: Peter Wemm Cc: Archie Cobbs , Alexander Langer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Image-URL: http://www.transsys.com/louie/images/louie-mail.jpg From: "Louis A. Mamakos" Subject: Re: cvs commit: ports/audio/opennap - Imported sources References: <200007291943.MAA57302@netplex.com.au> In-reply-to: Your message of "Sat, 29 Jul 2000 12:43:04 PDT." <200007291943.MAA57302@netplex.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 29 Jul 2000 19:15:19 -0400 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG My point was, once you start trying to draw the line between what software is made "available" and what shouldn't be, you enter a troublesome space. I'm no lawyer (and I'm really happy about that based on the lengthy experiences dealing with them), but if you start making judgements on what can be included and what can't be, then I think you open the door more than making no judgements at all. Should FreeBSD provide the "cracking tools" in ports/security? What if they're used to attack a site? This is the same sort of problem and by trying to decide yourself, rather than leaving it do the end user of the software, you're inviting people to dispute the completeness of your choices. Oh, and if anyone's keeping track, another court has temporarily stayed the injunction against Napster until they can appeal the restraining order. Not that any of that matter has a broad enough precedent to be necessarily applicable to other parties in the first place. louie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 16:48: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B9BED37B8A5; Sat, 29 Jul 2000 16:48:00 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA69082; Sat, 29 Jul 2000 16:48:00 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Message-Id: <200007292348.QAA69082@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Sat, 29 Jul 2000 16:47:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/g-wrap/pkg DESCR X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jedgar 2000/07/29 16:47:59 PDT Modified files: devel/g-wrap/pkg DESCR Log: Correct WWW Revision Changes Path 1.2 +1 -1 ports/devel/g-wrap/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 18: 4:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 79D2337B5D0; Sat, 29 Jul 2000 18:04:32 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA75959; Sat, 29 Jul 2000 18:04:32 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007300104.SAA75959@freefall.freebsd.org> From: SADA Kenji Date: Sat, 29 Jul 2000 18:04:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/netscape47-communicator Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/29 18:04:32 PDT Modified files: www/netscape47-communicator Makefile Log: Unbroke for navigators 4.74. Submitted by: FUJISHIMA Satsuki Revision Changes Path 1.69 +2 -2 ports/www/netscape47-communicator/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 18: 7:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C3BDB37B51E; Sat, 29 Jul 2000 18:07:43 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA77570; Sat, 29 Jul 2000 18:07:43 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007300107.SAA77570@freefall.freebsd.org> From: SADA Kenji Date: Sat, 29 Jul 2000 18:07:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/netscape47-communicator/pkg PLIST ports/www/netscape47-navigator/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/29 18:07:35 PDT Modified files: www/netscape47-communicator/pkg PLIST www/netscape47-navigator/pkg PLIST Log: Avoid deinstall time warning messages when some plagins are installed. Revision Changes Path 1.28 +1 -1 ports/www/netscape47-communicator/pkg/PLIST 1.30 +1 -1 ports/www/netscape47-navigator/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 Jul 29 18: 9:25 2000 Delivered-To: cvs-all@freebsd.org Received: from home.bsdclub.org (home.bsdclub.org [202.227.26.94]) by hub.freebsd.org (Postfix) with ESMTP id AB13037B512; Sat, 29 Jul 2000 18:09:20 -0700 (PDT) (envelope-from sada@bsdclub.org) Received: (from sada@localhost) by home.bsdclub.org (8.9.3/3.7W) id KAA88114; Sun, 30 Jul 2000 10:09:07 +0900 (JST) Date: Sun, 30 Jul 2000 10:09:07 +0900 (JST) Message-Id: <200007300109.KAA88114@home.bsdclub.org> To: k5@cheerful.com Cc: sada@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/www/netscape47-communicator Makefile In-Reply-To: Your message of "Sun, 30 Jul 2000 05:35:14 +0900". <863dksn08t.wl@cheerful.com> From: SADA Kenji Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Mailer: mnews [version 1.22] 1999-12/19(Sun) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In article <863dksn08t.wl@cheerful.com> k5@cheerful.com writes: >> -navigators are broken. >> >> /usr/ports/www/netscape47-navigator$ make -V NETSCAPE_DIST_GRADE >> complete_install Fixed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 18:17:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E31E37B6D8; Sat, 29 Jul 2000 18:17:36 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA78223; Sat, 29 Jul 2000 18:17:36 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007300117.SAA78223@freefall.freebsd.org> From: SADA Kenji Date: Sat, 29 Jul 2000 18:17:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/netscape47-communicator Makefile ports/www/netscape47-communicator/pkg PLIST.alpha X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/29 18:17:36 PDT Modified files: www/netscape47-communicator Makefile Added files: www/netscape47-communicator/pkg PLIST.alpha Log: Add exclusive PLIST for alpha architecture machines (PLIST.alpha). Revision Changes Path 1.70 +6 -2 ports/www/netscape47-communicator/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 18:53:40 2000 Delivered-To: cvs-all@freebsd.org Received: from mercury.mich.com (mercury.mich.com [64.79.64.32]) by hub.freebsd.org (Postfix) with ESMTP id D66DB37B633; Sat, 29 Jul 2000 18:53:33 -0700 (PDT) (envelope-from will@almanac.yi.org) Received: from argon.gryphonsoft.com (pm011-024.dialup.bignet.net [64.79.81.248]) by mercury.mich.com (8.9.3/8.9.3) with ESMTP id VAA23752; Sat, 29 Jul 2000 21:53:20 -0400 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id BC07D194F; Sat, 29 Jul 2000 21:28:24 -0400 (EDT) Date: Sat, 29 Jul 2000 21:28:24 -0400 From: Will Andrews To: Neil Blakey-Milner Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/deskutils Makefile ports/deskutils/aspostit Makefile ports/deskutils/aspostit/files md5 ports/deskutils/aspostit/patches patch-aa ports/deskutils/aspostit/pkg COMMENT DESCR PLIST Message-ID: <20000729212824.F18449@argon.gryphonsoft.com> References: <200007291748.KAA35504@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200007291748.KAA35504@freefall.freebsd.org>; from nbm@FreeBSD.org on Sat, Jul 29, 2000 at 10:48:26AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Jul 29, 2000 at 10:48:26AM -0700, Neil Blakey-Milner wrote: > PR: ports/9289 ^^^^ Wow, now that's old! :-) -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 19: 0:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5D84937B513; Sat, 29 Jul 2000 19:00:54 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA80606; Sat, 29 Jul 2000 19:00:54 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200007300200.TAA80606@freefall.freebsd.org> From: Will Andrews Date: Sat, 29 Jul 2000 19:00:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/kdelibs2 Makefile ports/x11/kde2 Makefile ports/converters/kdesupport2/patches patch-ab ports/net/kdenetwork2/files md5 ports/x11-toolkits/qt22 Makefile ports/x11-toolkits/qt21 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/07/29 19:00:53 PDT Modified files: x11/kdelibs2 Makefile x11/kde2 Makefile net/kdenetwork2/files md5 x11-toolkits/qt22 Makefile x11-toolkits/qt21 Makefile Removed files: converters/kdesupport2/patches patch-ab Log: Fix my not-tested-enough KDE2-related ports. :-( After short discussion with Imura-san, back out GIF-by-default until I can confirm whether or not there are license issues with Unisys. I will deal with this later. I should note that I'd committed to qt2[12] previously without conferring with him on the GIF issue first. One big ouchie: I didn't even set MASTER_SITE/MASTER_SITE_SUBDIR on qt22 properly.. but oh well. Nobody's perfect. :-) Things should be un-broken now.. please test these ports! I'll be trying to update them to a new snap after a week or so. Pointy hat: will Patches graciously submitted by: nra Revision Changes Path 1.55 +2 -2 ports/x11/kdelibs2/Makefile 1.33 +2 -2 ports/x11/kde2/Makefile 1.12 +1 -1 ports/net/kdenetwork2/files/md5 1.55 +13 -8 ports/x11-toolkits/qt22/Makefile 1.55 +7 -2 ports/x11-toolkits/qt21/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 19:21: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B5EB937B56B; Sat, 29 Jul 2000 19:20:59 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA83311; Sat, 29 Jul 2000 19:20:59 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007300220.TAA83311@freefall.freebsd.org> From: SADA Kenji Date: Sat, 29 Jul 2000 19:20:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/29 19:20:59 PDT Modified files: . modules Log: tkregexp --> ports/misc/tkregexp Revision Changes Path 1.1478 +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 Jul 29 19:23:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A29E37B813; Sat, 29 Jul 2000 19:23:22 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA83440; Sat, 29 Jul 2000 19:23:21 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007300223.TAA83440@freefall.freebsd.org> From: SADA Kenji Date: Sat, 29 Jul 2000 19:23:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/tkregexp - Imported sources X-FreeBSD-CVS-Branch: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/29 19:23:21 PDT ports/misc/tkregexp - Imported sources Update of /home/ncvs/ports/misc/tkregexp In directory freefall.freebsd.org:/d/home/sada/work/tkregexp Log Message: New port tkregexp - This software will let you design your regexps by letting you type the expression and visualize its effect on a sample of your choice. PR: ports/18355 Submitted by: Patrick Seal Status: Vendor Tag: PATSEAL Release Tags: v2_1 N ports/misc/tkregexp/Makefile N ports/misc/tkregexp/files/md5 N ports/misc/tkregexp/pkg/COMMENT N ports/misc/tkregexp/pkg/DESCR N ports/misc/tkregexp/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 Jul 29 19:26:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 857A137BA10; Sat, 29 Jul 2000 19:26:12 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA83682; Sat, 29 Jul 2000 19:26:12 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007300226.TAA83682@freefall.freebsd.org> From: SADA Kenji Date: Sat, 29 Jul 2000 19:26:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/29 19:26:12 PDT Modified files: misc Makefile Log: Activate tkregexp. PR: ports/18355 Submitted by: Patrick Seal Revision Changes Path 1.282 +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 Sat Jul 29 19:33:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 675A937B735; Sat, 29 Jul 2000 19:33:38 -0700 (PDT) (envelope-from cg@FreeBSD.org) Received: (from cg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA84414; Sat, 29 Jul 2000 19:33:38 -0700 (PDT) (envelope-from cg@FreeBSD.org) Message-Id: <200007300233.TAA84414@freefall.freebsd.org> From: Cameron Grant Date: Sat, 29 Jul 2000 19:33:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/pci ds1.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cg 2000/07/29 19:33:38 PDT Modified files: sys/dev/sound/pci ds1.c Log: do the ac97 init delay for all chips and increase it to 500ms Revision Changes Path 1.9 +4 -3 src/sys/dev/sound/pci/ds1.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 20:15:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1AE1D37B8F3; Sat, 29 Jul 2000 20:15:13 -0700 (PDT) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA88461; Sat, 29 Jul 2000 20:15:13 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200007300315.UAA88461@freefall.freebsd.org> From: Brian Feldman Date: Sat, 29 Jul 2000 20:15:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc MAKEDEV X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/07/29 20:15:12 PDT Modified files: etc MAKEDEV Log: Since the driver supports both (and may have different semantics for both soon...), create urandom instead of the link to random. It's also what makes sense according to the make_dev(9)'s in random(4). Revision Changes Path 1.265 +2 -2 src/etc/MAKEDEV To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 20:32:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E93537B689; Sat, 29 Jul 2000 20:32:27 -0700 (PDT) (envelope-from jseger@FreeBSD.org) Received: (from jseger@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA89470; Sat, 29 Jul 2000 20:32:27 -0700 (PDT) (envelope-from jseger@FreeBSD.org) Message-Id: <200007300332.UAA89470@freefall.freebsd.org> From: "Justin M. Seger" Date: Sat, 29 Jul 2000 20:32:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/jpeg Makefile ports/graphics/jpeg/patches patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jseger 2000/07/29 20:32:27 PDT Modified files: graphics/jpeg Makefile graphics/jpeg/patches patch-ab Log: /usr/local/bin/libtool -> ${LIBTOOL} PR: ports/19450 Revision Changes Path 1.24 +2 -1 ports/graphics/jpeg/Makefile 1.4 +6 -4 ports/graphics/jpeg/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 Sat Jul 29 20:33:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B91E37B689; Sat, 29 Jul 2000 20:33:44 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA89651; Sat, 29 Jul 2000 20:33:44 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007300333.UAA89651@freefall.freebsd.org> From: SADA Kenji Date: Sat, 29 Jul 2000 20:33:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/29 20:33:44 PDT Modified files: . modules Log: biblereader --> ports/deskutils/biblereader Revision Changes Path 1.1479 +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 Jul 29 20:35:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 755F837BA0F; Sat, 29 Jul 2000 20:35:10 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA89808; Sat, 29 Jul 2000 20:35:10 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007300335.UAA89808@freefall.freebsd.org> From: SADA Kenji Date: Sat, 29 Jul 2000 20:35:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/deskutils/biblereader - Imported sources X-FreeBSD-CVS-Branch: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/29 20:35:10 PDT ports/deskutils/biblereader - Imported sources Update of /home/ncvs/ports/deskutils/biblereader In directory freefall.freebsd.org:/d/home/sada/work/biblereader Log Message: New port - BibleReader is a Bible browsing/searching program for Linux/X. PR: ports/18359 Submitted by: Patrick Seal Status: Vendor Tag: PATSEAL Release Tags: v0_2_2 N ports/deskutils/biblereader/Makefile N ports/deskutils/biblereader/files/md5 N ports/deskutils/biblereader/pkg/COMMENT N ports/deskutils/biblereader/pkg/DESCR N ports/deskutils/biblereader/pkg/PLIST N ports/deskutils/biblereader/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 Sat Jul 29 20:39:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1095437B7D2; Sat, 29 Jul 2000 20:39:36 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA90252; Sat, 29 Jul 2000 20:39:36 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200007300339.UAA90252@freefall.freebsd.org> From: SADA Kenji Date: Sat, 29 Jul 2000 20:39:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/deskutils Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/07/29 20:39:35 PDT Modified files: deskutils Makefile Log: Activate BibleReader. PR: ports/18359 Submitted by: Patrick Seal Revision Changes Path 1.28 +2 -1 ports/deskutils/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 20:45:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B43237B6B9; Sat, 29 Jul 2000 20:45:11 -0700 (PDT) (envelope-from jseger@FreeBSD.org) Received: (from jseger@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA90718; Sat, 29 Jul 2000 20:45:11 -0700 (PDT) (envelope-from jseger@FreeBSD.org) Message-Id: <200007300345.UAA90718@freefall.freebsd.org> From: "Justin M. Seger" Date: Sat, 29 Jul 2000 20:45:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/emacs20/patches patch-ai patch-an patch-cb patch-cc patch-cg patch-af patch-ca patch-ch X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jseger 2000/07/29 20:45:11 PDT Modified files: editors/emacs20/patches patch-ai patch-an patch-cb patch-cc patch-cg Removed files: editors/emacs20/patches patch-af patch-ca patch-ch Log: patch-ai, patch-an, patch-cg: Regenerated for emacs-20.7. patch-cc (configure.in): Merged with patch-ch. patch-af (src/unexfreebsd.c): Removed. Not used by this port. patch-ca (src/Makefile.in): Removed. 5-CURRENT's and 4-STABLE's libtermcap -> libncurses symbolic link issues are now well handled by vendor's src/s/freebsd.h. Moved LIBS_XPG changes to patch-cb. patch-cb (src/s/freebsd.h): Regenerate for emacs-20.7. Update the conditional of enclosing the USE_XPG check so as not to link libxpg4 on recently 5-CURRENT and 4-STABLE after the merge of libxpg4 into libc. Added LIBS_XPG to LIBS_SYSTEM. PR: ports/19653 Submitted by: OKAZAKI Tetsurou Revision Changes Path 1.2 +4 -4 ports/editors/emacs20/patches/patch-ai 1.2 +3 -3 ports/editors/emacs20/patches/patch-an 1.5 +16 -10 ports/editors/emacs20/patches/patch-cb 1.4 +12 -3 ports/editors/emacs20/patches/patch-cc 1.2 +10 -9 ports/editors/emacs20/patches/patch-cg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 21: 5:33 2000 Delivered-To: cvs-all@freebsd.org Received: from mta6.snfc21.pbi.net (mta6.snfc21.pbi.net [206.13.28.240]) by hub.freebsd.org (Postfix) with ESMTP id BAC2C37B8DE; Sat, 29 Jul 2000 21:05:23 -0700 (PDT) (envelope-from jazepeda@pacbell.net) Received: from ppp-207-214-149-83.snrf01.pacbell.net ([207.214.149.83]) by mta6.snfc21.pbi.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0FYH005NUSN0MH@mta6.snfc21.pbi.net>; Sat, 29 Jul 2000 21:04:15 -0700 (PDT) Date: Sat, 29 Jul 2000 21:05:19 -0700 (PDT) From: Alex Zepeda Subject: Re: cvs commit: ports/x11/kde2 Makefile In-reply-to: X-Sender: alex@zippy.pacbell.net To: The Hermit Hacker Cc: Will Andrews , Alex Zepeda , Will Andrews , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Message-id: MIME-version: 1.0 Content-type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 29 Jul 2000, The Hermit Hacker wrote: > make the code that checks for this "overridable" like the BROKEN directive > is? What about X -version? Creative awk use could extract the version #. - alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 22: 6:35 2000 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 6E14337B8F6; Sat, 29 Jul 2000 22:06:26 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.8.7/8.8.7) with ESMTP id PAA06549; Sun, 30 Jul 2000 15:05:51 +1000 Date: Sun, 30 Jul 2000 15:05:47 +1000 (EST) From: Bruce Evans X-Sender: bde@besplex.bde.org To: Matthew Jacob Cc: Archie Cobbs , Peter Wemm , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci if_fxp.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 X-Loop: FreeBSD.ORG On Sat, 29 Jul 2000, Matthew Jacob wrote: > Not a dumb question, but I'd suggest that bcopies from a volatile source at > leat should be discouraged. They are just broken, since bcopy() may do optimizations that aren't valid for volatile data. E.g., the i586 bcopy sometimes reads the source twice (to prefetch it the first time). The data may be copied out of order or written more than once. > On Sat, 29 Jul 2000, Archie Cobbs wrote: > > > Peter Wemm writes: > > > Log: > > > "Fix" cast qualifier warnings using the uintptr_t intermediate trick. This seems to just hide the problem in if_fxp.c. > > Dumb question. Why don't we just have a vbcopy()? I.e.: > > > > void vbcopy __P((const volatile void *from, volatile void *to, size_t len)); Most volatile memory is device memory so it should be copied using bus_space_{read,write}*. If you have volatile variables in a struct, then accessing the struct (or the variables) using bcopy is simplistic. The variables can normally only be accessed safely using atomic instructions or after acquiring a lock. If things are locked, then the variables aren't really volatile. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 22:20:35 2000 Delivered-To: cvs-all@freebsd.org Received: from thelab.hub.org (nat193.142.mpoweredpc.net [142.177.193.142]) by hub.freebsd.org (Postfix) with ESMTP id C61C837B8F6; Sat, 29 Jul 2000 22:20:30 -0700 (PDT) (envelope-from scrappy@hub.org) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.9.3/8.9.3) with ESMTP id CAA32813; Sun, 30 Jul 2000 02:17:35 -0300 (ADT) (envelope-from scrappy@hub.org) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Sun, 30 Jul 2000 02:17:35 -0300 (ADT) From: The Hermit Hacker To: Alex Zepeda Cc: Will Andrews , Will Andrews , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/x11/kde2 Makefile In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG or simple perl: perl -e 'while(){if($_ =~ / 4.0 /){print "BROKEN";} }' the problem is a redirection that I don't know how to do :( X -version goes to STDERR, so to 'test' the above, I had to do: X -version >& /tmp/X.v cat /tmp/X.v | perl -e 'while(){if($_ =~ / 4.0 /){print "BROKEN";} }' someone better at shell redirects should be able to shorten that though :) On Sat, 29 Jul 2000, Alex Zepeda wrote: > On Sat, 29 Jul 2000, The Hermit Hacker wrote: > > > make the code that checks for this "overridable" like the BROKEN directive > > is? > > What about X -version? Creative awk use could extract the version #. > > - alex > Marc G. Fournier ICQ#7615664 IRC Nick: Scrappy Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 22:28:50 2000 Delivered-To: cvs-all@freebsd.org Received: from mta5.snfc21.pbi.net (mta5.snfc21.pbi.net [206.13.28.241]) by hub.freebsd.org (Postfix) with ESMTP id 1F09437B8F6; Sat, 29 Jul 2000 22:28:41 -0700 (PDT) (envelope-from jazepeda@pacbell.net) Received: from ppp-207-214-149-83.snrf01.pacbell.net ([207.214.149.83]) by mta5.snfc21.pbi.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0FYH00687WDL98@mta5.snfc21.pbi.net>; Sat, 29 Jul 2000 22:25:00 -0700 (PDT) Date: Sat, 29 Jul 2000 22:26:31 -0700 (PDT) From: Alex Zepeda Subject: Re: cvs commit: ports/x11/kde2 Makefile In-reply-to: X-Sender: alex@zippy.pacbell.net To: The Hermit Hacker Cc: Alex Zepeda , Will Andrews , Will Andrews , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Message-id: MIME-version: 1.0 Content-type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 30 Jul 2000, The Hermit Hacker wrote: > > or simple perl: > > perl -e 'while(){if($_ =~ / 4.0 /){print "BROKEN";} }' > > the problem is a redirection that I don't know how to do :( > > X -version goes to STDERR, so to 'test' the above, I had to do: > > X -version >& /tmp/X.v > cat /tmp/X.v | perl -e 'while(){if($_ =~ / 4.0 /){print "BROKEN";} }' > > someone better at shell redirects should be able to shorten that though :) X -version 2|blah should do it with sh. - alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 22:36:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E32137B958; Sat, 29 Jul 2000 22:36:12 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA03003; Sat, 29 Jul 2000 22:36:11 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200007300536.WAA03003@freefall.freebsd.org> From: Marcel Moolenaar Date: Sat, 29 Jul 2000 22:36:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/linux linux_misc.c linux_util.c linux_util.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/07/29 22:36:11 PDT Modified files: (Branch: RELENG_4) sys/i386/linux linux_misc.c linux_util.c linux_util.h Log: MFC: bounds checking to stackgap_alloc. Revision Changes Path 1.77.2.4 +3 -1 src/sys/i386/linux/linux_misc.c 1.9.2.2 +5 -2 src/sys/i386/linux/linux_util.c 1.10.2.1 +9 -11 src/sys/i386/linux/linux_util.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 22:41: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from netplex.com.au (adsl-63-207-30-186.dsl.snfc21.pacbell.net [63.207.30.186]) by hub.freebsd.org (Postfix) with ESMTP id A096B37B9A1; Sat, 29 Jul 2000 22:41:00 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (peter@localhost [127.0.0.1]) by netplex.com.au (8.9.3/8.9.3) with ESMTP id WAA59053; Sat, 29 Jul 2000 22:40:46 -0700 (PDT) (envelope-from peter@netplex.com.au) Message-Id: <200007300540.WAA59053@netplex.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: Bruce Evans Cc: Matthew Jacob , Archie Cobbs , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci if_fxp.c In-Reply-To: Date: Sat, 29 Jul 2000 22:40:45 -0700 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Bruce Evans wrote: > On Sat, 29 Jul 2000, Matthew Jacob wrote: > > > Not a dumb question, but I'd suggest that bcopies from a volatile source at > > leat should be discouraged. > > They are just broken, since bcopy() may do optimizations that aren't valid > for volatile data. E.g., the i586 bcopy sometimes reads the source twice > (to prefetch it the first time). The data may be copied out of order or > written more than once. In this particular case it is ok. The data being copied is "part time" volatile only. It does not matter what or how bcopy may optimize as it is not being used on data that is volatile *at the time of the bcopy*. > > On Sat, 29 Jul 2000, Archie Cobbs wrote: > > > > > Peter Wemm writes: > > > > Log: > > > > "Fix" cast qualifier warnings using the uintptr_t intermediate trick. > > This seems to just hide the problem in if_fxp.c. No, the bcopy is safe in this case. We once used bcopy on real volatile data but that did get fixed long ago. > > > Dumb question. Why don't we just have a vbcopy()? I.e.: > > > > > > void vbcopy __P((const volatile void *from, volatile void *to, size_t l en)); > > Most volatile memory is device memory so it should be copied using > bus_space_{read,write}*. If you have volatile variables in a struct, > then accessing the struct (or the variables) using bcopy is simplistic. > The variables can normally only be accessed safely using atomic instructions > or after acquiring a lock. If things are locked, then the variables aren't > really volatile. In the fxp case, the volatile memory is *not* device memory. One example use was where bcopy was being used to set up a descriptor that was *later* going to be fed to the hardware. Once it has been activated, then it needs volatile handling (and does get special handling in if_fxp). > Bruce > > Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 22:41:22 2000 Delivered-To: cvs-all@freebsd.org Received: from mta4.rcsntx.swbell.net (mta4.rcsntx.swbell.net [151.164.30.28]) by hub.freebsd.org (Postfix) with ESMTP id 01BCE37BC11; Sat, 29 Jul 2000 22:41:08 -0700 (PDT) (envelope-from chris@holly.calldei.com) Received: from holly.calldei.com ([208.191.149.190]) by mta4.rcsntx.swbell.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0FYH00H4HWT4NN@mta4.rcsntx.swbell.net>; Sun, 30 Jul 2000 00:34:17 -0500 (CDT) Received: (from chris@localhost) by holly.calldei.com (8.9.3/8.9.3) id AAA48319; Sun, 30 Jul 2000 00:31:29 -0500 (CDT envelope-from chris) Date: Sun, 30 Jul 2000 00:31:29 -0500 From: Chris Costello Subject: Re: cvs commit: ports/x11/kde2 Makefile In-reply-to: To: Alex Zepeda Cc: The Hermit Hacker , Will Andrews , Will Andrews , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Reply-To: chris@calldei.com Message-id: <20000730003129.R37935@holly.calldei.com> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.4i References: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Saturday, July 29, 2000, Alex Zepeda wrote: > X -version 2|blah > > should do it with sh. I know of no shell that supports such syntax. X -version 2>&1 >/dev/null | ... should work. -- |Chris Costello |Computer programmers know how to use their hardware. `---------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 23:24:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E182F37B5B9; Sat, 29 Jul 2000 23:24:15 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id XAA07012; Sat, 29 Jul 2000 23:24:15 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Sat, 29 Jul 2000 23:24:15 -0700 (PDT) From: Kris Kennaway To: Will Andrews Cc: Neil Blakey-Milner , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/deskutils Makefile ports/deskutils/aspostit Makefile ports/deskutils/aspostit/files md5 ports/deskutils/aspostit/patches patch-aa ports/deskutils/aspostit/pkg COMMENT DESCR PLIST In-Reply-To: <20000729212824.F18449@argon.gryphonsoft.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 29 Jul 2000, Will Andrews wrote: > On Sat, Jul 29, 2000 at 10:48:26AM -0700, Neil Blakey-Milner wrote: > > PR: ports/9289 > ^^^^ > > Wow, now that's old! :-) Yeah yeah, I got lazy after I got my commit bit :-P Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jul 29 23:31:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 286D737B974; Sat, 29 Jul 2000 23:31:50 -0700 (PDT) (envelope-from darrenr@FreeBSD.org) Received: (from darrenr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA07490; Sat, 29 Jul 2000 23:31:49 -0700 (PDT) (envelope-from darrenr@FreeBSD.org) Message-Id: <200007300631.XAA07490@freefall.freebsd.org> From: Darren Reed Date: Sat, 29 Jul 2000 23:31:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ipfstat Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG darrenr 2000/07/29 23:31:49 PDT Modified files: sbin/ipfstat Makefile Log: Darren, Could you please enable my "state top" patches in the FreeBSD distribution. I developped the stuff under FreeBSD, so it must be good there :-) Here is a patch (relative to the RELENG_4 branch). Thanks, Frank Revision Changes Path 1.6 +5 -2 src/sbin/ipfstat/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message