From owner-cvs-all Sun Aug 19 0: 4:41 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 64C9E37B405; Sun, 19 Aug 2001 00:04:38 -0700 (PDT) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7J74cL25907; Sun, 19 Aug 2001 00:04:38 -0700 (PDT) (envelope-from billf) Message-Id: <200108190704.f7J74cL25907@freefall.freebsd.org> From: Bill Fumerola Date: Sun, 19 Aug 2001 00:04:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/ethereal Makefile ports/net/ethereal/files patch-ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG billf 2001/08/19 00:04:38 PDT Modified files: net/ethereal Makefile Added files: net/ethereal/files patch-ac Log: fix building of a few man pages on systems w/o autoconf installed PR: ports/29381 Submitted by: Scott Renfro Revision Changes Path 1.39 +3 -4 ports/net/ethereal/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 0: 8:11 2001 Delivered-To: cvs-all@freebsd.org Received: from InterJet.elischer.org (c421509-a.pinol1.sfba.home.com [24.7.86.9]) by hub.freebsd.org (Postfix) with ESMTP id 7ABB837B409; Sun, 19 Aug 2001 00:08:00 -0700 (PDT) (envelope-from julian@elischer.org) Received: from elischer.org (InterJet.elischer.org [192.168.1.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id AAA30793; Sun, 19 Aug 2001 00:16:35 -0700 (PDT) Message-ID: <3B7F63E7.B88EAA26@elischer.org> Date: Sat, 18 Aug 2001 23:59:51 -0700 From: Julian Elischer X-Mailer: Mozilla 4.7 [en] (X11; U; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en, hu MIME-Version: 1.0 To: Bosko Milekic Cc: Julian Elischer , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_mbuf.c uipc_usrreq.c References: <200108190430.f7J4UEJ01333@freefall.freebsd.org> <20010819023551.B331@technokratis.com> Content-Type: text/plain; charset=iso-8859-2 Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Bosko Milekic wrote: > > On Sat, Aug 18, 2001 at 09:30:13PM -0700, Julian Elischer wrote: > > julian 2001/08/18 21:30:13 PDT > > > > Modified files: > > sys/kern uipc_mbuf.c uipc_usrreq.c > > Log: > > Forgot to remove this un-needed test. (M_WAITOK won't fail) > > I vaguely remember someone once proving it COULD return NULL.. > > was that changed? > > This is correct. malloc(9) cannot fail (well it can, but it will > call panic()) if it is called with M_WAITOK. The distinction is in the mbuf > code where _mbuf allocations_ can either be called with M_DONWAIT (can fail > if can't get resources) or M_TRYWAIT (can fail if can't get resources and > have tried waiting to no avail). Thus, mbuf allocations should always be > accompanied by a check for allocation failure and proper measures should be > taken should this occur (i.e. drop packet, whatever). This is not the case > for malloc(9). ah yes.. that was it.. thanks > > > Reminded by: BDE > > > > MFC after: 2 weeks > > > > Revision Changes Path > > 1.87 +2 -2 src/sys/kern/uipc_mbuf.c > > 1.70 +1 -3 src/sys/kern/uipc_usrreq.c > > -- > Bosko Milekic > bmilekic@technokratis.com -- +------------------------------------+ ______ _ __ | __--_|\ Julian Elischer | \ U \/ / hard at work in | / \ julian@elischer.org +------>x USA \ a very strange | ( OZ ) \___ ___ | country ! +- X_.---._/ presently in San Francisco \_/ \\ v To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 0:14:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B58337B40B; Sun, 19 Aug 2001 00:14:31 -0700 (PDT) (envelope-from horikawa@FreeBSD.org) Received: (from horikawa@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7J7EV529793; Sun, 19 Aug 2001 00:14:31 -0700 (PDT) (envelope-from horikawa) Message-Id: <200108190714.f7J7EV529793@freefall.freebsd.org> From: Kazuo Horikawa Date: Sun, 19 Aug 2001 00:14:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man2 _exit.2 accept.2 access.2 acct.2 adjtime.2 bind.2 brk.2 chdir.2 chmod.2 chown.2 chroot.2 clock_gettime.2 close.2 connect.2 creat.2 dup.2 execve.2 fcntl.2 fhopen.2 flock.2 fork.2 fsync.2 getdtablesize.2 getfh.2 getgid.2 ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG horikawa 2001/08/19 00:14:31 PDT Modified files: ja_JP.eucJP/man/man2 _exit.2 accept.2 access.2 acct.2 adjtime.2 bind.2 brk.2 chdir.2 chmod.2 chown.2 chroot.2 clock_gettime.2 close.2 connect.2 creat.2 dup.2 execve.2 fcntl.2 fhopen.2 flock.2 fork.2 fsync.2 getdtablesize.2 getfh.2 getgid.2 getgroups.2 getitimer.2 getlogin.2 getpeername.2 getpgrp.2 getpid.2 getpriority.2 getrlimit.2 getrusage.2 getsid.2 getsockname.2 getsockopt.2 gettimeofday.2 getuid.2 i386_get_ldt.2 i386_vm86.2 intro.2 ioctl.2 jail.2 kill.2 killpg.2 ktrace.2 link.2 listen.2 lseek.2 madvise.2 mincore.2 minherit.2 mkdir.2 mkfifo.2 mknod.2 mlock.2 mmap.2 mount.2 mprotect.2 msync.2 munmap.2 open.2 pathconf.2 pipe.2 profil.2 ptrace.2 quotactl.2 read.2 readlink.2 reboot.2 recv.2 rename.2 revoke.2 rfork.2 rmdir.2 rtprio.2 sched_get_priority_max.2 sched_setparam.2 sched_setscheduler.2 sched_yield.2 select.2 semctl.2 semget.2 semop.2 send.2 sendfile.2 setgroups.2 setpgid.2 setregid.2 setresuid.2 setreuid.2 setuid.2 shmat.2 shmctl.2 shmget.2 shutdown.2 sigaction.2 sigaltstack.2 sigpause.2 sigpending.2 sigprocmask.2 sigreturn.2 sigsetmask.2 sigstack.2 sigvec.2 socket.2 socketpair.2 stat.2 swapon.2 symlink.2 sync.2 syscall.2 truncate.2 umask.2 undelete.2 unlink.2 vfork.2 wait.2 write.2 ja_JP.eucJP/man/man5 auth.conf.5 editrc.5 login.conf.5 radius.conf.5 tacplus.conf.5 tzfile.5 ja_JP.eucJP/man/man8 pam_radius.8 Log: Catch up with 4.4-RC-20010819-JPSNAP. These files contain only markup changes. Revision Changes Path 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/_exit.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/accept.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/access.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/acct.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/adjtime.2 1.6 +4 -4 doc/ja_JP.eucJP/man/man2/bind.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/brk.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/chdir.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/chmod.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/chown.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/chroot.2 1.6 +4 -4 doc/ja_JP.eucJP/man/man2/clock_gettime.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/close.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/connect.2 1.4 +3 -3 doc/ja_JP.eucJP/man/man2/creat.2 1.6 +4 -4 doc/ja_JP.eucJP/man/man2/dup.2 1.6 +4 -4 doc/ja_JP.eucJP/man/man2/execve.2 1.8 +3 -3 doc/ja_JP.eucJP/man/man2/fcntl.2 1.5 +8 -7 doc/ja_JP.eucJP/man/man2/fhopen.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/flock.2 1.4 +3 -3 doc/ja_JP.eucJP/man/man2/fork.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/fsync.2 1.4 +3 -3 doc/ja_JP.eucJP/man/man2/getdtablesize.2 1.4 +2 -2 doc/ja_JP.eucJP/man/man2/getfh.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/getgid.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/getgroups.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/getitimer.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/getlogin.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/getpeername.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/getpgrp.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/getpid.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/getpriority.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/getrlimit.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/getrusage.2 1.5 +4 -4 doc/ja_JP.eucJP/man/man2/getsid.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/getsockname.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/getsockopt.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/gettimeofday.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/getuid.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/i386_get_ldt.2 1.5 +2 -2 doc/ja_JP.eucJP/man/man2/i386_vm86.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/intro.2 1.7 +3 -3 doc/ja_JP.eucJP/man/man2/ioctl.2 1.4 +3 -3 doc/ja_JP.eucJP/man/man2/jail.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/kill.2 1.4 +3 -3 doc/ja_JP.eucJP/man/man2/killpg.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/ktrace.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/link.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/listen.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/lseek.2 1.6 +2 -2 doc/ja_JP.eucJP/man/man2/madvise.2 1.4 +2 -2 doc/ja_JP.eucJP/man/man2/mincore.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/minherit.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/mkdir.2 1.5 +2 -2 doc/ja_JP.eucJP/man/man2/mkfifo.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/mknod.2 1.4 +2 -2 doc/ja_JP.eucJP/man/man2/mlock.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/mmap.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/mount.2 1.5 +2 -2 doc/ja_JP.eucJP/man/man2/mprotect.2 1.6 +2 -2 doc/ja_JP.eucJP/man/man2/msync.2 1.4 +2 -2 doc/ja_JP.eucJP/man/man2/munmap.2 1.10 +3 -3 doc/ja_JP.eucJP/man/man2/open.2 1.7 +3 -3 doc/ja_JP.eucJP/man/man2/pathconf.2 1.7 +3 -3 doc/ja_JP.eucJP/man/man2/pipe.2 1.6 +2 -2 doc/ja_JP.eucJP/man/man2/profil.2 1.7 +8 -14 doc/ja_JP.eucJP/man/man2/ptrace.2 1.7 +2 -2 doc/ja_JP.eucJP/man/man2/quotactl.2 1.8 +3 -3 doc/ja_JP.eucJP/man/man2/read.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/readlink.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/reboot.2 1.7 +3 -3 doc/ja_JP.eucJP/man/man2/recv.2 1.7 +3 -3 doc/ja_JP.eucJP/man/man2/rename.2 1.6 +2 -2 doc/ja_JP.eucJP/man/man2/revoke.2 1.7 +3 -3 doc/ja_JP.eucJP/man/man2/rfork.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/rmdir.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/rtprio.2 1.6 +6 -6 doc/ja_JP.eucJP/man/man2/sched_get_priority_max.2 1.6 +4 -4 doc/ja_JP.eucJP/man/man2/sched_setparam.2 1.6 +4 -4 doc/ja_JP.eucJP/man/man2/sched_setscheduler.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/sched_yield.2 1.7 +3 -3 doc/ja_JP.eucJP/man/man2/select.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/semctl.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/semget.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/semop.2 1.8 +3 -3 doc/ja_JP.eucJP/man/man2/send.2 1.6 +2 -2 doc/ja_JP.eucJP/man/man2/sendfile.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/setgroups.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/setpgid.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/setregid.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/setresuid.2 1.6 +4 -4 doc/ja_JP.eucJP/man/man2/setreuid.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/setuid.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/shmat.2 1.4 +3 -3 doc/ja_JP.eucJP/man/man2/shmctl.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/shmget.2 1.7 +2 -2 doc/ja_JP.eucJP/man/man2/shutdown.2 1.5 +24 -11 doc/ja_JP.eucJP/man/man2/sigaction.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/sigaltstack.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/sigpause.2 1.6 +2 -2 doc/ja_JP.eucJP/man/man2/sigpending.2 1.5 +2 -2 doc/ja_JP.eucJP/man/man2/sigprocmask.2 1.5 +4 -4 doc/ja_JP.eucJP/man/man2/sigreturn.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/sigsetmask.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/sigstack.2 1.5 +4 -4 doc/ja_JP.eucJP/man/man2/sigvec.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/socket.2 1.4 +3 -3 doc/ja_JP.eucJP/man/man2/socketpair.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/stat.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/swapon.2 1.4 +3 -3 doc/ja_JP.eucJP/man/man2/symlink.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/sync.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/syscall.2 1.5 +3 -3 doc/ja_JP.eucJP/man/man2/truncate.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/umask.2 1.5 +6 -4 doc/ja_JP.eucJP/man/man2/undelete.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/unlink.2 1.6 +4 -4 doc/ja_JP.eucJP/man/man2/vfork.2 1.6 +4 -4 doc/ja_JP.eucJP/man/man2/wait.2 1.7 +3 -3 doc/ja_JP.eucJP/man/man2/write.2 1.7 +3 -3 doc/ja_JP.eucJP/man/man5/auth.conf.5 1.8 +7 -13 doc/ja_JP.eucJP/man/man5/editrc.5 1.21 +3 -3 doc/ja_JP.eucJP/man/man5/login.conf.5 1.9 +3 -3 doc/ja_JP.eucJP/man/man5/radius.conf.5 1.6 +3 -3 doc/ja_JP.eucJP/man/man5/tacplus.conf.5 1.8 +3 -3 doc/ja_JP.eucJP/man/man5/tzfile.5 1.10 +6 -6 doc/ja_JP.eucJP/man/man8/pam_radius.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 0:29:36 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 006AF37B412; Sun, 19 Aug 2001 00:29:31 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7J7TU130806; Sun, 19 Aug 2001 00:29:30 -0700 (PDT) (envelope-from knu) Message-Id: <200108190729.f7J7TU130806@freefall.freebsd.org> From: Akinori MUSHA Date: Sun, 19 Aug 2001 00:29:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/portupgrade Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/19 00:29:30 PDT Modified files: sysutils/portupgrade Makefile distinfo Log: Update to 20010819, with small improvements. portsdb: Do not clobber the INDEX file until the new one is ready, so you don't have a zero-sized INDEX while updating it. pkgdepfix: Implement an origin duplicates fixer (only invoked when -o is specified), and when it fixes one, redo the whole session. Make the cyclic dependencies fixer a bit more intelligent. portcvsweb: Conform to the Secure BROWSER (SB) Specification proposed by David A. Wheeler. cf. http://www.dwheeler.com/browse/secure_browser.html http://www.tuxedo.org/~esr/BROWSER/ Revision Changes Path 1.52 +2 -2 ports/sysutils/portupgrade/Makefile 1.47 +1 -1 ports/sysutils/portupgrade/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 1:19:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA96637B407; Sun, 19 Aug 2001 01:19:37 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7J8JbC36942; Sun, 19 Aug 2001 01:19:37 -0700 (PDT) (envelope-from kris) Message-Id: <200108190819.f7J8JbC36942@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 19 Aug 2001 01:19:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/disklabel disklabel.c src/sbin/fsck fsutil.c src/sbin/fsck_ffs fsck.h fsutil.c inode.c src/sbin/fsck_ifs fsck.h fsutil.c src/sbin/init init.c src/sbin/mountd mountd.c src/sbin/newfs newfs.c src/sbin/restore extern.h src/sbin/savecore ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/19 01:19:37 PDT Modified files: sbin/disklabel disklabel.c sbin/fsck fsutil.c sbin/fsck_ffs fsck.h fsutil.c inode.c sbin/fsck_ifs fsck.h fsutil.c sbin/init init.c sbin/mountd mountd.c sbin/newfs newfs.c sbin/restore extern.h sbin/savecore savecore.c Log: Silence non-constant format string warnings by marking functions as __printflike()/__printf0like(), adding const, or adding missing "%s" format strings, as appropriate. MFC after: 2 weeks Revision Changes Path 1.40 +2 -2 src/sbin/disklabel/disklabel.c 1.3 +2 -2 src/sbin/fsck/fsutil.c 1.20 +4 -4 src/sbin/fsck_ffs/fsck.h 1.7 +2 -2 src/sbin/fsck_ffs/fsutil.c 1.25 +2 -2 src/sbin/fsck_ffs/inode.c 1.15 +4 -4 src/sbin/fsck_ifs/fsck.h 1.4 +2 -2 src/sbin/fsck_ifs/fsutil.c 1.47 +10 -10 src/sbin/init/init.c 1.57 +2 -2 src/sbin/mountd/mountd.c 1.40 +4 -4 src/sbin/newfs/newfs.c 1.6 +3 -3 src/sbin/restore/extern.h 1.42 +2 -2 src/sbin/savecore/savecore.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 1:24:53 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 89ABE37B40B; Sun, 19 Aug 2001 01:24:50 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7J8OoV37324; Sun, 19 Aug 2001 01:24:50 -0700 (PDT) (envelope-from ache) Message-Id: <200108190824.f7J8OoV37324@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Sun, 19 Aug 2001 01:24:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/stdio fseek.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/19 01:24:50 PDT Modified files: lib/libc/stdio fseek.3 Log: Add about rewind+errno, describe ESPIPE, minor formatting. Revision Changes Path 1.14 +24 -7 src/lib/libc/stdio/fseek.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 1:33:36 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EE5AF37B40F; Sun, 19 Aug 2001 01:33:28 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7J8XS338343; Sun, 19 Aug 2001 01:33:28 -0700 (PDT) (envelope-from knu) Message-Id: <200108190833.f7J8XS338343@freefall.freebsd.org> From: Akinori MUSHA Date: Sun, 19 Aug 2001 01:33:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/linux-netscape47-communicator Makefile ports/chinese/linux-netscape47-navigator Makefile ports/chinese/netscape47-communicator Makefile ports/chinese/netscape47-navigator Makefile ports/japanese/linux-netscape47-communicator Makefile ports/japanese/linux-netscape47-navigator Makefile ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/19 01:33:28 PDT Modified files: chinese/linux-netscape47-communicator Makefile chinese/linux-netscape47-navigator Makefile chinese/netscape47-communicator Makefile chinese/netscape47-navigator Makefile japanese/linux-netscape47-communicator Makefile japanese/linux-netscape47-navigator Makefile japanese/netscape4-communicator Makefile japanese/netscape4-navigator Makefile japanese/netscape47-navigator Makefile korean/linux-netscape47-communicator Makefile korean/linux-netscape47-navigator Makefile korean/netscape4-communicator Makefile korean/netscape4-navigator Makefile korean/netscape47-navigator Makefile www/bsdi-netscape47-communicator Makefile www/bsdi-netscape47-navigator Makefile www/linux-netscape47-communicator Makefile www/linux-netscape47-navigator Makefile www/netscape4-communicator Makefile www/netscape4-navigator Makefile www/netscape47-communicator Makefile www/netscape47-navigator Makefile Log: Avoid the usage of a variable named "BROWSER", not to conflict with user's environment variable with the same name. cf. http://tuxedo.org/~esr/BROWSER/ http://www.dwheeler.com/browse/secure_browser.html Approved by: cjh, girgen@partitur.se, sada, trevor Revision Changes Path 1.4 +5 -5 ports/chinese/linux-netscape47-communicator/Makefile 1.2 +2 -2 ports/chinese/linux-netscape47-navigator/Makefile 1.6 +5 -5 ports/chinese/netscape47-communicator/Makefile 1.3 +2 -2 ports/chinese/netscape47-navigator/Makefile 1.7 +3 -3 ports/japanese/linux-netscape47-communicator/Makefile 1.3 +2 -2 ports/japanese/linux-netscape47-navigator/Makefile 1.36 +5 -5 ports/japanese/netscape4-communicator/Makefile 1.17 +2 -2 ports/japanese/netscape4-navigator/Makefile 1.14 +2 -2 ports/japanese/netscape47-navigator/Makefile 1.4 +3 -3 ports/korean/linux-netscape47-communicator/Makefile 1.2 +2 -2 ports/korean/linux-netscape47-navigator/Makefile 1.19 +5 -5 ports/korean/netscape4-communicator/Makefile 1.15 +2 -2 ports/korean/netscape4-navigator/Makefile 1.17 +2 -2 ports/korean/netscape47-navigator/Makefile 1.74 +5 -5 ports/www/bsdi-netscape47-communicator/Makefile 1.54 +2 -2 ports/www/bsdi-netscape47-navigator/Makefile 1.27 +3 -3 ports/www/linux-netscape47-communicator/Makefile 1.23 +2 -2 ports/www/linux-netscape47-navigator/Makefile 1.82 +6 -6 ports/www/netscape4-communicator/Makefile 1.46 +2 -2 ports/www/netscape4-navigator/Makefile 1.81 +5 -5 ports/www/netscape47-communicator/Makefile 1.53 +2 -2 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 Sun Aug 19 2:30:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BB09737B413; Sun, 19 Aug 2001 02:30:15 -0700 (PDT) (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7J9UFc44859; Sun, 19 Aug 2001 02:30:15 -0700 (PDT) (envelope-from olgeni) Message-Id: <200108190930.f7J9UFc44859@freefall.freebsd.org> From: Jimmy Olgeni Date: Sun, 19 Aug 2001 02:30:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/deskutils/dailystrips Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG olgeni 2001/08/19 02:30:15 PDT Modified files: deskutils/dailystrips Makefile distinfo Log: Update port to version 1.0.17. PR: 29855 Submitted by: Pete Fritchman Revision Changes Path 1.3 +2 -3 ports/deskutils/dailystrips/Makefile 1.3 +1 -1 ports/deskutils/dailystrips/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 3:25:23 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2BC2837B40A; Sun, 19 Aug 2001 03:25:08 -0700 (PDT) (envelope-from horikawa@FreeBSD.org) Received: (from horikawa@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JAP8E52639; Sun, 19 Aug 2001 03:25:08 -0700 (PDT) (envelope-from horikawa) Message-Id: <200108191025.f7JAP8E52639@freefall.freebsd.org> From: Kazuo Horikawa Date: Sun, 19 Aug 2001 03:25:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man1 cap_mkdb.1 catman.1 ci.1 colcrt.1 column.1 ctags.1 ctm.1 date.1 df.1 fdwrite.1 fstat.1 jot.1 kbdmap.1 kcon.1 killall.1 ln.1 make.1 makewhatis.1 man.1 mesg.1 ncplogin.1 newaliases.1 pkg_create.1 pkg_sign.1 ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG horikawa 2001/08/19 03:25:07 PDT Modified files: ja_JP.eucJP/man/man1 cap_mkdb.1 catman.1 ci.1 colcrt.1 column.1 ctags.1 ctm.1 date.1 df.1 fdwrite.1 fstat.1 jot.1 kbdmap.1 kcon.1 killall.1 ln.1 make.1 makewhatis.1 man.1 mesg.1 ncplogin.1 newaliases.1 pkg_create.1 pkg_sign.1 pkg_update.1 rup.1 su.1 systat.1 tar.1 touch.1 tr.1 ul.1 vacation.1 vis.1 vt220keys.1 ja_JP.eucJP/man/man2 aio_waitcomplete.2 intro.2 kill.2 nanosleep.2 setsid.2 shutdown.2 sigaction.2 ja_JP.eucJP/man/man5 bootptab.5 dm.conf.5 ethers.5 fbtab.5 intro.5 isdnd.acct.5 keycap.5 mailer.conf.5 make.conf.5 named.conf.5 networks.5 rrenumd.conf.5 ja_JP.eucJP/man/man6 larn.6 ja_JP.eucJP/man/man7 groff_mm.7 security.7 ja_JP.eucJP/man/man8 apmd.8 atmarpd.8 bootpd.8 bootptest.8 ccdconfig.8 chat.8 disklabel.8 dmesg.8 ldconfig.8 lpc.8 manctl.8 mount.8 mount_nwfs.8 mrinfo.8 named.reload.8 nslookup.8 picobsd.8 pppctl.8 praliases.8 rmuser.8 rwhod.8 spray.8 sysctl.8 vinum.8 Log: Add missing .El Remove empty lines Fix typo in macros Reported by: groff -t -ww -z -mandoc -Tnippon -dlang=ja_JP.eucJP -mtty-char Revision Changes Path 1.9 +1 -2 doc/ja_JP.eucJP/man/man1/cap_mkdb.1 1.12 +2 -1 doc/ja_JP.eucJP/man/man1/catman.1 1.12 +2 -1 doc/ja_JP.eucJP/man/man1/ci.1 1.8 +1 -2 doc/ja_JP.eucJP/man/man1/colcrt.1 1.9 +2 -1 doc/ja_JP.eucJP/man/man1/column.1 1.7 +1 -2 doc/ja_JP.eucJP/man/man1/ctags.1 1.15 +1 -2 doc/ja_JP.eucJP/man/man1/ctm.1 1.28 +1 -2 doc/ja_JP.eucJP/man/man1/date.1 1.16 +2 -1 doc/ja_JP.eucJP/man/man1/df.1 1.13 +2 -2 doc/ja_JP.eucJP/man/man1/fdwrite.1 1.12 +1 -3 doc/ja_JP.eucJP/man/man1/fstat.1 1.13 +2 -8 doc/ja_JP.eucJP/man/man1/jot.1 1.13 +2 -1 doc/ja_JP.eucJP/man/man1/kbdmap.1 1.9 +2 -1 doc/ja_JP.eucJP/man/man1/kcon.1 1.14 +2 -2 doc/ja_JP.eucJP/man/man1/killall.1 1.15 +1 -2 doc/ja_JP.eucJP/man/man1/ln.1 1.26 +1 -2 doc/ja_JP.eucJP/man/man1/make.1 1.12 +2 -1 doc/ja_JP.eucJP/man/man1/makewhatis.1 1.16 +2 -1 doc/ja_JP.eucJP/man/man1/man.1 1.7 +2 -2 doc/ja_JP.eucJP/man/man1/mesg.1 1.10 +2 -2 doc/ja_JP.eucJP/man/man1/ncplogin.1 1.9 +2 -2 doc/ja_JP.eucJP/man/man1/newaliases.1 1.25 +2 -1 doc/ja_JP.eucJP/man/man1/pkg_create.1 1.5 +1 -2 doc/ja_JP.eucJP/man/man1/pkg_sign.1 1.5 +1 -2 doc/ja_JP.eucJP/man/man1/pkg_update.1 1.11 +2 -1 doc/ja_JP.eucJP/man/man1/rup.1 1.18 +3 -1 doc/ja_JP.eucJP/man/man1/su.1 1.17 +1 -2 doc/ja_JP.eucJP/man/man1/systat.1 1.23 +2 -1 doc/ja_JP.eucJP/man/man1/tar.1 1.8 +2 -1 doc/ja_JP.eucJP/man/man1/touch.1 1.11 +1 -2 doc/ja_JP.eucJP/man/man1/tr.1 1.7 +2 -1 doc/ja_JP.eucJP/man/man1/ul.1 1.13 +2 -2 doc/ja_JP.eucJP/man/man1/vacation.1 1.5 +2 -1 doc/ja_JP.eucJP/man/man1/vis.1 1.7 +1 -2 doc/ja_JP.eucJP/man/man1/vt220keys.1 1.4 +1 -2 doc/ja_JP.eucJP/man/man2/aio_waitcomplete.2 1.6 +3 -3 doc/ja_JP.eucJP/man/man2/intro.2 1.7 +1 -2 doc/ja_JP.eucJP/man/man2/kill.2 1.6 +2 -2 doc/ja_JP.eucJP/man/man2/nanosleep.2 1.4 +2 -1 doc/ja_JP.eucJP/man/man2/setsid.2 1.8 +2 -2 doc/ja_JP.eucJP/man/man2/shutdown.2 1.6 +2 -3 doc/ja_JP.eucJP/man/man2/sigaction.2 1.12 +2 -2 doc/ja_JP.eucJP/man/man5/bootptab.5 1.9 +1 -2 doc/ja_JP.eucJP/man/man5/dm.conf.5 1.10 +1 -2 doc/ja_JP.eucJP/man/man5/ethers.5 1.12 +2 -3 doc/ja_JP.eucJP/man/man5/fbtab.5 1.8 +2 -3 doc/ja_JP.eucJP/man/man5/intro.5 1.13 +2 -1 doc/ja_JP.eucJP/man/man5/isdnd.acct.5 1.13 +2 -3 doc/ja_JP.eucJP/man/man5/keycap.5 1.8 +1 -2 doc/ja_JP.eucJP/man/man5/mailer.conf.5 1.12 +2 -2 doc/ja_JP.eucJP/man/man5/make.conf.5 1.6 +2 -2 doc/ja_JP.eucJP/man/man5/named.conf.5 1.10 +1 -2 doc/ja_JP.eucJP/man/man5/networks.5 1.10 +1 -2 doc/ja_JP.eucJP/man/man5/rrenumd.conf.5 1.7 +2 -1 doc/ja_JP.eucJP/man/man6/larn.6 1.13 +5 -5 doc/ja_JP.eucJP/man/man7/groff_mm.7 1.19 +1 -3 doc/ja_JP.eucJP/man/man7/security.7 1.13 +3 -4 doc/ja_JP.eucJP/man/man8/apmd.8 1.8 +1 -2 doc/ja_JP.eucJP/man/man8/atmarpd.8 1.14 +1 -2 doc/ja_JP.eucJP/man/man8/bootpd.8 1.7 +1 -2 doc/ja_JP.eucJP/man/man8/bootptest.8 1.15 +7 -21 doc/ja_JP.eucJP/man/man8/ccdconfig.8 1.13 +4 -4 doc/ja_JP.eucJP/man/man8/chat.8 1.20 +2 -1 doc/ja_JP.eucJP/man/man8/disklabel.8 1.12 +1 -2 doc/ja_JP.eucJP/man/man8/dmesg.8 1.24 +2 -1 doc/ja_JP.eucJP/man/man8/ldconfig.8 1.13 +1 -2 doc/ja_JP.eucJP/man/man8/lpc.8 1.10 +1 -2 doc/ja_JP.eucJP/man/man8/manctl.8 1.22 +6 -5 doc/ja_JP.eucJP/man/man8/mount.8 1.6 +3 -3 doc/ja_JP.eucJP/man/man8/mount_nwfs.8 1.9 +2 -2 doc/ja_JP.eucJP/man/man8/mrinfo.8 1.9 +2 -2 doc/ja_JP.eucJP/man/man8/named.reload.8 1.7 +2 -2 doc/ja_JP.eucJP/man/man8/nslookup.8 1.8 +2 -1 doc/ja_JP.eucJP/man/man8/picobsd.8 1.16 +1 -3 doc/ja_JP.eucJP/man/man8/pppctl.8 1.8 +3 -3 doc/ja_JP.eucJP/man/man8/praliases.8 1.13 +2 -1 doc/ja_JP.eucJP/man/man8/rmuser.8 1.13 +1 -2 doc/ja_JP.eucJP/man/man8/rwhod.8 1.10 +1 -2 doc/ja_JP.eucJP/man/man8/spray.8 1.21 +1 -2 doc/ja_JP.eucJP/man/man8/sysctl.8 1.24 +2 -2 doc/ja_JP.eucJP/man/man8/vinum.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 3:42: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5DCBC37B413; Sun, 19 Aug 2001 03:41:59 -0700 (PDT) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JAfwY53546; Sun, 19 Aug 2001 03:41:58 -0700 (PDT) (envelope-from joe) Message-Id: <200108191041.f7JAfwY53546@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 19 Aug 2001 03:41:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/crunch/crunchgen crunchgen.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joe 2001/08/19 03:41:58 PDT Modified files: (Branch: RELENG_4) usr.sbin/crunch/crunchgen crunchgen.c Log: MFC: revision 1.29 + 1.30. Make crunchgen crunch pre-built object files again, i.e.: progs prog1 special prog1 objdir ../../prog1/obj special prog1 objs prog1.o This fixes a bug that I introduced around the time of 4.2-release. Approved by: murray Revision Changes Path 1.12.2.9 +11 -11 src/usr.sbin/crunch/crunchgen/crunchgen.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 4: 0:32 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2DF2D37B40F; Sun, 19 Aug 2001 04:00:27 -0700 (PDT) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JB0RS54688; Sun, 19 Aug 2001 04:00:27 -0700 (PDT) (envelope-from joe) Message-Id: <200108191100.f7JB0RS54688@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 19 Aug 2001 04:00:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT cfg.pm X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joe 2001/08/19 04:00:27 PDT Modified files: . cfg.pm Log: foo Revision Changes Path 1.32 +1 -1 CVSROOT/cfg.pm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 4: 3:36 2001 Delivered-To: cvs-all@freebsd.org Received: from tao.org.uk (genesis.tao.org.uk [212.135.162.62]) by hub.freebsd.org (Postfix) with ESMTP id 7258137B414; Sun, 19 Aug 2001 04:03:25 -0700 (PDT) (envelope-from joe@tao.org.uk) Received: by tao.org.uk (Postfix, from userid 100) id 21652E; Sun, 19 Aug 2001 12:03:14 +0100 (BST) Date: Sun, 19 Aug 2001 12:03:13 +0100 From: Josef Karthauser To: Josef Karthauser Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT cfg.pm Message-ID: <20010819120313.A40884@tao.org.uk> References: <200108191100.f7JB0RS54688@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="C7zPtVaVf+AK4Oqc" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108191100.f7JB0RS54688@freefall.freebsd.org>; from joe@FreeBSD.org on Sun, Aug 19, 2001 at 04:00:27AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --C7zPtVaVf+AK4Oqc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 19, 2001 at 04:00:27AM -0700, Josef Karthauser wrote: > joe 2001/08/19 04:00:27 PDT >=20 > Modified files: > . cfg.pm=20 > Log: > foo > =20 > Revision Changes Path > 1.32 +1 -1 CVSROOT/cfg.pm Fudge! Please ignore this - it didn't get committed, it was just me testing. Joe --C7zPtVaVf+AK4Oqc Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjt/nNAACgkQXVIcjOaxUBbX1ACgzJJhQNhTkzKKt1dQS8HIbpjK bf8AoMXSFg+bcaU9QT0gN+BzwxA/ZQQb =XnrX -----END PGP SIGNATURE----- --C7zPtVaVf+AK4Oqc-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 4:23:39 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6915C37B408; Sun, 19 Aug 2001 04:23:30 -0700 (PDT) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JBNUS64555; Sun, 19 Aug 2001 04:23:30 -0700 (PDT) (envelope-from joe) Message-Id: <200108191123.f7JBNUS64555@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 19 Aug 2001 04:23:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT cfg.pm X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joe 2001/08/19 04:23:30 PDT Modified files: . cfg.pm Log: Improve some comments. Revision Changes Path 1.10 +10 -7 CVSROOT/cfg.pm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 4:46: 4 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EE45637B414; Sun, 19 Aug 2001 04:45:58 -0700 (PDT) (envelope-from jasone@FreeBSD.org) Received: (from jasone@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JBjwr66371; Sun, 19 Aug 2001 04:45:58 -0700 (PDT) (envelope-from jasone) Message-Id: <200108191145.f7JBjwr66371@freefall.freebsd.org> From: Jason Evans Date: Sun, 19 Aug 2001 04:45:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/uthread uthread_cancel.c uthread_join.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jasone 2001/08/19 04:45:58 PDT Modified files: (Branch: RELENG_4) lib/libc_r/uthread uthread_cancel.c uthread_join.c Log: MFC: Fix join/detach/cancel bugs. Approved by: murray Revision Changes Path 1.3.2.4 +15 -3 src/lib/libc_r/uthread/uthread_cancel.c 1.12.2.4 +4 -1 src/lib/libc_r/uthread/uthread_join.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 4:46:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 676B537B505; Sun, 19 Aug 2001 04:46:10 -0700 (PDT) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JBkAj66401; Sun, 19 Aug 2001 04:46:10 -0700 (PDT) (envelope-from joe) Message-Id: <200108191146.f7JBkAj66401@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 19 Aug 2001 04:46:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT cfg.pm commit_prep.pl log_accum.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joe 2001/08/19 04:46:10 PDT Modified files: . cfg.pm commit_prep.pl log_accum.pl Log: The CVSROOT/scripts use a file, /tmp/#cvs.files.lastdir, to store the name of the last directory in a multidirectory commit. Move the definition of this to cfg.pm so that it's defined in one place. Revision Changes Path 1.11 +6 -2 CVSROOT/cfg.pm 1.29 +6 -4 CVSROOT/commit_prep.pl 1.83 +2 -2 CVSROOT/log_accum.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 4:54:53 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BBD3037B403; Sun, 19 Aug 2001 04:54:47 -0700 (PDT) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JBslw67046; Sun, 19 Aug 2001 04:54:47 -0700 (PDT) (envelope-from joe) Message-Id: <200108191154.f7JBslw67046@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 19 Aug 2001 04:54:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT commit_prep.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joe 2001/08/19 04:54:47 PDT Modified files: . commit_prep.pl Log: Declare the variables that contain the error strings with 'my'. Revision Changes Path 1.30 +11 -6 CVSROOT/commit_prep.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 5:17:12 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F2CE37B40D; Sun, 19 Aug 2001 05:17:06 -0700 (PDT) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JCH6O71373; Sun, 19 Aug 2001 05:17:06 -0700 (PDT) (envelope-from joe) Message-Id: <200108191217.f7JCH6O71373@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 19 Aug 2001 05:17:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT cfg.pm commit_prep.pl log_accum.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joe 2001/08/19 05:17:06 PDT Modified files: . cfg.pm commit_prep.pl log_accum.pl Log: Centralise the generation of temporary filenames instead of having it done within each individual script. Revision Changes Path 1.12 +6 -3 CVSROOT/cfg.pm 1.31 +4 -5 CVSROOT/commit_prep.pl 1.84 +28 -31 CVSROOT/log_accum.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 5:23: 0 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6210137B412; Sun, 19 Aug 2001 05:22:55 -0700 (PDT) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JCMtR71782; Sun, 19 Aug 2001 05:22:55 -0700 (PDT) (envelope-from joe) Message-Id: <200108191222.f7JCMtR71782@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 19 Aug 2001 05:22:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT commit_prep.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joe 2001/08/19 05:22:55 PDT Modified files: . commit_prep.pl Log: Writing down the last directory in a multidirectory commit isn't optional. Revision Changes Path 1.32 +3 -9 CVSROOT/commit_prep.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 5:39:24 2001 Delivered-To: cvs-all@freebsd.org Received: from lists.unixathome.org (lists.unixathome.org [210.48.103.158]) by hub.freebsd.org (Postfix) with ESMTP id 09B7237B401; Sun, 19 Aug 2001 05:39:14 -0700 (PDT) (envelope-from dan@langille.org) Received: from wocker (lists.unixathome.org [210.48.103.158]) by lists.unixathome.org (8.11.1/8.11.1) with ESMTP id f7JCd7020422; Mon, 20 Aug 2001 00:39:07 +1200 (NZST) (envelope-from dan@langille.org) Message-Id: <200108191239.f7JCd7020422@lists.unixathome.org> From: "Dan Langille" Organization: novice in training To: Ying-Chieh Liao Date: Sun, 19 Aug 2001 08:38:39 -0400 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: cvs commit: ports/www Makefile ports/www/horde Makefile distinfo httpd.conf.phplib pkg-comment pkg-descr pkg-plist Reply-To: dan@langille.org Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, Thierry Thomas In-reply-to: <200108180417.f7I4Hq483478@freefall.freebsd.org> X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 17 Aug 2001, at 21:17, Ying-Chieh Liao wrote: > ijliao 2001/08/17 21:17:52 PDT > > Modified files: > www Makefile > Added files: > www/horde Makefile distinfo httpd.conf.phplib > pkg-comment pkg-descr pkg-plist > Log: > add horde > A common code-base used by Horde applications, written in PHP > > PR: 28872 > Submitted by: Thierry Thomas perhaps this is the same problem as last time FreshPorts told me about a problem? [dan@lists:/usr/ports/www/horde] $ make -V PORTVERSION "/usr/ports/Mk/bsd.port.mk", line 627: Inconsistent operator for pre- everything make: fatal errors encountered -- cannot continue -- Dan Langille pgpkey - finger dan@unixathome.org | http://unixathome.org/finger.php To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 5:57:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9587C37B40F; Sun, 19 Aug 2001 05:57:14 -0700 (PDT) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JCvE474098; Sun, 19 Aug 2001 05:57:14 -0700 (PDT) (envelope-from joe) Message-Id: <200108191257.f7JCvE474098@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 19 Aug 2001 05:57:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT commit_prep.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joe 2001/08/19 05:57:14 PDT Modified files: . commit_prep.pl Log: Tabulate per style.perl(7). Revision Changes Path 1.33 +110 -101 CVSROOT/commit_prep.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 6: 2:14 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 823C037B40F; Sun, 19 Aug 2001 06:02:11 -0700 (PDT) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JD2BC74611; Sun, 19 Aug 2001 06:02:11 -0700 (PDT) (envelope-from joe) Message-Id: <200108191302.f7JD2BC74611@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 19 Aug 2001 06:02:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT commit_prep.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joe 2001/08/19 06:02:11 PDT Modified files: . commit_prep.pl Log: More stylistic changes, this time in the CVS/Entries parser. Revision Changes Path 1.34 +8 -8 CVSROOT/commit_prep.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 6:10:55 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2268137B416; Sun, 19 Aug 2001 06:10:48 -0700 (PDT) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JDAmS78346; Sun, 19 Aug 2001 06:10:48 -0700 (PDT) (envelope-from joe) Message-Id: <200108191310.f7JDAmS78346@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 19 Aug 2001 06:10:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT cfg.pm commit_prep.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joe 2001/08/19 06:10:48 PDT Modified files: . cfg.pm commit_prep.pl Log: Move the definition of our $FreeBSD$ header into the config file. Revision Changes Path 1.13 +14 -2 CVSROOT/cfg.pm 1.35 +6 -3 CVSROOT/commit_prep.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 6:14:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 710F237B40A; Sun, 19 Aug 2001 06:14:42 -0700 (PDT) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JDEgZ78956; Sun, 19 Aug 2001 06:14:42 -0700 (PDT) (envelope-from joe) Message-Id: <200108191314.f7JDEgZ78956@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 19 Aug 2001 06:14:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT cvs_acls.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joe 2001/08/19 06:14:42 PDT Modified files: . cvs_acls.pl Log: Pickup the debug variable from the config file. Revision Changes Path 1.8 +5 -2 CVSROOT/cvs_acls.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 6:34:30 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9AE6C37B40D; Sun, 19 Aug 2001 06:34:26 -0700 (PDT) (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JDYQE92050; Sun, 19 Aug 2001 06:34:26 -0700 (PDT) (envelope-from olgeni) Message-Id: <200108191334.f7JDYQE92050@freefall.freebsd.org> From: Jimmy Olgeni Date: Sun, 19 Aug 2001 06:34:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/kdebase2 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG olgeni 2001/08/19 06:34:26 PDT Modified files: x11/kdebase2 Makefile Log: Add a simple post-extract target: it overwrites ${WRKSRC}/mkpamserv with a no-op script. This prevents the port from appending content to /etc/pam.conf, which is known to break kscreensaver's password verification, without asking first. Binary packages already left /etc/pam.conf alone. Revision Changes Path 1.74 +5 -1 ports/x11/kdebase2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 6:43:32 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DCFF037B40B; Sun, 19 Aug 2001 06:43:27 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JDhRA56800; Sun, 19 Aug 2001 06:43:27 -0700 (PDT) (envelope-from dinoex) Message-Id: <200108191343.f7JDhRA56800@freefall.freebsd.org> From: Dirk Meyer Date: Sun, 19 Aug 2001 06:43:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/nntp Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2001/08/19 06:43:27 PDT Modified files: news/nntp Makefile Log: Take Maintainership Revision Changes Path 1.24 +2 -2 ports/news/nntp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 6:46: 9 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3823C37B401; Sun, 19 Aug 2001 06:46:02 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JDk2174024; Sun, 19 Aug 2001 06:46:02 -0700 (PDT) (envelope-from dinoex) Message-Id: <200108191346.f7JDk2174024@freefall.freebsd.org> From: Dirk Meyer Date: Sun, 19 Aug 2001 06:46:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/german/unix-connect pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2001/08/19 06:46:02 PDT Modified files: german/unix-connect pkg-descr Log: Add an english abtract. It is an german communication-protocol over modem lines, a gateway for mail and news, complient to the german "GATEBAU" regulations. It is the native protocol for the z-netz newsgroups. Revision Changes Path 1.2 +4 -8 ports/german/unix-connect/pkg-descr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 7:12:31 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8451E37B411; Sun, 19 Aug 2001 07:12:27 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JECRN92978; Sun, 19 Aug 2001 07:12:27 -0700 (PDT) (envelope-from trevor) Message-Id: <200108191412.f7JECRN92978@freefall.freebsd.org> From: Trevor Johnson Date: Sun, 19 Aug 2001 07:12:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/lilypond pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trevor 2001/08/19 07:12:27 PDT Modified files: print/lilypond pkg-descr Log: Chase home page. Revision Changes Path 1.2 +1 -1 ports/print/lilypond/pkg-descr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 7:43:54 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E50037B407; Sun, 19 Aug 2001 07:43:49 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JEhnq95154; Sun, 19 Aug 2001 07:43:49 -0700 (PDT) (envelope-from trevor) Message-Id: <200108191443.f7JEhnq95154@freefall.freebsd.org> From: Trevor Johnson Date: Sun, 19 Aug 2001 07:43:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/linux-netscape6 Makefile distinfo pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trevor 2001/08/19 07:43:49 PDT Modified files: www/linux-netscape6 Makefile distinfo pkg-descr Log: Update to 6.1. According to Bennett Samowich on the Bugtraq list, this version "does not allow access to privileged ports" whereas the earlier ones do. I have not tested this claim. If true, the change should lessen harm from the HTML form protocol attack described at http://www.remote.org/jochen/sec/hfpa/ . Mark broken, because the menus no longer display correctly. Mention the AIM port. Don't mention the release notes, since they seem to be unmaintained. Touch up FTP list. Revision Changes Path 1.33 +4 -7 ports/www/linux-netscape6/Makefile 1.6 +8 -8 ports/www/linux-netscape6/distinfo 1.9 +4 -5 ports/www/linux-netscape6/pkg-descr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 7:50: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5F9CE37B406; Sun, 19 Aug 2001 07:50:02 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JEo2595516; Sun, 19 Aug 2001 07:50:02 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108191450.f7JEo2595516@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sun, 19 Aug 2001 07:50:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/rblcheck/scripts configure.rbl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/19 07:50:01 PDT Modified files: mail/rblcheck/scripts configure.rbl Log: add a missing " Submitted by: leeym@cae.ce.ntu.edu.tw Revision Changes Path 1.2 +2 -2 ports/mail/rblcheck/scripts/configure.rbl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 8: 4: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E92E37B40D; Sun, 19 Aug 2001 08:03:59 -0700 (PDT) (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JF3xw96463; Sun, 19 Aug 2001 08:03:59 -0700 (PDT) (envelope-from mi) Message-Id: <200108191503.f7JF3xw96463@freefall.freebsd.org> From: Mikhail Teterin Date: Sun, 19 Aug 2001 08:03:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/tclX82 Makefile ports/lang/tclX82/files patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mi 2001/08/19 08:03:59 PDT Modified files: lang/tclX82 Makefile lang/tclX82/files patch-ab Log: Make sure the shared library is explicitly linked with -lm. On some occasions, this prevent it from being loaded properly, even though other libs already loaded already bring in -lm. I don't understand the rtld :( Only build the Tk related help files, if WITHOUT_X11 is not specified. Previously they were built, but not installed. If you did not have Tk installed, that build failed for you -- see PR 29722... PR: ports/29722 Revision Changes Path 1.40 +11 -3 ports/lang/tclX82/Makefile 1.7 +1 -1 ports/lang/tclX82/files/patch-ab To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 8:15:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BCC9A37B403; Sun, 19 Aug 2001 08:15:12 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JFFC400391; Sun, 19 Aug 2001 08:15:12 -0700 (PDT) (envelope-from trevor) Message-Id: <200108191515.f7JFFC400391@freefall.freebsd.org> From: Trevor Johnson Date: Sun, 19 Aug 2001 08:15:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/micq Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trevor 2001/08/19 08:15:12 PDT Modified files: japanese/micq Makefile Log: Mark forbidden with URL of security advisory. According to the submitter, the net/micq port supports Japanese, so this port is superfluous. PR: 29873 Submitted by: Hiroo ONO While I'm here, change a space to a tab (found by portlint). Revision Changes Path 1.10 +4 -2 ports/japanese/micq/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 8:36:17 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4BFC637B413; Sun, 19 Aug 2001 08:36:13 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JFaD701914; Sun, 19 Aug 2001 08:36:13 -0700 (PDT) (envelope-from knu) Message-Id: <200108191536.f7JFaD701914@freefall.freebsd.org> From: Akinori MUSHA Date: Sun, 19 Aug 2001 08:36:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/portupgrade Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/19 08:36:12 PDT Modified files: sysutils/portupgrade Makefile distinfo Log: Update to 20010820. portupgrade: Fix -A and -B which were broken when I introduced -L. [Submitted by: Ollivier Robert ] portsdb: Implement -M/--master-recursive, -R/--upward-recursive and -x/--exclude, and sort the result in dependency order. Revision Changes Path 1.53 +2 -2 ports/sysutils/portupgrade/Makefile 1.48 +1 -1 ports/sysutils/portupgrade/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 8:46: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E01A37B40A; Sun, 19 Aug 2001 08:46:03 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JFk3p02846; Sun, 19 Aug 2001 08:46:03 -0700 (PDT) (envelope-from dinoex) Message-Id: <200108191546.f7JFk3p02846@freefall.freebsd.org> From: Dirk Meyer Date: Sun, 19 Aug 2001 08:46:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/openssh-portable Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2001/08/19 08:46:02 PDT Modified files: security/openssh-portable Makefile pkg-plist Log: Fix package building, slogin and its manpage is an link Revision Changes Path 1.6 +3 -2 ports/security/openssh-portable/Makefile 1.3 +2 -1 ports/security/openssh-portable/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 Aug 19 8:46:20 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2626E37B449; Sun, 19 Aug 2001 08:46:11 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JFkBf02885; Sun, 19 Aug 2001 08:46:11 -0700 (PDT) (envelope-from obrien) Message-Id: <200108191546.f7JFkBf02885@freefall.freebsd.org> From: "David E. O'Brien" Date: Sun, 19 Aug 2001 08:46:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/kerberosIV Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/19 08:46:11 PDT Modified files: kerberosIV Makefile Log: Remove the building of a kerberosIV'ed cvs. `make release' has been broken for the past 9 days! Revision Changes Path 1.14 +7 -4 src/kerberosIV/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 8:53:39 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A5DDF37B407; Sun, 19 Aug 2001 08:53:33 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JFrX803371; Sun, 19 Aug 2001 08:53:33 -0700 (PDT) (envelope-from rwatson) Message-Id: <200108191553.f7JFrX803371@freefall.freebsd.org> From: Robert Watson Date: Sun, 19 Aug 2001 08:53:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc pam.conf X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2001/08/19 08:53:33 PDT Modified files: (Branch: RELENG_4) etc pam.conf Log: Remove commented out KerberosIV pam entries for accounting and session management, as Krb4 has nothing to say about these. Uncommenting these entries causes login to refuse login, which will be a problem for many installations. Direct commit to -STABLE as I don't have a -CURRENT box on-hand that uses kerberos, and the kerberos build in -CURRENT is apparently broken. Submitted by: markm Approved by: re Revision Changes Path 1.6.2.9 +1 -3 src/etc/pam.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 9: 0:26 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E0B237B412; Sun, 19 Aug 2001 09:00:23 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JG0N004091; Sun, 19 Aug 2001 09:00:23 -0700 (PDT) (envelope-from trevor) Message-Id: <200108191600.f7JG0N004091@freefall.freebsd.org> From: Trevor Johnson Date: Sun, 19 Aug 2001 09:00:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Mk bsd.sites.mk X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trevor 2001/08/19 09:00:22 PDT Modified files: Mk bsd.sites.mk Log: Update one URL for a site which was reorganized; remove eight others which are no longer usable. Revision Changes Path 1.71 +3 -11 ports/Mk/bsd.sites.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 9: 9:40 2001 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 7981837B410; Sun, 19 Aug 2001 09:09:32 -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 KAA27787; Sun, 19 Aug 2001 10:09:31 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id KAA24607; Sun, 19 Aug 2001 10:09:31 -0600 (MDT) (envelope-from nate) From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15231.58554.767513.30240@nomad.yogotech.com> Date: Sun, 19 Aug 2001 10:09:30 -0600 To: Warner Losh Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pccard pcic_pci.c pcic_pci.h pcicvar.h In-Reply-To: <200108190501.f7J51Ix03034@freefall.freebsd.org> References: <200108190501.f7J51Ix03034@freefall.freebsd.org> X-Mailer: VM 6.95 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > imp 2001/08/18 22:01:18 PDT > > Modified files: > sys/pccard pcic_pci.c pcic_pci.h pcicvar.h > Log: > Improve interlocking for card removal. We now can remove the card in > the ISR. We keep track of the card state and don't call the IRS when > the card isn't inserted. This helps quite a bit with card ejection > problems that Ian was seeing. Whoo hooo!!!! Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 9:37: 7 2001 Delivered-To: cvs-all@freebsd.org Received: from ady.warpnet.ro (ady.warpnet.ro [194.102.224.8]) by hub.freebsd.org (Postfix) with ESMTP id 8C2F537B40E; Sun, 19 Aug 2001 09:36:51 -0700 (PDT) (envelope-from ady@warpnet.ro) Received: from localhost (ady@localhost) by ady.warpnet.ro (8.9.3/8.9.3) with ESMTP id TAA41279; Sun, 19 Aug 2001 19:41:11 +0300 (EEST) (envelope-from ady@warpnet.ro) X-RAV-AntiVirus: This e-mail has been scanned for viruses on host: ady.warpnet.ro Date: Sun, 19 Aug 2001 19:41:11 +0300 (EEST) From: Adrian Penisoara To: Sheldon Hearn Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/share/man/man5 rc.conf.5 In-Reply-To: <200108160914.f7G9E9s14266@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, They're not stupid at all, they have real application when it comes to antivirus mail filtering (for example RAV Mailserver antivirus uses two sendmail processes and queues). My 2% of $1, Ady (@warpnet.ro) _______________________________________________________________________ | I don't need to test my programs. I have an error-correcting modem. | | (Om I. Baud) | On Thu, 16 Aug 2001, Sheldon Hearn wrote: > sheldonh 2001/08/16 02:14:09 PDT > > Modified files: > share/man/man5 rc.conf.5 > Log: > Document the sendmail_outbound_enable and sendmail_outbound_flags, > which were introduced 5 months ago. Looking at the descriptions, > these two look like the stupidest options to have arrived in a while, > but they must be documented now that they've been merged onto the > stable branch. > > Revision Changes Path > 1.125 +30 -1 src/share/man/man5/rc.conf.5 > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe cvs-all" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 9:47:36 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9AEE937B408; Sun, 19 Aug 2001 09:47:30 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JGlUJ10940; Sun, 19 Aug 2001 09:47:30 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108191647.f7JGlUJ10940@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sun, 19 Aug 2001 09:47:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/horde Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/19 09:47:30 PDT Modified files: www/horde Makefile Log: fix pre-everything:: Submitted by: "Dan Langille" Revision Changes Path 1.2 +2 -2 ports/www/horde/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 10: 5:14 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CCD4A37B407; Sun, 19 Aug 2001 10:05:10 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JH5An12774; Sun, 19 Aug 2001 10:05:10 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108191705.f7JH5An12774@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Sun, 19 Aug 2001 10:05:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/gated Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/19 10:05:10 PDT Modified files: net/gated Makefile Log: Add WITHOUT_SMUX option PR: 20849 Submitted by: Maxim Tulyuk Revision Changes Path 1.30 +6 -1 ports/net/gated/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 10:10:54 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2C6E837B40B; Sun, 19 Aug 2001 10:10:51 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JHApq15904; Sun, 19 Aug 2001 10:10:51 -0700 (PDT) (envelope-from dinoex) Message-Id: <200108191710.f7JHApq15904@freefall.freebsd.org> From: Dirk Meyer Date: Sun, 19 Aug 2001 10:10:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/mipsel-linux-kernel-headers Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2001/08/19 10:10:51 PDT Modified files: devel/mipsel-linux-kernel-headers Makefile Log: Fix Package build, MKDIR was missing. Revision Changes Path 1.2 +2 -1 ports/devel/mipsel-linux-kernel-headers/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 10:22:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 181B437B405; Sun, 19 Aug 2001 10:22:40 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JHMeI16668; Sun, 19 Aug 2001 10:22:40 -0700 (PDT) (envelope-from dinoex) Message-Id: <200108191722.f7JHMeI16668@freefall.freebsd.org> From: Dirk Meyer Date: Sun, 19 Aug 2001 10:22:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/openssh-portable Makefile distinfo ports/security/openssh-portable/files patch-cookie X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2001/08/19 10:22:40 PDT Modified files: security/openssh-portable Makefile distinfo security/openssh-portable/files patch-cookie Log: - Update to p2: - stripped down some patches 20010617 - (djm) Pull in small fix from -CURRENT for session.c: typo, use pid not s->pid, mstone@cs.loyola.edu 20010615 - (stevesk) don't set SA_RESTART and set SIGCHLD to SIG_DFL around grantpt(). 20010614 - (bal) Applied X11 Cookie Patch. X11 Cookie behavior has changed to no longer use /tmp/ssh-XXXXX/ 20010528 - (tim) [conifgure.in] add setvbuf test needed for sftp-int.c Patch by Corinna Vinschen Approved by: dwcjr@freebsd.org Revision Changes Path 1.7 +2 -3 ports/security/openssh-portable/Makefile 1.2 +1 -1 ports/security/openssh-portable/distinfo 1.2 +17 -144 ports/security/openssh-portable/files/patch-cookie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 11:13:20 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D1C7637B412; Sun, 19 Aug 2001 11:13:13 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JIDDB23884; Sun, 19 Aug 2001 11:13:13 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108191813.f7JIDDB23884@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Sun, 19 Aug 2001 11:13:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/pam_ldap Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/19 11:13:13 PDT Modified files: security/pam_ldap Makefile distinfo Log: Update to 1.2.3 PR: 29779 Submitted by: maintainer Revision Changes Path 1.7 +2 -2 ports/security/pam_ldap/Makefile 1.5 +1 -1 ports/security/pam_ldap/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 11:19:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4366937B403; Sun, 19 Aug 2001 11:19:15 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JIJFS24680; Sun, 19 Aug 2001 11:19:15 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108191819.f7JIJFS24680@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Sun, 19 Aug 2001 11:19:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/isc-dhcp3 Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/19 11:19:15 PDT Modified files: net/isc-dhcp3 Makefile distinfo Log: Update to 3.0.r11 Update MAINTAINER's email PR: 29863 Submitted by: maintainer Revision Changes Path 1.69 +3 -3 ports/net/isc-dhcp3/Makefile 1.35 +1 -1 ports/net/isc-dhcp3/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 11:27:10 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3985A37B40F; Sun, 19 Aug 2001 11:27:06 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JIR6P25659; Sun, 19 Aug 2001 11:27:06 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108191827.f7JIR6P25659@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Sun, 19 Aug 2001 11:27:06 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/19 11:27:06 PDT Modified files: . modules Log: Erase old modules from modules/modules PR: 26759,27863 Revision Changes Path 1.3689 +1 -3 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 Aug 19 11:35:34 2001 Delivered-To: cvs-all@freebsd.org Received: from coffee.q9media.com (coffee.q9media.com [216.94.229.19]) by hub.freebsd.org (Postfix) with ESMTP id 0C14837B40B; Sun, 19 Aug 2001 11:35:27 -0700 (PDT) (envelope-from mike@coffee.q9media.com) Received: (from mike@localhost) by coffee.q9media.com (8.11.2/8.11.3) id f7JIvX449083; Sun, 19 Aug 2001 14:57:33 -0400 (EDT) (envelope-from mike) Date: Sun, 19 Aug 2001 14:57:33 -0400 From: Mike Barcroft To: Josef Karthauser Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT commit_prep.pl Message-ID: <20010819145733.B48972@coffee.q9media.com> Mail-Followup-To: Mike Barcroft , Josef Karthauser , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200108191257.f7JCvE474098@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108191257.f7JCvE474098@freefall.freebsd.org>; from joe@FreeBSD.org on Sun, Aug 19, 2001 at 05:57:14AM -0700 Organization: The FreeBSD Project Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Aug 19, 2001 at 05:57:14AM -0700, Josef Karthauser wrote: > joe 2001/08/19 05:57:14 PDT > > Modified files: > . commit_prep.pl > Log: > Tabulate per style.perl(7). > > Revision Changes Path > 1.33 +110 -101 CVSROOT/commit_prep.pl There are also non-whitespace changes in this commit. In future could you please split commits like these into two seperate ones to make diffs easier to read. Best regards, Mike Barcroft To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 11:51:59 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8EF0B37B40D; Sun, 19 Aug 2001 11:51:53 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JIprT28763; Sun, 19 Aug 2001 11:51:53 -0700 (PDT) (envelope-from jim) Message-Id: <200108191851.f7JIprT28763@freefall.freebsd.org> From: Jim Mock Date: Sun, 19 Aug 2001 11:51:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/faq book.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jim 2001/08/19 11:51:53 PDT Modified files: en_US.ISO8859-1/books/faq book.sgml Log: pseudo-device bpfilter -> pseudo-device bpf PR: 29872 Submitted by: Dominic Marks Revision Changes Path 1.256 +2 -2 doc/en_US.ISO8859-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 Sun Aug 19 12: 0:56 2001 Delivered-To: cvs-all@freebsd.org Received: from tao.org.uk (genesis.tao.org.uk [212.135.162.62]) by hub.freebsd.org (Postfix) with ESMTP id 9557037B409; Sun, 19 Aug 2001 12:00:47 -0700 (PDT) (envelope-from joe@tao.org.uk) Received: by tao.org.uk (Postfix, from userid 100) id E5D8E521; Sun, 19 Aug 2001 20:00:44 +0100 (BST) Date: Sun, 19 Aug 2001 20:00:43 +0100 From: Josef Karthauser To: Mike Barcroft , Josef Karthauser , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT commit_prep.pl Message-ID: <20010819200043.B43816@tao.org.uk> References: <200108191257.f7JCvE474098@freefall.freebsd.org> <20010819145733.B48972@coffee.q9media.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="xXmbgvnjoT4axfJE" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010819145733.B48972@coffee.q9media.com>; from mike@FreeBSD.org on Sun, Aug 19, 2001 at 02:57:33PM -0400 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --xXmbgvnjoT4axfJE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 19, 2001 at 02:57:33PM -0400, Mike Barcroft wrote: > On Sun, Aug 19, 2001 at 05:57:14AM -0700, Josef Karthauser wrote: > > joe 2001/08/19 05:57:14 PDT > >=20 > > Modified files: > > . commit_prep.pl=20 > > Log: > > Tabulate per style.perl(7). > > =20 > > Revision Changes Path > > 1.33 +110 -101 CVSROOT/commit_prep.pl >=20 > There are also non-whitespace changes in this commit. In future could > you please split commits like these into two seperate ones to make > diffs easier to read. Are you sure? Some lines have been adjusted to fit into 80 columns, but none of the logic has been changed. Joe --xXmbgvnjoT4axfJE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjuADNoACgkQXVIcjOaxUBZ7CQCfQwkpzeA+5kXe5p6kZVJ9X0w2 hwoAoMUEV8tTDb9iH7l+aGOFYNp+2XF9 =Mq0x -----END PGP SIGNATURE----- --xXmbgvnjoT4axfJE-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 12: 6:47 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 19D3837B409; Sun, 19 Aug 2001 12:06:44 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JJ6i133453; Sun, 19 Aug 2001 12:06:44 -0700 (PDT) (envelope-from knu) Message-Id: <200108191906.f7JJ6i133453@freefall.freebsd.org> From: Akinori MUSHA Date: Sun, 19 Aug 2001 12:06:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/enscript-letter Makefile ports/print/enscript-letter/files patch-enscript.st X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/19 12:06:44 PDT Modified files: print/enscript-letter Makefile Added files: print/enscript-letter/files patch-enscript.st Log: Add a patch to support syntax highlighting of the Ruby language. Obtained from: Mike Wilson (http://members.home.com/wmwilson01/enscript/) (I've got no response from the maintainer for 5 days and a half) Revision Changes Path 1.14 +2 -1 ports/print/enscript-letter/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 12:16:30 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B9C6B37B405; Sun, 19 Aug 2001 12:16:26 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JJGQm34504; Sun, 19 Aug 2001 12:16:26 -0700 (PDT) (envelope-from imp) Message-Id: <200108191916.f7JJGQm34504@freefall.freebsd.org> From: Warner Losh Date: Sun, 19 Aug 2001 12:16:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/pccard/pccardd cardd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/19 12:16:26 PDT Modified files: usr.sbin/pccard/pccardd cardd.c Log: Fix ISA machines. Also, make it possible for the new pccardd to run on older kernels correctly. Terminate the loop when we find a suitable irq. Also, only try to select from the pool. Cleaned up the two cases (IRQ picked by the user and ?) into one. MFC upon re approval. Revision Changes Path 1.72 +62 -41 src/usr.sbin/pccard/pccardd/cardd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 13: 5:47 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A87D137B406; Sun, 19 Aug 2001 13:05:42 -0700 (PDT) (envelope-from jasone@FreeBSD.org) Received: (from jasone@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JK5gd42402; Sun, 19 Aug 2001 13:05:42 -0700 (PDT) (envelope-from jasone) Message-Id: <200108192005.f7JK5gd42402@freefall.freebsd.org> From: Jason Evans Date: Sun, 19 Aug 2001 13:05:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/uthread uthread_cond.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jasone 2001/08/19 13:05:42 PDT Modified files: lib/libc_r/uthread uthread_cond.c Log: Fix logic errors in pthread_cond_wait() and pthread_cond_timedwait() that could cause deadlock after interruption due to a signal. Reviewed by: deischen Revision Changes Path 1.32 +53 -69 src/lib/libc_r/uthread/uthread_cond.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 13:23:16 2001 Delivered-To: cvs-all@freebsd.org Received: from franklin.physics.purdue.edu (franklin.physics.purdue.edu [128.210.146.222]) by hub.freebsd.org (Postfix) with ESMTP id 519EE37B410; Sun, 19 Aug 2001 13:23:10 -0700 (PDT) (envelope-from will@physics.purdue.edu) Received: from physics.purdue.edu (bohr.physics.purdue.edu [128.210.67.12]) by franklin.physics.purdue.edu (Postfix) with ESMTP id E24AB20F12; Sun, 19 Aug 2001 15:24:20 -0500 (EST) Received: by physics.purdue.edu (Postfix, from userid 12409) id D51045BC3; Sun, 19 Aug 2001 15:25:10 -0500 (EST) Date: Sun, 19 Aug 2001 15:25:10 -0500 From: Will Andrews To: Kent Stewart Cc: Will Andrews , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/x11/kdebase2 Makefile pkg-plist Message-ID: <20010819152510.I35352@bohr.physics.purdue.edu> Reply-To: Will Andrews Mail-Followup-To: Kent Stewart , Will Andrews , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200108171758.f7HHwmQ98033@freefall.freebsd.org> <3B7E9FEE.900B367A@urx.com> <20010818141228.D35352@bohr.physics.purdue.edu> <3B7ED9B1.489EE662@urx.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.17i In-Reply-To: <3B7ED9B1.489EE662@urx.com>; from kstewart@urx.com on Sat, Aug 18, 2001 at 02:10:09PM -0700 X-Operating-System: FreeBSD 4.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Aug 18, 2001 at 02:10:09PM -0700, Kent Stewart (kstewart@urx.com) wrote: > I understand about kde.org but you are positioned between us and them. > Unfortunately, what goes out on the release CDROMs depends on getting their > stuff to build properly. FWIW, I tried installing their packages but they > all wanted to force me to use XFree86-4.1, which is one of the reasons I was > trying to build them as packages. I have a Celeron that seems to take a day > short of forever to build kde-x.x. Their packages were built by me. > After I upgraded to python-2.1.1., koffice-1.1.rc1 installed and a make && > make install of kde-2.2 would finish installing on the two systems I have > tried it on. Thanks, you told me before. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 13:38:30 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B9C8337B40C; Sun, 19 Aug 2001 13:38:27 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JKcRT58340; Sun, 19 Aug 2001 13:38:27 -0700 (PDT) (envelope-from will) Message-Id: <200108192038.f7JKcRT58340@freefall.freebsd.org> From: Will Andrews Date: Sun, 19 Aug 2001 13:38:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/koffice Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG will 2001/08/19 13:38:27 PDT Modified files: editors/koffice Makefile Log: Bring in python 2.1 dependency. Submitted by: Kent Stewart Revision Changes Path 1.25 +3 -1 ports/editors/koffice/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 13:47:22 2001 Delivered-To: cvs-all@freebsd.org Received: from franklin.physics.purdue.edu (franklin.physics.purdue.edu [128.210.146.222]) by hub.freebsd.org (Postfix) with ESMTP id E307D37B403; Sun, 19 Aug 2001 13:47:12 -0700 (PDT) (envelope-from will@physics.purdue.edu) Received: from physics.purdue.edu (bohr.physics.purdue.edu [128.210.67.12]) by franklin.physics.purdue.edu (Postfix) with ESMTP id A949D20F0B; Sun, 19 Aug 2001 15:48:23 -0500 (EST) Received: by physics.purdue.edu (Postfix, from userid 12409) id BC8195BC3; Sun, 19 Aug 2001 15:49:13 -0500 (EST) Date: Sun, 19 Aug 2001 15:49:13 -0500 From: Will Andrews To: Jimmy Olgeni Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, FreeBSD Ports Subject: Re: cvs commit: ports/graphics/kdegraphics2 Makefile pkg-plist Message-ID: <20010819154913.K35352@bohr.physics.purdue.edu> Reply-To: Will Andrews Mail-Followup-To: Jimmy Olgeni , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, FreeBSD Ports References: <200108190004.f7J04MR51992@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.17i In-Reply-To: <200108190004.f7J04MR51992@freefall.freebsd.org>; from olgeni@FreeBSD.org on Sat, Aug 18, 2001 at 05:04:22PM -0700 X-Operating-System: FreeBSD 4.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Aug 18, 2001 at 05:04:22PM -0700, Jimmy Olgeni (olgeni@FreeBSD.org) wrote: > Log: > Also, temporarily disable compilation of the Kamera stuff, which requires > gphoto2, and leave a hint in pkg-plist to enable it later (I know it's ugly > but it should at least get binary packages up and running for most people). Why? Kdegraphics2's package should compile without it and automatically detect that it isn't needed. And if someone compiles with it and later removes gphoto2, kio_kamera will break, obviously... but that's all that should break. Regardless, playing it safe is probably the best way to go. I hope we see a gphoto2 port in the tree soon, even if it doesn't work with the porter's test camera. IIRC it requires libusb from Linux (which is slightly different from FreeBSD's, unfortunately) and perhaps a few hacks. But it could be made to compile... -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 14: 1:27 2001 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-7.dsl.lsan03.pacbell.net [63.207.60.7]) by hub.freebsd.org (Postfix) with ESMTP id 4A77137B40B; Sun, 19 Aug 2001 14:01:20 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id D06A366D15; Sun, 19 Aug 2001 14:01:19 -0700 (PDT) Date: Sun, 19 Aug 2001 14:01:19 -0700 From: Kris Kennaway To: "David W. Chapman Jr." Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT modules Message-ID: <20010819140119.A14504@xor.obsecurity.org> References: <200108191827.f7JIR6P25659@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="0OAP2g/MAC+5xKAE" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108191827.f7JIR6P25659@freefall.freebsd.org>; from dwcjr@FreeBSD.org on Sun, Aug 19, 2001 at 11:27:06AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --0OAP2g/MAC+5xKAE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 19, 2001 at 11:27:06AM -0700, David W. Chapman Jr. wrote: > dwcjr 2001/08/19 11:27:06 PDT >=20 > Modified files: > . modules=20 > Log: > Erase old modules from modules/modules > =20 > PR: 26759,27863 I thought we left old modules alone in this file, so that people can continue to check them out using the module name and a date or tag. Kris --0OAP2g/MAC+5xKAE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE7gCkfWry0BWjoQKURAto+AKC7R3AMFt7LcDaUeGxAm7tetpDZxQCgoE4f hoJZmBWCLJPXnTJuhEwWT9Y= =thCX -----END PGP SIGNATURE----- --0OAP2g/MAC+5xKAE-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 14: 5:38 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.ctonet.it (mail.ctonet.it [212.110.160.100]) by hub.freebsd.org (Postfix) with ESMTP id 12D6E37B40D; Sun, 19 Aug 2001 14:05:31 -0700 (PDT) (envelope-from olgeni@FreeBSD.org) Received: from olgeni.olgeni (ppp-93.dial6.ctonet.it [212.110.181.93]) by mail.ctonet.it (Postfix) with ESMTP id F3AC41226F; Sun, 19 Aug 2001 23:05:28 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by olgeni.olgeni (8.11.5/8.11.5) with ESMTP id f7JL5h524086; Sun, 19 Aug 2001 23:05:43 +0200 (CEST) (envelope-from olgeni@FreeBSD.org) Date: Sun, 19 Aug 2001 23:05:43 +0200 (CEST) From: Jimmy Olgeni X-X-Sender: To: Will Andrews Cc: , , FreeBSD Ports Subject: Re: cvs commit: ports/graphics/kdegraphics2 Makefile pkg-plist In-Reply-To: <20010819154913.K35352@bohr.physics.purdue.edu> Message-ID: <20010819224950.W23867-100000@olgeni.olgeni> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 19 Aug 2001, Will Andrews wrote: > Why? Kdegraphics2's package should compile without it and > automatically detect that it isn't needed. And if someone > compiles with it and later removes gphoto2, kio_kamera will > break, obviously... but that's all that should break. In fact it does actually detect that gphoto2 is missing, and it won't compile Kamera. But then the extra files in pkg-plist will cause it to fail the packaging stage, and kdegraphics2 is in the "required by sysinstall" package set (kde2 dependency). The %%KAMERA%% stuff is intented to be a placeholder for when we'll have a gphoto2 port, then it could be handled like the sane-backends dependency. As a bonus now we know what are the actual Kamera files :o) -- jimmy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 14:16:23 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E3B5937B405; Sun, 19 Aug 2001 14:16:19 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JLGJO82475; Sun, 19 Aug 2001 14:16:19 -0700 (PDT) (envelope-from kris) Message-Id: <200108192116.f7JLGJO82475@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 19 Aug 2001 14:16:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/top top.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/19 14:16:19 PDT Modified files: (Branch: RELENG_4) contrib/top top.c Log: MFC: r1.7: don't do unsafe activities inside signal handlers. Approved by: re@ Revision Changes Path 1.4.6.3 +55 -45 src/contrib/top/top.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 14:32:56 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 059BC37B405; Sun, 19 Aug 2001 14:32:53 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JLWrX90500; Sun, 19 Aug 2001 14:32:53 -0700 (PDT) (envelope-from kris) Message-Id: <200108192132.f7JLWrX90500@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 19 Aug 2001 14:32:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 src/lib Makefile src/lib/libss Makefile copyright.h data.c error.c execute_cmd.c help.c invocation.c list_rqs.c listen.c pager.c parse.c prompt.c request_tbl.c requests.c ss.h ss_err.et ss_internal.h std_rqs.ct X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/19 14:32:52 PDT Modified files: . Makefile.inc1 lib Makefile Removed files: lib/libss Makefile copyright.h data.c error.c execute_cmd.c help.c invocation.c list_rqs.c listen.c pager.c parse.c prompt.c request_tbl.c requests.c ss.h ss_err.et ss_internal.h std_rqs.ct Log: Say goodbye to libss, which somehow managed to crouch hidden in the tree for long after it was used. Revision Changes Path 1.210 +1 -3 src/Makefile.inc1 1.127 +3 -3 src/lib/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 14:34:25 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 245A837B401; Sun, 19 Aug 2001 14:34:21 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JLYLE91250; Sun, 19 Aug 2001 14:34:21 -0700 (PDT) (envelope-from kris) Message-Id: <200108192134.f7JLYLE91250@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 19 Aug 2001 14:34:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.libnames.mk X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/19 14:34:21 PDT Modified files: share/mk bsd.libnames.mk Log: Zap LIBSS Revision Changes Path 1.45 +1 -2 src/share/mk/bsd.libnames.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 14:39:43 2001 Delivered-To: cvs-all@freebsd.org Received: from franklin.physics.purdue.edu (franklin.physics.purdue.edu [128.210.146.222]) by hub.freebsd.org (Postfix) with ESMTP id 56E4237B403; Sun, 19 Aug 2001 14:39:37 -0700 (PDT) (envelope-from will@physics.purdue.edu) Received: from physics.purdue.edu (bohr.physics.purdue.edu [128.210.67.12]) by franklin.physics.purdue.edu (Postfix) with ESMTP id 2D5B820F15; Sun, 19 Aug 2001 16:40:48 -0500 (EST) Received: by physics.purdue.edu (Postfix, from userid 12409) id 36B715BC3; Sun, 19 Aug 2001 16:41:38 -0500 (EST) Date: Sun, 19 Aug 2001 16:41:38 -0500 From: Will Andrews To: Jimmy Olgeni Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, FreeBSD Ports Subject: Re: cvs commit: ports/graphics/kdegraphics2 Makefile pkg-plist Message-ID: <20010819164138.N35352@bohr.physics.purdue.edu> Reply-To: Will Andrews Mail-Followup-To: Jimmy Olgeni , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, FreeBSD Ports References: <20010819154913.K35352@bohr.physics.purdue.edu> <20010819224950.W23867-100000@olgeni.olgeni> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.17i In-Reply-To: <20010819224950.W23867-100000@olgeni.olgeni>; from olgeni@FreeBSD.org on Sun, Aug 19, 2001 at 11:05:43PM +0200 X-Operating-System: FreeBSD 4.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Aug 19, 2001 at 11:05:43PM +0200, Jimmy Olgeni (olgeni@FreeBSD.org) wrote: > In fact it does actually detect that gphoto2 is missing, and it won't > compile Kamera. But then the extra files in pkg-plist will cause it to > fail the packaging stage, and kdegraphics2 is in the "required by > sysinstall" package set (kde2 dependency). Oh yeah, that's right! Thanks for taking my crack pipe away. > The %%KAMERA%% stuff is intented to be a placeholder for when we'll > have a gphoto2 port, then it could be handled like the sane-backends > dependency. > > As a bonus now we know what are the actual Kamera files :o) Uh huh. ;-) -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 14:41:34 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 983E437B410; Sun, 19 Aug 2001 14:41:31 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Received: (from jmz@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JLfVp95169; Sun, 19 Aug 2001 14:41:31 -0700 (PDT) (envelope-from jmz) Message-Id: <200108192141.f7JLfVp95169@freefall.freebsd.org> From: Jean-Marc Zucconi Date: Sun, 19 Aug 2001 14:41:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/ispell Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jmz 2001/08/19 14:41:31 PDT Modified files: textproc/ispell Makefile Log: Don't overwrite PORTREVISION if set from a slave port. Submitted by: Dirk Meyer Revision Changes Path 1.64 +2 -2 ports/textproc/ispell/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 15:23:31 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4112237B409; Sun, 19 Aug 2001 15:23:23 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JMNNf21601; Sun, 19 Aug 2001 15:23:23 -0700 (PDT) (envelope-from brian) Message-Id: <200108192223.f7JMNNf21601@freefall.freebsd.org> From: Brian Somers Date: Sun, 19 Aug 2001 15:23:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp iface.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/19 15:23:22 PDT Modified files: usr.sbin/ppp iface.c Log: Avoid a compiler warning Not spotted by: FreeBSD's gcc version 2.95.3 20010315 (release) Spotted by: OpenBSD's gcc version 2.95.3 20010125 (prerelease) Revision Changes Path 1.24 +3 -1 src/usr.sbin/ppp/iface.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 15:23:31 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EA0CB37B40F; Sun, 19 Aug 2001 15:23:23 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JMNNO21637; Sun, 19 Aug 2001 15:23:23 -0700 (PDT) (envelope-from brian) Message-Id: <200108192223.f7JMNNO21637@freefall.freebsd.org> From: Brian Somers Date: Sun, 19 Aug 2001 15:23:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp ipv6cp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/19 15:23:23 PDT Modified files: usr.sbin/ppp ipv6cp.c Log: Add a missing % in a format string. Not spotted by: FreeBSD's gcc version 2.95.3 20010315 (release) Spotted by: OpenBSD's gcc version 2.95.3 20010125 (prerelease) Revision Changes Path 1.5 +2 -2 src/usr.sbin/ppp/ipv6cp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 15:23:48 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B072237B40C; Sun, 19 Aug 2001 15:23:28 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JMNSE21735; Sun, 19 Aug 2001 15:23:28 -0700 (PDT) (envelope-from brian) Message-Id: <200108192223.f7JMNSE21735@freefall.freebsd.org> From: Brian Somers Date: Sun, 19 Aug 2001 15:23:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp ncpaddr.c server.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/19 15:23:28 PDT Modified files: usr.sbin/ppp ncpaddr.c server.c Log: Add some casts. Not spotted by: FreeBSD's gcc version 2.95.3 20010315 (release) Spotted by: OpenBSD's gcc version 2.95.3 20010125 (prerelease) Revision Changes Path 1.4 +2 -2 src/usr.sbin/ppp/ncpaddr.c 1.38 +3 -3 src/usr.sbin/ppp/server.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 15:24:23 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9AA2A37B410; Sun, 19 Aug 2001 15:24:16 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JMOGb22193; Sun, 19 Aug 2001 15:24:16 -0700 (PDT) (envelope-from brian) Message-Id: <200108192224.f7JMOGb22193@freefall.freebsd.org> From: Brian Somers Date: Sun, 19 Aug 2001 15:24:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp iface.c ipv6cp.c ncpaddr.c server.c X-FreeBSD-CVS-Branch: NETGRAPH Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/19 15:24:16 PDT Modified files: (Branch: NETGRAPH) usr.sbin/ppp iface.c ipv6cp.c ncpaddr.c server.c Log: MFC: Fix some compiler warnings Add a missing % in a format string Revision Changes Path 1.15.2.9 +3 -1 src/usr.sbin/ppp/iface.c 1.1.2.5 +2 -2 src/usr.sbin/ppp/ipv6cp.c 1.1.2.4 +2 -2 src/usr.sbin/ppp/ncpaddr.c 1.31.2.7 +3 -3 src/usr.sbin/ppp/server.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 16:36:54 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 15BC337B403; Sun, 19 Aug 2001 16:36:50 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JNaoS72282; Sun, 19 Aug 2001 16:36:50 -0700 (PDT) (envelope-from dd) Message-Id: <200108192336.f7JNaoS72282@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 19 Aug 2001 16:36:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/19 16:36:49 PDT Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Expand a little on the note about apm_battery. Note that apmd can execute commands when the battery level changes, and point users at the examples in /etc/apmd.conf since this stuff isn't (yet?) documented in the manual page. Also note its MFC. Submitted by: nsayer Revision Changes Path 1.102 +6 -3 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 16:37:20 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E45D37B40C; Sun, 19 Aug 2001 16:37:13 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JNbDm72616; Sun, 19 Aug 2001 16:37:13 -0700 (PDT) (envelope-from dd) Message-Id: <200108192337.f7JNbDm72616@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 19 Aug 2001 16:37:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/19 16:37:13 PDT Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: apmd(8) apm_battery directive Revision Changes Path 1.22.2.62 +7 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 16:37:49 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 33D7E37B412; Sun, 19 Aug 2001 16:37:44 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JNbip73109; Sun, 19 Aug 2001 16:37:44 -0700 (PDT) (envelope-from dd) Message-Id: <200108192337.f7JNbip73109@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 19 Aug 2001 16:37:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/19 16:37:44 PDT Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: &merged; doesn't make sense here. Revision Changes Path 1.22.2.63 +1 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 16:43:39 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 20F5E37B407; Sun, 19 Aug 2001 16:43:31 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JNhVt76730; Sun, 19 Aug 2001 16:43:31 -0700 (PDT) (envelope-from dd) Message-Id: <200108192343.f7JNhVt76730@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 19 Aug 2001 16:43:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/config chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/19 16:43:30 PDT Modified files: en_US.ISO8859-1/books/handbook/config chapter.sgml Log: Note that the resolv.conf directive is "nameserver", not "name server", add a missing word, and note that newsyslog starts counting from 0. PR: 29874 Submitted by: Martin Heinen Revision Changes Path 1.20 +5 -5 doc/en_US.ISO8859-1/books/handbook/config/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 Aug 19 16:44: 4 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4055937B405; Sun, 19 Aug 2001 16:43:58 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JNhwR76913; Sun, 19 Aug 2001 16:43:58 -0700 (PDT) (envelope-from dd) Message-Id: <200108192343.f7JNhwR76913@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 19 Aug 2001 16:43:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/config chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/19 16:43:58 PDT Modified files: en_US.ISO8859-1/books/handbook/config chapter.sgml Log: Add a missing period. Revision Changes Path 1.21 +2 -2 doc/en_US.ISO8859-1/books/handbook/config/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 Aug 19 16:46:52 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5016137B401; Sun, 19 Aug 2001 16:46:48 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JNkiC78512; Sun, 19 Aug 2001 16:46:44 -0700 (PDT) (envelope-from dd) Message-Id: <200108192346.f7JNkiC78512@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 19 Aug 2001 16:46:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/cutting-edge chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/19 16:46:44 PDT Modified files: en_US.ISO8859-1/books/handbook/cutting-edge chapter.sgml Log: Remove a duplicate word, and don't claim to be crazy enough to run wu-ftpd. PR: 29869 Submitted by: Alex Kapranoff Revision Changes Path 1.86 +3 -3 doc/en_US.ISO8859-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 Aug 19 16:54:40 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D755F37B406; Sun, 19 Aug 2001 16:54:35 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JNsZ683288; Sun, 19 Aug 2001 16:54:35 -0700 (PDT) (envelope-from dd) Message-Id: <200108192354.f7JNsZ683288@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 19 Aug 2001 16:54:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/fdp-primer/the-website chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/19 16:54:35 PDT Modified files: en_US.ISO8859-1/books/fdp-primer/the-website chapter.sgml Log: Correct a typo. PR: 29852 Submitted by: Vladimir Tchoukharev Revision Changes Path 1.5 +2 -2 doc/en_US.ISO8859-1/books/fdp-primer/the-website/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 Aug 19 16:59: 1 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0873137B412; Sun, 19 Aug 2001 16:58:57 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7JNwvZ85771; Sun, 19 Aug 2001 16:58:57 -0700 (PDT) (envelope-from dd) Message-Id: <200108192358.f7JNwvZ85771@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 19 Aug 2001 16:58:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/disks chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/19 16:58:56 PDT Modified files: en_US.ISO8859-1/books/handbook/disks chapter.sgml Log: Assorted mechanical fixes. PR: 29806 Submitted by: John Murphy Revision Changes Path 1.53 +5 -5 doc/en_US.ISO8859-1/books/handbook/disks/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 Aug 19 17: 3: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D32DD37B405; Sun, 19 Aug 2001 17:03:01 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K031g87842; Sun, 19 Aug 2001 17:03:01 -0700 (PDT) (envelope-from dd) Message-Id: <200108200003.f7K031g87842@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 19 Aug 2001 17:03:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/rpcbind rpcbind.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/19 17:03:01 PDT Modified files: usr.sbin/rpcbind rpcbind.8 Log: Capitalize the first word in sentences, and put periods at the end of sentences. Revision Changes Path 1.2 +4 -4 src/usr.sbin/rpcbind/rpcbind.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 17: 6:20 2001 Delivered-To: cvs-all@freebsd.org Received: from coffee.q9media.com (coffee.q9media.com [216.94.229.19]) by hub.freebsd.org (Postfix) with ESMTP id BAE9637B414; Sun, 19 Aug 2001 17:06:12 -0700 (PDT) (envelope-from mike@coffee.q9media.com) Received: (from mike@localhost) by coffee.q9media.com (8.11.2/8.11.3) id f7K0SI749612; Sun, 19 Aug 2001 20:28:18 -0400 (EDT) (envelope-from mike) Date: Sun, 19 Aug 2001 20:28:18 -0400 From: Mike Barcroft To: Josef Karthauser Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT commit_prep.pl Message-ID: <20010819202818.D49129@coffee.q9media.com> Mail-Followup-To: Mike Barcroft , Josef Karthauser , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200108191257.f7JCvE474098@freefall.freebsd.org> <20010819145733.B48972@coffee.q9media.com> <20010819200043.B43816@tao.org.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010819200043.B43816@tao.org.uk>; from joe@tao.org.uk on Sun, Aug 19, 2001 at 08:00:43PM +0100 Organization: The FreeBSD Project Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Josef Karthauser writes: > On Sun, Aug 19, 2001 at 02:57:33PM -0400, Mike Barcroft wrote: > > On Sun, Aug 19, 2001 at 05:57:14AM -0700, Josef Karthauser wrote: > > > joe 2001/08/19 05:57:14 PDT > > > > > > Modified files: > > > . commit_prep.pl > > > Log: > > > Tabulate per style.perl(7). > > > > > > Revision Changes Path > > > 1.33 +110 -101 CVSROOT/commit_prep.pl > > > > There are also non-whitespace changes in this commit. In future could > > you please split commits like these into two seperate ones to make > > diffs easier to read. > > Are you sure? Some lines have been adjusted to fit into 80 columns, > but none of the logic has been changed. Yes. [...] @@ -82,97 +82,104 @@ # ############################################################ +# Write a single line to a file. sub write_line { - local($filename, $line) = @_; - open(FILE, ">$filename") || die("Cannot open $filename, stopped"); - print(FILE $line, "\n"); - close(FILE); + my $filename = shift; # File to write to. + my $line = shift; # Line to write to the file. + + open FILE, ">$filename" or die "Cannot open $filename, stopped\n"; + print FILE "$line\n"; + close FILE; } [...] From looking at the first section of the diff, I see local() changed to use 'my' and some comments that have been added. I didn't see anything wrong with the commit, but when using 'cvs diff' it's hard to see what has changed. Best regards, Mike Barcroft To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 17:10:48 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 00DF037B40A; Sun, 19 Aug 2001 17:10:43 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K0AgD94563; Sun, 19 Aug 2001 17:10:42 -0700 (PDT) (envelope-from dd) Message-Id: <200108200010.f7K0AgD94563@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 19 Aug 2001 17:10:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 rc.conf.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/19 17:10:42 PDT Modified files: share/man/man5 rc.conf.5 Log: Mark up IPFIREWALL in .Dv. Revision Changes Path 1.126 +4 -2 src/share/man/man5/rc.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 17:28:34 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B93A37B412; Sun, 19 Aug 2001 17:28:31 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K0SVc03085; Sun, 19 Aug 2001 17:28:31 -0700 (PDT) (envelope-from dd) Message-Id: <200108200028.f7K0SVc03085@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 19 Aug 2001 17:28:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 rc.conf.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/19 17:28:31 PDT Modified files: share/man/man5 rc.conf.5 Log: Add new entires for firewall_flags, amd_map_program, and enable_quotas. Plus other assorted fixes. PR: 20479 Submitted by: Ralf S. Engelschall Revision Changes Path 1.127 +39 -5 src/share/man/man5/rc.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 17:29:30 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 45D6137B401; Sun, 19 Aug 2001 17:29:23 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K0TNJ03450; Sun, 19 Aug 2001 17:29:23 -0700 (PDT) (envelope-from dd) Message-Id: <200108200029.f7K0TNJ03450@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 19 Aug 2001 17:29:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 rc.conf.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/19 17:29:23 PDT Modified files: share/man/man5 rc.conf.5 Log: There is no "(integer)" type; it's called "(int)". PR: 20749 Submitted by: Ralf S. Engelschall Revision Changes Path 1.128 +4 -4 src/share/man/man5/rc.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 17:41:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5CD3337B411; Sun, 19 Aug 2001 17:41:13 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K0fD807805; Sun, 19 Aug 2001 17:41:13 -0700 (PDT) (envelope-from dillon) Message-Id: <200108200041.f7K0fD807805@freefall.freebsd.org> From: Matt Dillon Date: Sun, 19 Aug 2001 17:41:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/common loader.8 src/sys/conf options src/sys/i386/i386 machdep.c src/sys/i386/include param.h src/sys/kern subr_param.c src/sys/sys buf.h src/sys/vm swap_pager.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2001/08/19 17:41:13 PDT Modified files: sys/boot/common loader.8 sys/conf options sys/i386/i386 machdep.c sys/i386/include param.h sys/kern subr_param.c sys/sys buf.h sys/vm swap_pager.c Log: Limit the amount of KVM reserved for the buffer cache and for swap-meta information. The default limits only effect machines with > 1GB of ram and can be overriden with two new kernel conf variables VM_SWZONE_SIZE_MAX and VM_BCACHE_SIZE_MAX, or with loader variables kern.maxswzone and kern.maxbcache. This has the effect of leaving more KVM available for sizing NMBCLUSTERS and 'maxusers' and should avoid tripups where a sysad adds memory to a machine and then sees the kernel panic on boot due to running out of KVM. Also change the default swap-meta auto-sizing calculation to allocate half of what it was previously allocating. The prior defaults were way too high. Note that we cannot afford to run out of swap-meta structures so we still stay somewhat conservative here. Revision Changes Path 1.31 +28 -1 src/sys/boot/common/loader.8 1.289 +3 -1 src/sys/conf/options 1.470 +7 -2 src/sys/i386/i386/machdep.c 1.60 +17 -1 src/sys/i386/include/param.h 1.43 +7 -1 src/sys/kern/subr_param.c 1.119 +3 -1 src/sys/sys/buf.h 1.163 +6 -3 src/sys/vm/swap_pager.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 17:46:37 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DD36437B40D; Sun, 19 Aug 2001 17:46:33 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K0kXH09188; Sun, 19 Aug 2001 17:46:33 -0700 (PDT) (envelope-from brian) Message-Id: <200108200046.f7K0kXH09188@freefall.freebsd.org> From: Brian Somers Date: Sun, 19 Aug 2001 17:46:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp route.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/19 17:46:33 PDT Modified files: usr.sbin/ppp route.c Log: When attempting to change the default route, don't write the gateway and mask to the routing socket, otherwise the update fails. Warning provided by: markm The code here was broken for FreeBSD when IPv6 support was added, but was fixed for OpenBSD. OpenBSD expects the gateway and mask to be supplied and fails the update otherwise. Revision Changes Path 1.76 +27 -8 src/usr.sbin/ppp/route.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 17:49: 9 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 11BC837B40B; Sun, 19 Aug 2001 17:49:06 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K0n6C09620; Sun, 19 Aug 2001 17:49:06 -0700 (PDT) (envelope-from brian) Message-Id: <200108200049.f7K0n6C09620@freefall.freebsd.org> From: Brian Somers Date: Sun, 19 Aug 2001 17:49:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp route.c X-FreeBSD-CVS-Branch: NETGRAPH Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/19 17:49:06 PDT Modified files: (Branch: NETGRAPH) usr.sbin/ppp route.c Log: MFC: Fix routing table updates for the default route Revision Changes Path 1.68.2.8 +27 -8 src/usr.sbin/ppp/route.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 17:58:17 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id E669C37B408; Sun, 19 Aug 2001 17:58:09 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7K0vtv00908; Mon, 20 Aug 2001 01:57:55 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7K0vrU08683; Mon, 20 Aug 2001 01:57:53 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108200057.f7K0vrU08683@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Brian Somers Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/usr.sbin/ppp route.c In-Reply-To: Message from Brian Somers of "Sun, 19 Aug 2001 17:46:33 PDT." <200108200046.f7K0kXH09188@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 20 Aug 2001 01:57:53 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > brian 2001/08/19 17:46:33 PDT > > Modified files: > usr.sbin/ppp route.c > Log: > When attempting to change the default route, don't write the gateway > and mask to the routing socket, otherwise the update fails. > > Warning provided by: markm > > The code here was broken for FreeBSD when IPv6 support was added, but > was fixed for OpenBSD. OpenBSD expects the gateway and mask to be > supplied and fails the update otherwise. > > Revision Changes Path > 1.76 +27 -8 src/usr.sbin/ppp/route.c My guess is that both FreeBSD and OpenBSD are wrong here. The gateway and mask are not important (the destination is enough), but their presence shouldn't break things. -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 18: 1:40 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 23BED37B401; Sun, 19 Aug 2001 18:01:35 -0700 (PDT) (envelope-from horikawa@FreeBSD.org) Received: (from horikawa@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K11ZR10965; Sun, 19 Aug 2001 18:01:35 -0700 (PDT) (envelope-from horikawa) Message-Id: <200108200101.f7K11ZR10965@freefall.freebsd.org> From: Kazuo Horikawa Date: Sun, 19 Aug 2001 18:01:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man1 fdformat.1 doc/ja_JP.eucJP/man/man5 amd.conf.5 doc/ja_JP.eucJP/man/man8 MAKEDEV.8 dmesg.8 ifconfig.8 stlload.8 stlstats.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG horikawa 2001/08/19 18:01:34 PDT Modified files: ja_JP.eucJP/man/man1 fdformat.1 ja_JP.eucJP/man/man5 amd.conf.5 ja_JP.eucJP/man/man8 MAKEDEV.8 dmesg.8 ifconfig.8 stlload.8 stlstats.8 Log: Removal of arg for .Os. Update of origianl reivsion number in comment. Revision Changes Path 1.15 +1 -2 doc/ja_JP.eucJP/man/man1/fdformat.1 1.14 +2 -2 doc/ja_JP.eucJP/man/man5/amd.conf.5 1.13 +2 -2 doc/ja_JP.eucJP/man/man8/MAKEDEV.8 1.13 +2 -2 doc/ja_JP.eucJP/man/man8/dmesg.8 1.24 +2 -2 doc/ja_JP.eucJP/man/man8/ifconfig.8 1.8 +3 -3 doc/ja_JP.eucJP/man/man8/stlload.8 1.10 +3 -3 doc/ja_JP.eucJP/man/man8/stlstats.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 18: 2:12 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C9E0D37B408; Sun, 19 Aug 2001 18:02:05 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K125I11081; Sun, 19 Aug 2001 18:02:05 -0700 (PDT) (envelope-from dd) Message-Id: <200108200102.f7K125I11081@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 19 Aug 2001 18:02:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 rc.conf.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/19 18:02:05 PDT Modified files: share/man/man5 rc.conf.5 Log: Shoot (and kill) the second person with a high-powered rifle. Revision Changes Path 1.129 +65 -64 src/share/man/man5/rc.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 18:12:40 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7750937B40A; Sun, 19 Aug 2001 18:12:35 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K1CZH14885; Sun, 19 Aug 2001 18:12:35 -0700 (PDT) (envelope-from dd) Message-Id: <200108200112.f7K1CZH14885@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 19 Aug 2001 18:12:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_linker.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/19 18:12:33 PDT Modified files: sys/kern kern_linker.c Log: Sync the default module search path with the one in sys/boot/common/module.c. PR: 21405 Submitted by: Makoto MATSUSHITA Revision Changes Path 1.65 +2 -2 src/sys/kern/kern_linker.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 18:13:24 2001 Delivered-To: cvs-all@freebsd.org Received: from helios.soupnazi.org (helios.soupnazi.org [64.81.252.113]) by hub.freebsd.org (Postfix) with ESMTP id D502637B419; Sun, 19 Aug 2001 18:13:20 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: by helios.soupnazi.org (Postfix, from userid 1000) id 794143240; Sun, 19 Aug 2001 18:13:20 -0700 (PDT) Date: Sun, 19 Aug 2001 18:13:20 -0700 From: Jim Mock To: Dima Dorfman Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/books/handbook/cutting-edge chapter.sgml Message-ID: <20010819181320.C1323@helios.soupnazi.org> Reply-To: jim@FreeBSD.org References: <200108192346.f7JNkiC78512@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200108192346.f7JNkiC78512@freefall.freebsd.org> User-Agent: Mutt/1.3.20i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 19 Aug 2001 at 16:46:44 -0700, Dima Dorfman wrote: > dd 2001/08/19 16:46:44 PDT > > Modified files: > en_US.ISO8859-1/books/handbook/cutting-edge chapter.sgml > Log: > Remove a duplicate word, and don't claim to be crazy enough to run > wu-ftpd. Hmm. Interesting. I committed a fix to remove that last week... jim 2001/08/12 23:49:29 PDT Modified files: en_US.ISO8859-1/books/handbook/cutting-edge chapter.sgml Log: Fix a few nits... * We don't use wu-ftpd. Nuke the text that says we do. I wonder how it got back in there. - jim -- jim mock tech writer | iXsystems, Inc. http://soupnazi.org/ work: jim@ixsystems.net | jim@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 Aug 19 18:20:12 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 888CB37B40E; Sun, 19 Aug 2001 18:20:05 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K1K5m15621; Sun, 19 Aug 2001 18:20:05 -0700 (PDT) (envelope-from dd) Message-Id: <200108200120.f7K1K5m15621@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 19 Aug 2001 18:20:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/adduser adduser.perl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/19 18:20:05 PDT Modified files: usr.sbin/adduser adduser.perl Log: Pass the username we just made to pwd_mkdb so that the latter doesn't have to regenerate the entire database. PR: 25798 Submitted by: Domas Mituzas Revision Changes Path 1.48 +5 -4 src/usr.sbin/adduser/adduser.perl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 18:24:58 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 89D6837B406; Sun, 19 Aug 2001 18:24:52 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K1OqM16098; Sun, 19 Aug 2001 18:24:52 -0700 (PDT) (envelope-from jedgar) Message-Id: <200108200124.f7K1OqM16098@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Sun, 19 Aug 2001 18:24:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/kdbg Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jedgar 2001/08/19 18:24:52 PDT Modified files: devel/kdbg Makefile distinfo pkg-plist Log: Update port to 1.2.2 Revision Changes Path 1.18 +2 -2 ports/devel/kdbg/Makefile 1.10 +1 -1 ports/devel/kdbg/distinfo 1.6 +1 -1 ports/devel/kdbg/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 Aug 19 18:26:51 2001 Delivered-To: cvs-all@freebsd.org Received: from bazooka.unixfreak.org (bazooka.unixfreak.org [63.198.170.138]) by hub.freebsd.org (Postfix) with ESMTP id 0E42F37B403; Sun, 19 Aug 2001 18:26:45 -0700 (PDT) (envelope-from dima@unixfreak.org) Received: by bazooka.unixfreak.org (Postfix, from userid 1000) id A30813E28; Sun, 19 Aug 2001 18:26:44 -0700 (PDT) Received: from bazooka.unixfreak.org (localhost [127.0.0.1]) by bazooka.unixfreak.org (Postfix) with ESMTP id 96F283C12B; Sun, 19 Aug 2001 18:26:44 -0700 (PDT) To: jim@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/books/handbook/cutting-edge chapter.sgml In-Reply-To: <20010819181320.C1323@helios.soupnazi.org>; from jim@FreeBSD.org on "Sun, 19 Aug 2001 18:13:20 -0700" Date: Sun, 19 Aug 2001 18:26:39 -0700 From: Dima Dorfman Message-Id: <20010820012644.A30813E28@bazooka.unixfreak.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Jim Mock writes: > On Sun, 19 Aug 2001 at 16:46:44 -0700, Dima Dorfman wrote: > > dd 2001/08/19 16:46:44 PDT > > > > Modified files: > > en_US.ISO8859-1/books/handbook/cutting-edge chapter.sgml > > Log: > > Remove a duplicate word, and don't claim to be crazy enough to run > > wu-ftpd. > > Hmm. Interesting. I committed a fix to remove that last week... ... > I wonder how it got back in there. It didn't. wu-ftpd was mentioned there twice, once discussing -current, and another time discussing -stable. You only removed one of them. dima@hornet% cvs ann -r1.82 chapter.sgml |& g -c wu-ftpd 2 (rev 1.82 is the one right before your commit) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 18:31:11 2001 Delivered-To: cvs-all@freebsd.org Received: from helios.soupnazi.org (helios.soupnazi.org [64.81.252.113]) by hub.freebsd.org (Postfix) with ESMTP id 6DA5D37B40B; Sun, 19 Aug 2001 18:31:06 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: by helios.soupnazi.org (Postfix, from userid 1000) id 2471E3240; Sun, 19 Aug 2001 18:31:06 -0700 (PDT) Date: Sun, 19 Aug 2001 18:31:06 -0700 From: Jim Mock To: Dima Dorfman Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/books/handbook/cutting-edge chapter.sgml Message-ID: <20010819183105.A3503@helios.soupnazi.org> Reply-To: jim@FreeBSD.org References: <20010819181320.C1323@helios.soupnazi.org>; <20010820012644.A30813E28@bazooka.unixfreak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010820012644.A30813E28@bazooka.unixfreak.org> User-Agent: Mutt/1.3.20i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 19 Aug 2001 at 18:26:39 -0700, Dima Dorfman wrote: > Jim Mock writes: > > On Sun, 19 Aug 2001 at 16:46:44 -0700, Dima Dorfman wrote: > > > dd 2001/08/19 16:46:44 PDT > > > > > > Modified files: > > > en_US.ISO8859-1/books/handbook/cutting-edge chapter.sgml > > > Log: > > > Remove a duplicate word, and don't claim to be crazy enough to run > > > wu-ftpd. > > > > Hmm. Interesting. I committed a fix to remove that last week... > ... > > I wonder how it got back in there. > > It didn't. wu-ftpd was mentioned there twice, once discussing > -current, and another time discussing -stable. You only removed one > of them. > > dima@hornet% cvs ann -r1.82 chapter.sgml |& g -c wu-ftpd > 2 > > (rev 1.82 is the one right before your commit) Ah ha. I didn't actually look at the diffs or anything before sending the email. I guess I probably should have :-) - jim -- jim mock tech writer | iXsystems, Inc. http://soupnazi.org/ work: jim@ixsystems.net | jim@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 Aug 19 18:40:15 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id C65CD37B401; Sun, 19 Aug 2001 18:40:05 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7K1dpv01121; Mon, 20 Aug 2001 02:39:51 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7K1dmU09449; Mon, 20 Aug 2001 02:39:48 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108200139.f7K1dmU09449@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Dima Dorfman Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/sys/kern kern_linker.c In-Reply-To: Message from Dima Dorfman of "Sun, 19 Aug 2001 18:12:33 PDT." <200108200112.f7K1CZH14885@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 20 Aug 2001 02:39:48 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > dd 2001/08/19 18:12:33 PDT > > Modified files: > sys/kern kern_linker.c > Log: > Sync the default module search path with the one in > sys/boot/common/module.c. > > PR: 21405 > Submitted by: Makoto MATSUSHITA > > Revision Changes Path > 1.65 +2 -2 src/sys/kern/kern_linker.c It looks like loader(8) is out of date WRT module_path too. -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 18:45:28 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C153E37B40E; Sun, 19 Aug 2001 18:45:21 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K1jLU17869; Sun, 19 Aug 2001 18:45:21 -0700 (PDT) (envelope-from jedgar) Message-Id: <200108200145.f7K1jLU17869@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Sun, 19 Aug 2001 18:45:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/cmpsfont Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jedgar 2001/08/19 18:45:21 PDT Modified files: print/cmpsfont Makefile distinfo pkg-plist Log: Update port due to changed distfile: o most fonts have been updated o added a few fonts o renamed READ.ME to README o removed mapfiles Also: o properly support NOPORTDOCS o bump PORTREVISION o fix a few portlint warnings Revision Changes Path 1.6 +14 -15 ports/print/cmpsfont/Makefile 1.2 +1 -1 ports/print/cmpsfont/distinfo 1.3 +7 -12 ports/print/cmpsfont/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 Aug 19 18:57:26 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D53037B40E; Sun, 19 Aug 2001 18:57:22 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K1vMi19028; Sun, 19 Aug 2001 18:57:22 -0700 (PDT) (envelope-from jedgar) Message-Id: <200108200157.f7K1vMi19028@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Sun, 19 Aug 2001 18:57:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/grip distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jedgar 2001/08/19 18:57:22 PDT Modified files: audio/grip distinfo Log: Chase the checksum: the distfile was rerolled into an actual tar.gz instead of a plain tarball. No differences in content. Revision Changes Path 1.4 +1 -1 ports/audio/grip/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 18:59:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5C53C37B408; Sun, 19 Aug 2001 18:59:42 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K1xgA19255; Sun, 19 Aug 2001 18:59:42 -0700 (PDT) (envelope-from jedgar) Message-Id: <200108200159.f7K1xgA19255@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Sun, 19 Aug 2001 18:59:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/gsl distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jedgar 2001/08/19 18:59:42 PDT Modified files: math/gsl distinfo Log: Chase the checksum: the reference document, gsl-ref.ps.gz, was updated. Revision Changes Path 1.8 +1 -1 ports/math/gsl/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 19: 3:28 2001 Delivered-To: cvs-all@freebsd.org Received: from bazooka.unixfreak.org (bazooka.unixfreak.org [63.198.170.138]) by hub.freebsd.org (Postfix) with ESMTP id BA4A237B40E; Sun, 19 Aug 2001 19:03:24 -0700 (PDT) (envelope-from dima@unixfreak.org) Received: by bazooka.unixfreak.org (Postfix, from userid 1000) id 319433E28; Sun, 19 Aug 2001 19:03:24 -0700 (PDT) Received: from bazooka.unixfreak.org (localhost [127.0.0.1]) by bazooka.unixfreak.org (Postfix) with ESMTP id 1FFC63C12B; Sun, 19 Aug 2001 19:03:24 -0700 (PDT) To: Brian Somers Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/sys/kern kern_linker.c In-Reply-To: <200108200139.f7K1dmU09449@hak.lan.Awfulhak.org>; from brian@Awfulhak.org on "Mon, 20 Aug 2001 02:39:48 +0100" Date: Sun, 19 Aug 2001 19:03:19 -0700 From: Dima Dorfman Message-Id: <20010820020324.319433E28@bazooka.unixfreak.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Brian Somers writes: > > dd 2001/08/19 18:12:33 PDT > > > > Modified files: > > sys/kern kern_linker.c > > Log: > > Sync the default module search path with the one in > > sys/boot/common/module.c. > > > > PR: 21405 > > Submitted by: Makoto MATSUSHITA > > > > Revision Changes Path > > 1.65 +2 -2 src/sys/kern/kern_linker.c > > It looks like loader(8) is out of date WRT module_path too. Indeed it is. I think removing the discussion about the default entirely would be best, since it's getting less and less likely that the default would remain intact, esp. with things like kldconfig(8), which may soon be run in one of the rc scripts. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 19: 8:29 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A68AA37B40C; Sun, 19 Aug 2001 19:08:26 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K28Qd23106; Sun, 19 Aug 2001 19:08:26 -0700 (PDT) (envelope-from dd) Message-Id: <200108200208.f7K28Qd23106@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 19 Aug 2001 19:08:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/19 19:08:26 PDT Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Use `an' where appropriate. Revision Changes Path 1.103 +2 -2 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 19:15:29 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D6E7E37B401; Sun, 19 Aug 2001 19:15:22 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K2FMn23796; Sun, 19 Aug 2001 19:15:22 -0700 (PDT) (envelope-from dd) Message-Id: <200108200215.f7K2FMn23796@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 19 Aug 2001 19:15:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/restore dirs.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/19 19:15:22 PDT Modified files: sbin/restore dirs.c Log: Respect the -N flag when changing directory attributes in setdirmode). PR: 29671 Submitted by: Sascha Blank Revision Changes Path 1.19 +7 -5 src/sbin/restore/dirs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 19:16:44 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ABCAB37B410; Sun, 19 Aug 2001 19:16:41 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K2Gfc24028; Sun, 19 Aug 2001 19:16:41 -0700 (PDT) (envelope-from dd) Message-Id: <200108200216.f7K2Gfc24028@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 19 Aug 2001 19:16:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/restore restore.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/19 19:16:41 PDT Modified files: sbin/restore restore.8 Log: Fix grammar. Revision Changes Path 1.32 +3 -2 src/sbin/restore/restore.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 19:17:16 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 552F937B410; Sun, 19 Aug 2001 19:17:13 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K2HDB24135; Sun, 19 Aug 2001 19:17:13 -0700 (PDT) (envelope-from dd) Message-Id: <200108200217.f7K2HDB24135@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 19 Aug 2001 19:17:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/19 19:17:13 PDT Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC 1.103: use `an' where appropriate. Revision Changes Path 1.22.2.64 +1 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 19:51:22 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9272C37B40D; Sun, 19 Aug 2001 19:51:17 -0700 (PDT) (envelope-from horikawa@FreeBSD.org) Received: (from horikawa@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K2pHF26964; Sun, 19 Aug 2001 19:51:17 -0700 (PDT) (envelope-from horikawa) Message-Id: <200108200251.f7K2pHF26964@freefall.freebsd.org> From: Kazuo Horikawa Date: Sun, 19 Aug 2001 19:51:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man1 ul.1 doc/ja_JP.eucJP/man/man2 mmap.2 doc/ja_JP.eucJP/man/man8 iostat.8 ppp.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG horikawa 2001/08/19 19:51:16 PDT Modified files: ja_JP.eucJP/man/man1 ul.1 ja_JP.eucJP/man/man2 mmap.2 ja_JP.eucJP/man/man8 iostat.8 ppp.8 Log: Add missing .El. Revision Changes Path 1.8 +2 -1 doc/ja_JP.eucJP/man/man1/ul.1 1.7 +2 -1 doc/ja_JP.eucJP/man/man2/mmap.2 1.12 +2 -1 doc/ja_JP.eucJP/man/man8/iostat.8 1.54 +6 -3 doc/ja_JP.eucJP/man/man8/ppp.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 19:51:48 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id CA75D37B40D; Sun, 19 Aug 2001 19:51:38 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7K2pNv02086; Mon, 20 Aug 2001 03:51:23 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7K2pHU11026; Mon, 20 Aug 2001 03:51:18 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108200251.f7K2pHU11026@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Dima Dorfman Cc: Brian Somers , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com, brian@freebsd-services.com Subject: Re: cvs commit: src/sys/kern kern_linker.c In-Reply-To: Message from Dima Dorfman of "Sun, 19 Aug 2001 19:03:19 PDT." <20010820020324.319433E28@bazooka.unixfreak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 20 Aug 2001 03:51:16 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Brian Somers writes: > > > dd 2001/08/19 18:12:33 PDT > > > > > > Modified files: > > > sys/kern kern_linker.c > > > Log: > > > Sync the default module search path with the one in > > > sys/boot/common/module.c. > > > > > > PR: 21405 > > > Submitted by: Makoto MATSUSHITA > > > > > > Revision Changes Path > > > 1.65 +2 -2 src/sys/kern/kern_linker.c > > > > It looks like loader(8) is out of date WRT module_path too. > > Indeed it is. I think removing the discussion about the default > entirely would be best, since it's getting less and less likely that > the default would remain intact, esp. with things like kldconfig(8), > which may soon be run in one of the rc scripts. Maybe a reference to kldconfig(8) (when it turns up) would be appropriate here. -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 20: 4: 4 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B066737B409; Sun, 19 Aug 2001 20:04:00 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K340328295; Sun, 19 Aug 2001 20:04:00 -0700 (PDT) (envelope-from mikeh) Message-Id: <200108200304.f7K340328295@freefall.freebsd.org> From: Mike Heffner Date: Sun, 19 Aug 2001 20:04:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/xbanner distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mikeh 2001/08/19 20:04:00 PDT Modified files: x11/xbanner distinfo Log: Chase checksum; trivial makefile change. Noticed by: bento Revision Changes Path 1.3 +1 -1 ports/x11/xbanner/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 20:27:52 2001 Delivered-To: cvs-all@freebsd.org Received: from bazooka.unixfreak.org (bazooka.unixfreak.org [63.198.170.138]) by hub.freebsd.org (Postfix) with ESMTP id 2D18037B414; Sun, 19 Aug 2001 20:27:46 -0700 (PDT) (envelope-from dima@unixfreak.org) Received: by bazooka.unixfreak.org (Postfix, from userid 1000) id BDE903E28; Sun, 19 Aug 2001 20:27:45 -0700 (PDT) Received: from bazooka.unixfreak.org (localhost [127.0.0.1]) by bazooka.unixfreak.org (Postfix) with ESMTP id B2A7B3C12B; Sun, 19 Aug 2001 20:27:45 -0700 (PDT) To: Brian Somers Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/sys/kern kern_linker.c In-Reply-To: <200108200251.f7K2pHU11026@hak.lan.Awfulhak.org>; from brian@Awfulhak.org on "Mon, 20 Aug 2001 03:51:16 +0100" Date: Sun, 19 Aug 2001 20:27:40 -0700 From: Dima Dorfman Message-Id: <20010820032745.BDE903E28@bazooka.unixfreak.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Brian Somers writes: > > Brian Somers writes: > > > > dd 2001/08/19 18:12:33 PDT > > > > > > > > Modified files: > > > > sys/kern kern_linker.c > > > > Log: > > > > Sync the default module search path with the one in > > > > sys/boot/common/module.c. > > > > > > > > PR: 21405 > > > > Submitted by: Makoto MATSUSHITA > > > > > > > > Revision Changes Path > > > > 1.65 +2 -2 src/sys/kern/kern_linker.c > > > > > > It looks like loader(8) is out of date WRT module_path too. > > > > Indeed it is. I think removing the discussion about the default > > entirely would be best, since it's getting less and less likely that > > the default would remain intact, esp. with things like kldconfig(8), > > which may soon be run in one of the rc scripts. > > Maybe a reference to kldconfig(8) (when it turns up) would be > appropriate here. It turned up two months ago :-). I'll add the xref. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 20:41:54 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7891B37B413; Sun, 19 Aug 2001 20:41:48 -0700 (PDT) (envelope-from fenner@FreeBSD.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K3fmL34485; Sun, 19 Aug 2001 20:41:48 -0700 (PDT) (envelope-from fenner) Message-Id: <200108200341.f7K3fmL34485@freefall.freebsd.org> From: Bill Fenner Date: Sun, 19 Aug 2001 20:41:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ping ping.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG fenner 2001/08/19 20:41:47 PDT Modified files: (Branch: RELENG_4) sbin/ping ping.c Log: MFC rev 1.57: increase send socket buffer to 48k Approved by: murray Revision Changes Path 1.52.2.7 +6 -1 src/sbin/ping/ping.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 21:56:42 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EA08637B410; Sun, 19 Aug 2001 21:56:37 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K4ub343945; Sun, 19 Aug 2001 21:56:37 -0700 (PDT) (envelope-from bmah) Message-Id: <200108200456.f7K4ub343945@freefall.freebsd.org> From: "Bruce A. Mah" Date: Sun, 19 Aug 2001 21:56:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2001/08/19 21:56:37 PDT Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Fix an SGML glitch. Revision Changes Path 1.104 +2 -2 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 22: 4:34 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0DF7A37B411; Sun, 19 Aug 2001 22:04:29 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K54S844992; Sun, 19 Aug 2001 22:04:29 -0700 (PDT) (envelope-from bmah) Message-Id: <200108200504.f7K54S844992@freefall.freebsd.org> From: "Bruce A. Mah" Date: Sun, 19 Aug 2001 22:04:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2001/08/19 22:04:28 PDT Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: Fix SGML glitch. Revision Changes Path 1.22.2.65 +2 -2 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 22:30:15 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9C19637B406; Sun, 19 Aug 2001 22:30:10 -0700 (PDT) (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K5UAN55817; Sun, 19 Aug 2001 22:30:10 -0700 (PDT) (envelope-from demon) Message-Id: <200108200530.f7K5UAN55817@freefall.freebsd.org> From: Dmitry Sivachenko Date: Sun, 19 Aug 2001 22:30:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/kde2-i18n/scripts Configure X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2001/08/19 22:30:10 PDT Modified files: misc/kde2-i18n/scripts Configure Log: Remove two languages not presented in new version. Revision Changes Path 1.7 +2 -4 ports/misc/kde2-i18n/scripts/Configure To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 22:46: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 47B8337B414; Sun, 19 Aug 2001 22:46:01 -0700 (PDT) (envelope-from greid@FreeBSD.org) Received: (from greid@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K5k1S59979; Sun, 19 Aug 2001 22:46:01 -0700 (PDT) (envelope-from greid) Message-Id: <200108200546.f7K5k1S59979@freefall.freebsd.org> From: George C A Reid Date: Sun, 19 Aug 2001 22:46:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/mp3blaster Makefile distinfo ports/audio/mp3blaster/files patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG greid 2001/08/19 22:46:01 PDT Modified files: audio/mp3blaster Makefile distinfo audio/mp3blaster/files patch-ab Log: - Update to 3.0p8 - Respect CXXFLAGS PR: 29782 Submitted by: Patrick Li Revision Changes Path 1.10 +3 -2 ports/audio/mp3blaster/Makefile 1.6 +1 -1 ports/audio/mp3blaster/distinfo 1.5 +6 -14 ports/audio/mp3blaster/files/patch-ab To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 22:54:14 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D88137B412; Sun, 19 Aug 2001 22:54:11 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K5sBd61068; Sun, 19 Aug 2001 22:54:11 -0700 (PDT) (envelope-from kris) Message-Id: <200108200554.f7K5sBd61068@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 19 Aug 2001 22:54:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/xbanner Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/19 22:54:11 PDT Modified files: x11/xbanner Makefile Log: Remove a dead MASTER_SITE Revision Changes Path 1.12 +2 -3 ports/x11/xbanner/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 23:16:13 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 019A437B410; Sun, 19 Aug 2001 23:16:05 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K6G4N66537; Sun, 19 Aug 2001 23:16:04 -0700 (PDT) (envelope-from kris) Message-Id: <200108200616.f7K6G4N66537@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 19 Aug 2001 23:16:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/timed/timed readmsg.c src/usr.sbin/timed/timedc cmds.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/19 23:16:04 PDT Modified files: usr.sbin/timed/timed readmsg.c usr.sbin/timed/timedc cmds.c Log: The timed protocol is not implemented in a compatible way by all vendors; the size of the tsp_name field is OS-dependent. 4.3BSD used a 32-byte field, FreeBSD uses MAXHOSTNAMELEN and RedHat apparently uses a 64-byte field. As a result, sanity checking code added a few months ago to detect short packets will fail when interoperating with one of these other vendors. Change the short packet detection code to expect a minimum packet size corresponding to the 4.3BSD implementation, which should be a safe minimum size. Submitted by: Stephen Whiteley (based on) PR: misc/29867 Revision Changes Path 1.8 +8 -3 src/usr.sbin/timed/timed/readmsg.c 1.8 +17 -6 src/usr.sbin/timed/timedc/cmds.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 23:21:59 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1C21D37B40B; Sun, 19 Aug 2001 23:21:52 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K6Lq867291; Sun, 19 Aug 2001 23:21:52 -0700 (PDT) (envelope-from kris) Message-Id: <200108200621.f7K6Lq867291@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 19 Aug 2001 23:21:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/cooledit Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/19 23:21:52 PDT Modified files: editors/cooledit Makefile distinfo Log: Upgrade the distfile to 3.17.4 in an attempt to get this port building again. Note failure of attempt and give up; this port is still broken in the same way as the previous (looks like it's expecting some missing libraries; ncurses and at least one other). Therefore, mark BROKEN. Revision Changes Path 1.30 +4 -2 ports/editors/cooledit/Makefile 1.14 +1 -1 ports/editors/cooledit/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 23:23:40 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8071937B408; Sun, 19 Aug 2001 23:23:35 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K6NZ167597; Sun, 19 Aug 2001 23:23:35 -0700 (PDT) (envelope-from kris) Message-Id: <200108200623.f7K6NZ167597@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 19 Aug 2001 23:23:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin Makefile src/usr.bin/mk_cmds Makefile cmd_tbl.l copyright.h ct.y mk_cmds.1 mk_cmds.c options.c utils.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/19 23:23:35 PDT Modified files: usr.bin Makefile Removed files: usr.bin/mk_cmds Makefile cmd_tbl.l copyright.h ct.y mk_cmds.1 mk_cmds.c options.c utils.c Log: Part II of libss retirement: zap mk_cmds too. Pointy hat to: kris Revision Changes Path 1.166 +1 -2 src/usr.bin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 23:25:55 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 787CD37B406; Sun, 19 Aug 2001 23:25:50 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K6Po367945; Sun, 19 Aug 2001 23:25:50 -0700 (PDT) (envelope-from kris) Message-Id: <200108200625.f7K6Po367945@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 19 Aug 2001 23:25:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/TenDRA Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/19 23:25:50 PDT Modified files: lang/TenDRA Makefile Log: Unconditionalize the BROKEN tag; this port doesn't compile on any current version of FreeBSD (it chokes on system headers). Revision Changes Path 1.17 +1 -3 ports/lang/TenDRA/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 23:27:54 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5D4FA37B408; Sun, 19 Aug 2001 23:27:49 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K6Rnh68195; Sun, 19 Aug 2001 23:27:49 -0700 (PDT) (envelope-from kris) Message-Id: <200108200627.f7K6Rnh68195@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 19 Aug 2001 23:27:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/FWF Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/19 23:27:49 PDT Modified files: x11-toolkits/FWF Makefile Log: This does not compile; mark BROKEN. Revision Changes Path 1.26 +3 -1 ports/x11-toolkits/FWF/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 23:29:41 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A32AD37B40B; Sun, 19 Aug 2001 23:29:37 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K6TbD68462; Sun, 19 Aug 2001 23:29:37 -0700 (PDT) (envelope-from kris) Message-Id: <200108200629.f7K6TbD68462@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 19 Aug 2001 23:29:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/m3gdb Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/19 23:29:37 PDT Modified files: lang/m3gdb Makefile Log: Mark BROKEN; looks like system header changes caused this to break Revision Changes Path 1.10 +3 -1 ports/lang/m3gdb/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 23:36:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3852D37B40F; Sun, 19 Aug 2001 23:36:30 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K6aUG69213; Sun, 19 Aug 2001 23:36:30 -0700 (PDT) (envelope-from dinoex) Message-Id: <200108200636.f7K6aUG69213@freefall.freebsd.org> From: Dirk Meyer Date: Sun, 19 Aug 2001 23:36:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/german/unix-connect Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2001/08/19 23:36:29 PDT Modified files: german/unix-connect Makefile Log: Fix problem with PKGNAMEPREFIX set Revision Changes Path 1.2 +2 -2 ports/german/unix-connect/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 23:44: 3 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E355737B40A; Sun, 19 Aug 2001 23:43:58 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K6hwR70047; Sun, 19 Aug 2001 23:43:58 -0700 (PDT) (envelope-from kris) Message-Id: <200108200643.f7K6hwR70047@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 19 Aug 2001 23:43:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/treecc Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/19 23:43:58 PDT Modified files: lang/treecc Makefile Log: I think this port requires bison; the configure script allows the build to proceed without it, but the compilation fails. Revision Changes Path 1.2 +2 -1 ports/lang/treecc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 19 23:48: 1 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D14F137B41C; Sun, 19 Aug 2001 23:47:56 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K6lu070476; Sun, 19 Aug 2001 23:47:56 -0700 (PDT) (envelope-from kris) Message-Id: <200108200647.f7K6lu070476@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 19 Aug 2001 23:47:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/biology/nab pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/19 23:47:56 PDT Modified files: biology/nab pkg-plist Log: Remove a patch turd from the pkg-plist Revision Changes Path 1.3 +0 -1 ports/biology/nab/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 Aug 19 23:51:59 2001 Delivered-To: cvs-all@freebsd.org Received: from zibbi.icomtek.csir.co.za (zibbi.icomtek.csir.co.za [146.64.24.58]) by hub.freebsd.org (Postfix) with ESMTP id EC8FA37B40C; Sun, 19 Aug 2001 23:51:44 -0700 (PDT) (envelope-from jhay@zibbi.icomtek.csir.co.za) Received: (from jhay@localhost) by zibbi.icomtek.csir.co.za (8.11.1/8.11.1) id f7K6pa656305; Mon, 20 Aug 2001 08:51:36 +0200 (SAT) (envelope-from jhay) From: John Hay Message-Id: <200108200651.f7K6pa656305@zibbi.icomtek.csir.co.za> Subject: Re: cvs commit: src/usr.sbin/pccard/pccardd cardd.c In-Reply-To: <200108191916.f7JJGQm34504@freefall.freebsd.org> from Warner Losh at "Aug 19, 2001 12:16:26 pm" To: imp@FreeBSD.org (Warner Losh) Date: Mon, 20 Aug 2001 08:51:36 +0200 (SAT) 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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi Warner, I patched my -stable notebook, with the non-pci pccard slots, with this and pccardd is using the irq values in pccard.conf again. Thanks! John -- John Hay -- John.Hay@icomtek.csir.co.za > imp 2001/08/19 12:16:26 PDT > > Modified files: > usr.sbin/pccard/pccardd cardd.c > Log: > Fix ISA machines. Also, make it possible for the new pccardd to run > on older kernels correctly. Terminate the loop when we find a > suitable irq. Also, only try to select from the pool. Cleaned up the > two cases (IRQ picked by the user and ?) into one. > > MFC upon re approval. > > Revision Changes Path > 1.72 +62 -41 src/usr.sbin/pccard/pccardd/cardd.c > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 0: 9:23 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5843637B413; Mon, 20 Aug 2001 00:09:20 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K79Kn76071; Mon, 20 Aug 2001 00:09:20 -0700 (PDT) (envelope-from kris) Message-Id: <200108200709.f7K79Kn76071@freefall.freebsd.org> From: Kris Kennaway Date: Mon, 20 Aug 2001 00:09:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/lclint distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/20 00:09:20 PDT Modified files: devel/lclint distinfo Log: Chase the checksum; some Microsoft build files changed. Revision Changes Path 1.7 +1 -1 ports/devel/lclint/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 0:10:16 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 152E137B415; Mon, 20 Aug 2001 00:10:10 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K7AAO76241; Mon, 20 Aug 2001 00:10:10 -0700 (PDT) (envelope-from ru) Message-Id: <200108200710.f7K7AAO76241@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 20 Aug 2001 00:10:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/sysinstall config.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2001/08/20 00:10:10 PDT Modified files: (Branch: RELENG_4) release/sysinstall config.c Log: MFC: 1.192: Removed the (possible) ambiguity in /etc/rc.conf comment. Approved by: re Revision Changes Path 1.156.2.21 +3 -3 src/release/sysinstall/Attic/config.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 0:11:47 2001 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 412A637B411; Mon, 20 Aug 2001 00:11:41 -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.11.3/8.11.3) with ESMTP id f7K7Bdq33252; Mon, 20 Aug 2001 01:11:40 -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.11.3/8.11.4) with ESMTP id f7K7BdW19068; Mon, 20 Aug 2001 01:11:39 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200108200711.f7K7BdW19068@harmony.village.org> To: John Hay Subject: Re: cvs commit: src/usr.sbin/pccard/pccardd cardd.c Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Sat, 20 Aug 2001 08:51:36 +0200." <200108200651.f7K6pa656305@zibbi.icomtek.csir.co.za> References: <200108200651.f7K6pa656305@zibbi.icomtek.csir.co.za> Date: Mon, 20 Aug 2001 01:11:39 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <200108200651.f7K6pa656305@zibbi.icomtek.csir.co.za> John Hay writes: : I patched my -stable notebook, with the non-pci pccard slots, with this and : pccardd is using the irq values in pccard.conf again. Thanks! Yea! Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 0:40:29 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F2BD437B415; Mon, 20 Aug 2001 00:40:23 -0700 (PDT) (envelope-from jasone@FreeBSD.org) Received: (from jasone@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K7eNh79706; Mon, 20 Aug 2001 00:40:23 -0700 (PDT) (envelope-from jasone) Message-Id: <200108200740.f7K7eNh79706@freefall.freebsd.org> From: Jason Evans Date: Mon, 20 Aug 2001 00:40:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/zile Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jasone 2001/08/20 00:40:23 PDT Modified files: editors/zile Makefile distinfo Log: Update to version 1.6.1. Revision Changes Path 1.10 +2 -2 ports/editors/zile/Makefile 1.10 +1 -1 ports/editors/zile/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 0:55:12 2001 Delivered-To: cvs-all@freebsd.org Received: from peter3.wemm.org (c1315225-a.plstn1.sfba.home.com [24.14.150.180]) by hub.freebsd.org (Postfix) with ESMTP id 0AA5B37B413; Mon, 20 Aug 2001 00:55:06 -0700 (PDT) (envelope-from peter@wemm.org) Received: from overcee.netplex.com.au (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id f7K7t5M67619; Mon, 20 Aug 2001 00:55:05 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id D5E6C3811; Mon, 20 Aug 2001 00:55:05 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 To: Matt Dillon Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/common loader.8 src/sys/conf options src/sys/i386/i386 machdep.c src/sys/i386/include param.h src/sys/kern subr_param.c src/sys/sys buf.h src/sys/vm swap_pager.c In-Reply-To: <200108200041.f7K0fD807805@freefall.freebsd.org> Date: Mon, 20 Aug 2001 00:55:05 -0700 From: Peter Wemm Message-Id: <20010820075505.D5E6C3811@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Matt Dillon wrote: > dillon 2001/08/19 17:41:13 PDT > > Modified files: > sys/boot/common loader.8 > sys/conf options > sys/i386/i386 machdep.c > sys/i386/include param.h > sys/kern subr_param.c > sys/sys buf.h > sys/vm swap_pager.c > Log: > Limit the amount of KVM reserved for the buffer cache and for swap-meta > information. The default limits only effect machines with > 1GB of ram > and can be overriden with two new kernel conf variables VM_SWZONE_SIZE_MAX > and VM_BCACHE_SIZE_MAX, or with loader variables kern.maxswzone and > kern.maxbcache. This has the effect of leaving more KVM available for > sizing NMBCLUSTERS and 'maxusers' and should avoid tripups where a sysad > adds memory to a machine and then sees the kernel panic on boot due to > running out of KVM. And how about the rest of the platforms? You have broken them by putting references to a MD include (sys/i386/include/param.h) into a MI file (subr_param.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 Mon Aug 20 1:13:36 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E7A137B410; Mon, 20 Aug 2001 01:13:33 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K8DXO89891; Mon, 20 Aug 2001 01:13:33 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108200813.f7K8DXO89891@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 20 Aug 2001 01:13:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/archivers/cabextract Makefile distinfo ports/archivers/cabextract/files patch-Makefile.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/20 01:13:32 PDT Modified files: archivers/cabextract Makefile distinfo archivers/cabextract/files patch-Makefile.in Log: Update to 0.4. Revision Changes Path 1.4 +1 -1 ports/archivers/cabextract/Makefile 1.4 +1 -1 ports/archivers/cabextract/distinfo 1.2 +4 -15 ports/archivers/cabextract/files/patch-Makefile.in To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 1:23:21 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DAB7837B414; Mon, 20 Aug 2001 01:23:15 -0700 (PDT) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K8NCj90948; Mon, 20 Aug 2001 01:23:12 -0700 (PDT) (envelope-from joe) Message-Id: <200108200823.f7K8NCj90948@freefall.freebsd.org> From: Josef Karthauser Date: Mon, 20 Aug 2001 01:23:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/p5-Gimp Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joe 2001/08/20 01:23:12 PDT Modified files: graphics/p5-Gimp Makefile Log: Depend upon the new gimp library. Approved by: vanilla Revision Changes Path 1.2 +3 -2 ports/graphics/p5-Gimp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 1:28:23 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5D2D537B410; Mon, 20 Aug 2001 01:28:18 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K8SIa91702; Mon, 20 Aug 2001 01:28:18 -0700 (PDT) (envelope-from ru) Message-Id: <200108200828.f7K8SIa91702@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 20 Aug 2001 01:28:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 unix.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2001/08/20 01:28:18 PDT Modified files: share/man/man4 unix.4 Log: mdoc(7) police: fixed markup, removed the extra word. Revision Changes Path 1.6 +17 -17 src/share/man/man4/unix.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 1:29:10 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B62DA37B407; Mon, 20 Aug 2001 01:29:04 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K8T4d91847; Mon, 20 Aug 2001 01:29:04 -0700 (PDT) (envelope-from ru) Message-Id: <200108200829.f7K8T4d91847@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 20 Aug 2001 01:29:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 unix.4 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2001/08/20 01:29:04 PDT Modified files: (Branch: RELENG_4) share/man/man4 unix.4 Log: MFC: fixed markup. Approved by: re Revision Changes Path 1.3.2.2 +14 -14 src/share/man/man4/unix.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 1:30: 1 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B938D37B407; Mon, 20 Aug 2001 01:29:55 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K8Tt291948; Mon, 20 Aug 2001 01:29:55 -0700 (PDT) (envelope-from ru) Message-Id: <200108200829.f7K8Tt291948@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 20 Aug 2001 01:29:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/elf2exe elf2exe.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2001/08/20 01:29:55 PDT Modified files: usr.sbin/elf2exe elf2exe.8 Log: mdoc(7) police: simplify literal display block. Revision Changes Path 1.9 +5 -3 src/usr.sbin/elf2exe/elf2exe.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 1:31:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5BEAC37B407; Mon, 20 Aug 2001 01:31:13 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K8VDw92145; Mon, 20 Aug 2001 01:31:13 -0700 (PDT) (envelope-from ru) Message-Id: <200108200831.f7K8VDw92145@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 20 Aug 2001 01:31:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/elf2exe elf2exe.8 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2001/08/20 01:31:13 PDT Modified files: (Branch: RELENG_4) usr.sbin/elf2exe elf2exe.8 Log: MFC: simplify formatting. Approved by: re Revision Changes Path 1.3.2.6 +5 -3 src/usr.sbin/elf2exe/elf2exe.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 1:42: 4 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ED65C37B41B; Mon, 20 Aug 2001 01:42:01 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K8g1i93370; Mon, 20 Aug 2001 01:42:01 -0700 (PDT) (envelope-from peter) Message-Id: <200108200842.f7K8g1i93370@freefall.freebsd.org> From: Peter Wemm Date: Mon, 20 Aug 2001 01:42:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/cvs/src client.c X-FreeBSD-CVS-Branch: CVSHOME Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/20 01:42:00 PDT Modified files: (Branch: CVSHOME) contrib/cvs/src client.c Log: Fix the HAVE_KERBEROS case. It seems somebody got carried away with cut/paste in the last release. Submitted by: Makoto MATSUSHITA Obtained from: http://ccvs.cvshome.org/source/browse/ccvs/src/client.c.diff?r1=1.302&r2=1.303 Revision Changes Path 1.1.1.11 +2 -2 src/contrib/cvs/src/client.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 1:42:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9542437B41B; Mon, 20 Aug 2001 01:42:40 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K8geX93513; Mon, 20 Aug 2001 01:42:40 -0700 (PDT) (envelope-from brian) Message-Id: <200108200842.f7K8geX93513@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 01:42:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/postilion Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 01:42:40 PDT Modified files: mail/postilion Makefile Log: fetch's -b option has been depricated. Revision Changes Path 1.13 +1 -2 ports/mail/postilion/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 1:47:29 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 61CCC37B419; Mon, 20 Aug 2001 01:47:22 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K8lMP94011; Mon, 20 Aug 2001 01:47:22 -0700 (PDT) (envelope-from peter) Message-Id: <200108200847.f7K8lMP94011@freefall.freebsd.org> From: Peter Wemm Date: Mon, 20 Aug 2001 01:47:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/cvs/src client.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/20 01:47:22 PDT Modified files: contrib/cvs/src client.c Log: Merge vendor branch onto mainline (try to fix HAVE_KERBEROS) Revision Changes Path 1.6 +3 -3 src/contrib/cvs/src/client.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 1:52:57 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8960F37B40C; Mon, 20 Aug 2001 01:52:52 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K8qqR94754; Mon, 20 Aug 2001 01:52:52 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108200852.f7K8qqR94754@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 20 Aug 2001 01:52:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/galeon Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/20 01:52:52 PDT Modified files: www/galeon Makefile distinfo pkg-plist Log: Update to 0.12. Revision Changes Path 1.40 +1 -1 ports/www/galeon/Makefile 1.23 +1 -1 ports/www/galeon/distinfo 1.20 +217 -9 ports/www/galeon/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 Aug 20 1:55:16 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E7E4437B403; Mon, 20 Aug 2001 01:55:07 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K8t7Z94975; Mon, 20 Aug 2001 01:55:07 -0700 (PDT) (envelope-from ru) Message-Id: <200108200855.f7K8t7Z94975@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 20 Aug 2001 01:55:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/common loader.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2001/08/20 01:55:07 PDT Modified files: sys/boot/common loader.8 Log: mdoc(7) police: markup nits. Revision Changes Path 1.32 +18 -10 src/sys/boot/common/loader.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 1:55:32 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B25037B408; Mon, 20 Aug 2001 01:55:26 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K8tQQ95037; Mon, 20 Aug 2001 01:55:26 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108200855.f7K8tQQ95037@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 20 Aug 2001 01:55:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/libgda Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/20 01:55:26 PDT Modified files: databases/libgda Makefile distinfo Log: Another checksum update w/o version bump - as it was correctly predicted in my previous update the GNOME folks rerolled distfile once more because previous one was lacking some files necessary for configure script to work properly. Revision Changes Path 1.9 +1 -23 ports/databases/libgda/Makefile 1.6 +1 -1 ports/databases/libgda/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 1:56:47 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4DC9E37B413; Mon, 20 Aug 2001 01:56:40 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K8uRl95148; Mon, 20 Aug 2001 01:56:27 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108200856.f7K8uRl95148@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 20 Aug 2001 01:56:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/libgda/files patch-ltmain.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/20 01:56:27 PDT Added files: databases/libgda/files patch-ltmain.sh Log: Forgot to `cvs add' this file. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 1:57:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 645F637B418; Mon, 20 Aug 2001 01:57:08 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K8v8S95215; Mon, 20 Aug 2001 01:57:08 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108200857.f7K8v8S95215@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 20 Aug 2001 01:57:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/gnomedb Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/20 01:57:08 PDT Modified files: databases/gnomedb Makefile Log: Chase checksum update and bump PORTREVISION. Revision Changes Path 1.7 +1 -1 ports/databases/gnomedb/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 1:59:12 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A0BAC37B401; Mon, 20 Aug 2001 01:59:07 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K8x7a95446; Mon, 20 Aug 2001 01:59:07 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108200859.f7K8x7a95446@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 20 Aug 2001 01:59:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/gnomedb Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/20 01:59:07 PDT Modified files: databases/gnomedb Makefile Log: OOPS, I donno what I was smoking - there was no checksum update, so revert PORTREVISION bump. Revision Changes Path 1.8 +1 -1 ports/databases/gnomedb/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 2: 4:51 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C40137B412; Mon, 20 Aug 2001 02:04:48 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K94ms96244; Mon, 20 Aug 2001 02:04:48 -0700 (PDT) (envelope-from brian) Message-Id: <200108200904.f7K94ms96244@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 02:04:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/dnews Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 02:04:48 PDT Modified files: news/dnews Makefile Log: It's no longer necessary to use ``ftp'' to fetch this Revision Changes Path 1.21 +1 -6 ports/news/dnews/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 2:20:55 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DC8F237B40F; Mon, 20 Aug 2001 02:20:50 -0700 (PDT) (envelope-from clive@FreeBSD.org) Received: (from clive@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K9Kod01359; Mon, 20 Aug 2001 02:20:50 -0700 (PDT) (envelope-from clive) Message-Id: <200108200920.f7K9Kod01359@freefall.freebsd.org> From: Clive Lin Date: Mon, 20 Aug 2001 02:20:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/jlint Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG clive 2001/08/20 02:20:50 PDT Modified files: java/jlint Makefile distinfo Log: Upgrade to 2.3 PR: ports/29890 Submitted by: ernst@jollem.com (MAINTAINER) Revision Changes Path 1.3 +2 -4 ports/java/jlint/Makefile 1.3 +1 -1 ports/java/jlint/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 2:27:47 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B58A37B417; Mon, 20 Aug 2001 02:27:43 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K9Rh702587; Mon, 20 Aug 2001 02:27:43 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108200927.f7K9Rh702587@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 20 Aug 2001 02:27:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/astro/openuniverse Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/20 02:27:43 PDT Modified files: astro/openuniverse Makefile Log: (whitespace) Use single-tab to separate variables from values instead of double-tabs. Revision Changes Path 1.21 +9 -9 ports/astro/openuniverse/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 2:43: 7 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C72C337B410; Mon, 20 Aug 2001 02:43:04 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7K9h4S04608; Mon, 20 Aug 2001 02:43:04 -0700 (PDT) (envelope-from kris) Message-Id: <200108200943.f7K9h4S04608@freefall.freebsd.org> From: Kris Kennaway Date: Mon, 20 Aug 2001 02:43:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/rpcgen rpc_main.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/20 02:43:04 PDT Modified files: usr.bin/rpcgen rpc_main.c Log: Don't overflow a buffer from command line arguments. MFC after: 2 weeks Revision Changes Path 1.16 +7 -3 src/usr.bin/rpcgen/rpc_main.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 3: 6: 0 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BEBED37B40B; Mon, 20 Aug 2001 03:05:55 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KA5i109692; Mon, 20 Aug 2001 03:05:44 -0700 (PDT) (envelope-from kris) Message-Id: <200108201005.f7KA5i109692@freefall.freebsd.org> From: Kris Kennaway Date: Mon, 20 Aug 2001 03:05:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/postfix/scripts configure.postfix X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/20 03:05:43 PDT Modified files: mail/postfix/scripts configure.postfix Log: Correct the size of the dialog box so dialog(1) doesn't bug out and trash the unused lower half Submitted by: eric Revision Changes Path 1.11 +2 -2 ports/mail/postfix/scripts/configure.postfix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 3:25:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 78CBB37B411; Mon, 20 Aug 2001 03:25:23 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KAPNh11820; Mon, 20 Aug 2001 03:25:23 -0700 (PDT) (envelope-from brian) Message-Id: <200108201025.f7KAPNh11820@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 03:25:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp sig.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 03:25:23 PDT Modified files: usr.sbin/ppp sig.c Log: Add some comments to explain what's going on here Revision Changes Path 1.16 +22 -10 src/usr.sbin/ppp/sig.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 3:26: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 78E3637B414; Mon, 20 Aug 2001 03:25:58 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KAPws12094; Mon, 20 Aug 2001 03:25:58 -0700 (PDT) (envelope-from brian) Message-Id: <200108201025.f7KAPws12094@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 03:25:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp sig.c X-FreeBSD-CVS-Branch: NETGRAPH Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 03:25:58 PDT Modified files: (Branch: NETGRAPH) usr.sbin/ppp sig.c Log: MFC: Add some comments to explain what's going on here Revision Changes Path 1.15.4.1 +22 -10 src/usr.sbin/ppp/sig.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 3:28:28 2001 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 5BD1537B41C; Mon, 20 Aug 2001 03:28:19 -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.9.3/8.8.7) with ESMTP id UAA12811; Mon, 20 Aug 2001 20:28:08 +1000 Date: Mon, 20 Aug 2001 20:27:30 +1000 (EST) From: Bruce Evans X-X-Sender: To: Peter Wemm Cc: Matt Dillon , , Subject: Re: cvs commit: src/sys/boot/common loader.8 src/sys/conf options src/sys/i386/i386 machdep.c src/sys/i386/include param.h src/sys/kern subr_param.c src/sys/sys buf.h src/sys/vm swap_pager.c In-Reply-To: <20010820075505.D5E6C3811@overcee.netplex.com.au> Message-ID: <20010820194057.Y54152-100000@besplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 20 Aug 2001, Peter Wemm wrote: > Matt Dillon wrote: > > dillon 2001/08/19 17:41:13 PDT > > > > Modified files: > > sys/boot/common loader.8 > > sys/conf options > > sys/i386/i386 machdep.c > > sys/i386/include param.h > > sys/kern subr_param.c > > sys/sys buf.h > > sys/vm swap_pager.c > > Log: > > Limit the amount of KVM reserved for the buffer cache and for swap-meta > > information. The default limits only effect machines with > 1GB of ram > > and can be overriden with two new kernel conf variables VM_SWZONE_SIZE_MAX > > and VM_BCACHE_SIZE_MAX, or with loader variables kern.maxswzone and > > kern.maxbcache. This has the effect of leaving more KVM available for > > sizing NMBCLUSTERS and 'maxusers' and should avoid tripups where a sysad > > adds memory to a machine and then sees the kernel panic on boot due to > > running out of KVM. > > And how about the rest of the platforms? You have broken them by putting > references to a MD include (sys/i386/include/param.h) into a MI file > (subr_param.c). Actually, by not updating all copies of this MD include to define suitable MD constants for VM_BCACHE_SIZE_MAX and VM_SWZONE_SIZE_MAX. These constants need to be MD since the amount of KVM is MD. Except these constants shouldn't exist. Just use a suitable fraction of total KVM. Alternatively, set these constants to "infinity" by default and override them on i386's only. 64-bit machines should have enough KVM to map the buffer cache millions of times. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 3:29:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AD42C37B419; Mon, 20 Aug 2001 03:29:38 -0700 (PDT) (envelope-from clive@FreeBSD.org) Received: (from clive@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KATc616752; Mon, 20 Aug 2001 03:29:38 -0700 (PDT) (envelope-from clive) Message-Id: <200108201029.f7KATc616752@freefall.freebsd.org> From: Clive Lin Date: Mon, 20 Aug 2001 03:29:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/apache13-fp Makefile distinfo pkg-plist ports/www/apache13-fp/files patch-fj patch-lang.en patch-at X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG clive 2001/08/20 03:29:38 PDT Modified files: www/apache13-fp Makefile distinfo pkg-plist www/apache13-fp/files patch-fj patch-lang.en Removed files: www/apache13-fp/files patch-at Log: Upgrade the apache13-fp to Apache 1.3.20. PR: ports/29379 Submitted by: Scot W. Hetzel (MAINTAINER) Revision Changes Path 1.27 +6 -5 ports/www/apache13-fp/Makefile 1.15 +1 -1 ports/www/apache13-fp/distinfo 1.17 +27 -8 ports/www/apache13-fp/pkg-plist 1.5 +0 -46 ports/www/apache13-fp/files/patch-fj 1.4 +22 -17 ports/www/apache13-fp/files/patch-lang.en To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 3:33:26 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5715537B418; Mon, 20 Aug 2001 03:33:21 -0700 (PDT) (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KAXLk17428; Mon, 20 Aug 2001 03:33:21 -0700 (PDT) (envelope-from demon) Message-Id: <200108201033.f7KAXLk17428@freefall.freebsd.org> From: Dmitry Sivachenko Date: Mon, 20 Aug 2001 03:33:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/kdeadmin Makefile ports/sysutils/kdeadmin/files patch-kcron-Makefile.in patch-ksysctrl-Makefile.in patch-rpmMessages.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2001/08/20 03:33:21 PDT Modified files: sysutils/kdeadmin Makefile Removed files: sysutils/kdeadmin/files patch-kcron-Makefile.in patch-ksysctrl-Makefile.in patch-rpmMessages.c Log: Finish upgrading to version 2.2. Revision Changes Path 1.5 +3 -1 ports/sysutils/kdeadmin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 4: 5:38 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5F7C637B40D; Mon, 20 Aug 2001 04:05:33 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KB5Xd30108; Mon, 20 Aug 2001 04:05:33 -0700 (PDT) (envelope-from brian) Message-Id: <200108201105.f7KB5Xd30108@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 04:05:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp iface.c X-FreeBSD-CVS-Branch: NETGRAPH Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 04:05:33 PDT Modified files: (Branch: NETGRAPH) usr.sbin/ppp iface.c Log: Properly change old interface addresses so that their destination is 255.255.255.255 if our new destination address conflicts. Revision Changes Path 1.15.2.10 +3 -2 src/usr.sbin/ppp/iface.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 4: 6:26 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A937237B414; Mon, 20 Aug 2001 04:06:21 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KB6Lv30328; Mon, 20 Aug 2001 04:06:21 -0700 (PDT) (envelope-from brian) Message-Id: <200108201106.f7KB6Lv30328@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 04:06:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp iface.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 04:06:21 PDT Modified files: usr.sbin/ppp iface.c Log: Properly change old interface addresses so that their destination is 255.255.255.255 if our new destination address conflicts. Revision Changes Path 1.25 +3 -2 src/usr.sbin/ppp/iface.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 4:12:51 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A3DC37B40C; Mon, 20 Aug 2001 04:12:44 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KBCiR31373; Mon, 20 Aug 2001 04:12:44 -0700 (PDT) (envelope-from trevor) Message-Id: <200108201112.f7KBCiR31373@freefall.freebsd.org> From: Trevor Johnson Date: Mon, 20 Aug 2001 04:12:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/biology/xdrawchem Makefile distinfo pkg-descr ports/biology/xdrawchem/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trevor 2001/08/20 04:12:44 PDT Modified files: biology/xdrawchem Makefile distinfo pkg-descr biology/xdrawchem/files patch-aa Log: Update to 0.95. Compile molecule_tools.cpp with -O0 on all architectures, not just the Alpha, to avoid g++ pessimization. Submitted by: Matthew Emmerton Revision Changes Path 1.12 +7 -9 ports/biology/xdrawchem/Makefile 1.7 +1 -1 ports/biology/xdrawchem/distinfo 1.2 +7 -7 ports/biology/xdrawchem/pkg-descr 1.5 +16 -11 ports/biology/xdrawchem/files/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 4:25: 0 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 073D437B40F; Mon, 20 Aug 2001 04:24:54 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KBO5032878; Mon, 20 Aug 2001 04:24:05 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108201124.f7KBO5032878@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 20 Aug 2001 04:24:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/dia Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/20 04:24:05 PDT Modified files: graphics/dia Makefile Log: Allow MAINTAINER to be overriden in slave ports. Revision Changes Path 1.16 +2 -2 ports/graphics/dia/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 4:25:42 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6747137B417; Mon, 20 Aug 2001 04:25:35 -0700 (PDT) (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KBPAW33028; Mon, 20 Aug 2001 04:25:10 -0700 (PDT) (envelope-from demon) Message-Id: <200108201125.f7KBPAW33028@freefall.freebsd.org> From: Dmitry Sivachenko Date: Mon, 20 Aug 2001 04:25:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/kde2-i18n Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2001/08/20 04:25:10 PDT Modified files: chinese/kde2-i18n Makefile Log: Remove directory missing in version 2.2 Revision Changes Path 1.4 +2 -2 ports/chinese/kde2-i18n/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 4:46:41 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EE3BE37B40B; Mon, 20 Aug 2001 04:46:34 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KBkYL35861; Mon, 20 Aug 2001 04:46:34 -0700 (PDT) (envelope-from brian) Message-Id: <200108201146.f7KBkYL35861@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 04:46:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/isc-dhcp3 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 04:46:34 PDT Modified files: net/isc-dhcp3 Makefile Log: Remove FETCH_BEFORE_ARGS. Approved by: James E. Housley Revision Changes Path 1.70 +1 -3 ports/net/isc-dhcp3/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 4:58:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B6B7A37B419; Mon, 20 Aug 2001 04:58:06 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KBw6a37114; Mon, 20 Aug 2001 04:58:06 -0700 (PDT) (envelope-from brian) Message-Id: <200108201158.f7KBw6a37114@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 04:58:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/netstat atalk.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 04:58:05 PDT Modified files: usr.bin/netstat atalk.c Log: Don't misuse the return from snprintf. MFC after: 2 weeks Revision Changes Path 1.21 +8 -6 src/usr.bin/netstat/atalk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 4:59:25 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 18D0337B412; Mon, 20 Aug 2001 04:59:18 -0700 (PDT) (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KBxIW37287; Mon, 20 Aug 2001 04:59:18 -0700 (PDT) (envelope-from olgeni) Message-Id: <200108201159.f7KBxIW37287@freefall.freebsd.org> From: Jimmy Olgeni Date: Mon, 20 Aug 2001 04:59:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/kdebase2 pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG olgeni 2001/08/20 04:59:18 PDT Modified files: x11/kdebase2 pkg-plist Log: Add @exec/@unexec lines to pkg-plist, to handle the "emptydir" template. Being an empty directory, it is not automatically included in the binary package. Revision Changes Path 1.37 +3 -0 ports/x11/kdebase2/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 Aug 20 5: 4:59 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E7F6337B419; Mon, 20 Aug 2001 05:04:53 -0700 (PDT) (envelope-from markm@FreeBSD.org) Received: (from markm@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KC4ro37901; Mon, 20 Aug 2001 05:04:53 -0700 (PDT) (envelope-from markm) Message-Id: <200108201204.f7KC4ro37901@freefall.freebsd.org> From: Mark Murray Date: Mon, 20 Aug 2001 05:04:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libtelnet Makefile genget.c getent.c misc-proto.h misc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2001/08/20 05:04:53 PDT Modified files: lib/libtelnet Makefile genget.c getent.c misc-proto.h misc.c Log: No functional changes, but: o unifdef AUTHENTICATE. We have never compiled this code, and its doubtful it will even work in this case. o Style changes (some ansification, some comment updating) o Diff reduction and code style merging with crypto telnet. Revision Changes Path 1.12 +7 -7 src/lib/libtelnet/Makefile 1.3 +24 -24 src/lib/libtelnet/genget.c 1.4 +9 -4 src/lib/libtelnet/getent.c 1.2 +2 -0 src/lib/libtelnet/misc-proto.h 1.4 +6 -4 src/lib/libtelnet/misc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 5: 6:47 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9907637B413; Mon, 20 Aug 2001 05:06:42 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KC6gk41211; Mon, 20 Aug 2001 05:06:42 -0700 (PDT) (envelope-from brian) Message-Id: <200108201206.f7KC6gk41211@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 05:06:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libalias alias_irc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 05:06:42 PDT Modified files: lib/libalias alias_irc.c Log: Handle snprintf() returning -1 MFC after: 2 weeks Revision Changes Path 1.8 +14 -4 src/lib/libalias/alias_irc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 5:12:31 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A48637B417; Mon, 20 Aug 2001 05:12:28 -0700 (PDT) (envelope-from markm@FreeBSD.org) Received: (from markm@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCCS041943; Mon, 20 Aug 2001 05:12:28 -0700 (PDT) (envelope-from markm) Message-Id: <200108201212.f7KCCS041943@freefall.freebsd.org> From: Mark Murray Date: Mon, 20 Aug 2001 05:12:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/telnetd Makefile ext.h global.c slc.c state.c sys_term.c telnetd.8 telnetd.c termstat.c utility.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2001/08/20 05:12:27 PDT Modified files: libexec/telnetd Makefile ext.h global.c slc.c state.c sys_term.c telnetd.8 telnetd.c termstat.c utility.c Log: Feature merging and diff reduction between this code and crypto telnet. Also remove conditional (AUTHENTICATION) code as we have never compiled it here, and it is doubtful that it even works in this scenario. Revision Changes Path 1.17 +15 -13 src/libexec/telnetd/Makefile 1.11 +6 -11 src/libexec/telnetd/ext.h 1.4 +1 -1 src/libexec/telnetd/global.c 1.12 +2 -2 src/libexec/telnetd/slc.c 1.15 +4 -55 src/libexec/telnetd/state.c 1.32 +170 -174 src/libexec/telnetd/sys_term.c 1.25 +15 -4 src/libexec/telnetd/telnetd.8 1.30 +37 -86 src/libexec/telnetd/telnetd.c 1.13 +28 -29 src/libexec/telnetd/termstat.c 1.17 +9 -80 src/libexec/telnetd/utility.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 5:20: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 54F5C37B405; Mon, 20 Aug 2001 05:20:01 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCJLY42619; Mon, 20 Aug 2001 05:19:21 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108201219.f7KCJLY42619@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 20 Aug 2001 05:19:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/astro/wmglobe Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/20 05:19:21 PDT Modified files: astro/wmglobe Makefile distinfo Log: Update to 1.3. Revision Changes Path 1.11 +2 -2 ports/astro/wmglobe/Makefile 1.2 +1 -1 ports/astro/wmglobe/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 5:21:48 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9B3B137B410; Mon, 20 Aug 2001 05:21:38 -0700 (PDT) (envelope-from markm@FreeBSD.org) Received: (from markm@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCLVA43012; Mon, 20 Aug 2001 05:21:31 -0700 (PDT) (envelope-from markm) Message-Id: <200108201221.f7KCLVA43012@freefall.freebsd.org> From: Mark Murray Date: Mon, 20 Aug 2001 05:21:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/telnet Makefile commands.c externs.h main.c network.c ring.c ring.h sys_bsd.c telnet.1 telnet.c terminal.c tn3270.c utilities.c authenc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2001/08/20 05:21:31 PDT Modified files: usr.bin/telnet Makefile commands.c externs.h main.c network.c ring.c ring.h sys_bsd.c telnet.1 telnet.c terminal.c tn3270.c utilities.c Removed files: usr.bin/telnet authenc.c Log: Code merge and diff reduction between this and crypto telnet. Also remove useless AUTHENTICATION code. We have never compiled this here, and it is doubtful that it even works without crypto. Revision Changes Path 1.19 +17 -62 src/usr.bin/telnet/Makefile 1.30 +72 -170 src/usr.bin/telnet/commands.c 1.7 +15 -6 src/usr.bin/telnet/externs.h 1.14 +20 -58 src/usr.bin/telnet/main.c 1.3 +7 -1 src/usr.bin/telnet/network.c 1.4 +10 -4 src/usr.bin/telnet/ring.c 1.3 +3 -2 src/usr.bin/telnet/ring.h 1.6 +72 -19 src/usr.bin/telnet/sys_bsd.c 1.26 +9 -7 src/usr.bin/telnet/telnet.1 1.11 +16 -70 src/usr.bin/telnet/telnet.c 1.4 +6 -1 src/usr.bin/telnet/terminal.c 1.2 +7 -2 src/usr.bin/telnet/tn3270.c 1.4 +8 -70 src/usr.bin/telnet/utilities.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 5:26:17 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 31B0637B405; Mon, 20 Aug 2001 05:26:13 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCPgO43526; Mon, 20 Aug 2001 05:25:42 -0700 (PDT) (envelope-from trevor) Message-Id: <200108201225.f7KCPgO43526@freefall.freebsd.org> From: Trevor Johnson Date: Mon, 20 Aug 2001 05:25:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/surfraw Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trevor 2001/08/20 05:25:42 PDT Modified files: www/surfraw Makefile Log: Bump PORTVERSION. This was forgotten somehow in the last update. Submitted by: Mike Heffner Approved by: maintainer Revision Changes Path 1.4 +2 -2 ports/www/surfraw/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 5:26:31 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6EC0737B40B; Mon, 20 Aug 2001 05:26:25 -0700 (PDT) (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCQ5c43609; Mon, 20 Aug 2001 05:26:05 -0700 (PDT) (envelope-from olgeni) Message-Id: <200108201226.f7KCQ5c43609@freefall.freebsd.org> From: Jimmy Olgeni Date: Mon, 20 Aug 2001 05:26:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/koffice Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG olgeni 2001/08/20 05:26:05 PDT Modified files: editors/koffice Makefile Log: Fix MASTER_SITE_SUBDIR. It needs the same replacement as DISTNAME: .rc1 -> -rc1. (breakage from 1.24) Revision Changes Path 1.26 +2 -2 ports/editors/koffice/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 5:30: 9 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A017937B411; Mon, 20 Aug 2001 05:30:00 -0700 (PDT) (envelope-from markm@FreeBSD.org) Received: (from markm@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCSfV43977; Mon, 20 Aug 2001 05:28:41 -0700 (PDT) (envelope-from markm) Message-Id: <200108201228.f7KCSfV43977@freefall.freebsd.org> From: Mark Murray Date: Mon, 20 Aug 2001 05:28:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/telnet/libtelnet auth.h enc_des.c genget.c getent.c kerberos5.c misc-proto.h misc.c pk.c sra.c src/crypto/telnet/telnet commands.c main.c ring.c ring.h sys_bsd.c telnet.1 telnet.c utilities.c src/crypto/telnet/telnetd ext.h ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2001/08/20 05:28:41 PDT Modified files: crypto/telnet/libtelnet auth.h enc_des.c genget.c getent.c kerberos5.c misc-proto.h misc.c pk.c sra.c crypto/telnet/telnet commands.c main.c ring.c ring.h sys_bsd.c telnet.1 telnet.c utilities.c crypto/telnet/telnetd ext.h pathnames.h state.c sys_term.c telnetd.8 telnetd.c termstat.c utility.c Log: Code merge and diff reduce with "base" telnet. This is the "later" telnet, so it was treated as the reference code, except where later commits were made to "base" telnet. Revision Changes Path 1.2 +2 -1 src/crypto/telnet/libtelnet/auth.h 1.5 +3 -2 src/crypto/telnet/libtelnet/enc_des.c 1.5 +11 -16 src/crypto/telnet/libtelnet/genget.c 1.5 +8 -5 src/crypto/telnet/libtelnet/getent.c 1.2 +9 -10 src/crypto/telnet/libtelnet/kerberos5.c 1.2 +2 -0 src/crypto/telnet/libtelnet/misc-proto.h 1.5 +5 -1 src/crypto/telnet/libtelnet/misc.c 1.6 +24 -58 src/crypto/telnet/libtelnet/pk.c 1.10 +33 -53 src/crypto/telnet/libtelnet/sra.c 1.20 +22 -25 src/crypto/telnet/telnet/commands.c 1.13 +29 -9 src/crypto/telnet/telnet/main.c 1.5 +7 -7 src/crypto/telnet/telnet/ring.c 1.2 +3 -2 src/crypto/telnet/telnet/ring.h 1.6 +4 -4 src/crypto/telnet/telnet/sys_bsd.c 1.16 +51 -52 src/crypto/telnet/telnet/telnet.1 1.10 +7 -7 src/crypto/telnet/telnet/telnet.c 1.5 +2 -3 src/crypto/telnet/telnet/utilities.c 1.8 +2 -2 src/crypto/telnet/telnetd/ext.h 1.3 +1 -1 src/crypto/telnet/telnetd/pathnames.h 1.10 +6 -1 src/crypto/telnet/telnetd/state.c 1.11 +16 -18 src/crypto/telnet/telnetd/sys_term.c 1.13 +33 -7 src/crypto/telnet/telnetd/telnetd.8 1.18 +6 -5 src/crypto/telnet/telnetd/telnetd.c 1.9 +18 -18 src/crypto/telnet/telnetd/termstat.c 1.11 +2 -6 src/crypto/telnet/telnetd/utility.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 5:32:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E70837B415; Mon, 20 Aug 2001 05:32:38 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCVEN44292; Mon, 20 Aug 2001 05:31:14 -0700 (PDT) (envelope-from brian) Message-Id: <200108201231.f7KCVEN44292@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 05:31:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/rpc clnt_perror.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 05:31:14 PDT Modified files: lib/libc/rpc clnt_perror.c Log: Handle snrintf() returning -1. MFC after: 2 weeks Revision Changes Path 1.14 +31 -17 src/lib/libc/rpc/clnt_perror.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 5:34:46 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2929537B41B; Mon, 20 Aug 2001 05:34:40 -0700 (PDT) (envelope-from markm@FreeBSD.org) Received: (from markm@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCWkr44585; Mon, 20 Aug 2001 05:32:46 -0700 (PDT) (envelope-from markm) Message-Id: <200108201232.f7KCWkr44585@freefall.freebsd.org> From: Mark Murray Date: Mon, 20 Aug 2001 05:32:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/secure/lib/libtelnet Makefile src/secure/usr.bin/telnet Makefile src/kerberos5/lib/libtelnet Makefile src/kerberos5/usr.bin/telnet Makefile src/kerberosIV/lib/libtelnet Makefile src/kerberosIV/libexec/telnetd Makefile ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2001/08/20 05:32:45 PDT Modified files: secure/lib/libtelnet Makefile secure/usr.bin/telnet Makefile kerberos5/lib/libtelnet Makefile kerberos5/usr.bin/telnet Makefile kerberosIV/lib/libtelnet Makefile kerberosIV/libexec/telnetd Makefile kerberosIV/usr.bin/telnet Makefile Log: Diff reduce all the crypto telnet Makefiles. Revision Changes Path 1.25 +2 -2 src/secure/lib/libtelnet/Makefile 1.29 +2 -2 src/secure/usr.bin/telnet/Makefile 1.10 +2 -2 src/kerberos5/lib/libtelnet/Makefile 1.12 +2 -2 src/kerberos5/usr.bin/telnet/Makefile 1.10 +2 -2 src/kerberosIV/lib/libtelnet/Makefile 1.12 +2 -2 src/kerberosIV/libexec/telnetd/Makefile 1.12 +2 -2 src/kerberosIV/usr.bin/telnet/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 5:40:14 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 89FFD37B413; Mon, 20 Aug 2001 05:40:09 -0700 (PDT) (envelope-from markm@FreeBSD.org) Received: (from markm@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCdNI45290; Mon, 20 Aug 2001 05:39:23 -0700 (PDT) (envelope-from markm) Message-Id: <200108201239.f7KCdNI45290@freefall.freebsd.org> From: Mark Murray Date: Mon, 20 Aug 2001 05:39:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/mtree BSD.include.dist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2001/08/20 05:39:23 PDT Modified files: etc/mtree BSD.include.dist Log: More libss removal. Revision Changes Path 1.49 +1 -3 src/etc/mtree/BSD.include.dist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 5:42:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 741E637B413; Mon, 20 Aug 2001 05:42:03 -0700 (PDT) (envelope-from wjv@FreeBSD.org) Received: (from wjv@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCfBW45602; Mon, 20 Aug 2001 05:41:11 -0700 (PDT) (envelope-from wjv) Message-Id: <200108201241.f7KCfBW45602@freefall.freebsd.org> From: Johann Visagie Date: Mon, 20 Aug 2001 05:41:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/biology/p5-bioperl-devel Makefile ports/biology/p5-bioperl-devel/files Makefile.man X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wjv 2001/08/20 05:41:11 PDT Modified files: biology/p5-bioperl-devel Makefile Added files: biology/p5-bioperl-devel/files Makefile.man Log: - Move the (very) long list of manpages from the port Makefile to a separate file. Inspired by: nectar's treatment of security/heimdal Revision Changes Path 1.2 +6 -124 ports/biology/p5-bioperl-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 Aug 20 5:42:20 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 41A4237B53A; Mon, 20 Aug 2001 05:42:12 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCfaj45692; Mon, 20 Aug 2001 05:41:36 -0700 (PDT) (envelope-from brian) Message-Id: <200108201241.f7KCfaj45692@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 05:41:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/posix1e acl_support.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 05:41:36 PDT Modified files: lib/libc/posix1e acl_support.c Log: Handle snprintf() returning -1 MFC after: 2 weeks Revision Changes Path 1.10 +3 -3 src/lib/libc/posix1e/acl_support.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 5:43:22 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 646DE37B403; Mon, 20 Aug 2001 05:43:13 -0700 (PDT) (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCh2P45916; Mon, 20 Aug 2001 05:43:02 -0700 (PDT) (envelope-from olgeni) Message-Id: <200108201243.f7KCh2P45916@freefall.freebsd.org> From: Jimmy Olgeni Date: Mon, 20 Aug 2001 05:43:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/xmame Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG olgeni 2001/08/20 05:43:02 PDT Modified files: emulators/xmame Makefile distinfo Log: Update port to version 0.53.1. PR: 29895 Submitted by: Stijn Hoop Revision Changes Path 1.35 +2 -2 ports/emulators/xmame/Makefile 1.20 +1 -1 ports/emulators/xmame/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 5:43:47 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6523B37B418; Mon, 20 Aug 2001 05:43:33 -0700 (PDT) (envelope-from markm@FreeBSD.org) Received: (from markm@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KChJ246027; Mon, 20 Aug 2001 05:43:19 -0700 (PDT) (envelope-from markm) Message-Id: <200108201243.f7KChJ246027@freefall.freebsd.org> From: Mark Murray Date: Mon, 20 Aug 2001 05:43:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/libpam pam_mod_misc.h pam_std_option.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2001/08/20 05:43:19 PDT Modified files: lib/libpam/libpam pam_mod_misc.h pam_std_option.c Log: Add 'try_mapped_pass' standard option. Asked for by: lukeh@PADL.COM Revision Changes Path 1.7 +3 -2 src/lib/libpam/libpam/pam_mod_misc.h 1.7 +2 -1 src/lib/libpam/libpam/pam_std_option.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 5:45:14 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 623E137B411; Mon, 20 Aug 2001 05:45:08 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCj2946281; Mon, 20 Aug 2001 05:45:02 -0700 (PDT) (envelope-from brian) Message-Id: <200108201245.f7KCj2946281@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 05:45:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libdevstat devstat.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 05:45:02 PDT Modified files: lib/libdevstat devstat.c Log: Handle snprintf() returning -1. MFC after: 2 weeks Revision Changes Path 1.9 +5 -3 src/lib/libdevstat/devstat.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 5:46:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EC9A337B403; Mon, 20 Aug 2001 05:46:45 -0700 (PDT) (envelope-from markm@FreeBSD.org) Received: (from markm@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCkBi46516; Mon, 20 Aug 2001 05:46:11 -0700 (PDT) (envelope-from markm) Message-Id: <200108201246.f7KCkBi46516@freefall.freebsd.org> From: Mark Murray Date: Mon, 20 Aug 2001 05:46:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/su su.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2001/08/20 05:46:11 PDT Modified files: usr.bin/su su.c Log: Very minor stylistic nit. Discussed with: ru Revision Changes Path 1.44 +2 -3 src/usr.bin/su/su.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 5:48: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4FB3B37B40A; Mon, 20 Aug 2001 05:48:01 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCkwh46663; Mon, 20 Aug 2001 05:46:58 -0700 (PDT) (envelope-from brian) Message-Id: <200108201246.f7KCkwh46663@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 05:46:58 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 05:46:58 PDT Modified files: lib/libfetch ftp.c Log: Handle snprintf() returning -1. MFC after: 2 weeks Revision Changes Path 1.67 +3 -2 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 Mon Aug 20 5:50:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8773D37B40C; Mon, 20 Aug 2001 05:50:14 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCmjw47012; Mon, 20 Aug 2001 05:48:45 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108201248.f7KCmjw47012@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 20 Aug 2001 05:48:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/manedit Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/20 05:48:45 PDT Modified files: editors/manedit Makefile distinfo Log: Update to 0.5.0. PR: 29885 Submitted by: Pete Fritchman Revision Changes Path 1.5 +3 -4 ports/editors/manedit/Makefile 1.5 +1 -1 ports/editors/manedit/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 5:51: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7BB0237B415; Mon, 20 Aug 2001 05:51:00 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCoLG47286; Mon, 20 Aug 2001 05:50:21 -0700 (PDT) (envelope-from brian) Message-Id: <200108201250.f7KCoLG47286@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 05:50:21 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 05:50:21 PDT Modified files: libexec/rlogind rlogind.c Log: Handle snprintf() returning -1. MFC after: 2 weeks Revision Changes Path 1.36 +3 -1 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 Mon Aug 20 5:53:54 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 03C9137B409; Mon, 20 Aug 2001 05:53:50 -0700 (PDT) (envelope-from markm@FreeBSD.org) Received: (from markm@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCqoM47641; Mon, 20 Aug 2001 05:52:50 -0700 (PDT) (envelope-from markm) Message-Id: <200108201252.f7KCqoM47641@freefall.freebsd.org> From: Mark Murray Date: Mon, 20 Aug 2001 05:52:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/opie opieinfo.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2001/08/20 05:52:49 PDT Modified files: contrib/opie opieinfo.c Log: Fix overflow problem when giving a username that is too long. Also minor declaration/header fixes while auditing the code. Revision Changes Path 1.3 +10 -2 src/contrib/opie/opieinfo.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 5:54: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 23CCB37B43F; Mon, 20 Aug 2001 05:53:57 -0700 (PDT) (envelope-from nik@FreeBSD.org) Received: (from nik@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCqx847688; Mon, 20 Aug 2001 05:52:59 -0700 (PDT) (envelope-from nik) Message-Id: <200108201252.f7KCqx847688@freefall.freebsd.org> From: Nik Clayton Date: Mon, 20 Aug 2001 05:52:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/send-pr send-pr.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nik 2001/08/20 05:52:59 PDT Modified files: gnu/usr.bin/send-pr send-pr.sh Log: Note that submitted patches are assumed to be under the same license as the file they patch. Revision Changes Path 1.27 +5 -1 src/gnu/usr.bin/send-pr/send-pr.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 5:55:30 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AB92437B408; Mon, 20 Aug 2001 05:55:22 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCraA48074; Mon, 20 Aug 2001 05:53:36 -0700 (PDT) (envelope-from kris) Message-Id: <200108201253.f7KCraA48074@freefall.freebsd.org> From: Kris Kennaway Date: Mon, 20 Aug 2001 05:53:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/db/test dbtest.c src/lib/libc/net gethostbydns.c src/lib/libc/stdio vfprintf.c src/lib/libc_r/test mutex_d.c src/lib/libcam camlib.h src/lib/libdisk create_chunk.c src/lib/libkvm kvm_private.h src/lib/libncp ncpl_subr.c ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/20 05:53:36 PDT Modified files: lib/libc/db/test dbtest.c lib/libc/net gethostbydns.c lib/libc/stdio vfprintf.c lib/libc_r/test mutex_d.c lib/libcam camlib.h lib/libdisk create_chunk.c lib/libkvm kvm_private.h lib/libncp ncpl_subr.c lib/libnetgraph netgraph.h sys/netncp ncp_lib.h Log: Mark some functions as __printflike() and/or taking const char * arguments instead of char *. MFC after: 2 weeks Revision Changes Path 1.5 +2 -2 src/lib/libc/db/test/dbtest.c 1.29 +5 -1 src/lib/libc/net/gethostbydns.c 1.29 +2 -2 src/lib/libc/stdio/vfprintf.c 1.2 +4 -1 src/lib/libc_r/test/mutex_d.c 1.3 +4 -4 src/lib/libcam/camlib.h 1.60 +3 -1 src/lib/libdisk/create_chunk.c 1.6 +3 -3 src/lib/libkvm/kvm_private.h 1.4 +2 -2 src/lib/libncp/ncpl_subr.c 1.3 +3 -3 src/lib/libnetgraph/netgraph.h 1.4 +2 -2 src/sys/netncp/ncp_lib.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 5:57:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7270937B403; Mon, 20 Aug 2001 05:57:12 -0700 (PDT) (envelope-from nik@FreeBSD.org) Received: (from nik@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCtHs48474; Mon, 20 Aug 2001 05:55:17 -0700 (PDT) (envelope-from nik) Message-Id: <200108201255.f7KCtHs48474@freefall.freebsd.org> From: Nik Clayton Date: Mon, 20 Aug 2001 05:55:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en send-pr.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nik 2001/08/20 05:55:17 PDT Modified files: en send-pr.sgml Log: Note that submissions are assumed to be under the same license as the original. Revision Changes Path 1.23 +5 -1 www/en/send-pr.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 5:57:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D5ECE37B40D; Mon, 20 Aug 2001 05:57:45 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KCujQ48736; Mon, 20 Aug 2001 05:56:45 -0700 (PDT) (envelope-from brian) Message-Id: <200108201256.f7KCujQ48736@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 05:56:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/newfs mkfs.c src/sbin/ping6 ping6.c src/sbin/route route.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 05:56:45 PDT Modified files: sbin/newfs mkfs.c sbin/ping6 ping6.c sbin/route route.c Log: Handle snprintf() returning -1. MFC after: 2 weeks Revision Changes Path 1.39 +3 -1 src/sbin/newfs/mkfs.c 1.12 +2 -2 src/sbin/ping6/ping6.c 1.54 +7 -5 src/sbin/route/route.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 6:12:43 2001 Delivered-To: cvs-all@freebsd.org Received: from lists.unixathome.org (lists.unixathome.org [210.48.103.158]) by hub.freebsd.org (Postfix) with ESMTP id DFF0737B41B; Mon, 20 Aug 2001 06:12:34 -0700 (PDT) (envelope-from dan@lists.unixathome.org) Received: from wocker (lists.unixathome.org [210.48.103.158]) by lists.unixathome.org (8.11.1/8.11.1) with ESMTP id f7KDCG041658; Tue, 21 Aug 2001 01:12:17 +1200 (NZST) (envelope-from dan@lists.unixathome.org) From: "Dan Langille" Organization: novice in training To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Date: Mon, 20 Aug 2001 09:12:10 -0400 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: cvs commit: ports/biology/p5-bioperl-devel Makefile ports/biology/p5-bioperl-devel/files Makefile.man Reply-To: dan@langille.org Message-ID: <3B80D46A.3260.51031F7@localhost> In-reply-to: <200108201241.f7KCfBW45602@freefall.freebsd.org> X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 20 Aug 2001, at 5:41, Johann Visagie wrote: > Added files: > biology/p5-bioperl-devel/files Makefile.man > Log: > - Move the (very) long list of manpages from the port Makefile to a separate > file. Any reason not to call it Makefile.inc ? I've seen that used many times before. -- Dan Langille - DVL Software Limited FreshPorts - http://freshports.org/ - the place for ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 6:14:22 2001 Delivered-To: cvs-all@freebsd.org Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by hub.freebsd.org (Postfix) with ESMTP id 4388A37B407; Mon, 20 Aug 2001 06:14:08 -0700 (PDT) (envelope-from max@vega.com) Received: from vega.vega.com (dialup6-5.iptelecom.net.ua [212.9.227.69]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id QAA40407; Mon, 20 Aug 2001 16:12:50 +0300 (EEST) (envelope-from max@vega.com) Received: (from max@localhost) by vega.vega.com (8.11.4/8.11.3) id f7KDBvH15963; Mon, 20 Aug 2001 16:11:57 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) From: Maxim Sobolev Message-Id: <200108201311.f7KDBvH15963@vega.vega.com> Subject: Re: cvs commit: src/sbin/newfs mkfs.c src/sbin/ping6 ping6.c To: brian@FreeBSD.ORG (Brian Somers), kris@FreeBSD.ORG Date: Mon, 20 Aug 2001 16:10:37 +0300 (EEST) Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-Reply-To: from "Brian Somers" at Aug 20, 2001 05:56:45 AM X-Mailer: ELM [version 2.5 PL5] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > brian 2001/08/20 05:56:45 PDT > > Modified files: > sbin/newfs mkfs.c > sbin/ping6 ping6.c > sbin/route route.c > Log: > Handle snprintf() returning -1. What is condition for snprintf() returning -1? The manpage doesn't provide any clue, so as the SUSv2 specification. Perhaps manpage should be extended to be more clear in this area. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 6:15:58 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E2A637B405; Mon, 20 Aug 2001 06:15:54 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KDECE53915; Mon, 20 Aug 2001 06:14:12 -0700 (PDT) (envelope-from mikeh) Message-Id: <200108201314.f7KDECE53915@freefall.freebsd.org> From: Mike Heffner Date: Mon, 20 Aug 2001 06:14:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-clocks/wmtimer distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mikeh 2001/08/20 06:14:11 PDT Modified files: x11-clocks/wmtimer distinfo Log: Chase checksum; trivial pixmap change. Approved by: maintainer Noticed by: bento Revision Changes Path 1.2 +1 -1 ports/x11-clocks/wmtimer/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 6:27: 4 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2C52B37B40A; Mon, 20 Aug 2001 06:27:00 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KDOeS55734; Mon, 20 Aug 2001 06:24:40 -0700 (PDT) (envelope-from brian) Message-Id: <200108201324.f7KDOeS55734@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 06:24:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/apmd/contrib pccardq.c src/usr.sbin/diskcheckd diskcheckd.c src/usr.sbin/faithd ftp.c src/usr.sbin/pkg_install/add extract.c src/usr.sbin/pkg_install/create pl.c src/usr.sbin/pw grupd.c pw_conf.c pwupd.c ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 06:24:40 PDT Modified files: usr.sbin/apmd/contrib pccardq.c usr.sbin/diskcheckd diskcheckd.c usr.sbin/faithd ftp.c usr.sbin/pkg_install/add extract.c usr.sbin/pkg_install/create pl.c usr.sbin/pw grupd.c pw_conf.c pwupd.c usr.sbin/syslogd syslogd.c Log: Handle snprintf() returning -1. MFC after: 2 weeks Revision Changes Path 1.4 +6 -2 src/usr.sbin/apmd/contrib/pccardq.c 1.3 +6 -3 src/usr.sbin/diskcheckd/diskcheckd.c 1.6 +36 -44 src/usr.sbin/faithd/ftp.c 1.28 +4 -4 src/usr.sbin/pkg_install/add/extract.c 1.17 +3 -3 src/usr.sbin/pkg_install/create/pl.c 1.9 +2 -2 src/usr.sbin/pw/grupd.c 1.13 +5 -1 src/usr.sbin/pw/pw_conf.c 1.16 +3 -1 src/usr.sbin/pw/pwupd.c 1.81 +6 -3 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 Aug 20 6:29:21 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CD01A37B413; Mon, 20 Aug 2001 06:29:17 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KDRHR56162; Mon, 20 Aug 2001 06:27:17 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108201327.f7KDRHR56162@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 20 Aug 2001 06:27:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/AbiWord pkg-message Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/20 06:27:17 PDT Modified files: editors/AbiWord Makefile Added files: editors/AbiWord pkg-message Log: Warn a user that if he wants to display AbiWord on the remote X terminal than he neesd to make fonts available to remote X server. Revision Changes Path 1.23 +4 -1 ports/editors/AbiWord/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 6:37:37 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 57EAE37B403; Mon, 20 Aug 2001 06:37:30 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7KDbJv11541; Mon, 20 Aug 2001 14:37:19 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7KDbAU83638; Mon, 20 Aug 2001 14:37:10 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108201337.f7KDbAU83638@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Maxim Sobolev Cc: brian@FreeBSD.ORG (Brian Somers), kris@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, brian@freebsd-services.com Subject: Re: cvs commit: src/sbin/newfs mkfs.c src/sbin/ping6 ping6.c In-Reply-To: Message from Maxim Sobolev of "Mon, 20 Aug 2001 16:10:37 +0300." <200108201311.f7KDBvH15963@vega.vega.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 20 Aug 2001 14:37:10 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > > > brian 2001/08/20 05:56:45 PDT > > > > Modified files: > > sbin/newfs mkfs.c > > sbin/ping6 ping6.c > > sbin/route route.c > > Log: > > Handle snprintf() returning -1. > > What is condition for snprintf() returning -1? The manpage doesn't provide > any clue, so as the SUSv2 specification. Perhaps manpage should be extended > to be more clear in this area. From what I can tell, it can return -1 when it's given an invalid format string. It could probably do likewise for other reasons too (he says vaguely), depending on if vfprintf() decides to return EOF (this probably can't happen the way snprintf() sets the FILE up). I don't believe that any of the cases I've patched could actually happen at the moment using our libc, but it's possible that other snprintf() implementations may fail, so we should deal with that for portability's sake. > -Maxim -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 6:44:54 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 44DFF37B409; Mon, 20 Aug 2001 06:44:51 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KDiDA22474; Mon, 20 Aug 2001 06:44:13 -0700 (PDT) (envelope-from brian) Message-Id: <200108201344.f7KDiDA22474@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 06:44:13 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 06:44:13 PDT Modified files: lib/libfetch ftp.c Log: Handle snrintf overflows. Spotted by: bde Revision Changes Path 1.68 +3 -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 Mon Aug 20 6:52:53 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E4C5437B401; Mon, 20 Aug 2001 06:52:48 -0700 (PDT) (envelope-from tobez@FreeBSD.org) Received: (from tobez@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KDpEC66669; Mon, 20 Aug 2001 06:51:14 -0700 (PDT) (envelope-from tobez) Message-Id: <200108201351.f7KDpEC66669@freefall.freebsd.org> From: Anton Berezin Date: Mon, 20 Aug 2001 06:51:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/perl5 Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tobez 2001/08/20 06:51:14 PDT Modified files: lang/perl5 Makefile pkg-plist Log: Make this port do the same thing whether databases/gdbm is installed or not - do not install GDBM_File extension. PR: 29884 Revision Changes Path 1.39 +4 -3 ports/lang/perl5/Makefile 1.24 +0 -4 ports/lang/perl5/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 6:54: 7 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B7C8737B403; Mon, 20 Aug 2001 06:54:02 -0700 (PDT) (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KDqmU66958; Mon, 20 Aug 2001 06:52:48 -0700 (PDT) (envelope-from olgeni) Message-Id: <200108201352.f7KDqmU66958@freefall.freebsd.org> From: Jimmy Olgeni Date: Mon, 20 Aug 2001 06:52:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/portsentry pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG olgeni 2001/08/20 06:52:48 PDT Modified files: security/portsentry pkg-descr Log: Add period at end of description. Revision Changes Path 1.4 +1 -1 ports/security/portsentry/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 Aug 20 7: 7:22 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 060E637B409; Mon, 20 Aug 2001 07:07:16 -0700 (PDT) (envelope-from wjv@FreeBSD.org) Received: (from wjv@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KE79g71808; Mon, 20 Aug 2001 07:07:09 -0700 (PDT) (envelope-from wjv) Message-Id: <200108201407.f7KE79g71808@freefall.freebsd.org> From: Johann Visagie Date: Mon, 20 Aug 2001 07:07:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/py-twisted Makefile distinfo pkg-plist ports/devel/py-twisted/files patch-setup.py X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wjv 2001/08/20 07:07:09 PDT Modified files: devel/py-twisted Makefile distinfo pkg-plist Removed files: devel/py-twisted/files patch-setup.py Log: - Update to version 0.10.0 - New for this version: - Twisted Enterprise, relational database integration with Twisted. - "Passport" addition to Twisted Internet. - "Versioned" persistence style. - Many minor bugfixes. - "Twisted Manhole", 'direct manipulation' service for Twisted. - etc. Revision Changes Path 1.4 +3 -4 ports/devel/py-twisted/Makefile 1.2 +1 -1 ports/devel/py-twisted/distinfo 1.3 +124 -3 ports/devel/py-twisted/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 Aug 20 7:11: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from fling.sanbi.ac.za (fling.sanbi.ac.za [196.38.142.119]) by hub.freebsd.org (Postfix) with ESMTP id F376937B415; Mon, 20 Aug 2001 07:10:57 -0700 (PDT) (envelope-from johann@egenetics.com) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 15Ypl6-000IQH-00; Mon, 20 Aug 2001 16:10:28 +0200 Date: Mon, 20 Aug 2001 16:10:28 +0200 From: Johann Visagie To: Dan Langille Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/biology/p5-bioperl-devel Makefile ports/biology/p5-bioperl-devel/files Makefile.man Message-ID: <20010820161028.G67741@fling.sanbi.ac.za> References: <200108201241.f7KCfBW45602@freefall.freebsd.org> <3B80D46A.3260.51031F7@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B80D46A.3260.51031F7@localhost>; from dan@langille.org on Mon, Aug 20, 2001 at 09:12:10AM -0400 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dan Langille on 2001-08-20 (Mon) at 09:12:10 -0400: > > Any reason not to call it Makefile.inc ? I've seen that used many > times before. No particular reason, except that I was copying what was done to security/heimdal in this case and didn't engage the brain to think up a filename of my own. :-) I've used Makefile.inc myself in the past, but I don't think there's a particular rule involved here(?) One thing, though: I put my Makefile.man in ${FILESDIR} - I thought that was neater. -- V To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 7:13:28 2001 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 0942337B408; Mon, 20 Aug 2001 07:13:17 -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.9.3/8.8.7) with ESMTP id AAA30118; Tue, 21 Aug 2001 00:13:14 +1000 Date: Tue, 21 Aug 2001 00:12:36 +1000 (EST) From: Bruce Evans X-X-Sender: To: Maxim Sobolev Cc: Brian Somers , , , Subject: Re: cvs commit: src/sbin/newfs mkfs.c src/sbin/ping6 ping6.c In-Reply-To: <200108201311.f7KDBvH15963@vega.vega.com> Message-ID: <20010820235013.E55658-100000@besplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 20 Aug 2001, Maxim Sobolev wrote: > > brian 2001/08/20 05:56:45 PDT > > > > Modified files: > > sbin/newfs mkfs.c > > sbin/ping6 ping6.c > > sbin/route route.c > > Log: > > Handle snprintf() returning -1. > > What is condition for snprintf() returning -1? The manpage doesn't provide > any clue, so as the SUSv2 specification. Perhaps manpage should be extended > to be more clear in this area. In C99: - if an encoding error occurred (then the return value may be any negative int, so checking for -1 is incorrect). In FreeBSD: - if the result is not representable as a (non-negative) int, then -1 is returned without changing errno. Example: format "foo%*s" with a preposterously larger field width. - I think encoding errors can't occur, because FreeBSD doesn't really support wide character stuff. In POSIX.1-200x: - as in C99, plus: - if the buffer size or the result is not representable as a (non-negative) int, then a negative value is returned and errno is set to EOVERFLOW. I think the buffer contents is indeterminate when snprintf() returns < 0, so the buffer might not be NUL-terminated. Some of Brian's changes didn't seem to handle this right. But the best way to handle snprintf() returning < 0 may be to crash. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 7:25: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 216D837B414; Mon, 20 Aug 2001 07:25:06 -0700 (PDT) (envelope-from wjv@FreeBSD.org) Received: (from wjv@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KEP6774134; Mon, 20 Aug 2001 07:25:06 -0700 (PDT) (envelope-from wjv) Message-Id: <200108201425.f7KEP6774134@freefall.freebsd.org> From: Johann Visagie Date: Mon, 20 Aug 2001 07:25:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/py-twisted Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wjv 2001/08/20 07:25:06 PDT Modified files: devel/py-twisted Makefile pkg-plist Log: - Fix own mistake that caused a *.orig file to be installed in ${PREFIX}/bin - List executable files to be installed explicitly - it's so much safer! - Bump ${PORTREVISION} Revision Changes Path 1.5 +12 -5 ports/devel/py-twisted/Makefile 1.4 +0 -1 ports/devel/py-twisted/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 Aug 20 7:32:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8460B37B40A; Mon, 20 Aug 2001 07:32:28 -0700 (PDT) (envelope-from tobez@FreeBSD.org) Received: (from tobez@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KEWSE75383; Mon, 20 Aug 2001 07:32:28 -0700 (PDT) (envelope-from tobez) Message-Id: <200108201432.f7KEWSE75383@freefall.freebsd.org> From: Anton Berezin Date: Mon, 20 Aug 2001 07:32:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/p5-XML-XPath Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tobez 2001/08/20 07:32:28 PDT Modified files: textproc/p5-XML-XPath Makefile distinfo pkg-plist Log: Update textproc/p5-XML-XPath to 1.10 and fix pkg-plist. PR: 29899 Submitted by: maintainer Revision Changes Path 1.6 +2 -2 ports/textproc/p5-XML-XPath/Makefile 1.4 +1 -1 ports/textproc/p5-XML-XPath/distinfo 1.2 +1 -0 ports/textproc/p5-XML-XPath/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 Aug 20 7:45:15 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 247A037B401; Mon, 20 Aug 2001 07:45:09 -0700 (PDT) (envelope-from tobez@FreeBSD.org) Received: (from tobez@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KEj9N77225; Mon, 20 Aug 2001 07:45:09 -0700 (PDT) (envelope-from tobez) Message-Id: <200108201445.f7KEj9N77225@freefall.freebsd.org> From: Anton Berezin Date: Mon, 20 Aug 2001 07:45:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/p5-Finance-Quote Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tobez 2001/08/20 07:45:08 PDT Modified files: misc/p5-Finance-Quote Makefile distinfo pkg-plist Log: Update misc/p5-Finance-Quote to 1.06. PR: 29901 Submitted by: maintainer Revision Changes Path 1.4 +7 -3 ports/misc/p5-Finance-Quote/Makefile 1.3 +1 -1 ports/misc/p5-Finance-Quote/distinfo 1.2 +4 -0 ports/misc/p5-Finance-Quote/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 Aug 20 7:46:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A383537B40F; Mon, 20 Aug 2001 07:46:40 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KEkeK77649; Mon, 20 Aug 2001 07:46:40 -0700 (PDT) (envelope-from brian) Message-Id: <200108201446.f7KEkeK77649@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 07:46:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/apply apply.c src/usr.bin/ftp fetch.c util.c src/usr.bin/mail fio.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 07:46:40 PDT Modified files: usr.bin/apply apply.c usr.bin/ftp fetch.c util.c usr.bin/mail fio.c Log: Handle snprintf() returning -1. MFC after: 2 weeks Revision Changes Path 1.17 +5 -5 src/usr.bin/apply/apply.c 1.16 +2 -2 src/usr.bin/ftp/fetch.c 1.18 +27 -13 src/usr.bin/ftp/util.c 1.8 +2 -2 src/usr.bin/mail/fio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 7:50:27 2001 Delivered-To: cvs-all@freebsd.org Received: from lists.unixathome.org (lists.unixathome.org [210.48.103.158]) by hub.freebsd.org (Postfix) with ESMTP id 25E0C37B405; Mon, 20 Aug 2001 07:50:21 -0700 (PDT) (envelope-from dan@lists.unixathome.org) Received: from wocker (lists.unixathome.org [210.48.103.158]) by lists.unixathome.org (8.11.1/8.11.1) with ESMTP id f7KEo3043507; Tue, 21 Aug 2001 02:50:03 +1200 (NZST) (envelope-from dan@lists.unixathome.org) From: "Dan Langille" Organization: novice in training To: Johann Visagie Date: Mon, 20 Aug 2001 10:49:54 -0400 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: cvs commit: ports/biology/p5-bioperl-devel Makefile ports/biology/p5-bioperl-devel/files Makefile.man Reply-To: dan@langille.org Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Message-ID: <3B80EB52.27094.569AE2E@localhost> In-reply-to: <20010820161028.G67741@fling.sanbi.ac.za> References: <3B80D46A.3260.51031F7@localhost>; from dan@langille.org on Mon, Aug 20, 2001 at 09:12:10AM -0400 X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 20 Aug 2001, at 16:10, Johann Visagie wrote: > Dan Langille on 2001-08-20 (Mon) at 09:12:10 -0400: > > > > Any reason not to call it Makefile.inc ? I've seen that used many > > times before. > > No particular reason, except that I was copying what was done to > security/heimdal in this case and didn't engage the brain to think up a > filename of my own. :-) > > I've used Makefile.inc myself in the past, but I don't think there's a > particular rule involved here(?) > > One thing, though: I put my Makefile.man in ${FILESDIR} - I thought that was > neater. OK.... [imagine me going to FreshPorts to add Makefile.man to the list of special files] -- Dan Langille - DVL Software Limited FreshPorts - http://freshports.org/ - the place for ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 7:53:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E0D937B40A; Mon, 20 Aug 2001 07:53:06 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KEr6378730; Mon, 20 Aug 2001 07:53:06 -0700 (PDT) (envelope-from brian) Message-Id: <200108201453.f7KEr6378730@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 07:53:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/newfs mkfs.c src/sbin/ping6 ping6.c src/sbin/route route.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 07:53:06 PDT Modified files: sbin/newfs mkfs.c sbin/ping6 ping6.c sbin/route route.c Log: Handle snprintf() returning < 0 (not just -1) MFC after: 2 weeks Revision Changes Path 1.40 +3 -3 src/sbin/newfs/mkfs.c 1.13 +2 -2 src/sbin/ping6/ping6.c 1.55 +5 -1 src/sbin/route/route.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 8: 1:10 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A139637B403; Mon, 20 Aug 2001 08:01:06 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KF16l79940; Mon, 20 Aug 2001 08:01:06 -0700 (PDT) (envelope-from brian) Message-Id: <200108201501.f7KF16l79940@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 08:01:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/faithd ftp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 08:01:06 PDT Modified files: usr.sbin/faithd ftp.c Log: Handle ftp_copycommand() and ftp_copyresult() potentially returning < -1. Revision Changes Path 1.7 +5 -13 src/usr.sbin/faithd/ftp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 8: 9:41 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5589037B405; Mon, 20 Aug 2001 08:09:34 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KF9Yt84633; Mon, 20 Aug 2001 08:09:34 -0700 (PDT) (envelope-from brian) Message-Id: <200108201509.f7KF9Yt84633@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 08:09:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/apmd/contrib pccardq.c src/usr.sbin/diskcheckd diskcheckd.c src/usr.sbin/pkg_install/add extract.c src/usr.sbin/pkg_install/create pl.c src/usr.sbin/ppp command.c src/usr.sbin/pw pw_conf.c pwupd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 08:09:34 PDT Modified files: usr.sbin/apmd/contrib pccardq.c usr.sbin/diskcheckd diskcheckd.c usr.sbin/pkg_install/add extract.c usr.sbin/pkg_install/create pl.c usr.sbin/ppp command.c usr.sbin/pw pw_conf.c pwupd.c Log: Handle snprintf() returning < 0 (not just -1) MFC after: 2 weeks Revision Changes Path 1.5 +2 -2 src/usr.sbin/apmd/contrib/pccardq.c 1.4 +3 -3 src/usr.sbin/diskcheckd/diskcheckd.c 1.29 +4 -4 src/usr.sbin/pkg_install/add/extract.c 1.18 +3 -3 src/usr.sbin/pkg_install/create/pl.c 1.275 +6 -2 src/usr.sbin/ppp/command.c 1.14 +3 -3 src/usr.sbin/pw/pw_conf.c 1.17 +2 -2 src/usr.sbin/pw/pwupd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 8:14:38 2001 Delivered-To: cvs-all@freebsd.org Received: from lists.unixathome.org (lists.unixathome.org [210.48.103.158]) by hub.freebsd.org (Postfix) with ESMTP id 34BE737B408; Mon, 20 Aug 2001 08:14:28 -0700 (PDT) (envelope-from dan@lists.unixathome.org) Received: from wocker (lists.unixathome.org [210.48.103.158]) by lists.unixathome.org (8.11.1/8.11.1) with ESMTP id f7KFE2044149; Tue, 21 Aug 2001 03:14:02 +1200 (NZST) (envelope-from dan@lists.unixathome.org) From: "Dan Langille" Organization: novice in training To: Johann Visagie Date: Mon, 20 Aug 2001 11:13:53 -0400 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: cvs commit: ports/biology/p5-bioperl-devel Makefile ports/biology/p5-bioperl-devel/files Makefile.man Reply-To: dan@langille.org Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Message-ID: <3B80F0F1.3282.57FA006@localhost> In-reply-to: <20010820161028.G67741@fling.sanbi.ac.za> References: <3B80D46A.3260.51031F7@localhost>; from dan@langille.org on Mon, Aug 20, 2001 at 09:12:10AM -0400 X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG A repost with additional thoughts. On 20 Aug 2001, at 16:10, Johann Visagie wrote: > Dan Langille on 2001-08-20 (Mon) at 09:12:10 -0400: > > > > Any reason not to call it Makefile.inc ? I've seen that used many > > times before. > > No particular reason, except that I was copying what was done to > security/heimdal in this case and didn't engage the brain to think up a > filename of my own. :-) > > I've used Makefile.inc myself in the past, but I don't think there's a > particular rule involved here(?) OK.... [imagine me going to FreshPorts to add Makefile.man to the list of special files] Actually, that should be files/Makefile.man. I think we should have some consistency here. If only for sanity sake. At worst, I'll have to start extending the list of "special files" in FreshPorts. At best, it looks sloppy to have different file names for each type. Is there an established practice in this area of ports? [I'm not counting security/heimdal as established as that's only just occurred]. Personally, I'd like to see a standard set and used. It would make the running of FreshPorts much easier. I'd rather not make changes each time a new file name is conceived. I propose we use Makefile.inc and not put it into files. Anyone concur? > One thing, though: I put my Makefile.man in ${FILESDIR} - I > thought that was neater. I'm not sure that's any neater at all. -- Dan Langille - DVL Software Limited FreshPorts - http://freshports.org/ - the place for ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 8:21:14 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B64D37B40E; Mon, 20 Aug 2001 08:21:10 -0700 (PDT) (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KFL9P86222; Mon, 20 Aug 2001 08:21:09 -0700 (PDT) (envelope-from demon) Message-Id: <200108201521.f7KFL9P86222@freefall.freebsd.org> From: Dmitry Sivachenko Date: Mon, 20 Aug 2001 08:21:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm Makefile ports/x11-wm/kdeartwork Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2001/08/20 08:21:09 PDT Modified files: x11-wm Makefile Added files: x11-wm/kdeartwork Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Additional themes, sounds, wallpapers and window styles for KDE. Revision Changes Path 1.65 +2 -1 ports/x11-wm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 8:21:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E36BC37B618; Mon, 20 Aug 2001 08:21:15 -0700 (PDT) (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KFLFc86274; Mon, 20 Aug 2001 08:21:15 -0700 (PDT) (envelope-from demon) Message-Id: <200108201521.f7KFLFc86274@freefall.freebsd.org> From: Dmitry Sivachenko Date: Mon, 20 Aug 2001 08:21:15 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2001/08/20 08:21:15 PDT Modified files: . modules Log: kdeartwork --> ports/x11-wm/kdeartwork Revision Changes Path 1.3690 +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 Aug 20 8:34:24 2001 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 6668D37B419; Mon, 20 Aug 2001 08:34:19 -0700 (PDT) (envelope-from nectar@nectar.com) Received: from madman.nectar.com (madman.nectar.com [10.0.1.111]) by gw.nectar.com (Postfix) with ESMTP id 6226D941; Mon, 20 Aug 2001 10:34:17 -0500 (CDT) Received: (from nectar@localhost) by madman.nectar.com (8.11.3/8.11.3) id f7KFYH374132; Mon, 20 Aug 2001 10:34:17 -0500 (CDT) (envelope-from nectar) Date: Mon, 20 Aug 2001 10:34:17 -0500 From: "Jacques A. Vidrine" To: Maxim Sobolev Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/editors/AbiWord pkg-message Makefile Message-ID: <20010820103417.C74106@madman.nectar.com> Mail-Followup-To: "Jacques A. Vidrine" , Maxim Sobolev , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200108201327.f7KDRHR56162@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108201327.f7KDRHR56162@freefall.freebsd.org>; from sobomax@FreeBSD.org on Mon, Aug 20, 2001 at 06:27:17AM -0700 X-Url: http://www.nectar.com/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Aug 20, 2001 at 06:27:17AM -0700, Maxim Sobolev wrote: > sobomax 2001/08/20 06:27:17 PDT > > Modified files: > editors/AbiWord Makefile > Added files: > editors/AbiWord pkg-message > Log: > Warn a user that if he wants to display AbiWord on the remote X terminal > than he neesd to make fonts available to remote X server. How is this different from any other X application? -- Jacques Vidrine / n@nectar.com / jvidrine@verio.net / nectar@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 Aug 20 8:37:29 2001 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 0466237B407; Mon, 20 Aug 2001 08:37:22 -0700 (PDT) (envelope-from nectar@nectar.com) Received: from madman.nectar.com (madman.nectar.com [10.0.1.111]) by gw.nectar.com (Postfix) with ESMTP id 2AA4A92F; Mon, 20 Aug 2001 10:37:20 -0500 (CDT) Received: (from nectar@localhost) by madman.nectar.com (8.11.3/8.11.3) id f7KFavu74156; Mon, 20 Aug 2001 10:36:57 -0500 (CDT) (envelope-from nectar) Date: Mon, 20 Aug 2001 10:36:57 -0500 From: "Jacques A. Vidrine" To: Dan Langille Cc: Johann Visagie , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/biology/p5-bioperl-devel Makefile ports/biology/p5-bioperl-devel/files Makefile.man Message-ID: <20010820103657.D74106@madman.nectar.com> Mail-Followup-To: "Jacques A. Vidrine" , Dan Langille , Johann Visagie , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <3B80D46A.3260.51031F7@localhost>; <20010820161028.G67741@fling.sanbi.ac.za> <3B80F0F1.3282.57FA006@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B80F0F1.3282.57FA006@localhost>; from dan@langille.org on Mon, Aug 20, 2001 at 11:13:53AM -0400 X-Url: http://www.nectar.com/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Aug 20, 2001 at 11:13:53AM -0400, Dan Langille wrote: > > No particular reason, except that I was copying what was done to > > security/heimdal in this case and didn't engage the brain to think up a > > filename of my own. :-) Which in turn mocked x11/XFree86-4. > > I've used Makefile.inc myself in the past, but I don't think there's a > > particular rule involved here(?) > > OK.... > > [imagine me going to FreshPorts to add Makefile.man to the list of > special files] [snip] > I propose we use Makefile.inc and not put it into files. Anyone > concur? Why does FreshPorts care? If it wants Makefile variable values, it should invoke (or emulate) make. Cheers, -- Jacques Vidrine / n@nectar.com / jvidrine@verio.net / nectar@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 Aug 20 8:39:16 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3BC8637B417; Mon, 20 Aug 2001 08:39:11 -0700 (PDT) (envelope-from roger@FreeBSD.org) Received: (from roger@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KFdB689173; Mon, 20 Aug 2001 08:39:11 -0700 (PDT) (envelope-from roger) Message-Id: <200108201539.f7KFdB689173@freefall.freebsd.org> From: Roger Hardiman Date: Mon, 20 Aug 2001 08:39:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/gnomemeeting Makefile distinfo ports/net/gnomemeeting/files patch-aa patch-ad patch-ae X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roger 2001/08/20 08:39:11 PDT Modified files: net/gnomemeeting Makefile distinfo net/gnomemeeting/files patch-aa patch-ad patch-ae Log: Updated tarball. No functional change. Revision Changes Path 1.3 +2 -5 ports/net/gnomemeeting/Makefile 1.3 +1 -1 ports/net/gnomemeeting/distinfo 1.3 +37 -42 ports/net/gnomemeeting/files/patch-aa 1.2 +7 -7 ports/net/gnomemeeting/files/patch-ad 1.2 +6 -6 ports/net/gnomemeeting/files/patch-ae To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 8:41:24 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BF01537B408; Mon, 20 Aug 2001 08:41:19 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KFfGD89464; Mon, 20 Aug 2001 08:41:16 -0700 (PDT) (envelope-from ru) Message-Id: <200108201541.f7KFfGD89464@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 20 Aug 2001 08:41:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 hier.7 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2001/08/20 08:41:15 PDT Modified files: share/man/man7 hier.7 Log: Even more libss removal. Revision Changes Path 1.54 +1 -5 src/share/man/man7/hier.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 8:43:20 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 63E2A37B401; Mon, 20 Aug 2001 08:43:15 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KFhFc89839; Mon, 20 Aug 2001 08:43:15 -0700 (PDT) (envelope-from brian) Message-Id: <200108201543.f7KFhFc89839@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 08:43:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libdevstat devstat.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 08:43:15 PDT Modified files: lib/libdevstat devstat.c Log: Better snprintf() handling. Prompted by: bde Revision Changes Path 1.10 +25 -40 src/lib/libdevstat/devstat.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 8:43:40 2001 Delivered-To: cvs-all@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 9D39937B418; Mon, 20 Aug 2001 08:43:09 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.2/8.11.2) id f7KFh6l80740; Mon, 20 Aug 2001 18:43:06 +0300 (EEST) (envelope-from ru) Date: Mon, 20 Aug 2001 18:43:06 +0300 From: Ruslan Ermilov To: Mark Murray , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Cc: Kris Kennaway Subject: Re: cvs commit: src/etc/mtree BSD.include.dist Message-ID: <20010820184306.B77840@sunbay.com> References: <200108201541.f7KFfGD89464@freefall.freebsd.org> <200108201239.f7KCdNI45290@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108201239.f7KCdNI45290@freefall.freebsd.org>; from markm@FreeBSD.org on Mon, Aug 20, 2001 at 05:39:23AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG There's the hier(7) manpage, that should be kept in sync with /etc/mtree files. On Mon, Aug 20, 2001 at 05:39:23AM -0700, Mark Murray wrote: > markm 2001/08/20 05:39:23 PDT > > Modified files: > etc/mtree BSD.include.dist > Log: > More libss removal. > > Revision Changes Path > 1.49 +1 -3 src/etc/mtree/BSD.include.dist On Mon, Aug 20, 2001 at 08:41:15AM -0700, Ruslan Ermilov wrote: > ru 2001/08/20 08:41:15 PDT > > Modified files: > share/man/man7 hier.7 > Log: > Even more libss removal. > > Revision Changes Path > 1.54 +1 -5 src/share/man/man7/hier.7 Cheers, -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 8:43:39 2001 Delivered-To: cvs-all@freebsd.org Received: from lists.unixathome.org (lists.unixathome.org [210.48.103.158]) by hub.freebsd.org (Postfix) with ESMTP id 4258F37B42F; Mon, 20 Aug 2001 08:43:19 -0700 (PDT) (envelope-from dan@lists.unixathome.org) Received: from wocker (lists.unixathome.org [210.48.103.158]) by lists.unixathome.org (8.11.1/8.11.1) with ESMTP id f7KFgi044996; Tue, 21 Aug 2001 03:42:45 +1200 (NZST) (envelope-from dan@lists.unixathome.org) From: "Dan Langille" Organization: novice in training To: "Jacques A. Vidrine" Date: Mon, 20 Aug 2001 11:42:34 -0400 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: cvs commit: ports/biology/p5-bioperl-devel Makefile ports/biology/p5-bioperl-devel/files Makefile.man Reply-To: dan@langille.org Cc: Johann Visagie , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Message-ID: <3B80F7AA.10907.599E570@localhost> In-reply-to: <20010820103657.D74106@madman.nectar.com> References: <3B80F0F1.3282.57FA006@localhost>; from dan@langille.org on Mon, Aug 20, 2001 at 11:13:53AM -0400 X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 20 Aug 2001, at 10:36, Jacques A. Vidrine wrote: > Why does FreshPorts care? If it wants Makefile variable values, it > should invoke (or emulate) make. It does invoke make. But it needs all the components in order for make to function. I can hear the questions now... Why not use cvsup? Too much overhead. FreshPorts uses "fetch" to obtain the pieces it needs. FreshPorts "knows" the basic components needed to extract the information it needs. The port in question needs files/Makefile.man in order for the "make -V PORTVERSION -V etc...." to function. I have already modified FreshPorts to cater for this special case. But I'd like to see a standard set in order to avoid special cases. -- Dan Langille - DVL Software Limited FreshPorts - http://freshports.org/ - the place for ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 8:44:26 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ADAD137B412; Mon, 20 Aug 2001 08:44:17 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KFiHQ90069; Mon, 20 Aug 2001 08:44:17 -0700 (PDT) (envelope-from brian) Message-Id: <200108201544.f7KFiHQ90069@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 08:44:17 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 08:44:17 PDT Modified files: lib/libfetch ftp.c Log: Handle snprintf() returning < 0 (not just -1) MFC after: 2 weeks Revision Changes Path 1.69 +2 -2 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 Mon Aug 20 8:47:15 2001 Delivered-To: cvs-all@freebsd.org Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by hub.freebsd.org (Postfix) with ESMTP id 659C037B415; Mon, 20 Aug 2001 08:47:01 -0700 (PDT) (envelope-from max@vega.com) Received: from vega.vega.com (dialup11-60.iptelecom.net.ua [212.9.228.188]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id SAA67298; Mon, 20 Aug 2001 18:46:48 +0300 (EEST) (envelope-from max@vega.com) Received: (from max@localhost) by vega.vega.com (8.11.4/8.11.3) id f7KFkGh16555; Mon, 20 Aug 2001 18:46:16 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) From: Maxim Sobolev Message-Id: <200108201546.f7KFkGh16555@vega.vega.com> Subject: Re: cvs commit: ports/editors/AbiWord pkg-message Makefile To: n@nectar.com (Jacques A. Vidrine) Date: Mon, 20 Aug 2001 18:45:36 +0300 (EEST) Cc: sobomax@FreeBSD.ORG (Maxim Sobolev), cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-Reply-To: <20010820103417.C74106@madman.nectar.com> from "Jacques A. Vidrine" at Aug 20, 2001 10:34:17 AM X-Mailer: ELM [version 2.5 PL5] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > On Mon, Aug 20, 2001 at 06:27:17AM -0700, Maxim Sobolev wrote: > > sobomax 2001/08/20 06:27:17 PDT > > > > Modified files: > > editors/AbiWord Makefile > > Added files: > > editors/AbiWord pkg-message > > Log: > > Warn a user that if he wants to display AbiWord on the remote X terminal > > than he neesd to make fonts available to remote X server. > > How is this different from any other X application? The AbiWord comes with number of fonts necessary for it to run. When it is executed on the local X server the wrapper script uses xset(1) tool to add path to these fonts to the server's fontpath, which obviously doesn't work for the remote X server. Hence, when using AbiWord remotely, the user required to make sure that the fonts in question are available to the X server, otherwise AbiWord refuses to start. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 8:49:13 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 45E2C37B413; Mon, 20 Aug 2001 08:49:07 -0700 (PDT) (envelope-from tobez@FreeBSD.org) Received: (from tobez@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KFmx390696; Mon, 20 Aug 2001 08:48:59 -0700 (PDT) (envelope-from tobez) Message-Id: <200108201548.f7KFmx390696@freefall.freebsd.org> From: Anton Berezin Date: Mon, 20 Aug 2001 08:48:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/p5-Tcl Makefile ports/lang/p5-Tcl/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tobez 2001/08/20 08:48:59 PDT Modified files: lang/p5-Tcl Makefile lang/p5-Tcl/files patch-aa Log: Make lang/p5-Tcl to actually link with libtcl. While at it, fix the port build on -current. PR: 27705 Revision Changes Path 1.17 +3 -1 ports/lang/p5-Tcl/Makefile 1.6 +1 -1 ports/lang/p5-Tcl/files/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 8:49:35 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B38C37B429; Mon, 20 Aug 2001 08:49:26 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KFnPa90840; Mon, 20 Aug 2001 08:49:25 -0700 (PDT) (envelope-from kevlo) Message-Id: <200108201549.f7KFnPa90840@freefall.freebsd.org> From: Kevin Lo Date: Mon, 20 Aug 2001 08:49:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/xhippo/files patch-aa patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2001/08/20 08:49:25 PDT Removed files: audio/xhippo/files patch-aa patch-ab Log: Bad me. These files should be removed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 8:50:21 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 91FEE37B401; Mon, 20 Aug 2001 08:50:18 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KFoID91029; Mon, 20 Aug 2001 08:50:18 -0700 (PDT) (envelope-from obrien) Message-Id: <200108201550.f7KFoID91029@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 20 Aug 2001 08:50:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/vim6 Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/20 08:50:18 PDT Modified files: editors/vim6 Makefile distinfo Log: Update to Vim 6.0 beta AS Revision Changes Path 1.127 +2 -2 ports/editors/vim6/Makefile 1.72 +1 -1 ports/editors/vim6/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 8:50:42 2001 Delivered-To: cvs-all@freebsd.org Received: from storage-1.netscalibur.it (mail1.netscalibur.it [194.244.215.2]) by hub.freebsd.org (Postfix) with ESMTP id 0374737B406; Mon, 20 Aug 2001 08:50:32 -0700 (PDT) (envelope-from olgeni@uli.it) Received: from dev1.localdomain.net (194.244.229.102) by storage-1.netscalibur.it (5.5.040) id 3B69D5C700021CF9; Mon, 20 Aug 2001 17:50:07 +0200 Received: from localhost (localhost [127.0.0.1]) by dev1.localdomain.net (8.11.5/8.11.5) with ESMTP id f7KFshf68137; Mon, 20 Aug 2001 17:54:43 +0200 (CEST) (envelope-from olgeni@uli.it) Date: Mon, 20 Aug 2001 17:54:42 +0200 (CEST) From: Jimmy Olgeni X-X-Sender: To: Cc: , Dmitry Sivachenko Subject: Re: cvs commit: ports/x11-wm Makefile ports/x11-wm/kdeartwork Makefile distinfo pkg-comment pkg-descr pkg-plist In-Reply-To: <200108201521.f7KFL9P86222@freefall.freebsd.org> Message-ID: <20010820174809.H56683-100000@dev1.localdomain.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 20 Aug 2001, Dmitry Sivachenko wrote: > demon 2001/08/20 08:21:09 PDT > > Modified files: > x11-wm Makefile > Added files: > x11-wm/kdeartwork Makefile distinfo pkg-comment pkg-descr > pkg-plist > Log: > Additional themes, sounds, wallpapers and window styles for KDE. Sometimes this port doesn't compile because it does not find libjpeg.la. I know it's not kdeartwork's fault, the same happens with koffice: I can compile them on my XFree-4 box but not on the XFree-3 box, and I have no clue about why it does this. At least it think the only difference is XFree86... graphics/jpeg does not actually install the .la file. So I'm looking for clues :o) Which XFree version did you use? Do you have the .la file installed? Does anybody have the same problem? or any suggestion? please :) -- jimmy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 8:58:58 2001 Delivered-To: cvs-all@freebsd.org Received: from chg.ru (netserv1.chg.ru [193.233.46.3]) by hub.freebsd.org (Postfix) with ESMTP id 2440937B403; Mon, 20 Aug 2001 08:58:46 -0700 (PDT) (envelope-from dima@chg.ru) Received: (from dima@localhost) by chg.ru (8.9.3/8.9.3) id TAA90751; Mon, 20 Aug 2001 19:58:20 +0400 (MSD) (envelope-from dima) Date: Mon, 20 Aug 2001 19:58:20 +0400 From: "Dmitry S. Sivachenko" To: Jimmy Olgeni Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, Dmitry Sivachenko Subject: Re: cvs commit: ports/x11-wm Makefile ports/x11-wm/kdeartwork Makefile distinfo pkg-comment pkg-descr pkg-plist Message-ID: <20010820195820.A90243@netserv1.chg.ru> References: <200108201521.f7KFL9P86222@freefall.freebsd.org> <20010820174809.H56683-100000@dev1.localdomain.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <20010820174809.H56683-100000@dev1.localdomain.net>; from olgeni@uli.it on Mon, Aug 20, 2001 at 05:54:42PM +0200 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Aug 20, 2001 at 05:54:42PM +0200, Jimmy Olgeni wrote: > > On Mon, 20 Aug 2001, Dmitry Sivachenko wrote: > > > demon 2001/08/20 08:21:09 PDT > > > > Modified files: > > x11-wm Makefile > > Added files: > > x11-wm/kdeartwork Makefile distinfo pkg-comment pkg-descr > > pkg-plist > > Log: > > Additional themes, sounds, wallpapers and window styles for KDE. > > Sometimes this port doesn't compile because it does not find > libjpeg.la. I know it's not kdeartwork's fault, the same happens with > koffice: I can compile them on my XFree-4 box but not on the XFree-3 > box, and I have no clue about why it does this. At least it think the > only difference is XFree86... > > graphics/jpeg does not actually install the .la file. > > So I'm looking for clues :o) > > Which XFree version did you use? 3 > Do you have the .la file installed? NO. > > Does anybody have the same problem? or any suggestion? > > please :) > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 8:59: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DC66637B410; Mon, 20 Aug 2001 08:58:53 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KFwrQ92200; Mon, 20 Aug 2001 08:58:53 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108201558.f7KFwrQ92200@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 20 Aug 2001 08:58:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11 Makefile ports/x11/launch.app Makefile distinfo pkg-comment pkg-descr pkg-plist ports/x11/launch.app/files patch-GNUmakefile patch-execute.c patch-launch.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/20 08:58:53 PDT Modified files: x11 Makefile Added files: x11/launch.app Makefile distinfo pkg-comment pkg-descr pkg-plist x11/launch.app/files patch-GNUmakefile patch-execute.c patch-launch.c Log: Add launch.app 0.6.5, an application launcher for WindowMaker dock. Revision Changes Path 1.330 +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 Aug 20 8:59:25 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C1BF037B503; Mon, 20 Aug 2001 08:59:12 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KFxCI92398; Mon, 20 Aug 2001 08:59:12 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108201559.f7KFxCI92398@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 20 Aug 2001 08:59:12 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/20 08:59:12 PDT Modified files: . modules Log: launch.app --> ports/x11/launch.app Revision Changes Path 1.3691 +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 Aug 20 8:59:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A308037B403; Mon, 20 Aug 2001 08:59:07 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KFx7C92297; Mon, 20 Aug 2001 08:59:07 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108201559.f7KFx7C92297@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 20 Aug 2001 08:59:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/gnomedb Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/20 08:59:07 PDT Modified files: databases/gnomedb Makefile distinfo pkg-plist Log: Chase distfile update w/o version bump. Submitted by: olgeni Revision Changes Path 1.9 +1 -1 ports/databases/gnomedb/Makefile 1.5 +1 -1 ports/databases/gnomedb/distinfo 1.6 +1 -0 ports/databases/gnomedb/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 Aug 20 8:59:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 25AB537B63A; Mon, 20 Aug 2001 08:59:37 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KFxbO92470; Mon, 20 Aug 2001 08:59:37 -0700 (PDT) (envelope-from kevlo) Message-Id: <200108201559.f7KFxbO92470@freefall.freebsd.org> From: Kevin Lo Date: Mon, 20 Aug 2001 08:59:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/glchess Makefile distinfo ports/games/glchess/files patch-Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2001/08/20 08:59:37 PDT Modified files: games/glchess Makefile distinfo games/glchess/files patch-Makefile Log: Update to version 0.3.4 PR: 29889 Submitted by: MAINTAINER Revision Changes Path 1.2 +6 -6 ports/games/glchess/Makefile 1.2 +1 -1 ports/games/glchess/distinfo 1.2 +1 -1 ports/games/glchess/files/patch-Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 9: 1:29 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E7FF37B410; Mon, 20 Aug 2001 09:01:24 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KG1Or92945; Mon, 20 Aug 2001 09:01:24 -0700 (PDT) (envelope-from kevlo) Message-Id: <200108201601.f7KG1Or92945@freefall.freebsd.org> From: Kevin Lo Date: Mon, 20 Aug 2001 09:01:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/gigabase Makefile distinfo ports/databases/gigabase/files patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2001/08/20 09:01:24 PDT Modified files: databases/gigabase Makefile distinfo Removed files: databases/gigabase/files patch-ab Log: Update to version 2.38 PR: 29878 Submitted by: MAINTAINER Revision Changes Path 1.19 +2 -2 ports/databases/gigabase/Makefile 1.23 +1 -1 ports/databases/gigabase/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 9: 6:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 356D437B407; Mon, 20 Aug 2001 09:06:14 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KG6Ei96560; Mon, 20 Aug 2001 09:06:14 -0700 (PDT) (envelope-from kevlo) Message-Id: <200108201606.f7KG6Ei96560@freefall.freebsd.org> From: Kevin Lo Date: Mon, 20 Aug 2001 09:06:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/wavplay Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2001/08/20 09:06:14 PDT Modified files: audio/wavplay Makefile distinfo Log: Added ONLY_FOR_ARCHS = i386 to Makefile and removed an unnecessary MD5 checksum file from distinfo. PR: 29864 Submitted by: MAINTAINER Revision Changes Path 1.3 +3 -1 ports/audio/wavplay/Makefile 1.2 +0 -1 ports/audio/wavplay/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 9:10: 9 2001 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 ED22037B405; Mon, 20 Aug 2001 09:10:04 -0700 (PDT) (envelope-from ken@panzer.kdm.org) Received: (from ken@localhost) by panzer.kdm.org (8.9.3/8.9.1) id KAA70610; Mon, 20 Aug 2001 10:10:03 -0600 (MDT) (envelope-from ken) Date: Mon, 20 Aug 2001 10:10:03 -0600 From: "Kenneth D. Merry" To: Brian Somers Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libdevstat devstat.c Message-ID: <20010820101003.A70555@panzer.kdm.org> References: <200108201245.f7KCj2946281@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: <200108201245.f7KCj2946281@freefall.freebsd.org>; from brian@FreeBSD.org on Mon, Aug 20, 2001 at 05:45:02AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Aug 20, 2001 at 05:45:02 -0700, Brian Somers wrote: > brian 2001/08/20 05:45:02 PDT > > Modified files: > lib/libdevstat devstat.c > Log: > Handle snprintf() returning -1. > > MFC after: 2 weeks > > Revision Changes Path > 1.9 +5 -3 src/lib/libdevstat/devstat.c Uhh, any particular reason you didn't send me mail about this? (from libdevstat/Makefile) MAINTAINER=ken@FreeBSD.ORG Your subsequent change, in particular, is a good bit more involved, and neither you nor Bruce saw fit to send me any mail about it. 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 Mon Aug 20 9:23:51 2001 Delivered-To: cvs-all@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 4505537B40C; Mon, 20 Aug 2001 09:23:38 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.2/8.11.2) id f7KGNYU85334; Mon, 20 Aug 2001 19:23:34 +0300 (EEST) (envelope-from ru) Date: Mon, 20 Aug 2001 19:23:34 +0300 From: Ruslan Ermilov To: Mark Murray Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/su su.c Message-ID: <20010820192334.B83948@sunbay.com> References: <200108201246.f7KCkBi46516@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108201246.f7KCkBi46516@freefall.freebsd.org>; from markm@FreeBSD.org on Mon, Aug 20, 2001 at 05:46:11AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Aug 20, 2001 at 05:46:11AM -0700, Mark Murray wrote: > markm 2001/08/20 05:46:11 PDT > > Modified files: > usr.bin/su su.c > Log: > Very minor stylistic nit. > > Discussed with: ru > > Revision Changes Path > 1.44 +2 -3 src/usr.bin/su/su.c > Yes, but please fix style(9) example then as well, so people don't do it wrong further. Thanks, -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 9:24:10 2001 Delivered-To: cvs-all@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id 962E737B401; Mon, 20 Aug 2001 09:24:00 -0700 (PDT) (envelope-from dillon@earth.backplane.com) Received: (from dillon@localhost) by earth.backplane.com (8.11.4/8.11.2) id f7KGNlk51603; Mon, 20 Aug 2001 09:23:47 -0700 (PDT) (envelope-from dillon) Date: Mon, 20 Aug 2001 09:23:47 -0700 (PDT) From: Matt Dillon Message-Id: <200108201623.f7KGNlk51603@earth.backplane.com> To: Bruce Evans Cc: Peter Wemm , , Subject: Re: cvs commit: src/sys/boot/common loader.8 src/sys/conf options src/sys/i386/i386 machdep.c src/sys/i386/include param.h src/sys/kern subr_param.c src/sys/sys buf.h src/sys/vm swap_pager.c References: <20010820194057.Y54152-100000@besplex.bde.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG :> Matt Dillon wrote: :> > dillon 2001/08/19 17:41:13 PDT :> > :> > Modified files: :> > sys/boot/common loader.8 :> > sys/conf options :> > sys/i386/i386 machdep.c :> > sys/i386/include param.h :> > sys/kern subr_param.c :> > sys/sys buf.h :> > sys/vm swap_pager.c :> > Log: :> > Limit the amount of KVM reserved for the buffer cache and for swap-meta :> > information. The default limits only effect machines with > 1GB of ram :> > and can be overriden with two new kernel conf variables VM_SWZONE_SIZE_MAX :> > and VM_BCACHE_SIZE_MAX, or with loader variables kern.maxswzone and :> > kern.maxbcache. This has the effect of leaving more KVM available for :> > sizing NMBCLUSTERS and 'maxusers' and should avoid tripups where a sysad :> > adds memory to a machine and then sees the kernel panic on boot due to :> > running out of KVM. :> :> And how about the rest of the platforms? You have broken them by putting :> references to a MD include (sys/i386/include/param.h) into a MI file :> (subr_param.c). : :Actually, by not updating all copies of this MD include to define :suitable MD constants for VM_BCACHE_SIZE_MAX and VM_SWZONE_SIZE_MAX. :These constants need to be MD since the amount of KVM is MD. Except :these constants shouldn't exist. Just use a suitable fraction of total :KVM. Alternatively, set these constants to "infinity" by default and :override them on i386's only. 64-bit machines should have enough KVM :to map the buffer cache millions of times. : :Bruce The globals are properly machine-independant. These parameters effect major sysad-exposed pieces of the machine. The #define'd constants are properly machine-dependant. They are properly defined in the general options because they apply to all builds. I will fix kern/subr_param.c to conditionally assign the constants, which will fix the other builds. If the #define isn't specified by a build, or specified as 0, the effect is unlimited. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 9:29:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A389637B40A; Mon, 20 Aug 2001 09:29:13 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KGTDW99407; Mon, 20 Aug 2001 09:29:13 -0700 (PDT) (envelope-from dillon) Message-Id: <200108201629.f7KGTDW99407@freefall.freebsd.org> From: Matt Dillon Date: Mon, 20 Aug 2001 09:29:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern subr_param.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2001/08/20 09:29:13 PDT Modified files: sys/kern subr_param.c Log: Conditionalize VM_SWZONE_SIZE_MAX and VM_BCACHE_SIZE_MAX so MD sections that don't define these constants don't break. Revision Changes Path 1.44 +5 -1 src/sys/kern/subr_param.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 9:33:23 2001 Delivered-To: cvs-all@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id 0957437B405; Mon, 20 Aug 2001 09:33:18 -0700 (PDT) (envelope-from dillon@earth.backplane.com) Received: (from dillon@localhost) by earth.backplane.com (8.11.4/8.11.2) id f7KGXGJ51695; Mon, 20 Aug 2001 09:33:16 -0700 (PDT) (envelope-from dillon) Date: Mon, 20 Aug 2001 09:33:16 -0700 (PDT) From: Matt Dillon Message-Id: <200108201633.f7KGXGJ51695@earth.backplane.com> To: Bruce Evans Cc: Peter Wemm , , Subject: Re: cvs commit: src/sys/boot/common loader.8 src/sys/conf options src/sys/i386/i386 machdep.c src/sys/i386/include param.h src/sys/kern subr_param.c src/sys/sys buf.h src/sys/vm swap_pager.c References: <20010820194057.Y54152-100000@besplex.bde.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG :Actually, by not updating all copies of this MD include to define :suitable MD constants for VM_BCACHE_SIZE_MAX and VM_SWZONE_SIZE_MAX. :These constants need to be MD since the amount of KVM is MD. Except :these constants shouldn't exist. Just use a suitable fraction of total :KVM. Alternatively, set these constants to "infinity" by default and :override them on i386's only. 64-bit machines should have enough KVM :to map the buffer cache millions of times. : :Bruce There is no 'suitable fraction'. That's one of the problems. If you have a machine with 64MB of ram then having 512MB of swap is reasonable. If you have a machine with 4G of them then having 32G of swap is typically unreasonable. Also, the kernel_map, clean_map, buffer_map, etc... all the initialization code for these maps is *improperly* sitting in machine-dependant sections. It should be machine-indendant sections. I fixed the buffer map allocation code in IA32 because it is the basis for all the dups, and that is the code that will eventually be migrated to MI. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 9:40:52 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 7A60F37B403; Mon, 20 Aug 2001 09:40:37 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7KGeRv12656; Mon, 20 Aug 2001 17:40:27 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7KGeGU87252; Mon, 20 Aug 2001 17:40:16 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108201640.f7KGeGU87252@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: "Kenneth D. Merry" Cc: Brian Somers , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/lib/libdevstat devstat.c In-Reply-To: Message from "Kenneth D. Merry" of "Mon, 20 Aug 2001 10:10:03 MDT." <20010820101003.A70555@panzer.kdm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 20 Aug 2001 17:40:16 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Mon, Aug 20, 2001 at 05:45:02 -0700, Brian Somers wrote: > > brian 2001/08/20 05:45:02 PDT > > > > Modified files: > > lib/libdevstat devstat.c > > Log: > > Handle snprintf() returning -1. > > > > MFC after: 2 weeks > > > > Revision Changes Path > > 1.9 +5 -3 src/lib/libdevstat/devstat.c > > Uhh, any particular reason you didn't send me mail about this? > > (from libdevstat/Makefile) > > MAINTAINER=ken@FreeBSD.ORG > > Your subsequent change, in particular, is a good bit more involved, and > neither you nor Bruce saw fit to send me any mail about it. To be absolutely honest, I didn't even look for MAINTAINER flags. I was under the impression that MAINTAINER means that you have an interest in this code and would like to be notified of any changes in case you know of a better way of doing it or in case they conflict with local changes that you haven't yet committed. If this is the case, then please feel free to back out my changes and apply your own. I can then make a mental note not to do the MFC. BTW, I appreciate that this message sounds somewhat arrogant, but IMHO the MAINTAINER bit is not meant to prevent progress but rather to improve coherency for a given piece of software. > Ken > -- > Kenneth Merry > ken@kdm.org -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 10: 5:15 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 859A237B40F; Mon, 20 Aug 2001 10:05:10 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KH5AD03987; Mon, 20 Aug 2001 10:05:10 -0700 (PDT) (envelope-from alex) Message-Id: <200108201705.f7KH5AD03987@freefall.freebsd.org> From: Alexander Langer Date: Mon, 20 Aug 2001 10:05:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/xcdroast/files patch-Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alex 2001/08/20 10:05:10 PDT Modified files: sysutils/xcdroast/files patch-Makefile Log: Better handling for gtk-config. This is still not perfect. Submitted by: Oliver Lehmann (MAINTAINER) Revision Changes Path 1.3 +16 -2 ports/sysutils/xcdroast/files/patch-Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 10:13:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 42DD437B406; Mon, 20 Aug 2001 10:13:25 -0700 (PDT) (envelope-from roger@FreeBSD.org) Received: (from roger@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KHDPf06731; Mon, 20 Aug 2001 10:13:25 -0700 (PDT) (envelope-from roger) Message-Id: <200108201713.f7KHDPf06731@freefall.freebsd.org> From: Roger Hardiman Date: Mon, 20 Aug 2001 10:13:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/gnomemeeting Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roger 2001/08/20 10:13:25 PDT Modified files: net/gnomemeeting Makefile Log: Update master site location Revision Changes Path 1.4 +2 -2 ports/net/gnomemeeting/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 10:16:24 2001 Delivered-To: cvs-all@freebsd.org Received: from mail-green.research.att.com (H-135-207-30-103.research.att.com [135.207.30.103]) by hub.freebsd.org (Postfix) with ESMTP id 3F14037B407; Mon, 20 Aug 2001 10:16:19 -0700 (PDT) (envelope-from fenner@research.att.com) Received: from alliance.research.att.com (alliance.research.att.com [135.207.26.26]) by mail-green.research.att.com (Postfix) with ESMTP id BDDDC1E051; Mon, 20 Aug 2001 13:16:05 -0400 (EDT) Received: from windsor.research.att.com (windsor.research.att.com [135.207.26.46]) by alliance.research.att.com (8.8.7/8.8.7) with ESMTP id NAA08129; Mon, 20 Aug 2001 13:16:04 -0400 (EDT) From: Bill Fenner Received: (from fenner@localhost) by windsor.research.att.com (8.8.8+Sun/8.8.5) id KAA18424; Mon, 20 Aug 2001 10:16:04 -0700 (PDT) Message-Id: <200108201716.KAA18424@windsor.research.att.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII To: jhb@freebsd.org Subject: Re: cvs commit: src/sys/kern kern_proc.c Cc: paul@freebsd-services.com, cvs-all@freebsd.org, cvs-committers@freebsd.org, peter@wemm.org Date: Mon, 20 Aug 2001 10:16:03 -0700 Versions: dmail (solaris) 2.2j/makemail 2.9b Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG >cvsweb is your friend. :) As is 'fcvs' for committers. As is http://people.freebsd.org/~fenner/cgi/log-entry.cgi if you want to see the relevant diffs from a given commit email. Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 10:26:27 2001 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 E2C5F37B40E; Mon, 20 Aug 2001 10:26:17 -0700 (PDT) (envelope-from ken@panzer.kdm.org) Received: (from ken@localhost) by panzer.kdm.org (8.9.3/8.9.1) id LAA71174; Mon, 20 Aug 2001 11:26:06 -0600 (MDT) (envelope-from ken) Date: Mon, 20 Aug 2001 11:26:06 -0600 From: "Kenneth D. Merry" To: Brian Somers Cc: Brian Somers , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/lib/libdevstat devstat.c Message-ID: <20010820112605.A70981@panzer.kdm.org> References: <200108201640.f7KGeGU87252@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200108201640.f7KGeGU87252@hak.lan.Awfulhak.org>; from brian@Awfulhak.org on Mon, Aug 20, 2001 at 05:40:16PM +0100 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Aug 20, 2001 at 17:40:16 +0100, Brian Somers wrote: > > On Mon, Aug 20, 2001 at 05:45:02 -0700, Brian Somers wrote: > > > brian 2001/08/20 05:45:02 PDT > > > > > > Modified files: > > > lib/libdevstat devstat.c > > > Log: > > > Handle snprintf() returning -1. > > > > > > MFC after: 2 weeks > > > > > > Revision Changes Path > > > 1.9 +5 -3 src/lib/libdevstat/devstat.c > > > > Uhh, any particular reason you didn't send me mail about this? > > > > (from libdevstat/Makefile) > > > > MAINTAINER=ken@FreeBSD.ORG > > > > Your subsequent change, in particular, is a good bit more involved, and > > neither you nor Bruce saw fit to send me any mail about it. > > To be absolutely honest, I didn't even look for MAINTAINER flags. I > was under the impression that MAINTAINER means that you have an > interest in this code and would like to be notified of any changes > in case you know of a better way of doing it or in case they conflict > with local changes that you haven't yet committed. It bothers me that you didn't even look to see if there was a maintainer for the code. With the first commit it is understandable, since it was small. The second commit, however, was more involved. It should be obvious that the code has been changing recently, since I last made a commit just a couple of days ago. > If this is the case, then please feel free to back out my changes and > apply your own. I can then make a mental note not to do the MFC. I will be changing it, at least, since there are some style and cut-n-paste bogons in the code you committed. > BTW, I appreciate that this message sounds somewhat arrogant, but > IMHO the MAINTAINER bit is not meant to prevent progress but rather > to improve coherency for a given piece of software. I agree, the maintainer bit should not prevent progress. As I said above, if your first commit were the only one, I probably wouldn't have said anything. I don't complain when the doc folks go through and fix up man pages that I have written, etc. Not that I would do this, but how would you feel if I started spamming ppp without talking to you about it? 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 Mon Aug 20 10:26:51 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DBC7437B408; Mon, 20 Aug 2001 10:26:45 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KHQjw07962; Mon, 20 Aug 2001 10:26:45 -0700 (PDT) (envelope-from mjacob) Message-Id: <200108201726.f7KHQjw07962@freefall.freebsd.org> From: Matt Jacob Date: Mon, 20 Aug 2001 10:26:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/isp ispmbox.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mjacob 2001/08/20 10:26:45 PDT Modified files: sys/dev/isp ispmbox.h Log: Add MBOX_GET_PCI_PARAMS alias. MFC after: 2 weeks Revision Changes Path 1.32 +2 -1 src/sys/dev/isp/ispmbox.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 10:28:36 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E819137B415; Mon, 20 Aug 2001 10:28:32 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KHSWm08171; Mon, 20 Aug 2001 10:28:32 -0700 (PDT) (envelope-from mjacob) Message-Id: <200108201728.f7KHSWm08171@freefall.freebsd.org> From: Matt Jacob Date: Mon, 20 Aug 2001 10:28:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/isp isp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mjacob 2001/08/20 10:28:32 PDT Modified files: sys/dev/isp isp.c Log: Clean up some ways in which we set defaults for SCSI cards that do not have valid NVRAM. In particular, we were leaving a retry count set (to retry selection timeouts) when thats not really what we want. Do some constant string additions so that LOGDEBUG0 info is useful across all cards. MFC after: 2 weeks Revision Changes Path 1.74 +173 -137 src/sys/dev/isp/isp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 10:31:56 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 12A3137B405; Mon, 20 Aug 2001 10:31:51 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KHVmK08502; Mon, 20 Aug 2001 10:31:48 -0700 (PDT) (envelope-from bmah) Message-Id: <200108201731.f7KHVmK08502@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 20 Aug 2001 10:31:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2001/08/20 10:31:48 PDT Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Typo and markup fixes. Submitted by: Alex Kapranoff Revision Changes Path 1.105 +23 -23 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 10:34:16 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C0BB37B415; Mon, 20 Aug 2001 10:34:11 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KHYBl08730; Mon, 20 Aug 2001 10:34:11 -0700 (PDT) (envelope-from bmah) Message-Id: <200108201734.f7KHYBl08730@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 20 Aug 2001 10:34:11 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2001/08/20 10:34:10 PDT Modified files: share/sgml man-refs.ent Log: Add manpage entity for digictl(8). Revision Changes Path 1.95 +2 -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 Mon Aug 20 10:53:27 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 38B7637B418; Mon, 20 Aug 2001 10:53:18 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7KHr6v12945; Mon, 20 Aug 2001 18:53:07 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7KHqtU88613; Mon, 20 Aug 2001 18:52:55 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108201752.f7KHqtU88613@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: "Kenneth D. Merry" Cc: Brian Somers , Brian Somers , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com, brian@freebsd-services.com Subject: Re: cvs commit: src/lib/libdevstat devstat.c In-Reply-To: Message from "Kenneth D. Merry" of "Mon, 20 Aug 2001 11:26:06 MDT." <20010820112605.A70981@panzer.kdm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 20 Aug 2001 18:52:55 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > If this is the case, then please feel free to back out my changes and > > apply your own. I can then make a mental note not to do the MFC. > > I will be changing it, at least, since there are some style and cut-n-paste > bogons in the code you committed. Ok. [.....] > Not that I would do this, but how would you feel if I started spamming ppp > without talking to you about it? From ``cvs log Makefile'': : revision 1.69 : date: 2000/01/29 11:08:00; author: brian; state: Exp; lines: +1 -3 : Remove MAINTAINER= : : I don't claim to own the code and certainly don't want to discourage : people from fixing or updating it. Of course it depends on what you mean by ``spamming'' :*) > Ken > -- > Kenneth Merry > ken@kdm.org -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 10:57:22 2001 Delivered-To: cvs-all@freebsd.org Received: from franklin.physics.purdue.edu (franklin.physics.purdue.edu [128.210.146.222]) by hub.freebsd.org (Postfix) with ESMTP id 9F66237B418; Mon, 20 Aug 2001 10:57:14 -0700 (PDT) (envelope-from will@physics.purdue.edu) Received: from physics.purdue.edu (bohr.physics.purdue.edu [128.210.67.12]) by franklin.physics.purdue.edu (Postfix) with ESMTP id DC2E620F01; Mon, 20 Aug 2001 12:58:25 -0500 (EST) Received: by physics.purdue.edu (Postfix, from userid 12409) id 273025BC3; Mon, 20 Aug 2001 12:59:14 -0500 (EST) Date: Mon, 20 Aug 2001 12:59:14 -0500 From: Will Andrews To: Dan Langille Cc: "Jacques A. Vidrine" , Johann Visagie , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/biology/p5-bioperl-devel Makefile ports/biology/p5-bioperl-devel/files Makefile.man Message-ID: <20010820125914.H35352@bohr.physics.purdue.edu> Reply-To: Will Andrews Mail-Followup-To: Dan Langille , "Jacques A. Vidrine" , Johann Visagie , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <3B80F0F1.3282.57FA006@localhost>; <20010820103657.D74106@madman.nectar.com> <3B80F7AA.10907.599E570@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.17i In-Reply-To: <3B80F7AA.10907.599E570@localhost>; from dan@langille.org on Mon, Aug 20, 2001 at 11:42:34AM -0400 X-Operating-System: FreeBSD 4.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Aug 20, 2001 at 11:42:34AM -0400, Dan Langille (dan@langille.org) wrote: > It does invoke make. But it needs all the components in order for > make to function. ..which as I've told you before is not hard to do. You just need to make a perl script to read in the primary Makefile and look for ".include" directives then pull in the files. Although I agree that consistency is required.. you should still do this the right way as above... simply because things change. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 10:58:52 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3AA0B37B401; Mon, 20 Aug 2001 10:58:47 -0700 (PDT) (envelope-from fenner@FreeBSD.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KHwlO11554; Mon, 20 Aug 2001 10:58:47 -0700 (PDT) (envelope-from fenner) Message-Id: <200108201758.f7KHwlO11554@freefall.freebsd.org> From: Bill Fenner Date: Mon, 20 Aug 2001 10:58:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet6 esp_core.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG fenner 2001/08/20 10:58:46 PDT Modified files: sys/netinet6 esp_core.c Log: Fix fencepost error causing creation of 0-length mbufs when the boundary between header and data fell on the boundary between two mbufs. Revision Changes Path 1.6 +3 -3 src/sys/netinet6/esp_core.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 11:13:56 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 50F9D37B406; Mon, 20 Aug 2001 11:13:51 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KIDp816910; Mon, 20 Aug 2001 11:13:51 -0700 (PDT) (envelope-from brian) Message-Id: <200108201813.f7KIDp816910@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 11:13:51 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 11:13:51 PDT Modified files: libexec/rlogind rlogind.c Log: Handle snprintf() returning < -1. Revision Changes Path 1.37 +2 -2 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 Mon Aug 20 11:15:11 2001 Delivered-To: cvs-all@freebsd.org Received: from lists.unixathome.org (lists.unixathome.org [210.48.103.158]) by hub.freebsd.org (Postfix) with ESMTP id BDB8137B412; Mon, 20 Aug 2001 11:14:58 -0700 (PDT) (envelope-from dan@lists.unixathome.org) Received: from wocker (lists.unixathome.org [210.48.103.158]) by lists.unixathome.org (8.11.1/8.11.1) with ESMTP id f7KIEY047850; Tue, 21 Aug 2001 06:14:34 +1200 (NZST) (envelope-from dan@lists.unixathome.org) From: "Dan Langille" Organization: novice in training To: Will Andrews Date: Mon, 20 Aug 2001 14:14:16 -0400 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: cvs commit: ports/biology/p5-bioperl-devel Makefile ports/biology/p5-bioperl-devel/files Makefile.man Reply-To: dan@langille.org Cc: "Jacques A. Vidrine" , Johann Visagie , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Message-ID: <3B811B38.17356.624C8A0@localhost> In-reply-to: <20010820125914.H35352@bohr.physics.purdue.edu> References: <3B80F7AA.10907.599E570@localhost>; from dan@langille.org on Mon, Aug 20, 2001 at 11:42:34AM -0400 X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 20 Aug 2001, at 12:59, Will Andrews wrote: > On Mon, Aug 20, 2001 at 11:42:34AM -0400, Dan Langille (dan@langille.org) wrote: > > It does invoke make. But it needs all the components in order for > > make to function. > > ..which as I've told you before is not hard to do. You just need > to make a perl script to read in the primary Makefile and look > for ".include" directives then pull in the files. I don't recall you mentioning it, but I'm sure when you mentioned, I pointed this out: If I look to parse the includes, I need to compile a list of the unneeded but include'd files (e.g: bsd.port.pre.mk, bsd.port.post.mk, bsd.port.mk...). 6 of one, half a dozen of the other...etc. So either I keep track of the exceptions or I keep track of the .mk files. > Although I agree that consistency is required.. you should still > do this the right way as above... simply because things change. At present, without consistency, it seems the easiest way is for me to keep track of what breaks and then fix it. -- Dan Langille - DVL Software Limited FreshPorts - http://freshports.org/ - the place for ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 11:19:52 2001 Delivered-To: cvs-all@freebsd.org Received: from coffee.q9media.com (coffee.q9media.com [216.94.229.19]) by hub.freebsd.org (Postfix) with ESMTP id A227A37B414; Mon, 20 Aug 2001 11:19:42 -0700 (PDT) (envelope-from mike@coffee.q9media.com) Received: (from mike@localhost) by coffee.q9media.com (8.11.2/8.11.3) id f7KIfwH52028; Mon, 20 Aug 2001 14:41:58 -0400 (EDT) (envelope-from mike) Date: Mon, 20 Aug 2001 14:41:57 -0400 From: Mike Barcroft To: Brian Somers Cc: Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libfetch ftp.c Message-ID: <20010820144157.E49129@coffee.q9media.com> Mail-Followup-To: Mike Barcroft , Brian Somers , Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200108201544.f7KFiHQ90069@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108201544.f7KFiHQ90069@freefall.freebsd.org>; from brian@FreeBSD.org on Mon, Aug 20, 2001 at 08:44:17AM -0700 Organization: The FreeBSD Project Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Brian Somers writes: > brian 2001/08/20 08:44:17 PDT > > Modified files: > lib/libfetch ftp.c > Log: > Handle snprintf() returning < 0 (not just -1) > > MFC after: 2 weeks > > Revision Changes Path > 1.69 +2 -2 src/lib/libfetch/ftp.c Approved by: des? Best regards, Mike Barcroft To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 11:38:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3216237B403; Mon, 20 Aug 2001 11:38:42 -0700 (PDT) (envelope-from brooks@FreeBSD.org) Received: (from brooks@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KIcgX31729; Mon, 20 Aug 2001 11:38:42 -0700 (PDT) (envelope-from brooks) Message-Id: <200108201838.f7KIcgX31729@freefall.freebsd.org> From: Brooks Davis Date: Mon, 20 Aug 2001 11:38:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ifconfig ifconfig.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brooks 2001/08/20 11:38:41 PDT Modified files: (Branch: RELENG_4) sbin/ifconfig ifconfig.c Log: MFC: rev 1.67, make plumb work as documented. Approved by: re Revision Changes Path 1.51.2.13 +3 -2 src/sbin/ifconfig/ifconfig.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 11:49: 1 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.wrs.com (unknown-1-11.windriver.com [147.11.1.11]) by hub.freebsd.org (Postfix) with ESMTP id C5E7F37B412; Mon, 20 Aug 2001 11:48:50 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from laptop.baldwin.cx (john@[147.11.46.201]) by mail.wrs.com (8.9.3/8.9.1) with ESMTP id LAA18151; Mon, 20 Aug 2001 11:48:25 -0700 (PDT) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200108190430.f7J4UEJ01333@freefall.freebsd.org> Date: Mon, 20 Aug 2001 11:48:31 -0700 (PDT) From: John Baldwin To: Julian Elischer Subject: RE: cvs commit: src/sys/kern uipc_mbuf.c uipc_usrreq.c Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 19-Aug-01 Julian Elischer wrote: > julian 2001/08/18 21:30:13 PDT > > Modified files: > sys/kern uipc_mbuf.c uipc_usrreq.c > Log: > Forgot to remove this un-needed test. (M_WAITOK won't fail) > I vaguely remember someone once proving it COULD return NULL.. > was that changed? It will panic inside some kmem_foo() function (kmem_alloc() maybe?) before it returns NULL, but malloc() still handles the case where that function returns NULL, leading to the confusion. -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.baldwin.cx/~john/pgpkey.asc "Power Users Use 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 Mon Aug 20 11:49: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.wrs.com (unknown-1-11.windriver.com [147.11.1.11]) by hub.freebsd.org (Postfix) with ESMTP id 3934D37B408; Mon, 20 Aug 2001 11:48:51 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from laptop.baldwin.cx (john@[147.11.46.201]) by mail.wrs.com (8.9.3/8.9.1) with ESMTP id LAA18181; Mon, 20 Aug 2001 11:48:27 -0700 (PDT) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200108200041.f7K0fD807805@freefall.freebsd.org> Date: Mon, 20 Aug 2001 11:48:33 -0700 (PDT) From: John Baldwin To: Matt Dillon Subject: RE: cvs commit: src/sys/boot/common loader.8 src/sys/conf option Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 20-Aug-01 Matt Dillon wrote: > dillon 2001/08/19 17:41:13 PDT > > Modified files: > sys/boot/common loader.8 > sys/conf options > sys/i386/i386 machdep.c > sys/i386/include param.h > sys/kern subr_param.c > sys/sys buf.h > sys/vm swap_pager.c > Log: Erm, alpha and ia64? (A heads up to the lists to give people a chance to come up with the missing pieces and get them to you prior to commit would have been nice.) -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.baldwin.cx/~john/pgpkey.asc "Power Users Use 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 Mon Aug 20 11:49:17 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AE8DD37B403; Mon, 20 Aug 2001 11:48:56 -0700 (PDT) (envelope-from chern@FreeBSD.org) Received: (from chern@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KImkb33167; Mon, 20 Aug 2001 11:48:46 -0700 (PDT) (envelope-from chern) Message-Id: <200108201848.f7KImkb33167@freefall.freebsd.org> From: Chern Lee Date: Mon, 20 Aug 2001 11:48:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG chern 2001/08/20 11:48:46 PDT Modified files: en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml Log: Nitpick English changes to make the chapter more understandable. Revision Changes Path 1.92 +72 -62 doc/en_US.ISO8859-1/books/handbook/advanced-networking/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 Aug 20 12: 2:59 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 80BE437B408; Mon, 20 Aug 2001 12:02:47 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7KJ2bv13349; Mon, 20 Aug 2001 20:02:38 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7KJ2QU90024; Mon, 20 Aug 2001 20:02:26 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108201902.f7KJ2QU90024@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Mike Barcroft , Brian Somers , Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libfetch ftp.c In-Reply-To: Message from Mike Barcroft of "Mon, 20 Aug 2001 14:41:57 EDT." <20010820144157.E49129@coffee.q9media.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 20 Aug 2001 20:02:26 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Brian Somers writes: > > brian 2001/08/20 08:44:17 PDT > > > > Modified files: > > lib/libfetch ftp.c > > Log: > > Handle snprintf() returning < 0 (not just -1) > > > > MFC after: 2 weeks > > > > Revision Changes Path > > 1.69 +2 -2 src/lib/libfetch/ftp.c > > Approved by: des? Was it worth seeking approval ? I hope the answer is no :*P > Best regards, > Mike Barcroft -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 12: 3:32 2001 Delivered-To: cvs-all@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id 221DA37B408; Mon, 20 Aug 2001 12:03:21 -0700 (PDT) (envelope-from dillon@earth.backplane.com) Received: (from dillon@localhost) by earth.backplane.com (8.11.4/8.11.2) id f7KJ3K454524; Mon, 20 Aug 2001 12:03:20 -0700 (PDT) (envelope-from dillon) Date: Mon, 20 Aug 2001 12:03:20 -0700 (PDT) From: Matt Dillon Message-Id: <200108201903.f7KJ3K454524@earth.backplane.com> To: John Baldwin Cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG Subject: Re: RE: cvs commit: src/sys/boot/common loader.8 src/sys/conf option References: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG : : :On 20-Aug-01 Matt Dillon wrote: :> dillon 2001/08/19 17:41:13 PDT :> :> Modified files: :> sys/boot/common loader.8 :> sys/conf options :> sys/i386/i386 machdep.c :> sys/i386/include param.h :> sys/kern subr_param.c :> sys/sys buf.h :> sys/vm swap_pager.c :> Log: : :Erm, alpha and ia64? (A heads up to the lists to give people a chance to :come up with the missing pieces and get them to you prior to commit would have :been nice.) : :-- : :John Baldwin -- http://www.FreeBSD.org/~jhb/ :PGP Key: http://www.baldwin.cx/~john/pgpkey.asc :"Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ I just comitted a followup to subr_param.c that should allow the whole thing to compile with other platforms, even if limits are not defined (and bootloader limits work either way for the swapmeta). The buffer_map code is still MD and I think I am going to solve that by taking that whole chunk of code that's repeated over and over again and turning it into an MI call. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 12:16:39 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 80F1637B408; Mon, 20 Aug 2001 12:16:31 -0700 (PDT) (envelope-from iedowse@FreeBSD.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KJGVB39443; Mon, 20 Aug 2001 12:16:31 -0700 (PDT) (envelope-from iedowse) Message-Id: <200108201916.f7KJGVB39443@freefall.freebsd.org> From: Ian Dowse Date: Mon, 20 Aug 2001 12:16:31 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG iedowse 2001/08/20 12:16:31 PDT Modified files: sys/kern vfs_syscalls.c Log: Avoid sleeping while holding a mutex in dounmount(). This problem has existed for a long time, but I made it worse a few months ago by by adding calls to VFS_ROOT() and checkdirs() in revision 1.179. Also, remove the LK_REENABLE flag in the lockmgr() call; this flag has been ignored by the lockmgr code for 4 years. This was the only remaining mention of it apart from its definition. Reviewed by: jhb Revision Changes Path 1.198 +8 -7 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 Mon Aug 20 12:19:12 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.ctonet.it (mail.ctonet.it [212.110.160.100]) by hub.freebsd.org (Postfix) with ESMTP id 3CC5C37B401; Mon, 20 Aug 2001 12:19:05 -0700 (PDT) (envelope-from olgeni@FreeBSD.org) Received: from olgeni.olgeni (ppp-249.dial2.ctonet.it [212.110.177.249]) by mail.ctonet.it (Postfix) with ESMTP id B2CC31226F; Mon, 20 Aug 2001 21:19:01 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by olgeni.olgeni (8.11.5/8.11.5) with ESMTP id f7KJJ3F48139; Mon, 20 Aug 2001 21:19:07 +0200 (CEST) (envelope-from olgeni@FreeBSD.org) Date: Mon, 20 Aug 2001 21:19:02 +0200 (CEST) From: Jimmy Olgeni X-X-Sender: To: Kent Stewart Cc: Will Andrews , , Subject: Re: cvs commit: ports/x11/kdebase2 Makefile pkg-plist In-Reply-To: <3B7F01CD.22519BE5@urx.com> Message-ID: <20010820205452.V25114-100000@olgeni.olgeni> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 18 Aug 2001, Kent Stewart wrote: > I tried the patches you sent me. I still have one app that is causing a > problem > > share/applnk/System/ScreenSavers/Worm.desktop You're right. Some .desktop entries in ScreenSavers refer to other screen savers non included in KDE. The Worm entry was forgotten in the plist, I just fixed it. Do you still have problems with kdemultimedia2/kdegraphics2? They should be ok now. -- jimmy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 12:20:12 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C471F37B40F; Mon, 20 Aug 2001 12:20:03 -0700 (PDT) (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KJK3A39722; Mon, 20 Aug 2001 12:20:03 -0700 (PDT) (envelope-from olgeni) Message-Id: <200108201920.f7KJK3A39722@freefall.freebsd.org> From: Jimmy Olgeni Date: Mon, 20 Aug 2001 12:20:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/kdebase2 pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG olgeni 2001/08/20 12:20:03 PDT Modified files: x11/kdebase2 pkg-plist Log: Remove the extra Worm.desktop screensaver entry. Leave only the screensaver entries related to KDE's own applications. Spotted by: Kent Stewart Revision Changes Path 1.38 +0 -1 ports/x11/kdebase2/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 Aug 20 12:28:55 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B67037B40E; Mon, 20 Aug 2001 12:28:52 -0700 (PDT) (envelope-from eric@FreeBSD.org) Received: (from eric@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KJSqW40557; Mon, 20 Aug 2001 12:28:52 -0700 (PDT) (envelope-from eric) Message-Id: <200108201928.f7KJSqW40557@freefall.freebsd.org> From: Eric Melville Date: Mon, 20 Aug 2001 12:28:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/skipstone/files patch-ad X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG eric 2001/08/20 12:28:51 PDT Removed files: www/skipstone/files patch-ad Log: Remove a patch that has merged into the distfile. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 12:51:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 694B437B40B; Mon, 20 Aug 2001 12:51:42 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KJpgB42601; Mon, 20 Aug 2001 12:51:42 -0700 (PDT) (envelope-from will) Message-Id: <200108201951.f7KJpgB42601@freefall.freebsd.org> From: Will Andrews Date: Mon, 20 Aug 2001 12:51:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/kdemultimedia2 pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG will 2001/08/20 12:51:42 PDT Modified files: audio/kdemultimedia2 pkg-plist Log: Remove files not built/installed by default. Found by: bento Revision Changes Path 1.17 +0 -5 ports/audio/kdemultimedia2/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 Aug 20 12:54:36 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B30E37B405; Mon, 20 Aug 2001 12:54:31 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KJsVa42938; Mon, 20 Aug 2001 12:54:31 -0700 (PDT) (envelope-from will) Message-Id: <200108201954.f7KJsVa42938@freefall.freebsd.org> From: Will Andrews Date: Mon, 20 Aug 2001 12:54:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/kdenetwork2 pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG will 2001/08/20 12:54:31 PDT Modified files: net/kdenetwork2 pkg-plist Log: Remove files not installed by default. Found by: bento Revision Changes Path 1.25 +0 -11 ports/net/kdenetwork2/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 Aug 20 12:59:30 2001 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-7.dsl.lsan03.pacbell.net [63.207.60.7]) by hub.freebsd.org (Postfix) with ESMTP id E74D137B414; Mon, 20 Aug 2001 12:59:23 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 53A5766BA6; Mon, 20 Aug 2001 12:59:23 -0700 (PDT) Date: Mon, 20 Aug 2001 12:59:23 -0700 From: Kris Kennaway To: Dan Langille Cc: Johann Visagie , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/biology/p5-bioperl-devel Makefile ports/biology/p5-bioperl-devel/files Makefile.man Message-ID: <20010820125923.C3369@xor.obsecurity.org> References: <3B80D46A.3260.51031F7@localhost>; <20010820161028.G67741@fling.sanbi.ac.za> <3B80EB52.27094.569AE2E@localhost> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="lCAWRPmW1mITcIfM" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B80EB52.27094.569AE2E@localhost>; from dan@langille.org on Mon, Aug 20, 2001 at 10:49:54AM -0400 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --lCAWRPmW1mITcIfM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 20, 2001 at 10:49:54AM -0400, Dan Langille wrote: > On 20 Aug 2001, at 16:10, Johann Visagie wrote: >=20 > > Dan Langille on 2001-08-20 (Mon) at 09:12:10 -0400: > > >=20 > > > Any reason not to call it Makefile.inc ? I've seen that used many=20 > > > times before. > >=20 > > No particular reason, except that I was copying what was done to > > security/heimdal in this case and didn't engage the brain to think up a > > filename of my own. :-) > >=20 > > I've used Makefile.inc myself in the past, but I don't think there's a > > particular rule involved here(?) > >=20 > > One thing, though: I put my Makefile.man in ${FILESDIR} - I thought th= at was > > neater. >=20 > OK.... >=20 > [imagine me going to FreshPorts to add Makefile.man to the list of=20 > special files] Anything in ${FILESDIR} is "special" in some way. There shouldn't be any additional files created in the main port directory as a matter of style. Kris --lCAWRPmW1mITcIfM Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE7gWwaWry0BWjoQKURAqA2AKCkA5SRG5Lwi25S/rTKhrDvN/sQ8wCgnzdg evcKvV1UESwUg1S5nh0pEHE= =HWjC -----END PGP SIGNATURE----- --lCAWRPmW1mITcIfM-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 13:46:34 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 20E4B37B40D; Mon, 20 Aug 2001 13:46:28 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KKjuv50393; Mon, 20 Aug 2001 13:45:56 -0700 (PDT) (envelope-from bmah) Message-Id: <200108202045.f7KKjuv50393@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 20 Aug 2001 13:45:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2001/08/20 13:45:56 PDT Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release note: pppd(8) no longer world-executable/readable. Submitted by: kris Revision Changes Path 1.106 +8 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 13:47:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 957F937B41C; Mon, 20 Aug 2001 13:47:26 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KKlGT50633; Mon, 20 Aug 2001 13:47:16 -0700 (PDT) (envelope-from bmah) Message-Id: <200108202047.f7KKlGT50633@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 20 Aug 2001 13:47:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2001/08/20 13:47:16 PDT Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: pppd(8) no longer world executable. Approved by: murray (implicitly) Revision Changes Path 1.22.2.66 +8 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 13:48:44 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E45A37B40D; Mon, 20 Aug 2001 13:48:36 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KKmBK50783; Mon, 20 Aug 2001 13:48:11 -0700 (PDT) (envelope-from will) Message-Id: <200108202048.f7KKmBK50783@freefall.freebsd.org> From: Will Andrews Date: Mon, 20 Aug 2001 13:48:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/kdeaddons Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG will 2001/08/20 13:48:11 PDT Modified files: misc/kdeaddons Makefile Log: Fix accidental typo... Submitted by: Scott Kenney Revision Changes Path 1.3 +2 -2 ports/misc/kdeaddons/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 13:51:57 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 722DC37B40C; Mon, 20 Aug 2001 13:51:50 -0700 (PDT) (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KKpb251276; Mon, 20 Aug 2001 13:51:37 -0700 (PDT) (envelope-from olgeni) Message-Id: <200108202051.f7KKpb251276@freefall.freebsd.org> From: Jimmy Olgeni Date: Mon, 20 Aug 2001 13:51:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/kdegraphics2 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG olgeni 2001/08/20 13:51:37 PDT Modified files: graphics/kdegraphics2 Makefile Log: Fix my bug: LIB_DEPENDS assignment in Makefile needs "+=", not "=", else the KDE LIB_DEPENDS will be missed. Revision Changes Path 1.48 +2 -2 ports/graphics/kdegraphics2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 13:57:28 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.ctonet.it (mail.ctonet.it [212.110.160.100]) by hub.freebsd.org (Postfix) with ESMTP id 9ED5B37B401; Mon, 20 Aug 2001 13:57:17 -0700 (PDT) (envelope-from olgeni@uli.it) Received: from olgeni.olgeni (ppp-75.dial3.ctonet.it [212.110.178.75]) by mail.ctonet.it (Postfix) with ESMTP id 9D8FB1237D; Mon, 20 Aug 2001 22:57:14 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by olgeni.olgeni (8.11.5/8.11.5) with ESMTP id f7KKvYF11594; Mon, 20 Aug 2001 22:57:35 +0200 (CEST) (envelope-from olgeni@uli.it) Date: Mon, 20 Aug 2001 22:57:34 +0200 (CEST) From: Jimmy Olgeni X-X-Sender: To: Will Andrews Cc: , Subject: Re: cvs commit: ports/audio/kdemultimedia2 pkg-plist In-Reply-To: <200108201951.f7KJpgB42601@freefall.freebsd.org> Message-ID: <20010820225641.F5123-100000@olgeni.olgeni> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 20 Aug 2001, Will Andrews wrote: > will 2001/08/20 12:51:42 PDT > > Modified files: > audio/kdemultimedia2 pkg-plist > Log: > Remove files not built/installed by default. What about this? It should autodetect ogg/vorbis. If you like it, I have more :) Index: Makefile =================================================================== RCS file: /home/ncvs/ports/audio/kdemultimedia2/Makefile,v retrieving revision 1.55 diff -u -r1.55 Makefile --- Makefile 2001/08/15 16:25:09 1.55 +++ Makefile 2001/08/20 20:56:00 @@ -24,6 +24,26 @@ USE_GMAKE= yes MAKE_ENV= ${CONFIGURE_ENV} +.include + +.if exists(${LOCALBASE}/include/ogg/ogg.h) \ + && exists(${LOCALBASE}/include/vorbis/vorbisfile.h) +WITH_OGGVORBIS= yes +.endif + +.if defined(WITH_OGGVORBIS) && ${WITH_OGGVORBIS} == yes +LIB_DEPENDS+= ogg.2:${PORTSDIR}/audio/libogg \ + vorbis.0:${PORTSDIR}/audio/libvorbis +PLIST_SUB+= OGGVORBIS:="" +.else +PLIST_SUB+= OGGVORBIS:="@comment " +pre-everything:: + @${ECHO_MSG} + @${ECHO_MSG} "If you want to compile with ogg/vorbis support," + @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_OGGVORBIS=yes\"" + @${ECHO_MSG} +.endif + pre-configure: ${PERL} -pi -e "s@all_includes=\"@all_includes=\"-I/usr/include @g" ${WRKSRC}/acinclude.m4 ${WRKSRC}/aclocal.m4 ${PERL} -pi -e 's,kscd_compile=no,kscd_compile=yes,g; \ @@ -43,4 +63,4 @@ @${ECHO_MSG} " # ${CHMOD} 666 /dev/racd0c" @${ECHO_MSG} -.include +.include Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/audio/kdemultimedia2/pkg-plist,v retrieving revision 1.17 diff -u -r1.17 pkg-plist --- pkg-plist 2001/08/20 19:51:42 1.17 +++ pkg-plist 2001/08/20 20:56:00 @@ -125,6 +125,8 @@ lib/libnoatunui.so lib/libnoatunvoiceprint.la lib/libnoatunvoiceprint.so +%%OGGVORBIS:%%lib/liboggarts.la +%%OGGVORBIS:%%lib/liboggarts.so lib/libsplitplaylist.la lib/libsplitplaylist.so lib/libworkman.la @@ -174,6 +176,7 @@ lib/mcop/Arts/VBox.mcopclass lib/mcop/Arts/Widget.mcopclass lib/mcop/Arts/mpg123PlayObject.mcopclass +%%OGGVORBIS:%%lib/mcop/Arts/oggPlayObject.mcopclass lib/mcop/ExtraStereo.mcopclass lib/mcop/ExtraStereoGuiFactory.mcopclass lib/mcop/Noatun/Equalizer.mcopclass @@ -203,6 +206,8 @@ lib/mcop/mpg123arts.mcoptype lib/mcop/noatunarts.mcopclass lib/mcop/noatunarts.mcoptype +%%OGGVORBIS:%%lib/mcop/oggarts.mcopclass +%%OGGVORBIS:%%lib/mcop/oggarts.mcoptype lib/noatun.la lib/noatun.so share/applnk/Multimedia/aktion.desktop To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 14:22:16 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8207137B40A; Mon, 20 Aug 2001 14:22:12 -0700 (PDT) (envelope-from eric@FreeBSD.org) Received: (from eric@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KLLtH57667; Mon, 20 Aug 2001 14:21:55 -0700 (PDT) (envelope-from eric) Message-Id: <200108202121.f7KLLtH57667@freefall.freebsd.org> From: Eric Melville Date: Mon, 20 Aug 2001 14:21:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/skipstone Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG eric 2001/08/20 14:21:55 PDT Modified files: www/skipstone Makefile distinfo Log: Update to latest distfile. Revision Changes Path 1.8 +2 -2 ports/www/skipstone/Makefile 1.5 +1 -1 ports/www/skipstone/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 14:22:30 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2FFB337B403; Mon, 20 Aug 2001 14:22:18 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KLM1a57715; Mon, 20 Aug 2001 14:22:01 -0700 (PDT) (envelope-from obrien) Message-Id: <200108202122.f7KLM1a57715@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 20 Aug 2001 14:22:01 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/20 14:22:01 PDT Modified files: release Makefile Log: + back out my `iso' target + allows one to set _R so one can more easily make an iso after the fact, in the directory `make release' was issued in + changes name from miniboot to miniinst since we make other bootable ISOs also (and we might confuse someone) Approved by: jkh Revision Changes Path 1.633 +6 -24 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 Mon Aug 20 14:23: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B2FF337B406; Mon, 20 Aug 2001 14:22:53 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KLMXD57812; Mon, 20 Aug 2001 14:22:33 -0700 (PDT) (envelope-from obrien) Message-Id: <200108202122.f7KLMXD57812@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 20 Aug 2001 14:22:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/alpha mkisoimages.sh src/release/i386 mkisoimages.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/20 14:22:33 PDT Modified files: release/alpha mkisoimages.sh release/i386 mkisoimages.sh Log: + do not hard code where a port may be installed to + uses `mkisofs' rather than `mkhybrid' as the new mkisofs is the merger of the two + checks for `setcdboot's existsance and tries to pkg_add it if needed + removes English contraction Approved by: jkh Revision Changes Path 1.2 +15 -4 src/release/alpha/mkisoimages.sh 1.2 +5 -4 src/release/i386/mkisoimages.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 14:25:16 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.wrs.com (unknown-1-11.windriver.com [147.11.1.11]) by hub.freebsd.org (Postfix) with ESMTP id 97F4537B410; Mon, 20 Aug 2001 14:25:04 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from laptop.baldwin.cx (john@[147.11.46.201]) by mail.wrs.com (8.9.3/8.9.1) with ESMTP id OAA11176; Mon, 20 Aug 2001 14:24:47 -0700 (PDT) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200108201903.f7KJ3K454524@earth.backplane.com> Date: Mon, 20 Aug 2001 14:24:54 -0700 (PDT) From: John Baldwin To: Matt Dillon Subject: Re: RE: cvs commit: src/sys/boot/common loader.8 src/sys/conf op Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 20-Aug-01 Matt Dillon wrote: > >: >: >:On 20-Aug-01 Matt Dillon wrote: >:> dillon 2001/08/19 17:41:13 PDT >:> >:> Modified files: >:> sys/boot/common loader.8 >:> sys/conf options >:> sys/i386/i386 machdep.c >:> sys/i386/include param.h >:> sys/kern subr_param.c >:> sys/sys buf.h >:> sys/vm swap_pager.c >:> Log: >: >:Erm, alpha and ia64? (A heads up to the lists to give people a chance to >:come up with the missing pieces and get them to you prior to commit would >:have >:been nice.) >: >:-- >: >:John Baldwin -- http://www.FreeBSD.org/~jhb/ >:PGP Key: http://www.baldwin.cx/~john/pgpkey.asc >:"Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ > > I just comitted a followup to subr_param.c that should allow the > whole thing to compile with other platforms, even if limits are not > defined (and bootloader limits work either way for the swapmeta). The > buffer_map code is still MD and I think I am going to solve that by > taking > that whole chunk of code that's repeated over and over again and turning > it into an MI call. Ok. Just for future reference, a quick note off to -alpha and -ia64 isn't that hard to do. :-) > -Matt > -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.baldwin.cx/~john/pgpkey.asc "Power Users Use 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 Mon Aug 20 14:26:16 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CC31F37B416; Mon, 20 Aug 2001 14:26:09 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KLQ8q58489; Mon, 20 Aug 2001 14:26:08 -0700 (PDT) (envelope-from obrien) Message-Id: <200108202126.f7KLQ8q58489@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 20 Aug 2001 14:26:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release Makefile src/release/alpha mkisoimages.sh src/release/i386 mkisoimages.sh X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/20 14:26:08 PDT Modified files: (Branch: RELENG_4) release Makefile Added files: (Branch: RELENG_4) release/alpha mkisoimages.sh release/i386 mkisoimages.sh Log: MFC: rev 1.631: `iso' target and support for building ISO images automatically as part of the release if MAKE_ISOS is set. Will also build the first CD with packages (in addition to the "minimal" CD) if CD_EXTRA_BITS points to them. Approved by: jkh Revision Changes Path 1.536.2.54 +27 -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 Mon Aug 20 14:29:20 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5424337B419; Mon, 20 Aug 2001 14:29:16 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KLTGa58808; Mon, 20 Aug 2001 14:29:16 -0700 (PDT) (envelope-from obrien) Message-Id: <200108202129.f7KLTGa58808@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 20 Aug 2001 14:29:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/include globals.h src/sys/sparc64/sparc64 machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/20 14:29:16 PDT Modified files: sys/sparc64/include globals.h sys/sparc64/sparc64 machdep.c Log: Sync globals.h up with the other platforms. There is still some cruft in here, but now all the platforms have the same cruft. Consistantly spell the `struct globaldata *' "globalp". Reviewed by: peter Revision Changes Path 1.4 +12 -11 src/sys/sparc64/include/globals.h 1.8 +5 -5 src/sys/sparc64/sparc64/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 14:31:14 2001 Delivered-To: cvs-all@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id 546EB37B40C; Mon, 20 Aug 2001 14:31:05 -0700 (PDT) (envelope-from dillon@earth.backplane.com) Received: (from dillon@localhost) by earth.backplane.com (8.11.4/8.11.2) id f7KLV4A56429; Mon, 20 Aug 2001 14:31:04 -0700 (PDT) (envelope-from dillon) Date: Mon, 20 Aug 2001 14:31:04 -0700 (PDT) From: Matt Dillon Message-Id: <200108202131.f7KLV4A56429@earth.backplane.com> To: Jordan Hubbard , John Baldwin Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: RE: cvs commit: src/sys/boot/common loader.8 src/sys/conf op References: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG :.. :>:> sys/kern subr_param.c :>:> sys/sys buf.h :>:> sys/vm swap_pager.c :>:> Log: :>: :>:Erm, alpha and ia64? (A heads up to the lists to give people a chance to :>:come up with the missing pieces and get them to you prior to commit would :>:have :>:been nice.) :>: :>:-- :>: :>:John Baldwin -- http://www.FreeBSD.org/~jhb/ :>:PGP Key: http://www.baldwin.cx/~john/pgpkey.asc :>:"Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ :> :> I just comitted a followup to subr_param.c that should allow the :> whole thing to compile with other platforms, even if limits are not :> defined (and bootloader limits work either way for the swapmeta). The :> buffer_map code is still MD and I think I am going to solve that by :> taking :> that whole chunk of code that's repeated over and over again and turning :> it into an MI call. : :Ok. Just for future reference, a quick note off to -alpha and -ia64 isn't that :hard to do. :-) :-- : :John Baldwin -- http://www.FreeBSD.org/~jhb/ In the mean-time I would like to propose a second less controversial patch that should get the 4G machines to boot, and that is to take a small piece of my original patch and submit it separately. This solved Mohan's issue with his 2G box and may just solve the same issue with a 4G box (barring changes to other kernel options). If I could get this fast-tracked then the more involved patch's MFC can wait until after the release. Here it is: -Matt Index: swap_pager.c =================================================================== RCS file: /home/ncvs/src/sys/vm/swap_pager.c,v retrieving revision 1.130.2.8 diff -u -r1.130.2.8 swap_pager.c --- swap_pager.c 2001/03/24 20:28:24 1.130.2.8 +++ swap_pager.c 2001/08/20 21:28:40 @@ -303,7 +303,7 @@ * can hold 16 pages, so this is probably overkill. */ - n = cnt.v_page_count * 2; + n = cnt.v_page_count; swap_zone = zinit( "SWAPMETA", To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 14:46:58 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3938F37B407; Mon, 20 Aug 2001 14:46:53 -0700 (PDT) (envelope-from nik@FreeBSD.org) Received: (from nik@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KLkp360895; Mon, 20 Aug 2001 14:46:51 -0700 (PDT) (envelope-from nik) Message-Id: <200108202146.f7KLkp360895@freefall.freebsd.org> From: Nik Clayton Date: Mon, 20 Aug 2001 14:46:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/install chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nik 2001/08/20 14:46:51 PDT Modified files: en_US.ISO8859-1/books/handbook/install chapter.sgml Log: Continue building on Randy's work, and document the installation process some more. Got as far as describing FreeBSD's Disk / Slice / Partition / Filesystem model, and touring around FDisk. Revision Changes Path 1.94 +634 -138 doc/en_US.ISO8859-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 Mon Aug 20 14:54:47 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 394C037B40E; Mon, 20 Aug 2001 14:54:44 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KLsi362575; Mon, 20 Aug 2001 14:54:44 -0700 (PDT) (envelope-from kris) Message-Id: <200108202154.f7KLsi362575@freefall.freebsd.org> From: Kris Kennaway Date: Mon, 20 Aug 2001 14:54:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/security security.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/20 14:54:44 PDT Modified files: en/security security.sgml Log: Note 01:53 and 01:54 Revision Changes Path 1.65 +4 -2 www/en/security/security.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 14:57:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D9CE37B40E; Mon, 20 Aug 2001 14:57:15 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KLv4Q62958; Mon, 20 Aug 2001 14:57:04 -0700 (PDT) (envelope-from kris) Message-Id: <200108202157.f7KLv4Q62958@freefall.freebsd.org> From: Kris Kennaway Date: Mon, 20 Aug 2001 14:57:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/SSLtelnet Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/20 14:57:04 PDT Modified files: net/SSLtelnet Makefile Log: Mark FORBIDDEN because the remotely exploitable telnetd hole is not yet fixed. Revision Changes Path 1.18 +3 -1 ports/net/SSLtelnet/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 15:11:21 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5343B37B403; Mon, 20 Aug 2001 15:11:16 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KMApG70521; Mon, 20 Aug 2001 15:10:51 -0700 (PDT) (envelope-from obrien) Message-Id: <200108202210.f7KMApG70521@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 20 Aug 2001 15:10:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/compaq-cc Makefile distinfo ports/lang/compaq-cc/files/include stdio.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/20 15:10:51 PDT Modified files: lang/compaq-cc Makefile distinfo lang/compaq-cc/files/include stdio.h Log: Update to 6.4.9.005.1. This is hairy as Compaq is now putting out dynamic binary rather than static ones. This makes my job harder with faking out this Linux compiler. Submitted by: gallatin Revision Changes Path 1.14 +16 -8 ports/lang/compaq-cc/Makefile 1.4 +3 -4 ports/lang/compaq-cc/distinfo 1.2 +2 -0 ports/lang/compaq-cc/files/include/stdio.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 15:13:49 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A8F2137B40D; Mon, 20 Aug 2001 15:13:43 -0700 (PDT) (envelope-from chern@FreeBSD.org) Received: (from chern@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KMDbi70799; Mon, 20 Aug 2001 15:13:37 -0700 (PDT) (envelope-from chern) Message-Id: <200108202213.f7KMDbi70799@freefall.freebsd.org> From: Chern Lee Date: Mon, 20 Aug 2001 15:13:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG chern 2001/08/20 15:13:37 PDT Modified files: en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml Log: Cosmetic changes. Placed a couple lists into s. Revision Changes Path 1.93 +107 -76 doc/en_US.ISO8859-1/books/handbook/advanced-networking/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 Aug 20 15:57:38 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 87DD337B403; Mon, 20 Aug 2001 15:57:33 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KMvXr74431; Mon, 20 Aug 2001 15:57:33 -0700 (PDT) (envelope-from brian) Message-Id: <200108202257.f7KMvXr74431@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 15:57:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libalias alias.c alias_db.c alias_ftp.c alias_irc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 15:57:33 PDT Modified files: lib/libalias alias.c alias_db.c alias_ftp.c alias_irc.c Log: Make the copyright consistent. Previously approved by: Charles Mott Revision Changes Path 1.30 +1 -4 src/lib/libalias/alias.c 1.45 +1 -4 src/lib/libalias/alias_db.c 1.13 +1 -4 src/lib/libalias/alias_ftp.c 1.9 +1 -4 src/lib/libalias/alias_irc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 16:31:46 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 021AC37B403; Mon, 20 Aug 2001 16:31:42 -0700 (PDT) (envelope-from jake@FreeBSD.org) Received: (from jake@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KNVfu79687; Mon, 20 Aug 2001 16:31:41 -0700 (PDT) (envelope-from jake) Message-Id: <200108202331.f7KNVfu79687@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 20 Aug 2001 16:31:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/include asi.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2001/08/20 16:31:41 PDT Modified files: sys/sparc64/include asi.h Log: Add a definition for the load store unit control register. Revision Changes Path 1.5 +3 -1 src/sys/sparc64/include/asi.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 16:34:53 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 04D8837B403; Mon, 20 Aug 2001 16:34:47 -0700 (PDT) (envelope-from jake@FreeBSD.org) Received: (from jake@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KNYkD80014; Mon, 20 Aug 2001 16:34:46 -0700 (PDT) (envelope-from jake) Message-Id: <200108202334.f7KNYkD80014@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 20 Aug 2001 16:34:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/include ccr.h lsu.h tstate.h pstate.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2001/08/20 16:34:46 PDT Modified files: sys/sparc64/include pstate.h Added files: sys/sparc64/include ccr.h lsu.h tstate.h Log: Add definitions for bits in condition code register and the load store unit control registers. Move tstate definitions to their own file. Submitted by: tmm Revision Changes Path 1.4 +1 -14 src/sys/sparc64/include/pstate.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 16:35:21 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3598537B405; Mon, 20 Aug 2001 16:35:15 -0700 (PDT) (envelope-from jake@FreeBSD.org) Received: (from jake@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KNZFc80116; Mon, 20 Aug 2001 16:35:15 -0700 (PDT) (envelope-from jake) Message-Id: <200108202335.f7KNZFc80116@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 20 Aug 2001 16:35:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/include db_machdep.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2001/08/20 16:35:15 PDT Modified files: sys/sparc64/include db_machdep.h Log: db_expr_t is signed. Revision Changes Path 1.4 +2 -2 src/sys/sparc64/include/db_machdep.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 16:40:38 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4440737B40B; Mon, 20 Aug 2001 16:40:32 -0700 (PDT) (envelope-from jake@FreeBSD.org) Received: (from jake@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KNeWY80593; Mon, 20 Aug 2001 16:40:32 -0700 (PDT) (envelope-from jake) Message-Id: <200108202340.f7KNeWY80593@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 20 Aug 2001 16:40:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/include frame.h pcb.h src/sys/sparc64/sparc64 exception.s X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2001/08/20 16:40:32 PDT Modified files: sys/sparc64/include frame.h pcb.h sys/sparc64/sparc64 exception.s Log: Add support for splitting the register windows on entry to the kernel from usermode. The remaining user windows are spilled to the pcb as necessary. The user land window fault handlers fill directly from the pcb on return. Add system call entry points. Submitted by: tmm Revision Changes Path 1.5 +11 -1 src/sys/sparc64/include/frame.h 1.5 +16 -2 src/sys/sparc64/include/pcb.h 1.6 +544 -200 src/sys/sparc64/sparc64/exception.s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 16:43:47 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A91337B401; Mon, 20 Aug 2001 16:43:43 -0700 (PDT) (envelope-from jake@FreeBSD.org) Received: (from jake@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KNhhm81006; Mon, 20 Aug 2001 16:43:43 -0700 (PDT) (envelope-from jake) Message-Id: <200108202343.f7KNhhm81006@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 20 Aug 2001 16:43:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/include trap.h src/sys/sparc64/sparc64 trap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2001/08/20 16:43:43 PDT Modified files: sys/sparc64/include trap.h sys/sparc64/sparc64 trap.c Log: Add a system call trap type and syscall() call request handler. Also add support for hardware watch point traps. Submitted by: tmm Revision Changes Path 1.4 +8 -3 src/sys/sparc64/include/trap.h 1.9 +222 -1 src/sys/sparc64/sparc64/trap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 16:44: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D746037B401; Mon, 20 Aug 2001 16:43:59 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KNhxi81098; Mon, 20 Aug 2001 16:43:59 -0700 (PDT) (envelope-from bmah) Message-Id: <200108202343.f7KNhxi81098@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 20 Aug 2001 16:43:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/relnotes README X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2001/08/20 16:43:59 PDT Modified files: en/relnotes README Log: Reflect reality: release documentation for RELENG_4 is no longer stored in flat text files. Revision Changes Path 1.2 +2 -4 www/en/relnotes/README To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 16:50:13 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9644537B409; Mon, 20 Aug 2001 16:50:08 -0700 (PDT) (envelope-from jake@FreeBSD.org) Received: (from jake@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KNo8G81601; Mon, 20 Aug 2001 16:50:08 -0700 (PDT) (envelope-from jake) Message-Id: <200108202350.f7KNo8G81601@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 20 Aug 2001 16:50:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files.sparc64 src/sys/sparc64/include watch.h src/sys/sparc64/sparc64 db_hwwatch.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2001/08/20 16:50:08 PDT Modified files: sys/conf files.sparc64 Added files: sys/sparc64/include watch.h sys/sparc64/sparc64 db_hwwatch.c Log: Add code for supporting hardware watch points. Submitted by: tmm Revision Changes Path 1.5 +2 -1 src/sys/conf/files.sparc64 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 16:50:53 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 43F4D37B403; Mon, 20 Aug 2001 16:50:48 -0700 (PDT) (envelope-from jake@FreeBSD.org) Received: (from jake@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KNomG81660; Mon, 20 Aug 2001 16:50:48 -0700 (PDT) (envelope-from jake) Message-Id: <200108202350.f7KNomG81660@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 20 Aug 2001 16:50:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/include globaldata.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2001/08/20 16:50:48 PDT Modified files: sys/sparc64/include globaldata.h Log: Add variables needed by hardware watchpoint support. Submitted by: tmm Revision Changes Path 1.7 +7 -1 src/sys/sparc64/include/globaldata.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 16:51:49 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B90237B409; Mon, 20 Aug 2001 16:51:40 -0700 (PDT) (envelope-from jake@FreeBSD.org) Received: (from jake@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KNpeS81711; Mon, 20 Aug 2001 16:51:40 -0700 (PDT) (envelope-from jake) Message-Id: <200108202351.f7KNpeS81711@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 20 Aug 2001 16:51:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/sparc64 db_trace.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2001/08/20 16:51:40 PDT Modified files: sys/sparc64/sparc64 db_trace.c Log: Catch up with new trap entry point names. Revision Changes Path 1.4 +4 -24 src/sys/sparc64/sparc64/db_trace.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 16:53:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DD67037B406; Mon, 20 Aug 2001 16:53:11 -0700 (PDT) (envelope-from jake@FreeBSD.org) Received: (from jake@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KNrB581813; Mon, 20 Aug 2001 16:53:11 -0700 (PDT) (envelope-from jake) Message-Id: <200108202353.f7KNrB581813@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 20 Aug 2001 16:53:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/sparc64 genassym.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2001/08/20 16:53:11 PDT Modified files: sys/sparc64/sparc64 genassym.c Log: Add definitions for new assembler code. Revision Changes Path 1.6 +32 -1 src/sys/sparc64/sparc64/genassym.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 16:56:24 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 94ADB37B405; Mon, 20 Aug 2001 16:56:19 -0700 (PDT) (envelope-from jake@FreeBSD.org) Received: (from jake@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7KNuJQ82066; Mon, 20 Aug 2001 16:56:19 -0700 (PDT) (envelope-from jake) Message-Id: <200108202356.f7KNuJQ82066@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 20 Aug 2001 16:56:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/include fp.h src/sys/sparc64/sparc64 fp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2001/08/20 16:56:19 PDT Modified files: sys/sparc64/include fp.h sys/sparc64/sparc64 fp.c Log: Rename fp_init_pcb to fp_init_proc. Set the FEF bit in fprs register; according the SCD it should be set if no user trap handler in set. Submitted by: tmm Revision Changes Path 1.3 +2 -2 src/sys/sparc64/include/fp.h 1.3 +19 -5 src/sys/sparc64/sparc64/fp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 17: 0:30 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A631437B408; Mon, 20 Aug 2001 17:00:18 -0700 (PDT) (envelope-from jake@FreeBSD.org) Received: (from jake@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L00Ic82525; Mon, 20 Aug 2001 17:00:18 -0700 (PDT) (envelope-from jake) Message-Id: <200108210000.f7L00Ic82525@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 20 Aug 2001 17:00:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/sparc64 support.s X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2001/08/20 17:00:18 PDT Modified files: sys/sparc64/sparc64 support.s Log: Disable interrupts when calling openfirmware. Revision Changes Path 1.5 +14 -8 src/sys/sparc64/sparc64/support.s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 17: 1:40 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 453A137B408; Mon, 20 Aug 2001 17:01:28 -0700 (PDT) (envelope-from jake@FreeBSD.org) Received: (from jake@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L01S482654; Mon, 20 Aug 2001 17:01:28 -0700 (PDT) (envelope-from jake) Message-Id: <200108210001.f7L01S482654@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 20 Aug 2001 17:01:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/sparc64 swtch.s X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2001/08/20 17:01:28 PDT Modified files: sys/sparc64/sparc64 swtch.s Log: Save and restore %fprs and %y, which are unused by kernel code, but may be used by 32bit userland code. Implement cpu_throw(). Submitted by: tmm Revision Changes Path 1.5 +36 -13 src/sys/sparc64/sparc64/swtch.s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 17: 3: 0 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7746437B405; Mon, 20 Aug 2001 17:02:54 -0700 (PDT) (envelope-from jake@FreeBSD.org) Received: (from jake@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L02sl82763; Mon, 20 Aug 2001 17:02:54 -0700 (PDT) (envelope-from jake) Message-Id: <200108210002.f7L02sl82763@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 20 Aug 2001 17:02:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/sparc64 vm_machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2001/08/20 17:02:54 PDT Modified files: sys/sparc64/sparc64 vm_machdep.c Log: Handle the pcb window scratch area in cpu_fork. Implement cpu_exit. Submitted by: tmm Revision Changes Path 1.7 +37 -21 src/sys/sparc64/sparc64/vm_machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 17: 3:34 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C5B637B401; Mon, 20 Aug 2001 17:03:28 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L03SI82836; Mon, 20 Aug 2001 17:03:28 -0700 (PDT) (envelope-from mjacob) Message-Id: <200108210003.f7L03SI82836@freefall.freebsd.org> From: Matt Jacob Date: Mon, 20 Aug 2001 17:03:28 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mjacob 2001/08/20 17:03:28 PDT Modified files: etc MAKEDEV Log: move forward the ability to MAKEDEV zs devices for TurboLaser Revision Changes Path 1.305 +8 -1 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 Mon Aug 20 17: 7:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 41BFC37B407; Mon, 20 Aug 2001 17:07:37 -0700 (PDT) (envelope-from jake@FreeBSD.org) Received: (from jake@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L07bJ86074; Mon, 20 Aug 2001 17:07:37 -0700 (PDT) (envelope-from jake) Message-Id: <200108210007.f7L07bJ86074@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 20 Aug 2001 17:07:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/sparc64 machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2001/08/20 17:07:37 PDT Modified files: sys/sparc64/sparc64 machdep.c Log: Use register g6 to point to a small stack for svaing alternate globals during trap handlers. Implement ptrace_set_pc FWIW. Initialize the pcb window scratch area in setregs(), and setup user registers as specified by the SCD. Submitted by: tmm Revision Changes Path 1.9 +41 -10 src/sys/sparc64/sparc64/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 18: 7:16 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C08C37B403; Mon, 20 Aug 2001 18:07:08 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L178A93570; Mon, 20 Aug 2001 18:07:08 -0700 (PDT) (envelope-from obrien) Message-Id: <200108210107.f7L178A93570@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 20 Aug 2001 18:07:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/dict Makefile distinfo ports/textproc/dict/files patch-dict.h patch-aa patch-ab patch-ac patch-ad patch-ae X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/20 18:07:08 PDT Modified files: textproc/dict Makefile distinfo textproc/dict/files patch-aa patch-ab Added files: textproc/dict/files patch-dict.h Removed files: textproc/dict/files patch-ac patch-ad patch-ae Log: Update to version 1.5.5. Revision Changes Path 1.16 +6 -3 ports/textproc/dict/Makefile 1.4 +1 -1 ports/textproc/dict/distinfo 1.3 +14 -6 ports/textproc/dict/files/patch-aa 1.3 +11 -60 ports/textproc/dict/files/patch-ab To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 18:30:37 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 974CC37B409; Mon, 20 Aug 2001 18:30:32 -0700 (PDT) (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L1UW795661; Mon, 20 Aug 2001 18:30:32 -0700 (PDT) (envelope-from mi) Message-Id: <200108210130.f7L1UW795661@freefall.freebsd.org> From: Mikhail Teterin Date: Mon, 20 Aug 2001 18:30:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/gd Makefile distinfo ports/graphics/gd/files patch-gif patch-ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mi 2001/08/20 18:30:32 PDT Modified files: graphics/gd Makefile distinfo graphics/gd/files patch-ac Added files: graphics/gd/files patch-gif Log: Restore the ability to _read_ gif images, removed by the author due to fear of Unisys... Bump up PORTREVISION. Approved by: maintainer timeout :( (since July 27) Revision Changes Path 1.38 +11 -4 ports/graphics/gd/Makefile 1.15 +1 -0 ports/graphics/gd/distinfo 1.16 +1 -1 ports/graphics/gd/files/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 Aug 20 18:32:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B020437B409; Mon, 20 Aug 2001 18:31:45 -0700 (PDT) (envelope-from gshapiro@FreeBSD.org) Received: (from gshapiro@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L1VjH95812; Mon, 20 Aug 2001 18:31:45 -0700 (PDT) (envelope-from gshapiro) Message-Id: <200108210131.f7L1VjH95812@freefall.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 20 Aug 2001 18:31:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/sendmail - Imported sources X-FreeBSD-CVS-Branch: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gshapiro 2001/08/20 18:31:45 PDT src/contrib/sendmail - Imported sources Update of /home/ncvs/src/contrib/sendmail In directory freefall.freebsd.org:/d/home/gshapiro/Work/sendmail-8.11.6 Log Message: Import sendmail 8.11.6 Status: Vendor Tag: SENDMAIL Release Tags: v8_11_6 U src/contrib/sendmail/Makefile U src/contrib/sendmail/FAQ U src/contrib/sendmail/INSTALL U src/contrib/sendmail/KNOWNBUGS U src/contrib/sendmail/LICENSE U src/contrib/sendmail/PGPKEYS U src/contrib/sendmail/README U src/contrib/sendmail/RELEASE_NOTES U src/contrib/sendmail/src/Makefile U src/contrib/sendmail/src/Makefile.m4 U src/contrib/sendmail/src/README U src/contrib/sendmail/src/TRACEFLAGS U src/contrib/sendmail/src/alias.c U src/contrib/sendmail/src/aliases U src/contrib/sendmail/src/aliases.5 U src/contrib/sendmail/src/arpadate.c U src/contrib/sendmail/src/bf.h U src/contrib/sendmail/src/bf_portable.c U src/contrib/sendmail/src/bf_portable.h U src/contrib/sendmail/src/bf_torek.c U src/contrib/sendmail/src/bf_torek.h U src/contrib/sendmail/src/clock.c U src/contrib/sendmail/src/collect.c U src/contrib/sendmail/src/conf.c U src/contrib/sendmail/src/conf.h U src/contrib/sendmail/src/control.c U src/contrib/sendmail/src/convtime.c U src/contrib/sendmail/src/daemon.c U src/contrib/sendmail/src/deliver.c U src/contrib/sendmail/src/domain.c U src/contrib/sendmail/src/envelope.c C src/contrib/sendmail/src/err.c U src/contrib/sendmail/src/headers.c U src/contrib/sendmail/src/helpfile U src/contrib/sendmail/src/macro.c U src/contrib/sendmail/src/mailq.1 U src/contrib/sendmail/src/main.c U src/contrib/sendmail/src/map.c U src/contrib/sendmail/src/mci.c U src/contrib/sendmail/src/milter.c U src/contrib/sendmail/src/mime.c U src/contrib/sendmail/src/newaliases.1 U src/contrib/sendmail/src/parseaddr.c U src/contrib/sendmail/src/queue.c U src/contrib/sendmail/src/readcf.c U src/contrib/sendmail/src/recipient.c U src/contrib/sendmail/src/savemail.c U src/contrib/sendmail/src/sendmail.8 U src/contrib/sendmail/src/sendmail.h U src/contrib/sendmail/src/sfsasl.c U src/contrib/sendmail/src/sfsasl.h U src/contrib/sendmail/src/shmticklib.c U src/contrib/sendmail/src/srvrsmtp.c U src/contrib/sendmail/src/stab.c U src/contrib/sendmail/src/stats.c U src/contrib/sendmail/src/statusd_shm.h U src/contrib/sendmail/src/sysexits.c U src/contrib/sendmail/src/timers.c U src/contrib/sendmail/src/timers.h U src/contrib/sendmail/src/trace.c U src/contrib/sendmail/src/udb.c U src/contrib/sendmail/src/usersmtp.c U src/contrib/sendmail/src/util.c U src/contrib/sendmail/src/version.c U src/contrib/sendmail/doc/op/Makefile U src/contrib/sendmail/doc/op/op.me U src/contrib/sendmail/libsmutil/Makefile U src/contrib/sendmail/libsmutil/Makefile.m4 U src/contrib/sendmail/libsmutil/debug.c U src/contrib/sendmail/libsmutil/errstring.c U src/contrib/sendmail/libsmutil/lockfile.c U src/contrib/sendmail/libsmutil/safefile.c U src/contrib/sendmail/libsmutil/snprintf.c U src/contrib/sendmail/libsmutil/strl.c U src/contrib/sendmail/mail.local/Makefile U src/contrib/sendmail/mail.local/Makefile.m4 U src/contrib/sendmail/mail.local/README U src/contrib/sendmail/mail.local/mail.local.8 U src/contrib/sendmail/mail.local/mail.local.c U src/contrib/sendmail/mailstats/Makefile U src/contrib/sendmail/mailstats/Makefile.m4 U src/contrib/sendmail/mailstats/mailstats.8 U src/contrib/sendmail/mailstats/mailstats.c U src/contrib/sendmail/makemap/Makefile U src/contrib/sendmail/makemap/Makefile.m4 U src/contrib/sendmail/makemap/makemap.8 U src/contrib/sendmail/makemap/makemap.c U src/contrib/sendmail/smrsh/Makefile U src/contrib/sendmail/smrsh/Makefile.m4 U src/contrib/sendmail/smrsh/README U src/contrib/sendmail/smrsh/smrsh.8 U src/contrib/sendmail/smrsh/smrsh.c U src/contrib/sendmail/test/t_exclopen.c U src/contrib/sendmail/test/t_pathconf.c U src/contrib/sendmail/test/t_seteuid.c U src/contrib/sendmail/test/t_setreuid.c U src/contrib/sendmail/test/t_setuid.c U src/contrib/sendmail/test/t_snprintf.c U src/contrib/sendmail/test/Results U src/contrib/sendmail/include/sendmail/cdefs.h U src/contrib/sendmail/include/sendmail/errstring.h U src/contrib/sendmail/include/sendmail/mailstats.h U src/contrib/sendmail/include/sendmail/pathnames.h U src/contrib/sendmail/include/sendmail/sendmail.h U src/contrib/sendmail/include/sendmail/useful.h U src/contrib/sendmail/include/libsmdb/smdb.h U src/contrib/sendmail/include/libmilter/mfapi.h U src/contrib/sendmail/include/libmilter/milter.h U src/contrib/sendmail/cf/README U src/contrib/sendmail/cf/cf/Makefile U src/contrib/sendmail/cf/cf/chez.cs.mc U src/contrib/sendmail/cf/cf/clientproto.mc U src/contrib/sendmail/cf/cf/cs-hpux10.mc U src/contrib/sendmail/cf/cf/cs-hpux9.mc U src/contrib/sendmail/cf/cf/cs-osf1.mc U src/contrib/sendmail/cf/cf/cs-solaris2.mc U src/contrib/sendmail/cf/cf/cs-sunos4.1.mc U src/contrib/sendmail/cf/cf/cs-ultrix4.mc U src/contrib/sendmail/cf/cf/cyrusproto.mc U src/contrib/sendmail/cf/cf/generic-bsd4.4.mc U src/contrib/sendmail/cf/cf/generic-hpux10.mc U src/contrib/sendmail/cf/cf/generic-hpux9.mc U src/contrib/sendmail/cf/cf/generic-linux.mc U src/contrib/sendmail/cf/cf/generic-nextstep3.3.mc U src/contrib/sendmail/cf/cf/generic-osf1.mc U src/contrib/sendmail/cf/cf/generic-solaris2.mc U src/contrib/sendmail/cf/cf/generic-sunos4.1.mc U src/contrib/sendmail/cf/cf/generic-ultrix4.mc U src/contrib/sendmail/cf/cf/huginn.cs.mc U src/contrib/sendmail/cf/cf/knecht.mc U src/contrib/sendmail/cf/cf/mail.cs.mc U src/contrib/sendmail/cf/cf/mail.eecs.mc U src/contrib/sendmail/cf/cf/mailspool.cs.mc U src/contrib/sendmail/cf/cf/python.cs.mc U src/contrib/sendmail/cf/cf/s2k-osf1.mc U src/contrib/sendmail/cf/cf/s2k-ultrix4.mc U src/contrib/sendmail/cf/cf/tcpproto.mc U src/contrib/sendmail/cf/cf/ucbarpa.mc U src/contrib/sendmail/cf/cf/ucbvax.mc U src/contrib/sendmail/cf/cf/uucpproto.mc U src/contrib/sendmail/cf/cf/vangogh.cs.mc U src/contrib/sendmail/cf/domain/Berkeley.EDU.m4 U src/contrib/sendmail/cf/domain/CS.Berkeley.EDU.m4 U src/contrib/sendmail/cf/domain/EECS.Berkeley.EDU.m4 U src/contrib/sendmail/cf/domain/S2K.Berkeley.EDU.m4 U src/contrib/sendmail/cf/domain/generic.m4 U src/contrib/sendmail/cf/domain/berkeley-only.m4 U src/contrib/sendmail/cf/feature/accept_unqualified_senders.m4 U src/contrib/sendmail/cf/feature/accept_unresolvable_domains.m4 U src/contrib/sendmail/cf/feature/access_db.m4 U src/contrib/sendmail/cf/feature/allmasquerade.m4 U src/contrib/sendmail/cf/feature/always_add_domain.m4 U src/contrib/sendmail/cf/feature/bestmx_is_local.m4 U src/contrib/sendmail/cf/feature/bitdomain.m4 U src/contrib/sendmail/cf/feature/blacklist_recipients.m4 U src/contrib/sendmail/cf/feature/delay_checks.m4 U src/contrib/sendmail/cf/feature/dnsbl.m4 U src/contrib/sendmail/cf/feature/domaintable.m4 U src/contrib/sendmail/cf/feature/generics_entire_domain.m4 U src/contrib/sendmail/cf/feature/genericstable.m4 U src/contrib/sendmail/cf/feature/ldap_routing.m4 U src/contrib/sendmail/cf/feature/limited_masquerade.m4 U src/contrib/sendmail/cf/feature/local_lmtp.m4 U src/contrib/sendmail/cf/feature/local_procmail.m4 U src/contrib/sendmail/cf/feature/loose_relay_check.m4 U src/contrib/sendmail/cf/feature/mailertable.m4 U src/contrib/sendmail/cf/feature/masquerade_entire_domain.m4 U src/contrib/sendmail/cf/feature/masquerade_envelope.m4 U src/contrib/sendmail/cf/feature/no_default_msa.m4 U src/contrib/sendmail/cf/feature/nocanonify.m4 U src/contrib/sendmail/cf/feature/nodns.m4 U src/contrib/sendmail/cf/feature/notsticky.m4 U src/contrib/sendmail/cf/feature/nouucp.m4 U src/contrib/sendmail/cf/feature/nullclient.m4 U src/contrib/sendmail/cf/feature/promiscuous_relay.m4 U src/contrib/sendmail/cf/feature/rbl.m4 U src/contrib/sendmail/cf/feature/redirect.m4 U src/contrib/sendmail/cf/feature/relay_based_on_MX.m4 U src/contrib/sendmail/cf/feature/relay_entire_domain.m4 U src/contrib/sendmail/cf/feature/relay_hosts_only.m4 U src/contrib/sendmail/cf/feature/relay_local_from.m4 U src/contrib/sendmail/cf/feature/relay_mail_from.m4 U src/contrib/sendmail/cf/feature/smrsh.m4 U src/contrib/sendmail/cf/feature/stickyhost.m4 U src/contrib/sendmail/cf/feature/use_ct_file.m4 U src/contrib/sendmail/cf/feature/use_cw_file.m4 U src/contrib/sendmail/cf/feature/uucpdomain.m4 U src/contrib/sendmail/cf/feature/virtuser_entire_domain.m4 U src/contrib/sendmail/cf/feature/virtusertable.m4 U src/contrib/sendmail/cf/hack/cssubdomain.m4 U src/contrib/sendmail/cf/m4/cf.m4 U src/contrib/sendmail/cf/m4/cfhead.m4 U src/contrib/sendmail/cf/m4/proto.m4 U src/contrib/sendmail/cf/m4/version.m4 U src/contrib/sendmail/cf/mailer/cyrus.m4 U src/contrib/sendmail/cf/mailer/fax.m4 U src/contrib/sendmail/cf/mailer/local.m4 U src/contrib/sendmail/cf/mailer/mail11.m4 U src/contrib/sendmail/cf/mailer/phquery.m4 U src/contrib/sendmail/cf/mailer/pop.m4 U src/contrib/sendmail/cf/mailer/procmail.m4 U src/contrib/sendmail/cf/mailer/qpage.m4 U src/contrib/sendmail/cf/mailer/smtp.m4 U src/contrib/sendmail/cf/mailer/usenet.m4 U src/contrib/sendmail/cf/mailer/uucp.m4 U src/contrib/sendmail/cf/ostype/aix2.m4 U src/contrib/sendmail/cf/ostype/aix3.m4 U src/contrib/sendmail/cf/ostype/aix4.m4 U src/contrib/sendmail/cf/ostype/aix5.m4 U src/contrib/sendmail/cf/ostype/altos.m4 U src/contrib/sendmail/cf/ostype/amdahl-uts.m4 U src/contrib/sendmail/cf/ostype/bsd4.3.m4 U src/contrib/sendmail/cf/ostype/bsd4.4.m4 U src/contrib/sendmail/cf/ostype/bsdi.m4 U src/contrib/sendmail/cf/ostype/bsdi1.0.m4 U src/contrib/sendmail/cf/ostype/bsdi2.0.m4 U src/contrib/sendmail/cf/ostype/darwin.m4 U src/contrib/sendmail/cf/ostype/dgux.m4 U src/contrib/sendmail/cf/ostype/domainos.m4 U src/contrib/sendmail/cf/ostype/dynix3.2.m4 U src/contrib/sendmail/cf/ostype/freebsd4.m4 U src/contrib/sendmail/cf/ostype/gnu.m4 U src/contrib/sendmail/cf/ostype/hpux10.m4 U src/contrib/sendmail/cf/ostype/hpux11.m4 U src/contrib/sendmail/cf/ostype/hpux9.m4 U src/contrib/sendmail/cf/ostype/irix4.m4 U src/contrib/sendmail/cf/ostype/irix5.m4 U src/contrib/sendmail/cf/ostype/irix6.m4 U src/contrib/sendmail/cf/ostype/isc4.1.m4 U src/contrib/sendmail/cf/ostype/osf1.m4 U src/contrib/sendmail/cf/ostype/ptx2.m4 U src/contrib/sendmail/cf/ostype/linux.m4 U src/contrib/sendmail/cf/ostype/maxion.m4 U src/contrib/sendmail/cf/ostype/mklinux.m4 U src/contrib/sendmail/cf/ostype/nextstep.m4 U src/contrib/sendmail/cf/ostype/openbsd.m4 U src/contrib/sendmail/cf/ostype/powerux.m4 U src/contrib/sendmail/cf/ostype/qnx.m4 U src/contrib/sendmail/cf/ostype/riscos4.5.m4 U src/contrib/sendmail/cf/ostype/sco-uw-2.1.m4 U src/contrib/sendmail/cf/ostype/sco3.2.m4 U src/contrib/sendmail/cf/ostype/sinix.m4 U src/contrib/sendmail/cf/ostype/solaris2.m4 U src/contrib/sendmail/cf/ostype/solaris2.ml.m4 U src/contrib/sendmail/cf/ostype/solaris2.pre5.m4 U src/contrib/sendmail/cf/ostype/solaris8.m4 U src/contrib/sendmail/cf/ostype/sunos3.5.m4 U src/contrib/sendmail/cf/ostype/sunos4.1.m4 U src/contrib/sendmail/cf/ostype/svr4.m4 U src/contrib/sendmail/cf/ostype/ultrix4.m4 U src/contrib/sendmail/cf/ostype/unixware7.m4 U src/contrib/sendmail/cf/ostype/unknown.m4 U src/contrib/sendmail/cf/ostype/uxpds.m4 U src/contrib/sendmail/cf/ostype/aux.m4 U src/contrib/sendmail/cf/sh/makeinfo.sh U src/contrib/sendmail/cf/siteconfig/uucp.cogsci.m4 U src/contrib/sendmail/cf/siteconfig/uucp.old.arpa.m4 U src/contrib/sendmail/cf/siteconfig/uucp.ucbarpa.m4 U src/contrib/sendmail/cf/siteconfig/uucp.ucbvax.m4 U src/contrib/sendmail/praliases/Makefile U src/contrib/sendmail/praliases/Makefile.m4 U src/contrib/sendmail/praliases/praliases.8 U src/contrib/sendmail/praliases/praliases.c U src/contrib/sendmail/rmail/Makefile U src/contrib/sendmail/rmail/Makefile.m4 U src/contrib/sendmail/rmail/rmail.8 U src/contrib/sendmail/rmail/rmail.c U src/contrib/sendmail/contrib/README U src/contrib/sendmail/contrib/bitdomain.c U src/contrib/sendmail/contrib/bounce-resender.pl U src/contrib/sendmail/contrib/bsdi.mc U src/contrib/sendmail/contrib/buildvirtuser U src/contrib/sendmail/contrib/cidrexpand U src/contrib/sendmail/contrib/domainmap.m4 U src/contrib/sendmail/contrib/doublebounce.pl U src/contrib/sendmail/contrib/etrn.pl U src/contrib/sendmail/contrib/expn.pl U src/contrib/sendmail/contrib/link_hash.sh U src/contrib/sendmail/contrib/mail.local.linux U src/contrib/sendmail/contrib/mailprio U src/contrib/sendmail/contrib/mh.patch U src/contrib/sendmail/contrib/mmuegel U src/contrib/sendmail/contrib/movemail.conf U src/contrib/sendmail/contrib/movemail.pl U src/contrib/sendmail/contrib/oldbind.compat.c U src/contrib/sendmail/contrib/passwd-to-alias.pl U src/contrib/sendmail/contrib/qtool.pl U src/contrib/sendmail/contrib/qtool.8 U src/contrib/sendmail/contrib/re-mqueue.pl U src/contrib/sendmail/contrib/rmail.oldsys.patch U src/contrib/sendmail/contrib/smcontrol.pl U src/contrib/sendmail/libsmdb/Makefile U src/contrib/sendmail/libsmdb/Makefile.m4 U src/contrib/sendmail/libsmdb/smdb.c U src/contrib/sendmail/libsmdb/smdb1.c U src/contrib/sendmail/libsmdb/smdb2.c U src/contrib/sendmail/libsmdb/smndbm.c U src/contrib/sendmail/libmilter/Makefile U src/contrib/sendmail/libmilter/Makefile.m4 U src/contrib/sendmail/libmilter/README U src/contrib/sendmail/libmilter/comm.c U src/contrib/sendmail/libmilter/engine.c U src/contrib/sendmail/libmilter/handler.c U src/contrib/sendmail/libmilter/listener.c U src/contrib/sendmail/libmilter/main.c U src/contrib/sendmail/libmilter/libmilter.h U src/contrib/sendmail/libmilter/signal.c U src/contrib/sendmail/libmilter/sm_gethost.c U src/contrib/sendmail/libmilter/smfi.c U src/contrib/sendmail/vacation/Makefile U src/contrib/sendmail/vacation/Makefile.m4 U src/contrib/sendmail/vacation/vacation.1 U src/contrib/sendmail/vacation/vacation.c 1 conflicts created by this import. Use the following command to help the merge: cvs checkout -jSENDMAIL:yesterday -jSENDMAIL src/contrib/sendmail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 18:32:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A021A37B409; Mon, 20 Aug 2001 18:32:34 -0700 (PDT) (envelope-from gshapiro@FreeBSD.org) Received: (from gshapiro@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L1WYc95972; Mon, 20 Aug 2001 18:32:34 -0700 (PDT) (envelope-from gshapiro) Message-Id: <200108210132.f7L1WYc95972@freefall.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 20 Aug 2001 18:32:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/sendmail/src err.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gshapiro 2001/08/20 18:32:34 PDT Modified files: contrib/sendmail/src err.c Log: Resolve conflicts from sendmail 8.11.6 import Revision Changes Path 1.7 +22 -5 src/contrib/sendmail/src/err.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 18:32:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9988837B406; Mon, 20 Aug 2001 18:32:30 -0700 (PDT) (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L1WUi95922; Mon, 20 Aug 2001 18:32:30 -0700 (PDT) (envelope-from mi) Message-Id: <200108210132.f7L1WUi95922@freefall.freebsd.org> From: Mikhail Teterin Date: Mon, 20 Aug 2001 18:32:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/gdtclft Makefile ports/graphics/gdtclft/files patch-gif X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mi 2001/08/20 18:32:30 PDT Modified files: graphics/gdtclft Makefile Added files: graphics/gdtclft/files patch-gif Log: Add back the ability to _read_ GIF images, now that our gd has it again. Revision Changes Path 1.8 +2 -2 ports/graphics/gdtclft/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 18:33:12 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3572537B403; Mon, 20 Aug 2001 18:33:05 -0700 (PDT) (envelope-from gshapiro@FreeBSD.org) Received: (from gshapiro@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L1X5H96049; Mon, 20 Aug 2001 18:33:05 -0700 (PDT) (envelope-from gshapiro) Message-Id: <200108210133.f7L1X5H96049@freefall.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 20 Aug 2001 18:33:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/sendmail FREEBSD-upgrade X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gshapiro 2001/08/20 18:33:05 PDT Modified files: contrib/sendmail FREEBSD-upgrade Log: Update import information Revision Changes Path 1.7 +5 -5 src/contrib/sendmail/FREEBSD-upgrade To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 18:36:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0AC7B37B408; Mon, 20 Aug 2001 18:36:38 -0700 (PDT) (envelope-from gshapiro@FreeBSD.org) Received: (from gshapiro@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L1ab396454; Mon, 20 Aug 2001 18:36:37 -0700 (PDT) (envelope-from gshapiro) Message-Id: <200108210136.f7L1ab396454@freefall.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 20 Aug 2001 18:36:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/sendmail FREEBSD-upgrade RELEASE_NOTES src/contrib/sendmail/cf README src/contrib/sendmail/cf/m4 version.m4 src/contrib/sendmail/doc/op op.me src/contrib/sendmail/src README clock.c err.c map.c milter.c ... X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gshapiro 2001/08/20 18:36:37 PDT Modified files: (Branch: RELENG_4) contrib/sendmail FREEBSD-upgrade RELEASE_NOTES contrib/sendmail/cf README contrib/sendmail/cf/m4 version.m4 contrib/sendmail/doc/op op.me contrib/sendmail/src README clock.c err.c map.c milter.c parseaddr.c readcf.c sendmail.h trace.c version.c Log: MFC: Import sendmail 8.11.6 Approved by: re (jkh) Revision Changes Path 1.1.2.7 +5 -5 src/contrib/sendmail/FREEBSD-upgrade 1.1.1.3.2.7 +16 -1 src/contrib/sendmail/RELEASE_NOTES 1.1.1.3.2.7 +3 -3 src/contrib/sendmail/cf/README 1.1.1.3.2.7 +2 -2 src/contrib/sendmail/cf/m4/version.m4 1.1.1.3.2.7 +4 -4 src/contrib/sendmail/doc/op/op.me 1.1.1.3.2.7 +3 -2 src/contrib/sendmail/src/README 1.1.1.3.2.5 +3 -1 src/contrib/sendmail/src/clock.c 1.3.6.4 +22 -5 src/contrib/sendmail/src/err.c 1.1.1.3.2.7 +3 -2 src/contrib/sendmail/src/map.c 1.1.1.1.2.7 +10 -6 src/contrib/sendmail/src/milter.c 1.1.1.2.6.6 +1 -4 src/contrib/sendmail/src/parseaddr.c 1.1.1.4.2.7 +6 -1 src/contrib/sendmail/src/readcf.c 1.1.1.4.2.7 +3 -1 src/contrib/sendmail/src/sendmail.h 1.1.1.2.6.3 +16 -4 src/contrib/sendmail/src/trace.c 1.1.1.3.2.7 +2 -2 src/contrib/sendmail/src/version.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 18:42:12 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 100D737B401; Mon, 20 Aug 2001 18:42:09 -0700 (PDT) (envelope-from gshapiro@FreeBSD.org) Received: (from gshapiro@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L1g9s96893; Mon, 20 Aug 2001 18:42:09 -0700 (PDT) (envelope-from gshapiro) Message-Id: <200108210142.f7L1g9s96893@freefall.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 20 Aug 2001 18:42:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gshapiro 2001/08/20 18:42:08 PDT Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: sendmail 8.11.6 has been imported Revision Changes Path 1.107 +2 -2 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 18:42:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D33137B401; Mon, 20 Aug 2001 18:42:39 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L1gd596964; Mon, 20 Aug 2001 18:42:39 -0700 (PDT) (envelope-from jedgar) Message-Id: <200108210142.f7L1gd596964@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Mon, 20 Aug 2001 18:42:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics Makefile ports/graphics/killustrator Makefile distinfo pkg-comment pkg-descr pkg-plist ports/graphics/killustrator/files patch-aa patch-ac patch-ad X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jedgar 2001/08/20 18:42:39 PDT Modified files: graphics Makefile Removed files: graphics/killustrator Makefile distinfo pkg-comment pkg-descr pkg-plist graphics/killustrator/files patch-aa patch-ac patch-ad Log: Remove killustrator; it has been renamed to kontour and is now included in koffice. Revision Changes Path 1.340 +1 -2 ports/graphics/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 18:42:48 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D16FF37B406; Mon, 20 Aug 2001 18:42:40 -0700 (PDT) (envelope-from gshapiro@FreeBSD.org) Received: (from gshapiro@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L1ge196980; Mon, 20 Aug 2001 18:42:40 -0700 (PDT) (envelope-from gshapiro) Message-Id: <200108210142.f7L1ge196980@freefall.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 20 Aug 2001 18:42:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gshapiro 2001/08/20 18:42:40 PDT Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: sendmail 8.11.6 has been MFC'ed Reviewed by: re (jkh) Revision Changes Path 1.22.2.67 +2 -2 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 18:43:10 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E50137B40B; Mon, 20 Aug 2001 18:43:06 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L1h6G97044; Mon, 20 Aug 2001 18:43:06 -0700 (PDT) (envelope-from jedgar) Message-Id: <200108210143.f7L1h6G97044@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Mon, 20 Aug 2001 18:43:06 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jedgar 2001/08/20 18:43:06 PDT Modified files: . modules Log: Remove killustrator Revision Changes Path 1.3692 +1 -2 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 Aug 20 18:43:46 2001 Delivered-To: cvs-all@freebsd.org Received: from horsey.gshapiro.net (horsey.gshapiro.net [209.220.147.178]) by hub.freebsd.org (Postfix) with ESMTP id 90DE137B40A; Mon, 20 Aug 2001 18:43:37 -0700 (PDT) (envelope-from gshapiro@gshapiro.net) Received: from horsey.gshapiro.net (gshapiro@localhost [127.0.0.1]) by horsey.gshapiro.net (8.12.0.Beta16/8.12.0.Beta16) with ESMTP id f7L1hajq024640 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Mon, 20 Aug 2001 18:43:37 -0700 (PDT) Received: (from gshapiro@localhost) by horsey.gshapiro.net (8.12.0.Beta16/8.12.0.Beta16) id f7L1hawW024637; Mon, 20 Aug 2001 18:43:36 -0700 (PDT) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15233.48328.458569.699331@horsey.gshapiro.net> Date: Mon, 20 Aug 2001 18:43:36 -0700 From: Gregory Neil Shapiro To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml In-Reply-To: <200108210142.f7L1ge196980@freefall.freebsd.org> References: <200108210142.f7L1ge196980@freefall.freebsd.org> X-Mailer: VM 6.92 under 21.5 (beta1) "anise" XEmacs Lucid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gshapiro> gshapiro 2001/08/20 18:42:40 PDT gshapiro> Modified files: (Branch: RELENG_4) gshapiro> release/doc/en_US.ISO8859-1/relnotes/common new.sgml gshapiro> Log: gshapiro> sendmail 8.11.6 has been MFC'ed gshapiro> Reviewed by: re (jkh) That should be Approved by:, not Reviewed by:. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 19:33: 3 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 57EBD37B401; Mon, 20 Aug 2001 19:32:59 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L2Wxv04519; Mon, 20 Aug 2001 19:32:59 -0700 (PDT) (envelope-from peter) Message-Id: <200108210232.f7L2Wxv04519@freefall.freebsd.org> From: Peter Wemm Date: Mon, 20 Aug 2001 19:32:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha machdep.c src/sys/i386/i386 machdep.c src/sys/ia64/ia64 machdep.c src/sys/kern kern_sig.c src/sys/pc98/i386 machdep.c src/sys/powerpc/powerpc machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/20 19:32:59 PDT Modified files: sys/alpha/alpha machdep.c sys/i386/i386 machdep.c sys/ia64/ia64 machdep.c sys/kern kern_sig.c sys/pc98/i386 machdep.c sys/powerpc/powerpc machdep.c Log: Make COMPAT_43 optional again. XXX we need COMPAT_FBSD3 etc for this stuff. Revision Changes Path 1.139 +9 -1 src/sys/alpha/alpha/machdep.c 1.471 +11 -2 src/sys/i386/i386/machdep.c 1.40 +3 -1 src/sys/ia64/ia64/machdep.c 1.127 +3 -1 src/sys/kern/kern_sig.c 1.231 +11 -2 src/sys/pc98/i386/machdep.c 1.6 +7 -1 src/sys/powerpc/powerpc/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 19:51:57 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6239037B40A; Mon, 20 Aug 2001 19:51:54 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L2pst06090; Mon, 20 Aug 2001 19:51:54 -0700 (PDT) (envelope-from obrien) Message-Id: <200108210251.f7L2pst06090@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 20 Aug 2001 19:51:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/dict Makefile ports/textproc/dict/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/20 19:51:54 PDT Modified files: textproc/dict Makefile textproc/dict/files patch-aa Log: We don't need to patch `configure' as much as this patch was doing. We can accomplish the same thing with a CONFIGURE_ARGS. Revision Changes Path 1.17 +3 -2 ports/textproc/dict/Makefile 1.4 +0 -11 ports/textproc/dict/files/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 20: 0:12 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4273337B406; Mon, 20 Aug 2001 20:00:04 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L304W06909; Mon, 20 Aug 2001 20:00:04 -0700 (PDT) (envelope-from dinoex) Message-Id: <200108210300.f7L304W06909@freefall.freebsd.org> From: Dirk Meyer Date: Mon, 20 Aug 2001 20:00:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/sendmail Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2001/08/20 20:00:03 PDT Modified files: mail/sendmail Makefile distinfo Log: Urgent Update to 8.11.6: Sendmail, Inc., and the Sendmail Consortium announce the availability of sendmail 8.11.6 and 8.12.0.Beta19. These new versions fix a security problem reported by SecurityFocus regarding command line processing. This vulnerability is present in sendmail open source versions between 8.10.0 and 8.11.5 as well as all 8.12.0.Beta versions. Therefore, sendmail 8.12.0.Beta users should upgrade to 8.12.0.Beta19. The problem was not present in 8.10 or earlier versions. However, as always, we recommend using the latest version. Note that this problem is not remotely exploitable. Revision Changes Path 1.23 +2 -2 ports/mail/sendmail/Makefile 1.7 +1 -1 ports/mail/sendmail/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 20:11: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8EEC737B408; Mon, 20 Aug 2001 20:10:55 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L3Ato10786; Mon, 20 Aug 2001 20:10:55 -0700 (PDT) (envelope-from peter) Message-Id: <200108210310.f7L3Ato10786@freefall.freebsd.org> From: Peter Wemm Date: Mon, 20 Aug 2001 20:10:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/include pci_cfgreg.h src/sys/i386/pci pci_bus.c pci_cfgreg.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/20 20:10:55 PDT Modified files: sys/i386/include pci_cfgreg.h sys/i386/pci pci_bus.c pci_cfgreg.c Log: Detect a certain type of PCIBIOS brain damage. For some reason, some bios vendors took it apon themselves to "censor" the host->pci bridges from PCIBIOS callers, even when the caller explicitly asks for them. This includes certain Compaq machines (eg: DL360) and some laptops. If we detect this, shut down pcibios and revert to using IO port bashing. Under -current, apcica does a better job anyway. Revision Changes Path 1.5 +3 -1 src/sys/i386/include/pci_cfgreg.h 1.76 +19 -1 src/sys/i386/pci/pci_bus.c 1.77 +14 -1 src/sys/i386/pci/pci_cfgreg.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 20:32:46 2001 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 88A9337B406; Mon, 20 Aug 2001 20:32:42 -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.11.3/8.11.3) with ESMTP id f7L3Wfq37123; Mon, 20 Aug 2001 21:32:41 -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.11.3/8.11.4) with ESMTP id f7L3WfW55692; Mon, 20 Aug 2001 21:32:41 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200108210332.f7L3WfW55692@harmony.village.org> To: Peter Wemm Subject: Re: cvs commit: src/sys/i386/include pci_cfgreg.h src/sys/i386/pci pci_bus.c pci_cfgreg.c Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Mon, 20 Aug 2001 20:10:55 PDT." <200108210310.f7L3Ato10786@freefall.freebsd.org> References: <200108210310.f7L3Ato10786@freefall.freebsd.org> Date: Mon, 20 Aug 2001 21:32:40 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <200108210310.f7L3Ato10786@freefall.freebsd.org> Peter Wemm writes: : explicitly asks for them. This includes certain Compaq machines : (eg: DL360) and some laptops. And at least three different pc98 machines also have similar problems. Maybe it will help them too. This should be MFC'd quickly. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 20:41:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 901AE37B401; Mon, 20 Aug 2001 20:41:39 -0700 (PDT) (envelope-from horikawa@FreeBSD.org) Received: (from horikawa@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L3fdU13375; Mon, 20 Aug 2001 20:41:39 -0700 (PDT) (envelope-from horikawa) Message-Id: <200108210341.f7L3fdU13375@freefall.freebsd.org> From: Kazuo Horikawa Date: Mon, 20 Aug 2001 20:41:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man1 sasc.1 doc/ja_JP.eucJP/man/man5 make.conf.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG horikawa 2001/08/20 20:41:38 PDT Modified files: ja_JP.eucJP/man/man1 sasc.1 ja_JP.eucJP/man/man5 make.conf.5 Log: Fix typo in macro: o remove remaining .TP from mdoc manpage sasc.1 o replace .Qt (non-existent macro) with .Pq in make.conf.5 Revision Changes Path 1.12 +1 -2 doc/ja_JP.eucJP/man/man1/sasc.1 1.13 +106 -106 doc/ja_JP.eucJP/man/man5/make.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 20:50:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DD58637B406; Mon, 20 Aug 2001 20:50:26 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L3oQ014078; Mon, 20 Aug 2001 20:50:26 -0700 (PDT) (envelope-from brian) Message-Id: <200108210350.f7L3oQ014078@freefall.freebsd.org> From: Brian Somers Date: Mon, 20 Aug 2001 20:50:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libalias alias.c alias_db.c alias_ftp.c alias_irc.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/20 20:50:26 PDT Modified files: (Branch: RELENG_4) lib/libalias alias.c alias_db.c alias_ftp.c alias_irc.c Log: MFC: Adjust copyright Approved by: jkh Revision Changes Path 1.16.2.7 +1 -4 src/lib/libalias/alias.c 1.21.2.12 +1 -4 src/lib/libalias/alias_db.c 1.5.2.4 +1 -4 src/lib/libalias/alias_ftp.c 1.5.2.3 +1 -4 src/lib/libalias/alias_irc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 21:31:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 166C837B407; Mon, 20 Aug 2001 21:31:40 -0700 (PDT) (envelope-from clive@FreeBSD.org) Received: (from clive@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L4VeV24758; Mon, 20 Aug 2001 21:31:40 -0700 (PDT) (envelope-from clive) Message-Id: <200108210431.f7L4VeV24758@freefall.freebsd.org> From: Clive Lin Date: Mon, 20 Aug 2001 21:31:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/postgresql7 Makefile distinfo pkg-message pkg-plist.doc ports/databases/postgresql7/files post-install-notes X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG clive 2001/08/20 21:31:40 PDT Modified files: databases/postgresql7 Makefile distinfo pkg-message pkg-plist.doc databases/postgresql7/files post-install-notes Log: Update the PostgreSQL port to 7.1.3. A note about how to install languages into a PostgreSQL database is added. PR: ports/29916 Submitted by: Palle Girgensohn (MAINTAINER) Michal Pasternak (the note) Revision Changes Path 1.88 +2 -3 ports/databases/postgresql7/Makefile 1.20 +3 -3 ports/databases/postgresql7/distinfo 1.4 +3 -3 ports/databases/postgresql7/pkg-message 1.6 +5 -4 ports/databases/postgresql7/pkg-plist.doc 1.13 +3 -0 ports/databases/postgresql7/files/post-install-notes To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 22:23:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 249DB37B408; Mon, 20 Aug 2001 22:23:39 -0700 (PDT) (envelope-from ken@FreeBSD.org) Received: (from ken@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L5Ndk43614; Mon, 20 Aug 2001 22:23:39 -0700 (PDT) (envelope-from ken) Message-Id: <200108210523.f7L5Ndk43614@freefall.freebsd.org> From: "Kenneth D. Merry" Date: Mon, 20 Aug 2001 22:23:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libdevstat devstat.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ken 2001/08/20 22:23:38 PDT Modified files: lib/libdevstat devstat.c Log: Fix some style inconsistencies introduced in rev 1.10, as well as some other inconsistencies that I missed in my review of rev 1.7. Also fix a cut-n-paste error from an earlier revision. Revision Changes Path 1.11 +37 -35 src/lib/libdevstat/devstat.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 23: 0:38 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 37F8C37B409; Mon, 20 Aug 2001 23:00:35 -0700 (PDT) (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L60Zl46857; Mon, 20 Aug 2001 23:00:35 -0700 (PDT) (envelope-from demon) Message-Id: <200108210600.f7L60Zl46857@freefall.freebsd.org> From: Dmitry Sivachenko Date: Mon, 20 Aug 2001 23:00:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/kde2-i18n/files patch-aa patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2001/08/20 23:00:35 PDT Modified files: misc/kde2-i18n/files patch-aa patch-ab Log: Fix installation in a slightly different way. Revision Changes Path 1.4 +4 -3 ports/misc/kde2-i18n/files/patch-aa 1.2 +4 -3 ports/misc/kde2-i18n/files/patch-ab To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 23: 1:18 2001 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 847B937B40A; Mon, 20 Aug 2001 23:01:10 -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.9.3/8.8.7) with ESMTP id QAA14344; Tue, 21 Aug 2001 16:00:56 +1000 Date: Tue, 21 Aug 2001 16:00:52 +1000 (EST) From: Bruce Evans X-X-Sender: To: Matt Dillon Cc: Peter Wemm , , Subject: Re: cvs commit: src/sys/boot/common loader.8 src/sys/conf options src/sys/i386/i386 machdep.c src/sys/i386/include param.h src/sys/kern subr_param.c src/sys/sys buf.h src/sys/vm swap_pager.c In-Reply-To: <200108201633.f7KGXGJ51695@earth.backplane.com> Message-ID: <20010821141007.Y1177-100000@besplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 20 Aug 2001, Matt Dillon wrote: [I wrote] > :Actually, by not updating all copies of this MD include to define > :suitable MD constants for VM_BCACHE_SIZE_MAX and VM_SWZONE_SIZE_MAX. > :These constants need to be MD since the amount of KVM is MD. Except > :these constants shouldn't exist. Just use a suitable fraction of total > :KVM. Alternatively, set these constants to "infinity" by default and > :override them on i386's only. 64-bit machines should have enough KVM > :to map the buffer cache millions of times. > > There is no 'suitable fraction'. That's one of the problems. If > you have a machine with 64MB of ram then having 512MB of swap is > reasonable. If you have a machine with 4G of them then having 32G > of swap is typically unreasonable. This argument doesn't apply to buffer kvm. We've already scaled `nbuf' to a non-constant fraction of RAM, where the scale factor decreases with the amount of RAM. Buffer kvm is reasonably limited provided this scaling is reasonable. > Also, the kernel_map, clean_map, > buffer_map, etc... all the initialization code for these maps is > *improperly* sitting in machine-dependant sections. It should be > machine-indendant sections. I fixed the buffer map allocation code > in IA32 because it is the basis for all the dups, and that is the code > that will eventually be migrated to MI. The i386 code is sort of backwards. physmem_est is in pages and BKVASIZE is in bytes, so `physmem_est / BKVASIZE' is normally 0 and nbuf is adjusted _up_ to maxbcache / BKVASIZE (default 12500) on almost all machines. On a machine with 32MB of RAM, this caused severe thrashing, and eventually hangs and a panic, after about 20MB of RAM was firmly allocated to buffers. Index: machdep.c =================================================================== RCS file: /home/ncvs/src/sys/i386/i386/machdep.c,v retrieving revision 1.470 diff -u -1 -r1.470 machdep.c --- machdep.c 20 Aug 2001 00:41:11 -0000 1.470 +++ machdep.c 21 Aug 2001 00:57:50 -0000 @@ -316,4 +314,3 @@ nbuf += (physmem_est - 16384) * 2 / (factor * 5); - - if (maxbcache && nbuf > physmem_est / BKVASIZE) + if (maxbcache != 0 && nbuf > maxbcache / BKVASIZE) nbuf = maxbcache / BKVASIZE; Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 23:14:30 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2A52737B40F; Mon, 20 Aug 2001 23:14:27 -0700 (PDT) (envelope-from horikawa@FreeBSD.org) Received: (from horikawa@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L6ERJ51285; Mon, 20 Aug 2001 23:14:27 -0700 (PDT) (envelope-from horikawa) Message-Id: <200108210614.f7L6ERJ51285@freefall.freebsd.org> From: Kazuo Horikawa Date: Mon, 20 Aug 2001 23:14:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man7 groff_mdoc.7 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG horikawa 2001/08/20 23:14:27 PDT Modified files: ja_JP.eucJP/man/man7 groff_mdoc.7 Log: Revise Japanese wording Revision Changes Path 1.4 +58 -56 doc/ja_JP.eucJP/man/man7/groff_mdoc.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 23:19:34 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 00DDB37B414; Mon, 20 Aug 2001 23:19:30 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L6JT651736; Mon, 20 Aug 2001 23:19:29 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108210619.f7L6JT651736@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 20 Aug 2001 23:19:29 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/20 23:19:29 PDT Modified files: share/man/man3 queue.3 Log: STAILQ_LAST() macro takes 3 arguments, not 1. Revision Changes Path 1.26 +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 Mon Aug 20 23:46:54 2001 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 A4E3537B405; Mon, 20 Aug 2001 23:46:47 -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.9.3/8.8.7) with ESMTP id QAA19815; Tue, 21 Aug 2001 16:46:45 +1000 Date: Tue, 21 Aug 2001 16:46:40 +1000 (EST) From: Bruce Evans X-X-Sender: To: Ruslan Ermilov Cc: Mark Murray , , Subject: Re: cvs commit: src/usr.bin/su su.c In-Reply-To: <20010820192334.B83948@sunbay.com> Message-ID: <20010821164246.J1960-100000@besplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 20 Aug 2001, Ruslan Ermilov wrote: > On Mon, Aug 20, 2001 at 05:46:11AM -0700, Mark Murray wrote: > > markm 2001/08/20 05:46:11 PDT > > > > Modified files: > > usr.bin/su su.c > > Log: > > Very minor stylistic nit. > > > > Discussed with: ru > > > > Revision Changes Path > > 1.44 +2 -3 src/usr.bin/su/su.c This seems to just add a style bug. It removes a cast to void. If casting function return values to void is correct anywhere, then it is correct for fprintf() to stderr. > Yes, but please fix style(9) example then as well, so > people don't do it wrong further. The example in style(9) seems to be correct here. (It is wrong later. Using sysexits(3) is not normal style.) Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 20 23:58:49 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5687337B40A; Mon, 20 Aug 2001 23:58:45 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L6wjo55943; Mon, 20 Aug 2001 23:58:45 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108210658.f7L6wjo55943@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 20 Aug 2001 23:58:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man3 queue.3 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/20 23:58:45 PDT Modified files: (Branch: RELENG_4) share/man/man3 queue.3 Log: MFC: STAILQ_LAST() macro takes 3 arguments, not 1. Approved by: jkh Revision Changes Path 1.15.2.5 +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 Tue Aug 21 0:13:24 2001 Delivered-To: cvs-all@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id 8011737B40C; Tue, 21 Aug 2001 00:13:18 -0700 (PDT) (envelope-from dillon@earth.backplane.com) Received: (from dillon@localhost) by earth.backplane.com (8.11.4/8.11.2) id f7L7D9d60995; Tue, 21 Aug 2001 00:13:09 -0700 (PDT) (envelope-from dillon) Date: Tue, 21 Aug 2001 00:13:09 -0700 (PDT) From: Matt Dillon Message-Id: <200108210713.f7L7D9d60995@earth.backplane.com> To: Bruce Evans Cc: Peter Wemm , , Subject: Re: cvs commit: src/sys/boot/common loader.8 src/sys/conf options src/sys/i386/i386 machdep.c src/sys/i386/include param.h src/sys/kern subr_param.c src/sys/sys buf.h src/sys/vm swap_pager.c References: <20010821141007.Y1177-100000@besplex.bde.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG :is in bytes, so `physmem_est / BKVASIZE' is normally 0 and nbuf is adjusted :_up_ to maxbcache / BKVASIZE (default 12500) on almost all machines. On :a machine with 32MB of RAM, this caused severe thrashing, and eventually :hangs and a panic, after about 20MB of RAM was firmly allocated to buffers. This is the pre-existing code. It looks severely broken in general: /* * Discount the physical memory larger than the size of kernel_map * to avoid eating up all of KVA space. */ if (kernel_map->first_free == NULL) { printf("Warning: no free entries in kernel_map.\n"); physmem_est = physmem; } else physmem_est = min(physmem, kernel_map->max_offset - kernel_map->min_offset); since kernel_map->max_offset - min_offset is in bytes, and physmem is in pages. I'll change everything to pages. -Matt : :Index: machdep.c :=================================================================== :RCS file: /home/ncvs/src/sys/i386/i386/machdep.c,v :retrieving revision 1.470 :diff -u -1 -r1.470 machdep.c :--- machdep.c 20 Aug 2001 00:41:11 -0000 1.470 :+++ machdep.c 21 Aug 2001 00:57:50 -0000 :@@ -316,4 +314,3 @@ : nbuf += (physmem_est - 16384) * 2 / (factor * 5); :- :- if (maxbcache && nbuf > physmem_est / BKVASIZE) :+ if (maxbcache != 0 && nbuf > maxbcache / BKVASIZE) : nbuf = maxbcache / BKVASIZE; : :Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 0:20:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A726837B40B; Tue, 21 Aug 2001 00:20:06 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L7K6P61217; Tue, 21 Aug 2001 00:20:06 -0700 (PDT) (envelope-from dillon) Message-Id: <200108210720.f7L7K6P61217@freefall.freebsd.org> From: Matt Dillon Date: Tue, 21 Aug 2001 00:20:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2001/08/21 00:20:06 PDT Modified files: sys/i386/i386 machdep.c Log: Fix bug in physmem_est calculation - the kernel_map size was not being converted into pages. Fix bug in maxbcache calculation, nbuf must be tested against maxbcache rather then physmem_est. Obtained from: bde Revision Changes Path 1.472 +7 -6 src/sys/i386/i386/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 0:38:21 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B6B7437B408; Tue, 21 Aug 2001 00:38:13 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L7cDd67355; Tue, 21 Aug 2001 00:38:13 -0700 (PDT) (envelope-from imp) Message-Id: <200108210738.f7L7cDd67355@freefall.freebsd.org> From: Warner Losh Date: Tue, 21 Aug 2001 00:38:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pccard pcic_pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/21 00:38:13 PDT Modified files: sys/pccard pcic_pci.c Log: These appear to be necessary for a pci cardbus card, but not for laptops. Ifdef them out until I figure out the right way to configure this. This solves Nate's hangs as well as Anders Andersson's. MCF: Soon. Revision Changes Path 1.70 +3 -1 src/sys/pccard/pcic_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 0:39:53 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B5E4D37B413; Tue, 21 Aug 2001 00:39:47 -0700 (PDT) (envelope-from greid@FreeBSD.org) Received: (from greid@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L7dle67560; Tue, 21 Aug 2001 00:39:47 -0700 (PDT) (envelope-from greid) Message-Id: <200108210739.f7L7dle67560@freefall.freebsd.org> From: George C A Reid Date: Tue, 21 Aug 2001 00:39:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys soundcard.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG greid 2001/08/21 00:39:47 PDT Modified files: sys/sys soundcard.h Log: Correct the URL to the Hacker's Guide to Voxware. PR: 29896 Submitted by: Gerhard Gonter Revision Changes Path 1.37 +4 -4 src/sys/sys/soundcard.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 0:49: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B648037B403; Tue, 21 Aug 2001 00:48:58 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L7mw168804; Tue, 21 Aug 2001 00:48:58 -0700 (PDT) (envelope-from peter) Message-Id: <200108210748.f7L7mw168804@freefall.freebsd.org> From: Peter Wemm Date: Tue, 21 Aug 2001 00:48:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/compat/compat4x.i386 libcrypto.so.1.gz.uu libssl.so.1.gz.uu X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/21 00:48:58 PDT Modified files: lib/compat/compat4x.i386 libcrypto.so.1.gz.uu libssl.so.1.gz.uu Log: Rebuild libcrypto.so.1 and libssl.so.1 from 4.2-RELEASE, but this time without the silly librsaINTL.so and/or librsaUSA.so dependencies. 4.2-RELEASE appears to be after the demolition of the librsa* stuff, so I'm not sure where ps got these binaries from. Anyway, this makes old binaries work again since we dont ship librsaINTL.so and/or librsaUSA.so in the compat dists. I believe RELENG_4 is affected still too. Revision Changes Path 1.2 +7361 -5763 src/lib/compat/compat4x.i386/libcrypto.so.1.gz.uu 1.2 +1865 -1652 src/lib/compat/compat4x.i386/libssl.so.1.gz.uu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 0:53:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8968637B416; Tue, 21 Aug 2001 00:53:38 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L7rcW69558; Tue, 21 Aug 2001 00:53:38 -0700 (PDT) (envelope-from imp) Message-Id: <200108210753.f7L7rcW69558@freefall.freebsd.org> From: Warner Losh Date: Tue, 21 Aug 2001 00:53:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/pci pci_cfgreg.c src/sys/i386/include/pc bios.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/21 00:53:38 PDT Modified files: sys/i386/pci pci_cfgreg.c sys/i386/include/pc bios.h Log: The general conesnsus on irc was that pci bios for config registers and such was just a bad idea and one that users should be forced to enable if they want it. This patch introduces a hw.pci.enable_pcibios tunable for those people. This does not impact the pcibios interrupt routing at all. Approved by: peter, msmith Revision Changes Path 1.78 +26 -3 src/sys/i386/pci/pci_cfgreg.c 1.12 +2 -1 src/sys/i386/include/pc/bios.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 1: 7:28 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B12E637B40F; Tue, 21 Aug 2001 01:07:18 -0700 (PDT) (envelope-from bp@FreeBSD.org) Received: (from bp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L87I174545; Tue, 21 Aug 2001 01:07:18 -0700 (PDT) (envelope-from bp) Message-Id: <200108210807.f7L87I174545@freefall.freebsd.org> From: Boris Popov Date: Tue, 21 Aug 2001 01:07:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netsmb smb_crypt.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bp 2001/08/21 01:07:18 PDT Modified files: sys/netsmb smb_crypt.c Log: Fix an old off-by-one error causing well known 'wrong bucket' panic. Submitted by: Conrad Minshall MFC after: 1 week Revision Changes Path 1.3 +2 -2 src/sys/netsmb/smb_crypt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 1:21: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3EC2E37B406; Tue, 21 Aug 2001 01:21:03 -0700 (PDT) (envelope-from bp@FreeBSD.org) Received: (from bp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L8L3P76102; Tue, 21 Aug 2001 01:21:03 -0700 (PDT) (envelope-from bp) Message-Id: <200108210821.f7L8L3P76102@freefall.freebsd.org> From: Boris Popov Date: Tue, 21 Aug 2001 01:21:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netsmb smb.h smb_rq.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bp 2001/08/21 01:21:03 PDT Modified files: sys/netsmb smb.h smb_rq.c Log: Use proper endian conversions. Obtained from: Mac OS X MFC after: 1 week Revision Changes Path 1.2 +2 -2 src/sys/netsmb/smb.h 1.2 +2 -2 src/sys/netsmb/smb_rq.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 1:23: 9 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 04ACB37B40A; Tue, 21 Aug 2001 01:23:04 -0700 (PDT) (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L8N3e76428; Tue, 21 Aug 2001 01:23:03 -0700 (PDT) (envelope-from demon) Message-Id: <200108210823.f7L8N3e76428@freefall.freebsd.org> From: Dmitry Sivachenko Date: Tue, 21 Aug 2001 01:23:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/kdesdk Makefile distinfo pkg-plist ports/devel/kdesdk/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2001/08/21 01:23:03 PDT Modified files: devel/kdesdk Makefile distinfo pkg-plist Added files: devel/kdesdk/files patch-aa Log: Upgrade to 2.2 Revision Changes Path 1.5 +6 -3 ports/devel/kdesdk/Makefile 1.3 +1 -1 ports/devel/kdesdk/distinfo 1.2 +165 -87 ports/devel/kdesdk/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 Aug 21 1:25:16 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 66A0E37B40D; Tue, 21 Aug 2001 01:25:09 -0700 (PDT) (envelope-from bp@FreeBSD.org) Received: (from bp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L8P9I76680; Tue, 21 Aug 2001 01:25:09 -0700 (PDT) (envelope-from bp) Message-Id: <200108210825.f7L8P9I76680@freefall.freebsd.org> From: Boris Popov Date: Tue, 21 Aug 2001 01:25:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/smbfs smbfs_vnops.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bp 2001/08/21 01:25:09 PDT Modified files: sys/fs/smbfs smbfs_vnops.c Log: Return proper length of _PC_NAME_MAX value if long names support is enabled. Obtained from: Mac OS X MFC after: 1 week Revision Changes Path 1.3 +2 -2 src/sys/fs/smbfs/smbfs_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 1:27:53 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BD30637B40D; Tue, 21 Aug 2001 01:27:47 -0700 (PDT) (envelope-from bp@FreeBSD.org) Received: (from bp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L8Rlm76955; Tue, 21 Aug 2001 01:27:47 -0700 (PDT) (envelope-from bp) Message-Id: <200108210827.f7L8Rlm76955@freefall.freebsd.org> From: Boris Popov Date: Tue, 21 Aug 2001 01:27:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/smbfs smbfs_smb.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bp 2001/08/21 01:27:47 PDT Modified files: sys/fs/smbfs smbfs_smb.c Log: Use proper endian conversion. Obtained from: Mac OS X MFC after: 1 week Revision Changes Path 1.2 +2 -2 src/sys/fs/smbfs/smbfs_smb.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 1:46:26 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 407A837B40C; Tue, 21 Aug 2001 01:46:20 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L8kK579031; Tue, 21 Aug 2001 01:46:20 -0700 (PDT) (envelope-from imp) Message-Id: <200108210846.f7L8kK579031@freefall.freebsd.org> From: Warner Losh Date: Tue, 21 Aug 2001 01:46:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa pci_cfgreg.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/21 01:46:20 PDT Modified files: (Branch: RELENG_4) sys/i386/isa pci_cfgreg.c Log: Strip oout the PCIBIOS stuff I merged with pccard stuff for reading/writing the PCI config space. The BIOS routines appear to have too many issues. This leaves the IRQ routing in place, but adds some sanity checking to the IRQ routing (makes sure that the PCI BIOS' version is new enough to support it). Implicit approval by: jkh due to being pccard related Concept approved by: msmith and peter Revision Changes Path 1.1.2.2 +38 -93 src/sys/i386/isa/Attic/pci_cfgreg.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 1:50:57 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5DB4437B401; Tue, 21 Aug 2001 01:50:54 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L8osj79558; Tue, 21 Aug 2001 01:50:54 -0700 (PDT) (envelope-from imp) Message-Id: <200108210850.f7L8osj79558@freefall.freebsd.org> From: Warner Losh Date: Tue, 21 Aug 2001 01:50:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci pci.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/21 01:50:54 PDT Modified files: (Branch: RELENG_4) sys/pci pci.c Log: Remove stray debug line Revision Changes Path 1.141.2.9 +1 -2 src/sys/pci/Attic/pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 1:58:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C4CDF37B407; Tue, 21 Aug 2001 01:58:14 -0700 (PDT) (envelope-from bp@FreeBSD.org) Received: (from bp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L8w2U80509; Tue, 21 Aug 2001 01:58:02 -0700 (PDT) (envelope-from bp) Message-Id: <200108210858.f7L8w2U80509@freefall.freebsd.org> From: Boris Popov Date: Tue, 21 Aug 2001 01:58:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netsmb smb_dev.c smb_subr.c smb_subr.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bp 2001/08/21 01:58:02 PDT Modified files: sys/netsmb smb_dev.c smb_subr.c smb_subr.h Log: Remove unnecessary "#if __FreeBSD_version". Revision Changes Path 1.3 +1 -18 src/sys/netsmb/smb_dev.c 1.2 +1 -9 src/sys/netsmb/smb_subr.c 1.2 +1 -35 src/sys/netsmb/smb_subr.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 2: 6: 7 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D7ED37B409; Tue, 21 Aug 2001 02:06:02 -0700 (PDT) (envelope-from msmith@FreeBSD.org) Received: (from msmith@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L962e84369; Tue, 21 Aug 2001 02:06:02 -0700 (PDT) (envelope-from msmith) Message-Id: <200108210906.f7L962e84369@freefall.freebsd.org> From: Mike Smith Date: Tue, 21 Aug 2001 02:06:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/acpica acpi_thermal.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG msmith 2001/08/21 02:06:02 PDT Modified files: sys/dev/acpica acpi_thermal.c Log: Remove noisy printfs from the notify handler; having these go off every couple of seconds is not useful. Revision Changes Path 1.14 +1 -3 src/sys/dev/acpica/acpi_thermal.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 2: 6:34 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0180937B40F; Tue, 21 Aug 2001 02:06:26 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L96PR84433; Tue, 21 Aug 2001 02:06:25 -0700 (PDT) (envelope-from imp) Message-Id: <200108210906.f7L96PR84433@freefall.freebsd.org> From: Warner Losh Date: Tue, 21 Aug 2001 02:06:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pccard pcic_pci.c pcic_pci.h pcicvar.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/21 02:06:25 PDT Modified files: (Branch: RELENG_4) sys/pccard pcic_pci.c pcic_pci.h pcicvar.h Log: MFC: Ian's card removal race correction and fix some people's hangs by leaving INTRTIE and INTMODE alone. This may cause some problems too, and I'm working on those next. Revision Changes Path 1.54.2.7 +61 -30 src/sys/pccard/pcic_pci.c 1.23.2.7 +2 -2 src/sys/pccard/pcic_pci.h 1.15.2.7 +4 -2 src/sys/pccard/pcicvar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 2:10:44 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D4E1D37B406; Tue, 21 Aug 2001 02:10:40 -0700 (PDT) (envelope-from bp@FreeBSD.org) Received: (from bp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L9ANX84947; Tue, 21 Aug 2001 02:10:23 -0700 (PDT) (envelope-from bp) Message-Id: <200108210910.f7L9ANX84947@freefall.freebsd.org> From: Boris Popov Date: Tue, 21 Aug 2001 02:10:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netsmb smb_iod.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bp 2001/08/21 02:10:23 PDT Modified files: sys/netsmb smb_iod.c Log: Use local wrappers instead of direct calls to mtx_destroy(). Obtained from: Mac OS X MFC after: 1 week Revision Changes Path 1.2 +4 -4 src/sys/netsmb/smb_iod.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 2:17:10 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 390D037B407; Tue, 21 Aug 2001 02:17:06 -0700 (PDT) (envelope-from bp@FreeBSD.org) Received: (from bp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7L9Gv185736; Tue, 21 Aug 2001 02:16:57 -0700 (PDT) (envelope-from bp) Message-Id: <200108210916.f7L9Gv185736@freefall.freebsd.org> From: Boris Popov Date: Tue, 21 Aug 2001 02:16:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netsmb smb_subr.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bp 2001/08/21 02:16:57 PDT Modified files: sys/netsmb smb_subr.c Log: Map errdos:67 to the ENOENT. Obtained from: Mac OS X MFC after: 1 week Revision Changes Path 1.3 +2 -1 src/sys/netsmb/smb_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 3:29:16 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D430B37B409; Tue, 21 Aug 2001 03:29:13 -0700 (PDT) (envelope-from joerg@FreeBSD.org) Received: (from joerg@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LAT1M08811; Tue, 21 Aug 2001 03:29:01 -0700 (PDT) (envelope-from joerg) Message-Id: <200108211029.f7LAT1M08811@freefall.freebsd.org> From: Joerg Wunsch Date: Tue, 21 Aug 2001 03:29:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/pw pw_user.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joerg 2001/08/21 03:29:01 PDT Modified files: usr.sbin/pw pw_user.c Log: Fix a typo in a variable name that made pw(8) coredump when using USE_MD5RAND. MFC after: 2 days Revision Changes Path 1.47 +2 -2 src/usr.sbin/pw/pw_user.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 4: 8: 7 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 272F737B408; Tue, 21 Aug 2001 04:08:00 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LB80T21691; Tue, 21 Aug 2001 04:08:00 -0700 (PDT) (envelope-from brian) Message-Id: <200108211108.f7LB80T21691@freefall.freebsd.org> From: Brian Somers Date: Tue, 21 Aug 2001 04:07:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp bundle.c iface.c tun.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/21 04:07:59 PDT Modified files: usr.sbin/ppp bundle.c iface.c tun.c Log: o Enable IFF_MULTICAST when first opening the tun device (and keep the flag when we ioctl(TUNSIFINFO) under OpenBSD) o Don't bring the interface up immediately o Don't complain about unrecognised interface flags in ``show iface''. Revision Changes Path 1.123 +3 -10 src/usr.sbin/ppp/bundle.c 1.26 +9 -2 src/usr.sbin/ppp/iface.c 1.25 +2 -2 src/usr.sbin/ppp/tun.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 4: 8:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0376337B413; Tue, 21 Aug 2001 04:08:37 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LB8a421761; Tue, 21 Aug 2001 04:08:36 -0700 (PDT) (envelope-from brian) Message-Id: <200108211108.f7LB8a421761@freefall.freebsd.org> From: Brian Somers Date: Tue, 21 Aug 2001 04:08:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp bundle.c iface.c tun.c X-FreeBSD-CVS-Branch: NETGRAPH Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/21 04:08:36 PDT Modified files: (Branch: NETGRAPH) usr.sbin/ppp bundle.c iface.c tun.c Log: MFC: o Enable IFF_MULTICAST when first opening the tun device (and keep the flag when we ioctl(TUNSIFINFO) under OpenBSD) o Don't bring the interface up immediately o Don't complain about unrecognised interface flags in ``show iface''. Revision Changes Path 1.105.2.19 +3 -10 src/usr.sbin/ppp/bundle.c 1.15.2.11 +9 -2 src/usr.sbin/ppp/iface.c 1.20.4.5 +2 -2 src/usr.sbin/ppp/tun.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 4:20:28 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5609E37B401; Tue, 21 Aug 2001 04:20:24 -0700 (PDT) (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LBKOq22981; Tue, 21 Aug 2001 04:20:24 -0700 (PDT) (envelope-from olgeni) Message-Id: <200108211120.f7LBKOq22981@freefall.freebsd.org> From: Jimmy Olgeni Date: Tue, 21 Aug 2001 04:20:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/kdenetwork2 Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG olgeni 2001/08/21 04:20:23 PDT Modified files: net/kdenetwork2 Makefile pkg-plist Log: Revive the talkd related files in pkg-plist, and unconditionally enable building for bento. KDE tries to find the utmp file while building in bento's chroot, and doesn't find it: the talkd build is skipped because KDE does not understand how to locate users (its /proc method applies to Linux only). Just teach KDE to take our word for it and avoid the utmp check entirely (AC_CHECK_UTMP_FILE): the talkd application will then be built by default. Revision Changes Path 1.63 +2 -1 ports/net/kdenetwork2/Makefile 1.26 +11 -0 ports/net/kdenetwork2/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 Aug 21 4:21:13 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E0BF37B407; Tue, 21 Aug 2001 04:21:08 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LBL8P23061; Tue, 21 Aug 2001 04:21:08 -0700 (PDT) (envelope-from ru) Message-Id: <200108211121.f7LBL8P23061@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 21 Aug 2001 04:21:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libalias alias_irc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2001/08/21 04:21:08 PDT Modified files: lib/libalias alias_irc.c Log: Close the "IRC DCC" security breach reported recently on Bugtraq. Submitted by: Makoto MATSUSHITA Revision Changes Path 1.10 +7 -1 src/lib/libalias/alias_irc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 4:23:44 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5D54637B40C; Tue, 21 Aug 2001 04:23:39 -0700 (PDT) (envelope-from roam@FreeBSD.org) Received: (from roam@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LBNZW23343; Tue, 21 Aug 2001 04:23:35 -0700 (PDT) (envelope-from roam) Message-Id: <200108211123.f7LBNZW23343@freefall.freebsd.org> From: Peter Pentchev Date: Tue, 21 Aug 2001 04:23:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/pure-ftpd Makefile distinfo pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2001/08/21 04:23:35 PDT Modified files: ftp/pure-ftpd Makefile distinfo pkg-descr pkg-plist Log: Update to 0.99.1. PR: 29877 Submitted by: author/maintainer Revision Changes Path 1.12 +18 -9 ports/ftp/pure-ftpd/Makefile 1.11 +1 -1 ports/ftp/pure-ftpd/distinfo 1.2 +3 -2 ports/ftp/pure-ftpd/pkg-descr 1.6 +2 -0 ports/ftp/pure-ftpd/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 Aug 21 4:25: 0 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D40E637B401; Tue, 21 Aug 2001 04:24:53 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LBOrw23582; Tue, 21 Aug 2001 04:24:53 -0700 (PDT) (envelope-from brian) Message-Id: <200108211124.f7LBOrw23582@freefall.freebsd.org> From: Brian Somers Date: Tue, 21 Aug 2001 04:24:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/apply apply.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/21 04:24:53 PDT Modified files: usr.bin/apply apply.c Log: Remove unnecessary casts. The original (1.16) code was mostly correct, but this version is far clearer. Casts suggested to now be obfuscations by: bde Revision Changes Path 1.18 +5 -5 src/usr.bin/apply/apply.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 4:25:14 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F50C37B43D; Tue, 21 Aug 2001 04:25:02 -0700 (PDT) (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LBP2B23625; Tue, 21 Aug 2001 04:25:02 -0700 (PDT) (envelope-from olgeni) Message-Id: <200108211125.f7LBP2B23625@freefall.freebsd.org> From: Jimmy Olgeni Date: Tue, 21 Aug 2001 04:25:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/koffice Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG olgeni 2001/08/21 04:25:02 PDT Modified files: editors/koffice Makefile Log: KIllustrator has been renamed to Kontour, but the Illustration template still has the "killustrator" icon name. Fix both the icon name and program title with a simple regexp in post-patch target. Before this, the Illustration template had the default document icon. Revision Changes Path 1.27 +7 -1 ports/editors/koffice/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 4:31: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 49AAE37B40F; Tue, 21 Aug 2001 04:31:02 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LBV2Y24320; Tue, 21 Aug 2001 04:31:02 -0700 (PDT) (envelope-from ru) Message-Id: <200108211131.f7LBV2Y24320@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 21 Aug 2001 04:31:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libalias alias_irc.c X-FreeBSD-CVS-Branch: RELENG_4_3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2001/08/21 04:31:02 PDT Modified files: (Branch: RELENG_4_3) lib/libalias alias_irc.c Log: MFC: 1.10: Close the "IRC DCC" security breach. Approved by: kris Revision Changes Path 1.5.2.1.2.1 +7 -1 src/lib/libalias/alias_irc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 4:33: 7 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3239237B407; Tue, 21 Aug 2001 04:33:04 -0700 (PDT) (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LBX4O24558; Tue, 21 Aug 2001 04:33:04 -0700 (PDT) (envelope-from olgeni) Message-Id: <200108211133.f7LBX4O24558@freefall.freebsd.org> From: Jimmy Olgeni Date: Tue, 21 Aug 2001 04:33:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/kdegraphics2 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG olgeni 2001/08/21 04:33:04 PDT Modified files: graphics/kdegraphics2 Makefile Log: Let this port autodetect SANE and define WITH_SANE automatically. Also, make a better message for advertising the WITH_SANE option. Revision Changes Path 1.49 +22 -11 ports/graphics/kdegraphics2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 4:35:55 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4EE1537B405; Tue, 21 Aug 2001 04:35:48 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: (from sos@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LBZmg24950; Tue, 21 Aug 2001 04:35:48 -0700 (PDT) (envelope-from sos) Message-Id: <200108211135.f7LBZmg24950@freefall.freebsd.org> From: Søren Schmidt Date: Tue, 21 Aug 2001 04:35:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-disk.c ata-dma.c ata-pci.c atapi-all.c atapi-all.h atapi-cd.c atapi-tape.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sos 2001/08/21 04:35:48 PDT Modified files: sys/dev/ata ata-all.c ata-all.h ata-disk.c ata-dma.c ata-pci.c atapi-all.c atapi-all.h atapi-cd.c atapi-tape.c Log: Finally commit some of the minor things I've collected over the last month(s): Add tagged queueing support for new IBM drives. Add support for Yet Another Promise ATA 100 chip. Flush disk cache on close. Dont flush the disk cache on BIO_ORDERED anymore. Cleanup the tests for DMA on ATAPI devices. Allow to share ALL irq's even the std irg 14 & 15. Fix calculation bug in end of media code on CD's. Add REZERO on opening a CDR/CDRW. Cleanup ataioctl a bit. Revision Changes Path 1.117 +11 -14 src/sys/dev/ata/ata-all.c 1.45 +2 -1 src/sys/dev/ata/ata-all.h 1.109 +28 -5 src/sys/dev/ata/ata-disk.c 1.66 +22 -24 src/sys/dev/ata/ata-dma.c 1.7 +7 -5 src/sys/dev/ata/ata-pci.c 1.78 +2 -2 src/sys/dev/ata/atapi-all.c 1.39 +2 -2 src/sys/dev/ata/atapi-all.h 1.96 +9 -4 src/sys/dev/ata/atapi-cd.c 1.58 +2 -2 src/sys/dev/ata/atapi-tape.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 4:39:36 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B73137B406; Tue, 21 Aug 2001 04:39:33 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LBdXA25280; Tue, 21 Aug 2001 04:39:33 -0700 (PDT) (envelope-from brian) Message-Id: <200108211139.f7LBdXA25280@freefall.freebsd.org> From: Brian Somers Date: Tue, 21 Aug 2001 04:39:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/ftp util.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/21 04:39:32 PDT Modified files: usr.bin/ftp util.c Log: Handle overflows from snprintf(), not just returns of < 0 Pointed out by: bde Revision Changes Path 1.19 +6 -6 src/usr.bin/ftp/util.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 4:39:51 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EC0E837B40A; Tue, 21 Aug 2001 04:39:45 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LBdjq25316; Tue, 21 Aug 2001 04:39:45 -0700 (PDT) (envelope-from brian) Message-Id: <200108211139.f7LBdjq25316@freefall.freebsd.org> From: Brian Somers Date: Tue, 21 Aug 2001 04:39:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/ftp fetch.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/21 04:39:45 PDT Modified files: usr.bin/ftp fetch.c Log: Display a better error message when snprintf() returns < 0 Pointed out by: bde Revision Changes Path 1.17 +6 -2 src/usr.bin/ftp/fetch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 4:41:41 2001 Delivered-To: cvs-all@freebsd.org Received: from ringworld.nanolink.com (dialmess.nanolink.com [217.75.135.246]) by hub.freebsd.org (Postfix) with SMTP id 79CFC37B410 for ; Tue, 21 Aug 2001 04:41:21 -0700 (PDT) (envelope-from roam@ringlet.net) Received: (qmail 10859 invoked by uid 1000); 21 Aug 2001 11:39:57 -0000 Date: Tue, 21 Aug 2001 14:39:57 +0300 From: Peter Pentchev To: "James E. Housley" Cc: Maxim Sobolev , cjclark@alum.mit.edu, Robert Watson , David Malone , Mikhail Teterin , alex@big.endian.de, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc inetd.conf Message-ID: <20010821143957.G7824@ringworld.oblivion.bg> Mail-Followup-To: "James E. Housley" , Maxim Sobolev , cjclark@alum.mit.edu, Robert Watson , David Malone , Mikhail Teterin , alex@big.endian.de, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <20010815123315.A35365@walton.maths.tcd.ie> <20010816000823.H330@blossom.cjclark.org> <3B7B896F.F0F8F244@FreeBSD.org> <3B7BBA1B.26E728EE@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B7BBA1B.26E728EE@FreeBSD.org>; from jeh@FreeBSD.org on Thu, Aug 16, 2001 at 08:18:35AM -0400 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Aug 16, 2001 at 08:18:35AM -0400, James E. Housley wrote: > Maxim Sobolev wrote: > > > > "Crist J. Clark" wrote: > > > > > When are we just going to give up the now rather silly concept of > > > "privileged ports?" Security on a UNIX platform gets _better_ when > > > non-root processes can open ports <1024. Since no one (except for a > > > limited few people on highly controlled, isolated networks) should > > > ever trust remote machine, using a port <1024 is meaningless to the > > > remote machine. It's also only an UNIX anachronism, and therefore > > > meaningless in a heterogeneous environment. > > > > > > It would be so-o nice to have a sysctl(8) to turn off privileged > > > ports and not have to worry about all of these problems with named(8), > > > syslogd(8), ftpd(8), etc. If I do the work, is anyone going to fight > > > committing it? > > > > There is another problem with unprivileging ports below < 1024 - the local user > > potentialy may DOS service by binding to the same port when the service restarts > > (for example sysadmin restarts it by -HUP signal). I guess it should be relatively > > easy to write an exploit that constantly monitors whether specified port is binded > > or not and immediately binds to it once the port for some reason is free. > > > > One option that might make every one happy is three values for this new > sysctl. > > 0 = default > 1 = protected > 2 = open > > Where: > > "default" is the current mode, have to be uid=0 to bind to a port < 1024 > > "protected" is where you have to have a uid<1000, or some set number, to > bind to a port<1024. In standard installs users uid seem to start at > either 1000 or 1001, this would let the created uid, ie 53 for bind, 88 > for mysql, 80 for www, etc to bind to these ports but still offer some > protection from a DOS like Maxim mentions. > > "open" any uid could bind to a port<1024 While this idea does have some merit (actually, it has quite a lot of merit), there still are a couple of drawbacks. For example, a malicious CGI script, ran as the 'www' user, would be able to execute a program that would bind, say, port 22 - or a program that would wait until port 22 became available for binding. Still, this would be a good temporary workaround until a more elaborate scheme, like the one described by Robert Watson in another message in this thread, is deployed; but, as Robert says, a more elaborate scheme might lower performance.. G'luck, Peter -- .siht ekil ti gnidaer eb d'uoy ,werbeH ni erew ecnetnes siht fI To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 4:42:37 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F367A37B405; Tue, 21 Aug 2001 04:42:34 -0700 (PDT) (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LBgY025710; Tue, 21 Aug 2001 04:42:34 -0700 (PDT) (envelope-from olgeni) Message-Id: <200108211142.f7LBgY025710@freefall.freebsd.org> From: Jimmy Olgeni Date: Tue, 21 Aug 2001 04:42:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/kdemultimedia2 Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG olgeni 2001/08/21 04:42:34 PDT Modified files: audio/kdemultimedia2 Makefile pkg-plist Log: Add the optional WITH_OGGVORBIS variable. It will also be automatically set if ogg/vorbis tools are detected (audio/libogg and audio/libvorbis), fixing the plist for both bento and users who have ogg/vorbis already installed. Revision Changes Path 1.56 +22 -2 ports/audio/kdemultimedia2/Makefile 1.18 +5 -0 ports/audio/kdemultimedia2/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 Aug 21 5:23:40 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B75B337B40C; Tue, 21 Aug 2001 05:23:31 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: (from sos@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LCNV933780; Tue, 21 Aug 2001 05:23:31 -0700 (PDT) (envelope-from sos) Message-Id: <200108211223.f7LCNV933780@freefall.freebsd.org> From: Søren Schmidt Date: Tue, 21 Aug 2001 05:23:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-raid.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sos 2001/08/21 05:23:31 PDT Modified files: sys/dev/ata ata-raid.c Log: Add support for the newer Promise chips here as well. Revision Changes Path 1.17 +3 -1 src/sys/dev/ata/ata-raid.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 5:23:43 2001 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id 8A71037B401; Tue, 21 Aug 2001 05:23:27 -0700 (PDT) (envelope-from mi@aldan.algebra.com) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.11.5/8.11.5) with ESMTP id f7LCLPq22354; Tue, 21 Aug 2001 08:21:39 -0400 (EDT) (envelope-from mi@aldan.algebra.com) Message-Id: <200108211221.f7LCLPq22354@aldan.algebra.com> Date: Tue, 21 Aug 2001 08:21:23 -0400 (EDT) From: Mikhail Teterin Subject: Re: cvs commit: src/etc inetd.conf To: roam@ringlet.net Cc: jeh@FreeBSD.org, sobomax@FreeBSD.org, cjclark@alum.mit.edu, rwatson@FreeBSD.org, dwmalone@maths.tcd.ie, alex@big.endian.de, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20010821143957.G7824@ringworld.oblivion.bg> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 21 Aug, Peter Pentchev wrote: > Still, this would be a good temporary workaround until a more > elaborate scheme, like the one described by Robert Watson in another > message in this thread, is deployed; but, as Robert says, a more > elaborate scheme might lower performance.. Can we control the ports just like we control devices? With file permissions? Then the admin will be able to use chown/chmod to grant permissions to particular ports: chmod g+rw /net/udp6/talk for example... The will require a portfs or some such, of course. -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 5:29:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 67C4537B408; Tue, 21 Aug 2001 05:29:39 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LCTds34585; Tue, 21 Aug 2001 05:29:39 -0700 (PDT) (envelope-from knu) Message-Id: <200108211229.f7LCTds34585@freefall.freebsd.org> From: Akinori MUSHA Date: Tue, 21 Aug 2001 05:29:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/portupgrade Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/21 05:29:39 PDT Modified files: sysutils/portupgrade Makefile distinfo pkg-plist Log: Update to 20010821, with many improvements. Overall: - Disregard -r and -R when -a is also specified; there is no need to recurse when you do with everything. - Fix a bug in -r and -R routines where it might fail in error if dependencies of a package were all wrong. [Caught by: Mamoru Iwaki ] - Fix the support for the case where PORTSDIR is a symlink. - Squeeze //'s. - Run `stty sane' before building each port, on interrupt, and before exit. - Accept portorigin_glob and pkgname_glob with paths, except for -x/--exclude. portupgrade: - Fix `portupgrade -Ni' (portinstall -i). - Skip ports and packages that once failed, and do not try to upgrade multiple packages of an origin. - If a port or a package failed to build or install, skip its dependents. This behavior can be overridden by the new option, -g/--go-on. pkgdepfix: - Backup +CONTENTS files before removing duplicates. portsclean: - Start implementing -L/--libclean. misc/tcsh/complete.sample: - Add a simple example of tcsh completion definitions. [Contributed by: kuwa@flab.fujitsu.co.jp] Revision Changes Path 1.54 +12 -4 ports/sysutils/portupgrade/Makefile 1.49 +1 -1 ports/sysutils/portupgrade/distinfo 1.14 +3 -0 ports/sysutils/portupgrade/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 Aug 21 5:30:11 2001 Delivered-To: cvs-all@freebsd.org Received: from oahu.WURLDLINK.NET (oahu.WURLDLINK.NET [216.235.52.1]) by hub.freebsd.org (Postfix) with ESMTP id 166C737B408; Tue, 21 Aug 2001 05:30:00 -0700 (PDT) (envelope-from vince@oahu.WURLDLINK.NET) Received: from localhost (vince@localhost) by oahu.WURLDLINK.NET (8.11.3/8.11.3) with ESMTP id f7LCTwi10297; Tue, 21 Aug 2001 02:29:58 -1000 (HST) (envelope-from vince@oahu.WURLDLINK.NET) Date: Tue, 21 Aug 2001 02:29:57 -1000 (HST) From: Vincent Poy To: Brian Somers Cc: , Subject: Re: cvs commit: src/usr.bin/apply apply.c In-Reply-To: <200108211124.f7LBOrw23582@freefall.freebsd.org> Message-ID: <20010821022923.D4347-100000@oahu.WURLDLINK.NET> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 21 Aug 2001, Brian Somers wrote: > brian 2001/08/21 04:24:53 PDT > > Modified files: > usr.bin/apply apply.c > Log: > Remove unnecessary casts. > > The original (1.16) code was mostly correct, but this version is > far clearer. > > Casts suggested to now be obfuscations by: bde > > Revision Changes Path > 1.18 +5 -5 src/usr.bin/apply/apply.c This one breaks apply from compiling... cc -O -pipe -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Werror -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -c /usr/src/usr.bin/apply/apply.c cc1: warnings being treated as errors /usr/src/usr.bin/apply/apply.c: In function `main': /usr/src/usr.bin/apply/apply.c:146: warning: comparison between signed and unsigned /usr/src/usr.bin/apply/apply.c:152: warning: comparison between signed and unsigned /usr/src/usr.bin/apply/apply.c:166: warning: comparison between signed and unsigned /usr/src/usr.bin/apply/apply.c:199: warning: comparison between signed and unsigned *** Error code 1 Stop in /usr/src/usr.bin/apply. Cheers, Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] WurldLink Corporation / / / / | / | __] ] San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 5:54:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 09C0B37B40C; Tue, 21 Aug 2001 05:54:16 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LCsGp37511; Tue, 21 Aug 2001 05:54:16 -0700 (PDT) (envelope-from brian) Message-Id: <200108211254.f7LCsGp37511@freefall.freebsd.org> From: Brian Somers Date: Tue, 21 Aug 2001 05:54:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/apply apply.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/21 05:54:15 PDT Modified files: usr.bin/apply apply.c Log: Revert to version 1.16 which was more correct than either of my attempts. Revision Changes Path 1.19 +5 -5 src/usr.bin/apply/apply.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 6:20: 9 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0D55437B401; Tue, 21 Aug 2001 06:20:03 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LDK2S42685; Tue, 21 Aug 2001 06:20:02 -0700 (PDT) (envelope-from brian) Message-Id: <200108211320.f7LDK2S42685@freefall.freebsd.org> From: Brian Somers Date: Tue, 21 Aug 2001 06:20:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netgraph ng_base.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/21 06:20:02 PDT Modified files: sys/netgraph ng_base.c Log: Fix two typos Revision Changes Path 1.57 +3 -3 src/sys/netgraph/ng_base.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 6:33:25 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E3F937B40B; Tue, 21 Aug 2001 06:33:21 -0700 (PDT) (envelope-from joerg@FreeBSD.org) Received: (from joerg@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LDXLi44583; Tue, 21 Aug 2001 06:33:21 -0700 (PDT) (envelope-from joerg) Message-Id: <200108211333.f7LDXLi44583@freefall.freebsd.org> From: Joerg Wunsch Date: Tue, 21 Aug 2001 06:33:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/pw pw_user.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joerg 2001/08/21 06:33:21 PDT Modified files: usr.sbin/pw pw_user.c Log: Properly initialize the random number generator in pw_getpass(). Right now, the automatically generated passwords have been rather predictable. :-( MFC after: 1 day Revision Changes Path 1.48 +2 -1 src/usr.sbin/pw/pw_user.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 6:41:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0591537B406; Tue, 21 Aug 2001 06:41:47 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LDfk904954; Tue, 21 Aug 2001 06:41:46 -0700 (PDT) (envelope-from jhb) Message-Id: <200108211341.f7LDfk904954@freefall.freebsd.org> From: John Baldwin Date: Tue, 21 Aug 2001 06:41:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys ptrace.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/21 06:41:46 PDT Modified files: sys/sys ptrace.h Log: GC unused prototype of ptrace_write_u(). Forgotten by: peter Revision Changes Path 1.13 +1 -2 src/sys/sys/ptrace.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 6:42:36 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7502E37B403; Tue, 21 Aug 2001 06:42:28 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LDgSV09522; Tue, 21 Aug 2001 06:42:28 -0700 (PDT) (envelope-from sada) Message-Id: <200108211342.f7LDgSV09522@freefall.freebsd.org> From: SADA Kenji Date: Tue, 21 Aug 2001 06:42:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/converters/i18ntools pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sada 2001/08/21 06:42:28 PDT Modified files: converters/i18ntools pkg-plist Log: - NOPORTDOCS support for pkg-plist PR: ports/29759 Submitted by: Patrick Li Revision Changes Path 1.2 +12 -12 ports/converters/i18ntools/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 Aug 21 6:42:51 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6564137B40D; Tue, 21 Aug 2001 06:42:40 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LDget13012; Tue, 21 Aug 2001 06:42:40 -0700 (PDT) (envelope-from jhb) Message-Id: <200108211342.f7LDget13012@freefall.freebsd.org> From: John Baldwin Date: Tue, 21 Aug 2001 06:42:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/include ptrace.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/21 06:42:40 PDT Modified files: sys/alpha/include ptrace.h Log: Protect prototype of ptrace_clear_single_step() with #ifdef _KERNEL/#endif. Requested by: bde Revision Changes Path 1.8 +3 -1 src/sys/alpha/include/ptrace.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 6:49:56 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F37E37B409; Tue, 21 Aug 2001 06:49:51 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LDnpx53233; Tue, 21 Aug 2001 06:49:51 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108211349.f7LDnpx53233@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 21 Aug 2001 06:49:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/converters Makefile ports/converters/psiconv Makefile distinfo pkg-comment pkg-descr pkg-plist ports/converters/psiconv/files patch-formats::html_links.sh patch-formats::index_html.sh patch-ltmain.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/21 06:49:51 PDT Modified files: converters Makefile Added files: converters/psiconv Makefile distinfo pkg-comment pkg-descr pkg-plist converters/psiconv/files patch-formats::html_links.sh patch-formats::index_html.sh patch-ltmain.sh Log: Add psiconv 0.8.2, a conversion utility to convert Psion 5(MX) files into other formats. Revision Changes Path 1.61 +2 -1 ports/converters/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 6:50:17 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EC36137B409; Tue, 21 Aug 2001 06:50:11 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LDoBp53325; Tue, 21 Aug 2001 06:50:11 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108211350.f7LDoBp53325@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 21 Aug 2001 06:50:11 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/21 06:50:11 PDT Modified files: . modules Log: psiconv --> ports/converters/psiconv Revision Changes Path 1.3693 +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 Aug 21 6:59:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9CC2337B40D; Tue, 21 Aug 2001 06:59:14 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LDxEI54447; Tue, 21 Aug 2001 06:59:14 -0700 (PDT) (envelope-from sada) Message-Id: <200108211359.f7LDxEI54447@freefall.freebsd.org> From: SADA Kenji Date: Tue, 21 Aug 2001 06:59:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/muni pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sada 2001/08/21 06:59:14 PDT Modified files: chinese/muni pkg-plist Log: - NOPORTDOCS support for pkg-plist. PR: ports/29751 Submitted by: Patrick Li Revision Changes Path 1.2 +4 -4 ports/chinese/muni/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 Aug 21 7: 5:40 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4E08337B408; Tue, 21 Aug 2001 07:05:37 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: (from nectar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LE5b658177; Tue, 21 Aug 2001 07:05:37 -0700 (PDT) (envelope-from nectar) Message-Id: <200108211405.f7LE5b658177@freefall.freebsd.org> From: Jacques Vidrine Date: Tue, 21 Aug 2001 07:05:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/srp/files patch-base::libmisc::utmp.c patch-telnet::telnetd::sys_term.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2001/08/21 07:05:37 PDT Added files: security/srp/files patch-base::libmisc::utmp.c patch-telnet::telnetd::sys_term.c Log: Fix two other places where _?UTMP_FILE is not defined. Noticed by: bento.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 7: 9:56 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B4F4A37B408; Tue, 21 Aug 2001 07:09:52 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LE9qd58730; Tue, 21 Aug 2001 07:09:52 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108211409.f7LE9qd58730@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 21 Aug 2001 07:09:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/bonobo Makefile distinfo pkg-plist ports/devel/bonobo/files patch-po::Makefile.in.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/21 07:09:52 PDT Modified files: devel/bonobo Makefile distinfo pkg-plist Added files: devel/bonobo/files patch-po::Makefile.in.in Log: Update to 1.0.8. Revision Changes Path 1.40 +7 -4 ports/devel/bonobo/Makefile 1.22 +1 -1 ports/devel/bonobo/distinfo 1.22 +1 -0 ports/devel/bonobo/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 Aug 21 7:12:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D704937B40B; Tue, 21 Aug 2001 07:12:20 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LECKD59073; Tue, 21 Aug 2001 07:12:20 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108211412.f7LECKD59073@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 21 Aug 2001 07:12:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/gnumeric Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/21 07:12:20 PDT Modified files: math/gnumeric Makefile distinfo pkg-plist Log: Update to 0.70. Revision Changes Path 1.66 +3 -2 ports/math/gnumeric/Makefile 1.33 +1 -1 ports/math/gnumeric/distinfo 1.31 +3 -0 ports/math/gnumeric/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 Aug 21 7:15:14 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D0C7937B403; Tue, 21 Aug 2001 07:15:11 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Received: (from nsayer@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LEFBV59822; Tue, 21 Aug 2001 07:15:11 -0700 (PDT) (envelope-from nsayer) Message-Id: <200108211415.f7LEFBV59822@freefall.freebsd.org> From: Nick Sayer Date: Tue, 21 Aug 2001 07:15:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators Makefile ports/emulators/p-interp Makefile distinfo pkg-comment pkg-descr pkg-plist ports/emulators/p-interp/files patch-aa patch-ab patch-ac patch-ad X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nsayer 2001/08/21 07:15:11 PDT Modified files: emulators Makefile Added files: emulators/p-interp Makefile distinfo pkg-comment pkg-descr pkg-plist emulators/p-interp/files patch-aa patch-ab patch-ac patch-ad Log: New port for p-interp, a UCSD/Apple Pascal p-system interpreter. Revision Changes Path 1.74 +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 Tue Aug 21 7:15:22 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9092F37B40D; Tue, 21 Aug 2001 07:15:15 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Received: (from nsayer@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LEFFq59862; Tue, 21 Aug 2001 07:15:15 -0700 (PDT) (envelope-from nsayer) Message-Id: <200108211415.f7LEFFq59862@freefall.freebsd.org> From: Nick Sayer Date: Tue, 21 Aug 2001 07:15:15 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nsayer 2001/08/21 07:15:15 PDT Modified files: . modules Log: p-interp --> ports/emulators/p-interp Revision Changes Path 1.3694 +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 Aug 21 7:27:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3DBA937B40A; Tue, 21 Aug 2001 07:27:19 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LERJZ61061; Tue, 21 Aug 2001 07:27:19 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108211427.f7LERJZ61061@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 21 Aug 2001 07:27:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/galeon Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/21 07:27:19 PDT Modified files: www/galeon Makefile Log: Turn WITH_FULL_MOZILLA on by default due to `missed scrollbars syndrome' observed when used with mozilla-embedded. Revision Changes Path 1.41 +2 -0 ports/www/galeon/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 7:30:45 2001 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 4FBDD37B408; Tue, 21 Aug 2001 07:30:35 -0700 (PDT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.11.5/8.11.5) with SMTP id f7LEU9P56119; Tue, 21 Aug 2001 10:30:09 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Tue, 21 Aug 2001 10:30:09 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Mikhail Teterin Cc: roam@ringlet.net, jeh@FreeBSD.org, sobomax@FreeBSD.org, cjclark@alum.mit.edu, dwmalone@maths.tcd.ie, alex@big.endian.de, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc inetd.conf In-Reply-To: <200108211221.f7LCLPq22354@aldan.algebra.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 21 Aug 2001, Mikhail Teterin wrote: > On 21 Aug, Peter Pentchev wrote: > > > Still, this would be a good temporary workaround until a more > > elaborate scheme, like the one described by Robert Watson in another > > message in this thread, is deployed; but, as Robert says, a more > > elaborate scheme might lower performance.. > > Can we control the ports just like we control devices? With file > permissions? Then the admin will be able to use chown/chmod to grant > permissions to particular ports: > > chmod g+rw /net/udp6/talk > > for example... The will require a portfs or some such, of course. I was also interested in something like that, and had some initial prototyping of that also. When I saw DES import his 'pseudofs' I had hoped that would be a good vehicle to support such as synthetic file system, but it turns out the overhead of maintaining many nodes is very high. What we want is a file system that has minimal overhead for the ports/etc when they're not actively represented by vnodes, since potentially there would be hundreds of thousands of virtual files in such a tree representing various ports. Also, in the above you'd probably simply want udp6/517, as the name->port and port->name mappings as maintained in userland rather than the kernel. Another advantage to selecting the interface you've suggested above is that it allows additional management tools for other types of protections to be used, such as ACLs, MAC labels, etc. One of the downsides of the representation above is that it can't represent rules like: "can bind port 'talk' on IP 127.0.0.1", or "can bind port 'http' on IP 192.168.11.1". Robert N M Watson FreeBSD Core Team, TrustedBSD Project robert@fledge.watson.org NAI Labs, 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 Tue Aug 21 7:47: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6BE1937B406; Tue, 21 Aug 2001 07:47:05 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Received: (from nsayer@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LEl5t63147; Tue, 21 Aug 2001 07:47:05 -0700 (PDT) (envelope-from nsayer) Message-Id: <200108211447.f7LEl5t63147@freefall.freebsd.org> From: Nick Sayer Date: Tue, 21 Aug 2001 07:47:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/p-interp Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nsayer 2001/08/21 07:47:04 PDT Modified files: emulators/p-interp Makefile pkg-plist Log: Install the sample volumes as well. Revision Changes Path 1.2 +8 -3 ports/emulators/p-interp/Makefile 1.2 +4 -2 ports/emulators/p-interp/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 Aug 21 7:52:37 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BC5E037B406; Tue, 21 Aug 2001 07:52:31 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Received: (from nsayer@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LEqVe63911; Tue, 21 Aug 2001 07:52:31 -0700 (PDT) (envelope-from nsayer) Message-Id: <200108211452.f7LEqVe63911@freefall.freebsd.org> From: Nick Sayer Date: Tue, 21 Aug 2001 07:52:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/p-interp Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nsayer 2001/08/21 07:52:31 PDT Modified files: emulators/p-interp Makefile Log: The port filches Apple Pascal disk images. It's not at all clear that redistributing these are legal. Revision Changes Path 1.3 +3 -1 ports/emulators/p-interp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 7:53: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A15037B407; Tue, 21 Aug 2001 07:53:01 -0700 (PDT) (envelope-from roam@FreeBSD.org) Received: (from roam@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LEr1664059; Tue, 21 Aug 2001 07:53:01 -0700 (PDT) (envelope-from roam) Message-Id: <200108211453.f7LEr1664059@freefall.freebsd.org> From: Peter Pentchev Date: Tue, 21 Aug 2001 07:53:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/display Makefile ports/misc/display/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2001/08/21 07:53:01 PDT Modified files: misc/display Makefile misc/display/files patch-aa Log: Add back the clrtobot() call (or rather, do not remove it), so display(1) works correctly when a command produces less output than the previous one. PR: 28405 Submitted by: Stephen Montgomery-Smith Revision Changes Path 1.11 +2 -1 ports/misc/display/Makefile 1.3 +0 -8 ports/misc/display/files/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 7:53: 4 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 689BA37B403; Tue, 21 Aug 2001 07:52:59 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LEqx864000; Tue, 21 Aug 2001 07:52:59 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108211452.f7LEqx864000@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 21 Aug 2001 07:52:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/AbiWord Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/21 07:52:59 PDT Modified files: editors/AbiWord Makefile Log: Use libpsiconv from the new psiconv port instead of one buindled with AbiWord. Revision Changes Path 1.24 +3 -2 ports/editors/AbiWord/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 7:55:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6774737B405; Tue, 21 Aug 2001 07:55:14 -0700 (PDT) (envelope-from wjv@FreeBSD.org) Received: (from wjv@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LEtEg64388; Tue, 21 Aug 2001 07:55:14 -0700 (PDT) (envelope-from wjv) Message-Id: <200108211455.f7LEtEg64388@freefall.freebsd.org> From: Johann Visagie Date: Tue, 21 Aug 2001 07:55:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/py-twisted Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wjv 2001/08/21 07:55:14 PDT Modified files: devel/py-twisted Makefile pkg-plist Log: - Refrain from installing another copy of the GNU LGPL, in accordance with section 15.22 of the Porter's Handbook. - Install the ERRATA instead. Revision Changes Path 1.6 +3 -3 ports/devel/py-twisted/Makefile 1.5 +1 -1 ports/devel/py-twisted/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 Aug 21 8: 5:13 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9BE4D37B407; Tue, 21 Aug 2001 08:05:09 -0700 (PDT) (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LF59K66208; Tue, 21 Aug 2001 08:05:09 -0700 (PDT) (envelope-from ume) Message-Id: <200108211505.f7LF59K66208@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Tue, 21 Aug 2001 08:05:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc.firewall6 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ume 2001/08/21 08:05:09 PDT Modified files: etc rc.firewall6 Log: fix typo. icmptype of destination unreach is not 2 but 1. Submitted by: kuriyama Revision Changes Path 1.9 +2 -2 src/etc/rc.firewall6 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 8: 5:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA2FA37B409; Tue, 21 Aug 2001 08:05:11 -0700 (PDT) (envelope-from roam@FreeBSD.org) Received: (from roam@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LF5Bv66469; Tue, 21 Aug 2001 08:05:11 -0700 (PDT) (envelope-from roam) Message-Id: <200108211505.f7LF5Bv66469@freefall.freebsd.org> From: Peter Pentchev Date: Tue, 21 Aug 2001 08:05:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/cscope Makefile ports/devel/cscope/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2001/08/21 08:05:11 PDT Modified files: devel/cscope Makefile devel/cscope/files patch-aa Log: Fix handling of the arrow keys. PR: 29491 Submitted by: "Alexander N. Kabaev" Approved by: maintainer Revision Changes Path 1.17 +2 -1 ports/devel/cscope/Makefile 1.2 +11 -2 ports/devel/cscope/files/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 8:29:22 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B9D2A37B403; Tue, 21 Aug 2001 08:29:14 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LFTEA71000; Tue, 21 Aug 2001 08:29:14 -0700 (PDT) (envelope-from brian) Message-Id: <200108211529.f7LFTEA71000@freefall.freebsd.org> From: Brian Somers Date: Tue, 21 Aug 2001 08:29:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/op Makefile pkg-install pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/21 08:29:14 PDT Modified files: security/op Makefile pkg-install pkg-plist Log: Tidy things up a bit Submitted by: Cyrille Lefevre (maintainer) Revision Changes Path 1.4 +7 -37 ports/security/op/Makefile 1.3 +4 -8 ports/security/op/pkg-install 1.3 +4 -4 ports/security/op/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 Aug 21 8:31:58 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0FF0C37B403; Tue, 21 Aug 2001 08:31:54 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LFVrN71293; Tue, 21 Aug 2001 08:31:53 -0700 (PDT) (envelope-from imp) Message-Id: <200108211531.f7LFVrN71293@freefall.freebsd.org> From: Warner Losh Date: Tue, 21 Aug 2001 08:31:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/include/pc bios.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/21 08:31:53 PDT Modified files: (Branch: RELENG_4) sys/i386/include/pc bios.h Log: I thought I'd MFC'd this constant when I MFC'd the pcibios reduction changes... Revision Changes Path 1.7.2.2 +2 -1 src/sys/i386/include/pc/bios.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 8:34:47 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A9FE737B405; Tue, 21 Aug 2001 08:34:43 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LFYhY71569; Tue, 21 Aug 2001 08:34:43 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108211534.f7LFYhY71569@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 21 Aug 2001 08:34:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/pan Makefile distinfo pkg-plist ports/news/pan/files patch-pan::filters::filter-phrase.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/21 08:34:42 PDT Modified files: news/pan Makefile distinfo pkg-plist Added files: news/pan/files patch-pan::filters::filter-phrase.h Log: Update to 0.10.0. Revision Changes Path 1.44 +5 -5 ports/news/pan/Makefile 1.29 +1 -1 ports/news/pan/distinfo 1.16 +1 -0 ports/news/pan/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 Aug 21 8:37:24 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 94DDE37B40A; Tue, 21 Aug 2001 08:37:20 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LFbKn71889; Tue, 21 Aug 2001 08:37:20 -0700 (PDT) (envelope-from jhb) Message-Id: <200108211537.f7LFbKn71889@freefall.freebsd.org> From: John Baldwin Date: Tue, 21 Aug 2001 08:37:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys callout.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/21 08:37:19 PDT Modified files: sys/sys callout.h Log: Whitespace style nits. Revision Changes Path 1.22 +5 -5 src/sys/sys/callout.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 8:39:23 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7721F37B40A; Tue, 21 Aug 2001 08:39:16 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LFdGJ72122; Tue, 21 Aug 2001 08:39:16 -0700 (PDT) (envelope-from ru) Message-Id: <200108211539.f7LFdGJ72122@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 21 Aug 2001 08:39:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/mknetid netid.5 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2001/08/21 08:39:15 PDT Modified files: libexec/mknetid Makefile Added files: libexec/mknetid netid.5 Log: Added netid(5) manpage. PR: docs/25657 Obtained from: OpenBSD Revision Changes Path 1.7 +2 -2 src/libexec/mknetid/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 9: 0: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3BF5637B40B; Tue, 21 Aug 2001 08:59:56 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LFxuc74347; Tue, 21 Aug 2001 08:59:56 -0700 (PDT) (envelope-from ru) Message-Id: <200108211559.f7LFxuc74347@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 21 Aug 2001 08:59:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/xinstall install.1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2001/08/21 08:59:55 PDT Modified files: usr.bin/xinstall install.1 Log: Update -v documentation to match reality. Spotted by: bde Revision Changes Path 1.22 +4 -5 src/usr.bin/xinstall/install.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 9: 2:59 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 799F437B410; Tue, 21 Aug 2001 09:02:44 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LG1mL74594; Tue, 21 Aug 2001 09:01:48 -0700 (PDT) (envelope-from ru) Message-Id: <200108211601.f7LG1mL74594@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 21 Aug 2001 09:01:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/xinstall install.1 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2001/08/21 09:01:47 PDT Modified files: (Branch: RELENG_4) usr.bin/xinstall install.1 Log: MFC: 1.22: Update -v documentation to match reality. Approved by: re Revision Changes Path 1.16.2.7 +4 -5 src/usr.bin/xinstall/install.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 9: 8:59 2001 Delivered-To: cvs-all@freebsd.org Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by hub.freebsd.org (Postfix) with ESMTP id 8DBDF37B403; Tue, 21 Aug 2001 09:08:48 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from hades.hell.gr (patr530-b092.otenet.gr [195.167.121.220]) by mailsrv.otenet.gr (8.11.1/8.11.1) with ESMTP id f7LG8iF09848; Tue, 21 Aug 2001 19:08:44 +0300 (EEST) Received: (from charon@localhost) by hades.hell.gr (8.11.4/8.11.4) id f7LG4Ce42868; Tue, 21 Aug 2001 19:04:12 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Tue, 21 Aug 2001 19:04:11 +0300 From: Giorgos Keramidas To: Robert Watson Cc: Mikhail Teterin , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/etc inetd.conf Message-ID: <20010821190410.A27472@hades.hell.gr> References: <200108211221.f7LCLPq22354@aldan.algebra.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from rwatson@FreeBSD.ORG on Tue, Aug 21, 2001 at 10:30:09AM -0400 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG From: Robert Watson Subject: Re: cvs commit: src/etc inetd.conf Date: Tue, Aug 21, 2001 at 10:30:09AM -0400 > > On Tue, 21 Aug 2001, Mikhail Teterin wrote: > > > > > Can we control the ports just like we control devices? With file > > permissions? Then the admin will be able to use chown/chmod to grant > > permissions to particular ports: > > > > chmod g+rw /net/udp6/talk > > > > for example... The will require a portfs or some such, of course. ... > One of the downsides of the representation > above is that it can't represent rules like: "can bind port 'talk' on IP > 127.0.0.1", or "can bind port 'http' on IP 192.168.11.1". Oh but it can, if one makes the /net tree contain subdirectories for the active interfaces. I would prefer something more like: /net/lo0/127.0.0.1/udp6/517 where the /net/lo0 directory contains subdirs for each assigned IP address, something along the lines of: # /bin/ls -lF /net/lo0 total 5 drwxr-xr-x 2 root network 512 Aug 21 18:49 10.0.0.1/ drwxr-xr-x 2 root network 512 Aug 21 18:49 127.0.0.1/ drwxr-xr-x 2 root network 512 Aug 21 18:49 127.0.0.2/ drwxr-xr-x 2 root network 512 Aug 21 18:49 127.0.0.3/ lrwxr-xr-x 1 root network 9 Aug 21 18:49 primary@ -> 127.0.0.1 But this is just a thought... The overhead of maintaining so many i-nodes on a pseudo filesystem will probably make performance horrible on a system with more than a few hundred/thousand connections. Being able to control access to network ports with ACL's applied to a pseudo-fs though is a *very* attractive idea. Fascinating and makes one think of fine-grained access control to network resources. If one stretches the idea a bit further to include something like: /net/interfaces/lo0/ip.address.here/protocol/port-number Other network related things can be put under the /net pseudo-fs. For instance, /net/filters/ipfw/* or /net/filters/ipfilter/*, etc. This way, the ACL's can be used to control other network-related things too, such as who has access to 'read' the firewall rules, who can also modify them, etc, etc. But, I'm off on a tangent now. -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 9:25:41 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0951E37B403; Tue, 21 Aug 2001 09:25:39 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LGPd380521; Tue, 21 Aug 2001 09:25:39 -0700 (PDT) (envelope-from ru) Message-Id: <200108211625.f7LGPd380521@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 21 Aug 2001 09:25:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libalias alias.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2001/08/21 09:25:38 PDT Modified files: lib/libalias alias.c Log: Added TFTP support. Submitted by: Joe Clarke MFC after: 2 weeks Revision Changes Path 1.31 +10 -1 src/lib/libalias/alias.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 9:29:20 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 42D5E37B40C; Tue, 21 Aug 2001 09:29:15 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LGTFg80969; Tue, 21 Aug 2001 09:29:15 -0700 (PDT) (envelope-from knu) Message-Id: <200108211629.f7LGTFg80969@freefall.freebsd.org> From: Akinori MUSHA Date: Tue, 21 Aug 2001 09:29:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/gimp1 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/21 09:29:15 PDT Modified files: graphics/gimp1 Makefile Log: Resurrect PORTEPOCH which has been removed in the last commit by mistake. Revision Changes Path 1.94 +2 -1 ports/graphics/gimp1/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 9:31: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BAF1A37B407; Tue, 21 Aug 2001 09:30:59 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LGUx681188; Tue, 21 Aug 2001 09:30:59 -0700 (PDT) (envelope-from imp) Message-Id: <200108211630.f7LGUx681188@freefall.freebsd.org> From: Warner Losh Date: Tue, 21 Aug 2001 09:30:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/pccard/pccardd cardd.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/21 09:30:59 PDT Modified files: (Branch: RELENG_4) usr.sbin/pccard/pccardd cardd.c Log: MFC: Fix ISA machines. Users can now specify interrupts again. Approved by: jkh Revision Changes Path 1.46.2.14 +62 -41 src/usr.sbin/pccard/pccardd/cardd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 9:38:47 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ED31237B409; Tue, 21 Aug 2001 09:38:44 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LGcid81993; Tue, 21 Aug 2001 09:38:44 -0700 (PDT) (envelope-from ru) Message-Id: <200108211638.f7LGcid81993@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 21 Aug 2001 09:38:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/top Makefile top.local.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2001/08/21 09:38:44 PDT Modified files: (Branch: RELENG_4) usr.bin/top Makefile Removed files: (Branch: RELENG_4) usr.bin/top top.local.h Log: MFC: Generate top.local.h and manpage dynamically. Approved by: re Revision Changes Path 1.5.6.1 +17 -4 src/usr.bin/top/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 9:42:46 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B477037B401; Tue, 21 Aug 2001 09:42:42 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LGggc82469; Tue, 21 Aug 2001 09:42:42 -0700 (PDT) (envelope-from ru) Message-Id: <200108211642.f7LGggc82469@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 21 Aug 2001 09:42:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libalias alias_irc.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2001/08/21 09:42:42 PDT Modified files: (Branch: RELENG_4) lib/libalias alias_irc.c Log: MFC: 1.10: Close the "IRC DCC" security breach. Approved by: re Revision Changes Path 1.5.2.4 +7 -1 src/lib/libalias/alias_irc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 9:45:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 67F2C37B406; Tue, 21 Aug 2001 09:45:16 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LGjGf82730; Tue, 21 Aug 2001 09:45:16 -0700 (PDT) (envelope-from ru) Message-Id: <200108211645.f7LGjGf82730@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 21 Aug 2001 09:45:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/mknetid netid.5 Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2001/08/21 09:45:16 PDT Modified files: (Branch: RELENG_4) libexec/mknetid Makefile Added files: (Branch: RELENG_4) libexec/mknetid netid.5 Log: MFC: netid(5) manpage. Approved by: re Revision Changes Path 1.4.2.2 +2 -2 src/libexec/mknetid/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 9:53:28 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 19AF737B409; Tue, 21 Aug 2001 09:53:24 -0700 (PDT) (envelope-from dfr@FreeBSD.org) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LGrO583589; Tue, 21 Aug 2001 09:53:24 -0700 (PDT) (envelope-from dfr) Message-Id: <200108211653.f7LGrO583589@freefall.freebsd.org> From: Doug Rabson Date: Tue, 21 Aug 2001 09:53:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/csu/ia64 crt1.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dfr 2001/08/21 09:53:24 PDT Modified files: lib/csu/ia64 crt1.c Log: Make sure stack is aligned to 16 bytes. Revision Changes Path 1.3 +5 -2 src/lib/csu/ia64/crt1.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 9:55:41 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CBA1137B401; Tue, 21 Aug 2001 09:55:34 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: (from nectar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LGtYt83825; Tue, 21 Aug 2001 09:55:34 -0700 (PDT) (envelope-from nectar) Message-Id: <200108211655.f7LGtYt83825@freefall.freebsd.org> From: Jacques Vidrine Date: Tue, 21 Aug 2001 09:55:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen setprogname.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2001/08/21 09:55:34 PDT Modified files: lib/libc/gen setprogname.c Log: setprogname() should set __progname to the last component of the given path. Revision Changes Path 1.2 +4 -2 src/lib/libc/gen/setprogname.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 9:57:56 2001 Delivered-To: cvs-all@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id EE67B37B40C; Tue, 21 Aug 2001 09:57:42 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.2/8.11.2) id f7LGvaY40631; Tue, 21 Aug 2001 19:57:36 +0300 (EEST) (envelope-from ru) Date: Tue, 21 Aug 2001 19:57:36 +0300 From: Ruslan Ermilov To: Jacques Vidrine Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/gen setprogname.c Message-ID: <20010821195736.D25709@sunbay.com> References: <200108211655.f7LGtYt83825@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108211655.f7LGtYt83825@freefall.freebsd.org>; from nectar@FreeBSD.org on Tue, Aug 21, 2001 at 09:55:34AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Please also fix the manpage! (NetBSD has it fixed.) On Tue, Aug 21, 2001 at 09:55:34AM -0700, Jacques Vidrine wrote: > nectar 2001/08/21 09:55:34 PDT > > Modified files: > lib/libc/gen setprogname.c > Log: > setprogname() should set __progname to the last component of the given > path. > > Revision Changes Path > 1.2 +4 -2 src/lib/libc/gen/setprogname.c -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 9:58:41 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BDE6737B406; Tue, 21 Aug 2001 09:58:33 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LGwXc84156; Tue, 21 Aug 2001 09:58:33 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108211658.f7LGwXc84156@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 21 Aug 2001 09:58:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/mpg123 Makefile ports/audio/mpg123/files patch-audio.c patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/21 09:58:33 PDT Modified files: audio/mpg123 Makefile audio/mpg123/files patch-ab Added files: audio/mpg123/files patch-audio.c Log: Deffer detection of supported audio rates/formats until we really know what rate we are looking for. This allows to avoid checking all possible combinations and significantly improves mpg123 startup time. Bump PORTREVISION. Submitted by: MOROHOSHI Akihiko Revision Changes Path 1.34 +1 -1 ports/audio/mpg123/Makefile 1.6 +25 -4 ports/audio/mpg123/files/patch-ab To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 9:59:21 2001 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 5737437B409; Tue, 21 Aug 2001 09:59:11 -0700 (PDT) (envelope-from nectar@nectar.com) Received: from madman.nectar.com (madman.nectar.com [10.0.1.111]) by gw.nectar.com (Postfix) with ESMTP id A7C6988A; Tue, 21 Aug 2001 11:59:10 -0500 (CDT) Received: (from nectar@localhost) by madman.nectar.com (8.11.3/8.11.3) id f7LGxAb28284; Tue, 21 Aug 2001 11:59:10 -0500 (CDT) (envelope-from nectar) Date: Tue, 21 Aug 2001 11:59:10 -0500 From: "Jacques A. Vidrine" To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/gen setprogname.c Message-ID: <20010821115910.A28276@madman.nectar.com> Mail-Followup-To: "Jacques A. Vidrine" , Ruslan Ermilov , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200108211655.f7LGtYt83825@freefall.freebsd.org> <20010821195736.D25709@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010821195736.D25709@sunbay.com>; from ru@FreeBSD.org on Tue, Aug 21, 2001 at 07:57:36PM +0300 X-Url: http://www.nectar.com/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Aug 21, 2001 at 07:57:36PM +0300, Ruslan Ermilov wrote: > Please also fix the manpage! > (NetBSD has it fixed.) OK, I will before the day is out, thanks! -- Jacques Vidrine / n@nectar.com / jvidrine@verio.net / nectar@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 10: 0:28 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 257C637B401; Tue, 21 Aug 2001 10:00:16 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: (from nectar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LH0Gj85378; Tue, 21 Aug 2001 10:00:16 -0700 (PDT) (envelope-from nectar) Message-Id: <200108211700.f7LH0Gj85378@freefall.freebsd.org> From: Jacques Vidrine Date: Tue, 21 Aug 2001 10:00:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen setprogname.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2001/08/21 10:00:16 PDT Modified files: (Branch: RELENG_4) lib/libc/gen setprogname.c Log: MFC 1.2: setprogname() should set __progname to the last component of the given path. Approved by: re Revision Changes Path 1.1.2.2 +4 -2 src/lib/libc/gen/setprogname.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 10:16:39 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 98AE737B40A; Tue, 21 Aug 2001 10:16:32 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: (from nectar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LHGWW90224; Tue, 21 Aug 2001 10:16:32 -0700 (PDT) (envelope-from nectar) Message-Id: <200108211716.f7LHGWW90224@freefall.freebsd.org> From: Jacques Vidrine Date: Tue, 21 Aug 2001 10:16:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen setprogname.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2001/08/21 10:16:32 PDT Modified files: lib/libc/gen setprogname.c Log: Pass the pointy hat, please. Submitted by: ru Revision Changes Path 1.3 +5 -3 src/lib/libc/gen/setprogname.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 10:20:43 2001 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 B4A3237B40A; Tue, 21 Aug 2001 10:20:33 -0700 (PDT) (envelope-from nectar@nectar.com) Received: from madman.nectar.com (madman.nectar.com [10.0.1.111]) by gw.nectar.com (Postfix) with ESMTP id 4765C88A; Tue, 21 Aug 2001 12:20:33 -0500 (CDT) Received: (from nectar@localhost) by madman.nectar.com (8.11.3/8.11.3) id f7LHKXd28445; Tue, 21 Aug 2001 12:20:33 -0500 (CDT) (envelope-from nectar) Date: Tue, 21 Aug 2001 12:20:33 -0500 From: "Jacques A. Vidrine" To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/gen setprogname.c Message-ID: <20010821122033.C28261@madman.nectar.com> Mail-Followup-To: "Jacques A. Vidrine" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200108211716.f7LHGWW90224@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108211716.f7LHGWW90224@freefall.freebsd.org>; from nectar@FreeBSD.org on Tue, Aug 21, 2001 at 10:16:32AM -0700 X-Url: http://www.nectar.com/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Aug 21, 2001 at 10:16:32AM -0700, Jacques Vidrine wrote: > nectar 2001/08/21 10:16:32 PDT > > Modified files: > lib/libc/gen setprogname.c > Log: > Pass the pointy hat, please. > > Submitted by: ru Aargh, I fat-fingered this log. I meant to back out and separate the style changes, but screwed that up. So my log message is somewhat incomplete. If someone asks for a forced commit with a better message, I'll do it, though the change is obvious. It's going to be one of those days, I see. I think I must go back to bed and start over tomorrow :-( -- Jacques Vidrine / n@nectar.com / jvidrine@verio.net / nectar@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 10:21:22 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0803937B403; Tue, 21 Aug 2001 10:21:14 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LHLEZ90739; Tue, 21 Aug 2001 10:21:14 -0700 (PDT) (envelope-from imp) Message-Id: <200108211721.f7LHLEZ90739@freefall.freebsd.org> From: Warner Losh Date: Tue, 21 Aug 2001 10:21:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci pci.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/21 10:21:13 PDT Modified files: (Branch: RELENG_4) sys/pci pci.c Log: MFC: Include pci_cfgreg.h for prototypes Revision Changes Path 1.141.2.10 +4 -1 src/sys/pci/Attic/pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 10:22:28 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0648737B406; Tue, 21 Aug 2001 10:22:23 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: (from nectar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LHMNH90943; Tue, 21 Aug 2001 10:22:23 -0700 (PDT) (envelope-from nectar) Message-Id: <200108211722.f7LHMNH90943@freefall.freebsd.org> From: Jacques Vidrine Date: Tue, 21 Aug 2001 10:22:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen setprogname.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2001/08/21 10:22:22 PDT Modified files: (Branch: RELENG_4) lib/libc/gen setprogname.c Log: MFC 1.3: Arguments to strrchr were reversed. Style. Approved by: re Revision Changes Path 1.1.2.3 +5 -3 src/lib/libc/gen/setprogname.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 10:23:48 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2166D37B406; Tue, 21 Aug 2001 10:23:43 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Received: (from nsayer@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LHNhX91191; Tue, 21 Aug 2001 10:23:43 -0700 (PDT) (envelope-from nsayer) Message-Id: <200108211723.f7LHNhX91191@freefall.freebsd.org> From: Nick Sayer Date: Tue, 21 Aug 2001 10:23:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/p-interp Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nsayer 2001/08/21 10:23:43 PDT Modified files: emulators/p-interp Makefile Log: Oops. xturtleserver uses X. Revision Changes Path 1.4 +3 -1 ports/emulators/p-interp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 10:24:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 11CD637B407; Tue, 21 Aug 2001 10:24:37 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LHObP91305; Tue, 21 Aug 2001 10:24:37 -0700 (PDT) (envelope-from imp) Message-Id: <200108211724.f7LHObP91305@freefall.freebsd.org> From: Warner Losh Date: Tue, 21 Aug 2001 10:24:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa pcibus.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/21 10:24:37 PDT Modified files: (Branch: RELENG_4) sys/i386/isa pcibus.c Log: MFC: Include pci_cfgreg.h for prototypes. Revision Changes Path 1.57.2.4 +2 -1 src/sys/i386/isa/Attic/pcibus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 10:28:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 25DCA37B405; Tue, 21 Aug 2001 10:28:40 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LHSeM91769; Tue, 21 Aug 2001 10:28:40 -0700 (PDT) (envelope-from ru) Message-Id: <200108211728.f7LHSeM91769@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 21 Aug 2001 10:28:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen setprogname.c getprogname.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2001/08/21 10:28:40 PDT Modified files: lib/libc/gen setprogname.c getprogname.c Log: Fixed warnings. Revision Changes Path 1.4 +3 -2 src/lib/libc/gen/setprogname.c 1.2 +3 -1 src/lib/libc/gen/getprogname.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 10:32:14 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B7CAD37B407; Tue, 21 Aug 2001 10:32:10 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LHWAl92220; Tue, 21 Aug 2001 10:32:10 -0700 (PDT) (envelope-from obrien) Message-Id: <200108211732.f7LHWAl92220@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 21 Aug 2001 10:32:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/lsof Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/21 10:32:10 PDT Modified files: sysutils/lsof Makefile distinfo Log: Update to 4.57.1 which supports 4.4-FreeBSD. Revision Changes Path 1.92 +4 -4 ports/sysutils/lsof/Makefile 1.71 +1 -1 ports/sysutils/lsof/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 10:53: 0 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ADB8137B407; Tue, 21 Aug 2001 10:52:53 -0700 (PDT) (envelope-from semenu@FreeBSD.org) Received: (from semenu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LHqrW94539; Tue, 21 Aug 2001 10:52:53 -0700 (PDT) (envelope-from semenu) Message-Id: <200108211752.f7LHqrW94539@freefall.freebsd.org> From: Ustimenko Semen Date: Tue, 21 Aug 2001 10:52:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4/man4.i386 tx.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG semenu 2001/08/21 10:52:53 PDT Modified files: share/man/man4/man4.i386 tx.4 Log: Document recent changes about VLAN support and oversized packets. PR: kern/29235 MFC after: 1 day Revision Changes Path 1.18 +17 -1 src/share/man/man4/man4.i386/tx.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 10:54:35 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D8C3137B40A; Tue, 21 Aug 2001 10:54:29 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LHsT894883; Tue, 21 Aug 2001 10:54:29 -0700 (PDT) (envelope-from imp) Message-Id: <200108211754.f7LHsT894883@freefall.freebsd.org> From: Warner Losh Date: Tue, 21 Aug 2001 10:54:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/21 10:54:29 PDT Modified files: . access Log: Steve Passe has asked core to keep his commit bit safe while he's busy making his fortunes. He'll be back when he's made his fortunes (in which case he'll have plenty of time to devote) or lost them (in which case it won't matter much anyway). He really doesn't have time to properly devote to being a committer right now. fsmp was between steve and imp in access. Sounds reasonable from: core Revision Changes Path 1.253 +1 -2 CVSROOT/access To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 10:56:22 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4BE5037B40A; Tue, 21 Aug 2001 10:56:15 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LHuF895143; Tue, 21 Aug 2001 10:56:15 -0700 (PDT) (envelope-from brian) Message-Id: <200108211756.f7LHuF895143@freefall.freebsd.org> From: Brian Somers Date: Tue, 21 Aug 2001 10:56:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/op Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/21 10:56:15 PDT Modified files: security/op Makefile Log: Forced commit to describe the last change in better detail: ftp.cso.uiuc.edu deleted (no more a coast mirror). maintainer address change. extra unneeded variables cleanup. fetch hack deleted. Revision Changes Path 1.5 +1 -1 ports/security/op/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 10:59: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BEE2437B403; Tue, 21 Aug 2001 10:59:02 -0700 (PDT) (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LHx2Y95526; Tue, 21 Aug 2001 10:59:02 -0700 (PDT) (envelope-from demon) Message-Id: <200108211759.f7LHx2Y95526@freefall.freebsd.org> From: Dmitry Sivachenko Date: Tue, 21 Aug 2001 10:59:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/kdeartwork pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2001/08/21 10:59:02 PDT Modified files: x11-wm/kdeartwork pkg-plist Log: Remove three extra files. Revision Changes Path 1.2 +0 -3 ports/x11-wm/kdeartwork/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 Aug 21 11: 8:37 2001 Delivered-To: cvs-all@freebsd.org Received: from wensleydale.netmonger.net (wensleydale.netmonger.net [167.206.208.3]) by hub.freebsd.org (Postfix) with ESMTP id A114637B401; Tue, 21 Aug 2001 11:08:30 -0700 (PDT) (envelope-from chris@netmonger.net) Received: from dna.masto.com (ool-18b9169a.dyn.optonline.net [24.185.22.154]) (AUTH: LOGIN chris@retardix.com, TLS: TLSv1/SSLv3,168bits,DES-CBC3-SHA) by wensleydale.netmonger.net with esmtp; Tue, 21 Aug 2001 14:07:06 -0400 Received: (from chris@localhost) by dna.masto.com (8.11.5/8.11.4) id f7LI8OR01660; Tue, 21 Aug 2001 14:08:24 -0400 (EDT) (envelope-from chris@netmonger.net) X-Authentication-Warning: dna.masto.com: chris set sender to chris@netmonger.net using -f Date: Tue, 21 Aug 2001 14:08:23 -0400 From: Christopher Masto To: Maxim Sobolev Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/www/galeon Makefile Message-ID: <20010821140823.A1609@netmonger.net> References: <200108211427.f7LERJZ61061@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline In-Reply-To: <200108211427.f7LERJZ61061@freefall.freebsd.org> User-Agent: Mutt/1.3.20i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Aug 21, 2001 at 07:27:19AM -0700, Maxim Sobolev wrote: > sobomax 2001/08/21 07:27:19 PDT > > Modified files: > www/galeon Makefile > Log: > Turn WITH_FULL_MOZILLA on by default due to `missed scrollbars syndrome' > observed when used with mozilla-embedded. WITH_FULL_MOZILLA seems to also make SSL and "view source" work. All this time I thought it was Galeon. -- Christopher Masto Senior Network Monkey NetMonger Communications chris@netmonger.net info@netmonger.net http://www.netmonger.net Free yourself, free your machine, free the daemon -- 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 Tue Aug 21 11:13:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E10537B407; Tue, 21 Aug 2001 11:13:20 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LIDJF00113; Tue, 21 Aug 2001 11:13:19 -0700 (PDT) (envelope-from imp) Message-Id: <200108211813.f7LIDJF00113@freefall.freebsd.org> From: Warner Losh Date: Tue, 21 Aug 2001 11:13:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pccard pcic_pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/21 11:13:18 PDT Modified files: sys/pccard pcic_pci.c Log: It looks like we're doing the wrong thing by catching the setup_intr request and just calling it when we get a bridge interrupt. The problem is that if other code wants to block hardware interrupts for a little bit with splXXX, those masks aren't updated the way we're doing it. This doesn't matter for -current, but does for -stable. The whole reason that we were catching interrupts was to detect that the card was still there. Ian's fixes however ensure that the card will be there with an interrupt handler, or not there at all. Since the pcic interrupt is at a high priority, this should be OK. This should fix the network related crashes people started seeing in stable after I merged the pcic as a pci device code. Submitted indirectly by: Ian Dowse MFC when: Ian has had a chance to do his torture hang testing. Revision Changes Path 1.71 +3 -42 src/sys/pccard/pcic_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 11:22:46 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D40F637B408; Tue, 21 Aug 2001 11:22:41 -0700 (PDT) (envelope-from iwasaki@FreeBSD.org) Received: (from iwasaki@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LIMf901230; Tue, 21 Aug 2001 11:22:41 -0700 (PDT) (envelope-from iwasaki) Message-Id: <200108211822.f7LIMf901230@freefall.freebsd.org> From: Mitsuru IWASAKI Date: Tue, 21 Aug 2001 11:22:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/acpica acpi_powerres.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG iwasaki 2001/08/21 11:22:41 PDT Modified files: sys/dev/acpica acpi_powerres.c Log: Fix error checking about device state transition from D0 to D3. Turn off the resources listed in _PR0 to go to D3 if we don't have _PR3/_PS3. Reviewed by: msmith Revision Changes Path 1.6 +28 -5 src/sys/dev/acpica/acpi_powerres.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 11:28:25 2001 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 AD43137B409; Tue, 21 Aug 2001 11:28:15 -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 LAA16963; Tue, 21 Aug 2001 11:46:16 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id LAA04919; Tue, 21 Aug 2001 11:46:16 -0600 (MDT) (envelope-from nate) From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15234.40551.815486.790279@nomad.yogotech.com> Date: Tue, 21 Aug 2001 11:46:15 -0600 To: Warner Losh Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pccard pcic_pci.c In-Reply-To: <200108210738.f7L7cDd67355@freefall.freebsd.org> References: <200108210738.f7L7cDd67355@freefall.freebsd.org> X-Mailer: VM 6.95 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > imp 2001/08/21 00:38:13 PDT > > Modified files: > sys/pccard pcic_pci.c > Log: > These appear to be necessary for a pci cardbus card, but not for laptops. > Ifdef them out until I figure out the right way to configure this. > > This solves Nate's hangs as well as Anders Andersson's. Thanks bunches!!! Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 11:32: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id C5F9137B406; Tue, 21 Aug 2001 11:32:00 -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.11.3/8.11.3) with ESMTP id f7LIVxq39892; Tue, 21 Aug 2001 12:31:59 -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.11.3/8.11.4) with ESMTP id f7LIVxW67419; Tue, 21 Aug 2001 12:31:59 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200108211831.f7LIVxW67419@harmony.village.org> To: nate@yogotech.com (Nate Williams) Subject: Re: cvs commit: src/sys/pccard pcic_pci.c Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Tue, 21 Aug 2001 11:46:15 MDT." <15234.40551.815486.790279@nomad.yogotech.com> References: <15234.40551.815486.790279@nomad.yogotech.com> <200108210738.f7L7cDd67355@freefall.freebsd.org> Date: Tue, 21 Aug 2001 12:31:59 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <15234.40551.815486.790279@nomad.yogotech.com> Nate Williams writes: : > imp 2001/08/21 00:38:13 PDT : > : > Modified files: : > sys/pccard pcic_pci.c : > Log: : > These appear to be necessary for a pci cardbus card, but not for laptops. : > Ifdef them out until I figure out the right way to configure this. : > : > This solves Nate's hangs as well as Anders Andersson's. : : Thanks bunches!!! Sure. But some machines still need those changes :-(. Gotta figure a better way to deal with this. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 11:33:57 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5282837B408; Tue, 21 Aug 2001 11:33:52 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LIXqN02176; Tue, 21 Aug 2001 11:33:52 -0700 (PDT) (envelope-from obrien) Message-Id: <200108211833.f7LIXqN02176@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 21 Aug 2001 11:33:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/xosview/files patch-swapinternal.cc patch-swapinternal.h patch-swapmeter.cc patch-kernel.cc patch-kernel.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/21 11:33:51 PDT Modified files: sysutils/xosview/files patch-kernel.cc patch-kernel.h Added files: sysutils/xosview/files patch-swapinternal.cc patch-swapinternal.h patch-swapmeter.cc Log: Use longs vs. ints in calculating the amount of swap. This fixed getting negative swap values on an Alpha with 2GB swap. I should probably use `long long' for large swap x86 machines. (anybody want to help test?) Revision Changes Path 1.2 +10 -1 ports/sysutils/xosview/files/patch-kernel.cc 1.2 +10 -1 ports/sysutils/xosview/files/patch-kernel.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 11:35:53 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0AC7B37B407; Tue, 21 Aug 2001 11:35:47 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LIZla02376; Tue, 21 Aug 2001 11:35:47 -0700 (PDT) (envelope-from dinoex) Message-Id: <200108211835.f7LIZla02376@freefall.freebsd.org> From: Dirk Meyer Date: Tue, 21 Aug 2001 11:35:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/crescendo Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2001/08/21 11:35:46 PDT Modified files: net/crescendo Makefile distinfo Log: Update to 1.1.7 Changelog: *src/menu.c: adding a menu option for redrawing the screen. We need a real name for this. Ug, I'm tired. Stupid raid hurry up and copy!! *src/toolbar.c: Creating the pixmap in the toolbar. *src/crescendo.c: takeing the pixmap out of the status thing. *src/world.c: Stupid. One type of LP *src/world.c: Removed none as a posible world type, and added tiny.mush and tiny.muck *src/about.c: Made david an archived developer. *sniff* we will always love you dave. *src/world.c: I gave the world saving routine the ability to add each world to the tinyfugue world list. I think this will prove to be very yummy. *src/crescendo.c: Dummy, 10 chars, not 11. *src/world.c: Fixed the ordering of hbox's in the gnome_dialog vbox * src/crescendo.c: I added a severely ugly hack to the main() that basically shoves a /visual off to tinyfugue. This is so disgustingly ugly. * src/world.c: I added a port field to the dialog * configure.in: Bumped the version number * crescendo.spec: bumped the version number * src/wrapper.c, src/world.c: Changed "Unknown" password/username to empty string. * src/about.c: fixed the URL pointing to the correct home page. Added my email address to the array. * src/world.c: Made the password field not shown by. * src/world.c, src/wrapper.[ch]: Added auto-log-in support, Revision Changes Path 1.9 +2 -2 ports/net/crescendo/Makefile 1.3 +1 -1 ports/net/crescendo/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 11:37:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D661237B408; Tue, 21 Aug 2001 11:37:15 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LIbFA02577; Tue, 21 Aug 2001 11:37:15 -0700 (PDT) (envelope-from dinoex) Message-Id: <200108211837.f7LIbFA02577@freefall.freebsd.org> From: Dirk Meyer Date: Tue, 21 Aug 2001 11:37:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/pgpin Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2001/08/21 11:37:15 PDT Modified files: security/pgpin Makefile distinfo Log: Update to 20010323 Changelog: - Fixed a spelling error. - language.txt fixed. - DOS compile process brushed up. - Protect against my nightmare dream ten hours ago. Revision Changes Path 1.3 +3 -3 ports/security/pgpin/Makefile 1.2 +1 -1 ports/security/pgpin/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 11:38:26 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8FC6237B406; Tue, 21 Aug 2001 11:38:23 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LIcNx02736; Tue, 21 Aug 2001 11:38:23 -0700 (PDT) (envelope-from dinoex) Message-Id: <200108211838.f7LIcNx02736@freefall.freebsd.org> From: Dirk Meyer Date: Tue, 21 Aug 2001 11:38:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/german/unix-connect Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2001/08/21 11:38:23 PDT Modified files: german/unix-connect Makefile Log: Avoid to build with broken Optimisation Revision Changes Path 1.3 +2 -1 ports/german/unix-connect/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 11:42:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 00D0437B409; Tue, 21 Aug 2001 11:42:47 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LIgkp03186; Tue, 21 Aug 2001 11:42:46 -0700 (PDT) (envelope-from jhb) Message-Id: <200108211842.f7LIgkp03186@freefall.freebsd.org> From: John Baldwin Date: Tue, 21 Aug 2001 11:42:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/21 11:42:46 PDT Modified files: sys/kern kern_condvar.c kern_synch.c sys/sys proc.h Log: - Fix a bug in the previous workaround for the tsleep/endtsleep race. callout_stop() would fail in two cases: 1) The timeout was currently executing, and 2) The timeout had already executed. We only needed to work around the race for 1). We caught some instances of 2) via the PS_TIMEOUT flag, however, if endtsleep() fired after the process had been woken up but before it had resumed execution, PS_TIMEOUT would not be set, but callout_stop() would fail, so we would block the process until endtsleep() resumed it. Except that endtsleep() had already run and couldn't resume it. This adds a new flag PS_TIMOFAIL to indicate the case of 2) when PS_TIMEOUT isn't set. - Implement this race fix for condition variables as well. Tested by: sos Revision Changes Path 1.12 +29 -7 src/sys/kern/kern_condvar.c 1.156 +6 -3 src/sys/kern/kern_synch.c 1.175 +2 -1 src/sys/sys/proc.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 11:46: 7 2001 Delivered-To: cvs-all@freebsd.org Received: from elvis.mu.org (elvis.mu.org [216.33.66.196]) by hub.freebsd.org (Postfix) with ESMTP id 12D6C37B407; Tue, 21 Aug 2001 11:46:01 -0700 (PDT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 0A18981D0A; Tue, 21 Aug 2001 13:46:01 -0500 (CDT) Date: Tue, 21 Aug 2001 13:46:01 -0500 From: Alfred Perlstein To: John Baldwin Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h Message-ID: <20010821134601.J81307@elvis.mu.org> References: <200108211842.f7LIgkp03186@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108211842.f7LIgkp03186@freefall.freebsd.org>; from jhb@FreeBSD.org on Tue, Aug 21, 2001 at 11:42:46AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * John Baldwin [010821 13:42] wrote: > jhb 2001/08/21 11:42:46 PDT > > Modified files: > sys/kern kern_condvar.c kern_synch.c > sys/sys proc.h > Log: > - Fix a bug in the previous workaround for the tsleep/endtsleep race. > callout_stop() would fail in two cases: > 1) The timeout was currently executing, and > 2) The timeout had already executed. > We only needed to work around the race for 1). We caught some instances > of 2) via the PS_TIMEOUT flag, however, if endtsleep() fired after the > process had been woken up but before it had resumed execution, > PS_TIMEOUT would not be set, but callout_stop() would fail, so we > would block the process until endtsleep() resumed it. Except that > endtsleep() had already run and couldn't resume it. This adds a new flag > PS_TIMOFAIL to indicate the case of 2) when PS_TIMEOUT isn't set. > - Implement this race fix for condition variables as well. How likely are these sort of fixes going to be able to help the perceived instability of -current? Is -current noticeably unstable or do we just have the usual crowd of people screaming sort of like what was going on a couple of months ago. "current is broken" "no it's not" "yes it is" "give me a crashdump" ":P" etc. -- -Alfred Perlstein [alfred@freebsd.org] Ok, who wrote this damn function called '??'? And why do my programs keep crashing in it? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 11:46:39 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2FB5437B407; Tue, 21 Aug 2001 11:46:34 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LIkYM03587; Tue, 21 Aug 2001 11:46:34 -0700 (PDT) (envelope-from dd) Message-Id: <200108211846.f7LIkYM03587@freefall.freebsd.org> From: Dima Dorfman Date: Tue, 21 Aug 2001 11:46:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen setprogname.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/21 11:46:33 PDT Modified files: lib/libc/gen setprogname.c Log: Fix style bug. Revision Changes Path 1.5 +2 -2 src/lib/libc/gen/setprogname.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 11:50: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D933037B405; Tue, 21 Aug 2001 11:49:58 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LInwN03979; Tue, 21 Aug 2001 11:49:58 -0700 (PDT) (envelope-from dd) Message-Id: <200108211849.f7LInwN03979@freefall.freebsd.org> From: Dima Dorfman Date: Tue, 21 Aug 2001 11:49:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen getprogname.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/21 11:49:58 PDT Modified files: lib/libc/gen getprogname.3 Log: The setprogname() function sets the name of the program to be the last component of the progname argument. Revision Changes Path 1.4 +4 -2 src/lib/libc/gen/getprogname.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 11:57:15 2001 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 B816537B401; Tue, 21 Aug 2001 11:57:08 -0700 (PDT) (envelope-from des@ofug.org) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id UAA00567; Tue, 21 Aug 2001 20:57:05 +0200 (CEST) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Brian Somers Cc: Mike Barcroft , Brian Somers , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libfetch ftp.c References: <200108201902.f7KJ2QU90024@hak.lan.Awfulhak.org> From: Dag-Erling Smorgrav Date: 21 Aug 2001 20:57:05 +0200 In-Reply-To: <200108201902.f7KJ2QU90024@hak.lan.Awfulhak.org> Message-ID: Lines: 9 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Brian Somers writes: > > Approved by: des? > Was it worth seeking approval ? I hope the answer is no :*P Not really. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 12:13:15 2001 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 4D7ED37B405; Tue, 21 Aug 2001 12:13:08 -0700 (PDT) (envelope-from des@ofug.org) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id VAA00616; Tue, 21 Aug 2001 21:13:03 +0200 (CEST) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Alfred Perlstein Cc: John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h References: <200108211842.f7LIgkp03186@freefall.freebsd.org> <20010821134601.J81307@elvis.mu.org> From: Dag-Erling Smorgrav Date: 21 Aug 2001 21:13:02 +0200 In-Reply-To: <20010821134601.J81307@elvis.mu.org> Message-ID: Lines: 17 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alfred Perlstein writes: > How likely are these sort of fixes going to be able to help > the perceived instability of -current? Is -current noticeably > unstable or do we just have the usual crowd of people screaming > sort of like what was going on a couple of months ago. I don't think -CURRENT is particularly unstable, but it seems to have issues with resource allocations that only affect certain motherboards or chipsets. It's been getting steadily worse since the beginning of June - first my floppy drive stopped working, then I started getting massive ISA interrupt lossage (but only after a few hours of uptime), then my floppy drive stopped even attaching. I haven't had a single crash, though. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 12:24:55 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9943D37B406; Tue, 21 Aug 2001 12:24:51 -0700 (PDT) (envelope-from mike@FreeBSD.org) Received: (from mike@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LJOpF10798; Tue, 21 Aug 2001 12:24:51 -0700 (PDT) (envelope-from mike) Message-Id: <200108211924.f7LJOpF10798@freefall.freebsd.org> From: Mike Barcroft Date: Tue, 21 Aug 2001 12:24:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/whois Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mike 2001/08/21 12:24:50 PDT Modified files: usr.bin/whois Makefile Log: Take maintainership of whois(1). Revision Changes Path 1.5 +3 -1 src/usr.bin/whois/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 12:26:23 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 2107C37B401; Tue, 21 Aug 2001 12:26:12 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7LJQ9v27202; Tue, 21 Aug 2001 20:26:09 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7LJPxU47929; Tue, 21 Aug 2001 20:25:59 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108211925.f7LJPxU47929@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Gregory Sutter Cc: Doug Barton , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: www/en/gallery gallery.xml In-Reply-To: Message from Gregory Sutter of "Mon, 13 Aug 2001 15:30:12 PDT." <20010813153012.I37054@klapaucius.zer0.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 21 Aug 2001 20:25:59 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I think Greg is right here, the quoted email shouldn't exclude their site from being in our gallery. Maybe this discussion was taken off line ? > On 2001-08-12 17:55 -0700, Doug Barton wrote: > > dougb 2001/08/12 17:55:28 PDT > >=20 > > Modified files: > > en/gallery gallery.xml=20 > > Log: > > Remove the Persian Kitty site, based on commentary: > > =20 > > I'll tell you what -- I'm never going to help, much less give the > > freebsd team the time of day, again. > > Regards, > > Lew Payne > > Network Operations > > Persian Kitty's Adult Links > > While it is a good form of revenge, this is not a valid reason for > removing Persian Kitty from our gallery. Lew may be an asshole, or he > may have just missed his morning coffee, or perhaps the banner ad for > forearm-sized dildos was instead drawn as an ad for four-arm-sized > dildos. Oops. So he made his negative remark. That has nothing to > do with Persian Kitty's presence in the gallery. > > The gallery is there to promote FreeBSD just as much, if not more, > than it is to promote the companies linked within. People don't > visit freebsd.org to find porn sites. Persian Kitty is a large, > well-known Internet business, and a good one to be able to have > in the gallery. Sex sells, and in this instance, sex promotes > FreeBSD's speed and reliability. =20 > > In short, please revert this arbitrary and detrimental change. > > Greg > --=20 > Gregory S. Sutter Build a man a fire, and he'll be warm > mailto:gsutter@zer0.org for a day. Set a man on fire, and he'll > http://www.zer0.org/~gsutter/ be warm for the rest of his life.=20 > hkp://wwwkeys.pgp.net/0x845DFEDD -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 12:27:13 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E32E37B406; Tue, 21 Aug 2001 12:27:08 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LJR8p10994; Tue, 21 Aug 2001 12:27:08 -0700 (PDT) (envelope-from dd) Message-Id: <200108211927.f7LJR8p10994@freefall.freebsd.org> From: Dima Dorfman Date: Tue, 21 Aug 2001 12:27:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen setprogname.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/21 12:27:07 PDT Modified files: lib/libc/gen setprogname.c Log: Expand the ?: construct into an if/else. Submitted by: nectar Revision Changes Path 1.6 +5 -2 src/lib/libc/gen/setprogname.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 12:28:52 2001 Delivered-To: cvs-all@freebsd.org Received: from misha.privatelabs.com (misha.privatelabs.com [66.9.25.166]) by hub.freebsd.org (Postfix) with ESMTP id 17CE637B407; Tue, 21 Aug 2001 12:28:45 -0700 (PDT) (envelope-from mi@aldan.algebra.com) Received: from misha.privatelabs.com (mi@localhost [127.0.0.1]) by misha.privatelabs.com (8.11.3/8.11.1) with ESMTP id f7LJSXk01254; Tue, 21 Aug 2001 15:28:34 -0400 (EDT) (envelope-from mi@aldan.algebra.com) Message-Id: <200108211928.f7LJSXk01254@misha.privatelabs.com> Date: Tue, 21 Aug 2001 15:28:31 -0400 (EDT) From: mi@aldan.algebra.com Reply-To: mi@aldan.algebra.com Subject: "current is broken" (Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h) To: bright@mu.org Cc: jhb@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20010821134601.J81307@elvis.mu.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 21 Aug, Alfred Perlstein wrote: > How likely are these sort of fixes going to be able to help the > perceived instability of -current? Is -current noticeably unstable or > do we just have the usual crowd of people screaming sort of like what > was going on a couple of months ago. > > "current is broken" > "no it's not" > "yes it is" > "give me a crashdump" "yes it is, here:" http://www.FreeBSD.org/cgi/getmsg.cgi?fetch=634686+642584+/usr/local/www/db/text/2001/freebsd-current/20010812.freebsd-current > ":P" Indeed. Not a word of reaction... Or should I've stuck this crash dump into some real flesh somewhere instead of just submitting it to -current? Just had another _reproduceable_ crash today again -- in ufshashdir (yes, it is a new feature).... -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 12:32:46 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5877537B403; Tue, 21 Aug 2001 12:32:42 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LJWgE11599; Tue, 21 Aug 2001 12:32:42 -0700 (PDT) (envelope-from obrien) Message-Id: <200108211932.f7LJWgE11599@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 21 Aug 2001 12:32:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/xosview Makefile distinfo ports/sysutils/xosview/files patch-ae patch-kernel.cc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/21 12:32:41 PDT Modified files: sysutils/xosview Makefile distinfo sysutils/xosview/files patch-ae patch-kernel.cc Log: Upgrade to 1.7.4. Revision Changes Path 1.26 +5 -3 ports/sysutils/xosview/Makefile 1.10 +1 -1 ports/sysutils/xosview/distinfo 1.3 +3 -20 ports/sysutils/xosview/files/patch-ae 1.3 +17 -13 ports/sysutils/xosview/files/patch-kernel.cc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 12:33: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8AA8637B41F; Tue, 21 Aug 2001 12:32:48 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LJWmi11637; Tue, 21 Aug 2001 12:32:48 -0700 (PDT) (envelope-from dd) Message-Id: <200108211932.f7LJWmi11637@freefall.freebsd.org> From: Dima Dorfman Date: Tue, 21 Aug 2001 12:32:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen getpeereid.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/21 12:32:47 PDT Modified files: lib/libc/gen getpeereid.3 Log: Use .In, .Ux, and .Rv where appropriate. Also consistently call this a "function" instead of a "routine". Submitted by: ru Revision Changes Path 1.2 +17 -19 src/lib/libc/gen/getpeereid.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 12:35:41 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 98BAE37B414; Tue, 21 Aug 2001 12:34:23 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7LJY4v27246; Tue, 21 Aug 2001 20:34:04 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7LJXsU48118; Tue, 21 Aug 2001 20:33:54 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108211933.f7LJXsU48118@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Mike Barcroft Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/usr.bin/whois Makefile In-Reply-To: Message from Mike Barcroft of "Tue, 21 Aug 2001 12:24:50 PDT." <200108211924.f7LJOpF10798@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 21 Aug 2001 20:33:54 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > mike 2001/08/21 12:24:50 PDT > > Modified files: > usr.bin/whois Makefile > Log: > Take maintainership of whois(1). > > Revision Changes Path > 1.5 +3 -1 src/usr.bin/whois/Makefile Could I ask why ? -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 12:39: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D606437B403; Tue, 21 Aug 2001 12:39:03 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LJd3b12231; Tue, 21 Aug 2001 12:39:03 -0700 (PDT) (envelope-from dd) Message-Id: <200108211939.f7LJd3b12231@freefall.freebsd.org> From: Dima Dorfman Date: Tue, 21 Aug 2001 12:39:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 rc.conf.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/21 12:39:01 PDT Modified files: share/man/man5 rc.conf.5 Log: Do not use contractions where they aren't necessary, use "host" instead of "computer", and clean up some confusing sentences. Submitted by: sheldonh Revision Changes Path 1.130 +10 -11 src/share/man/man5/rc.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 12:44:37 2001 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-7.dsl.lsan03.pacbell.net [63.207.60.7]) by hub.freebsd.org (Postfix) with ESMTP id 94A0B37B401; Tue, 21 Aug 2001 12:44:29 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 18D9666D1C; Tue, 21 Aug 2001 12:44:29 -0700 (PDT) Date: Tue, 21 Aug 2001 12:44:28 -0700 From: Kris Kennaway To: Alfred Perlstein Cc: John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h Message-ID: <20010821124428.B17739@xor.obsecurity.org> References: <200108211842.f7LIgkp03186@freefall.freebsd.org> <20010821134601.J81307@elvis.mu.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="ibTvN161/egqYuK8" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010821134601.J81307@elvis.mu.org>; from bright@mu.org on Tue, Aug 21, 2001 at 01:46:01PM -0500 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --ibTvN161/egqYuK8 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 21, 2001 at 01:46:01PM -0500, Alfred Perlstein wrote: > How likely are these sort of fixes going to be able to help > the perceived instability of -current? Is -current noticeably > unstable or do we just have the usual crowd of people screaming > sort of like what was going on a couple of months ago. >=20 > "current is broken" > "no it's not" > "yes it is" > "give me a crashdump" > ":P" Most of the problems I was having weren't easily reproducible or didnt cause panics, just lockups :-( Kris --ibTvN161/egqYuK8 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE7grocWry0BWjoQKURAvSXAJ4vQ5GIbwY8NjNUfjQCtJP3gpBJlgCdHv1T 8hrTOJIU8IuqqUAuHgf7ZLM= =5N5w -----END PGP SIGNATURE----- --ibTvN161/egqYuK8-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 12:47:52 2001 Delivered-To: cvs-all@freebsd.org Received: from coffee.q9media.com (coffee.q9media.com [216.94.229.19]) by hub.freebsd.org (Postfix) with ESMTP id 5B5C637B407; Tue, 21 Aug 2001 12:47:46 -0700 (PDT) (envelope-from mike@coffee.q9media.com) Received: (from mike@localhost) by coffee.q9media.com (8.11.2/8.11.3) id f7LKAAG54974; Tue, 21 Aug 2001 16:10:10 -0400 (EDT) (envelope-from mike) Date: Tue, 21 Aug 2001 16:10:10 -0400 From: Mike Barcroft To: Brian Somers Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/usr.bin/whois Makefile Message-ID: <20010821161010.B54853@coffee.q9media.com> Mail-Followup-To: Mike Barcroft , Brian Somers , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com References: <200108211933.f7LJXsU48118@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108211933.f7LJXsU48118@hak.lan.Awfulhak.org>; from brian@Awfulhak.org on Tue, Aug 21, 2001 at 08:33:54PM +0100 Organization: The FreeBSD Project Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Brian Somers writes: > > mike 2001/08/21 12:24:50 PDT > > > > Modified files: > > usr.bin/whois Makefile > > Log: > > Take maintainership of whois(1). > > > > Revision Changes Path > > 1.5 +3 -1 src/usr.bin/whois/Makefile > > Could I ask why ? I guess I could have made that a little bit more clear in the commit log. Most of the changes to whois in the last year were by me. I also have other changes coming soon, so I'd appreciate it if any changes were coordinated through me. Best regards, Mike Barcroft To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 12:51: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 28A2B37B401; Tue, 21 Aug 2001 12:50:03 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LJo2B13278; Tue, 21 Aug 2001 12:50:02 -0700 (PDT) (envelope-from alex) Message-Id: <200108211950.f7LJo2B13278@freefall.freebsd.org> From: Alexander Langer Date: Tue, 21 Aug 2001 12:50:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/xcdroast Makefile pkg-plist ports/sysutils/xcdroast/files patch-Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alex 2001/08/21 12:50:02 PDT Modified files: sysutils/xcdroast Makefile pkg-plist sysutils/xcdroast/files patch-Makefile Log: More fixes: - Don't hardcode "gtk12-config", but use GTK_CONFIG and IMLIB_CONFIG vars. - patch improvement - plist fixes - remove added group cdwrite on deinstall - chown root:cdwrite various utilities used by xcdroast, such as cdrecord, and set them chmod 4710. I don't know if I like this. Opinions (Security Officer?)? Revision Changes Path 1.5 +11 -9 ports/sysutils/xcdroast/Makefile 1.4 +1 -4 ports/sysutils/xcdroast/pkg-plist 1.4 +14 -6 ports/sysutils/xcdroast/files/patch-Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 12:52: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6FCE237B412; Tue, 21 Aug 2001 12:51:15 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LJpAA13419; Tue, 21 Aug 2001 12:51:10 -0700 (PDT) (envelope-from obrien) Message-Id: <200108211951.f7LJpAA13419@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 21 Aug 2001 12:51:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/vim6 Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/21 12:51:09 PDT Modified files: editors/vim6 Makefile pkg-plist Log: Support "lite" configurations. Submitted by: Dirk Meyer Revision Changes Path 1.128 +10 -3 ports/editors/vim6/Makefile 1.45 +2 -2 ports/editors/vim6/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 Aug 21 12:58:22 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EE2B937B407; Tue, 21 Aug 2001 12:58:17 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: (from scottl@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LJwHQ14033; Tue, 21 Aug 2001 12:58:17 -0700 (PDT) (envelope-from scottl) Message-Id: <200108211958.f7LJwHQ14033@freefall.freebsd.org> From: Scott Long Date: Tue, 21 Aug 2001 12:58:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/asr MAINTAINER asr.c dptsig.h i2omsg.h osd_defs.h osd_unix.h osd_util.h sys_info.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG scottl 2001/08/21 12:58:17 PDT Modified files: sys/dev/asr MAINTAINER asr.c dptsig.h i2omsg.h osd_defs.h osd_unix.h osd_util.h sys_info.h Log: Fresh code drop from the vendor. This fixes some critical bugs and adds support for a new class of controllers. Also adjust MAINTAINER at the approval of msmith. Obtained from: mark_salyzyn@adaptec.com Revision Changes Path 1.2 +2 -2 src/sys/dev/asr/MAINTAINER 1.13 +460 -150 src/sys/dev/asr/asr.c 1.2 +69 -16 src/sys/dev/asr/dptsig.h 1.2 +16 -25 src/sys/dev/asr/i2omsg.h 1.2 +2 -2 src/sys/dev/asr/osd_defs.h 1.2 +1 -3 src/sys/dev/asr/osd_unix.h 1.2 +1 -3 src/sys/dev/asr/osd_util.h 1.2 +1 -3 src/sys/dev/asr/sys_info.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 13: 4:47 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E8D8937B405; Tue, 21 Aug 2001 13:04:42 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LK4gv14593; Tue, 21 Aug 2001 13:04:42 -0700 (PDT) (envelope-from imp) Message-Id: <200108212004.f7LK4gv14593@freefall.freebsd.org> From: Warner Losh Date: Tue, 21 Aug 2001 13:04:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pccard pcic.c pcic_isa.c pcic_pci.c pcicvar.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/21 13:04:42 PDT Modified files: sys/pccard pcic.c pcic_isa.c pcic_pci.c pcicvar.h Log: Rearrange how we do interrupt routing tweaking. We now have hw.pcic.intr_path {1,2} 1 == ISA, 2 == PCI hw.pcic.init_route Force TI chipset initializations in edge case. Revision Changes Path 1.162 +7 -7 src/sys/pccard/pcic.c 1.20 +3 -3 src/sys/pccard/pcic_isa.c 1.72 +35 -24 src/sys/pccard/pcic_pci.c 1.25 +4 -4 src/sys/pccard/pcicvar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 13: 5:44 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9851D37B407; Tue, 21 Aug 2001 13:05:39 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LK5dJ17611; Tue, 21 Aug 2001 13:05:39 -0700 (PDT) (envelope-from dd) Message-Id: <200108212005.f7LK5dJ17611@freefall.freebsd.org> From: Dima Dorfman Date: Tue, 21 Aug 2001 13:05:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libmp libmp.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/21 13:05:39 PDT Modified files: lib/libmp libmp.3 Log: Don't claim to be mp(3). Revision Changes Path 1.3 +2 -2 src/lib/libmp/libmp.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 13: 7:53 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D22E937B406; Tue, 21 Aug 2001 13:07:49 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LK7nW17814; Tue, 21 Aug 2001 13:07:49 -0700 (PDT) (envelope-from imp) Message-Id: <200108212007.f7LK7nW17814@freefall.freebsd.org> From: Warner Losh Date: Tue, 21 Aug 2001 13:07:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 pcic.4 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/21 13:07:49 PDT Modified files: share/man/man4 Makefile Added files: share/man/man4 pcic.4 Log: Add new, simple pcic manual page. Revision Changes Path 1.131 +2 -1 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 Aug 21 13: 9:10 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 50EB237B408; Tue, 21 Aug 2001 13:09:05 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LK95k17972; Tue, 21 Aug 2001 13:09:05 -0700 (PDT) (envelope-from jhb) Message-Id: <200108212009.f7LK95k17972@freefall.freebsd.org> From: John Baldwin Date: Tue, 21 Aug 2001 13:09:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_synch.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/21 13:09:05 PDT Modified files: sys/kern kern_synch.c Log: Add a hook to mi_switch() to abort via db_error() if we attempt to perform a context switch from DDB. Consulting from: bde Revision Changes Path 1.157 +13 -1 src/sys/kern/kern_synch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 13:12:39 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 26F7937B406; Tue, 21 Aug 2001 13:12:36 -0700 (PDT) (envelope-from se@FreeBSD.org) Received: (from se@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LKCaS18501; Tue, 21 Aug 2001 13:12:36 -0700 (PDT) (envelope-from se) Message-Id: <200108212012.f7LKCaS18501@freefall.freebsd.org> From: Stefan Esser Date: Tue, 21 Aug 2001 13:12:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/xblast-beta Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG se 2001/08/21 13:12:36 PDT Modified files: games/xblast-beta Makefile distinfo Log: Upgrade to 2.7.38 (beta) Revision Changes Path 1.8 +2 -2 ports/games/xblast-beta/Makefile 1.10 +2 -2 ports/games/xblast-beta/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 13:13:58 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E745A37B406; Tue, 21 Aug 2001 13:13:54 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LKDsd18612; Tue, 21 Aug 2001 13:13:54 -0700 (PDT) (envelope-from imp) Message-Id: <200108212013.f7LKDsd18612@freefall.freebsd.org> From: Warner Losh Date: Tue, 21 Aug 2001 13:13:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa pci_cfgreg.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/21 13:13:54 PDT Modified files: (Branch: RELENG_4) sys/i386/isa pci_cfgreg.c Log: Not not is not not. Change a != 0 to a == 0 to match the code that was in current before the pcibios stripping that I did in -stable. It was a simple change I made after all the other testing I did :-(. This should get people their PCI BUSes back. :-(. Noticed by: Mike Silbersack Revision Changes Path 1.1.2.3 +2 -2 src/sys/i386/isa/Attic/pci_cfgreg.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 13:16: 0 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.wrs.com (unknown-1-11.windriver.com [147.11.1.11]) by hub.freebsd.org (Postfix) with ESMTP id 32DDF37B407; Tue, 21 Aug 2001 13:15:52 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from laptop.baldwin.cx (john@[147.11.46.201]) by mail.wrs.com (8.9.3/8.9.1) with ESMTP id NAA19025; Tue, 21 Aug 2001 13:15:40 -0700 (PDT) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20010821134601.J81307@elvis.mu.org> Date: Tue, 21 Aug 2001 13:15:46 -0700 (PDT) From: John Baldwin To: Alfred Perlstein Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 21-Aug-01 Alfred Perlstein wrote: > * John Baldwin [010821 13:42] wrote: >> jhb 2001/08/21 11:42:46 PDT >> >> Modified files: >> sys/kern kern_condvar.c kern_synch.c >> sys/sys proc.h >> Log: >> - Fix a bug in the previous workaround for the tsleep/endtsleep race. >> callout_stop() would fail in two cases: >> 1) The timeout was currently executing, and >> 2) The timeout had already executed. >> We only needed to work around the race for 1). We caught some instances >> of 2) via the PS_TIMEOUT flag, however, if endtsleep() fired after the >> process had been woken up but before it had resumed execution, >> PS_TIMEOUT would not be set, but callout_stop() would fail, so we >> would block the process until endtsleep() resumed it. Except that >> endtsleep() had already run and couldn't resume it. This adds a new >> flag >> PS_TIMOFAIL to indicate the case of 2) when PS_TIMEOUT isn't set. >> - Implement this race fix for condition variables as well. > > How likely are these sort of fixes going to be able to help > the perceived instability of -current? Is -current noticeably > unstable or do we just have the usual crowd of people screaming > sort of like what was going on a couple of months ago. This fixes the recent (< 2 weeks) problems with sound or USB processes hanging. It might fix other hangs that started with my Aug 10th commit as well. > "current is broken" > "no it's not" > "yes it is" > "give me a crashdump" > ":P" "it panics trying to get a crashdump" "use ddb" "i don't have a serial console" "i can't reproduce this on any of my 6 testboxes *bang head on desk*" > etc. :-) -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.baldwin.cx/~john/pgpkey.asc "Power Users Use 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 Tue Aug 21 13:16:51 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 242D737B407; Tue, 21 Aug 2001 13:16:46 -0700 (PDT) (envelope-from logo@FreeBSD.org) Received: (from logo@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LKGkO19052; Tue, 21 Aug 2001 13:16:46 -0700 (PDT) (envelope-from logo) Message-Id: <200108212016.f7LKGkO19052@freefall.freebsd.org> From: Valentino Vaschetto Date: Tue, 21 Aug 2001 13:16:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/formatting-media article.sgml doc/en_US.ISO8859-1/articles/ipsec-must article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG logo 2001/08/21 13:16:46 PDT Modified files: en_US.ISO8859-1/articles/formatting-media article.sgml en_US.ISO8859-1/articles/ipsec-must article.sgml Log: Close para and sect1 tags in regard to the "4.4-RC: errors in doc build" thread in freebsd-doc. Reviewed by: murray Revision Changes Path 1.20 +2 -2 doc/en_US.ISO8859-1/articles/formatting-media/article.sgml 1.8 +2 -1 doc/en_US.ISO8859-1/articles/ipsec-must/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 Aug 21 13:17:21 2001 Delivered-To: cvs-all@freebsd.org Received: from kawoserv.kawo2.rwth-aachen.de (kawoserv.kawo2.RWTH-Aachen.DE [134.130.180.1]) by hub.freebsd.org (Postfix) with ESMTP id D309437B407; Tue, 21 Aug 2001 13:17:08 -0700 (PDT) (envelope-from alex@big.endian.de) Received: from zerogravity.kawo2.rwth-aachen.de (zerogravity.kawo2.rwth-aachen.de [134.130.181.28]) by kawoserv.kawo2.rwth-aachen.de (8.9.3/8.9.3) with ESMTP id WAA21437; Tue, 21 Aug 2001 22:17:08 +0200 Received: by zerogravity.kawo2.rwth-aachen.de (Postfix, from userid 1001) id C6EA914E5B; Tue, 21 Aug 2001 22:17:06 +0200 (CEST) Date: Tue, 21 Aug 2001 22:17:05 +0200 From: Alexander Langer To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/sysutils/xcdroast Makefile pkg-plist ports/sysutils/xcdroast/files patch-Makefile Message-ID: <20010821221705.A860@zerogravity.kawo2.rwth-aachen.d> References: <200108211950.f7LJo2B13278@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108211950.f7LJo2B13278@freefall.freebsd.org>; from alex@FreeBSD.org on Tue, Aug 21, 2001 at 12:50:02PM -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. Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus spake Alexander Langer (alex@FreeBSD.org): > sysutils/xcdroast Makefile pkg-plist > sysutils/xcdroast/files patch-Makefile > Log: > More fixes: ... all submitted by MAINTAINER. > - chown root:cdwrite various utilities used by xcdroast, such as > cdrecord, and set them chmod 4710. I don't know if I like this. > Opinions (Security Officer?)? What about this? Alex -- WELCOME DATACOMP! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 13:24:44 2001 Delivered-To: cvs-all@freebsd.org Received: from femail47.sdc1.sfba.home.com (femail47.sdc1.sfba.home.com [24.254.60.41]) by hub.freebsd.org (Postfix) with ESMTP id B20D837B401; Tue, 21 Aug 2001 13:24:35 -0700 (PDT) (envelope-from bmah@employees.org) Received: from intruder.bmah.org ([24.176.204.87]) by femail47.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with ESMTP id <20010821202435.JGKG27838.femail47.sdc1.sfba.home.com@intruder.bmah.org>; Tue, 21 Aug 2001 13:24:35 -0700 Received: (from bmah@localhost) by intruder.bmah.org (8.11.5/8.11.3) id f7LKOYm12559; Tue, 21 Aug 2001 13:24:34 -0700 (PDT) (envelope-from bmah) Message-Id: <200108212024.f7LKOYm12559@intruder.bmah.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Alexander Langer Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, lehmann@ans-netz.de Subject: Re: cvs commit: ports/sysutils/xcdroast Makefile pkg-plist ports/sysutils/xcdroast/files patch-Makefile In-Reply-To: <20010821221705.A860@zerogravity.kawo2.rwth-aachen.d> References: <200108211950.f7LJo2B13278@freefall.freebsd.org> <20010821221705.A860@zerogravity.kawo2.rwth-aachen.d> Comments: In-reply-to Alexander Langer message dated "Tue, 21 Aug 2001 22:17:05 +0200." From: "Bruce A. Mah" Reply-To: bmah@FreeBSD.org X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_-1037373828P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Tue, 21 Aug 2001 13:24:34 -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --==_Exmh_-1037373828P Content-Type: text/plain; charset=us-ascii If memory serves me right, Alexander Langer wrote: > Thus spake Alexander Langer (alex@FreeBSD.org): > > > sysutils/xcdroast Makefile pkg-plist > > sysutils/xcdroast/files patch-Makefile > > Log: > > More fixes: > > ... all submitted by MAINTAINER. I was going to ask about that..... > > - chown root:cdwrite various utilities used by xcdroast, such as > > cdrecord, and set them chmod 4710. I don't know if I like this. > > Opinions (Security Officer?)? > > What about this? I'm not the SO, but I know I don't like it. This means the xcdroast port is doing chown/chmod on files that were installed by *other* ports. To my knowledge, no other port does this and (as a user of cdrecord) I can't see any reason for making this change. Maybe the MAINTAINER (CC-ed) could give the reasoning for this? Cheers, Bruce. --==_Exmh_-1037373828P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: Exmh version 2.3.1+ 05/14/2001 iD8DBQE7gsOC2MoxcVugUsMRAls3AKDzqYr4FmpWinXc97FicRGYAmoOBwCggiV3 e0Y9oiUx4BsjxecnR7CKD9g= =X2Rb -----END PGP SIGNATURE----- --==_Exmh_-1037373828P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 13:32:24 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 897A937B406; Tue, 21 Aug 2001 13:32:19 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LKWJh20808; Tue, 21 Aug 2001 13:32:19 -0700 (PDT) (envelope-from jim) Message-Id: <200108212032.f7LKWJh20808@freefall.freebsd.org> From: Jim Mock Date: Tue, 21 Aug 2001 13:32:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/asbutton Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jim 2001/08/21 13:32:19 PDT Modified files: misc/asbutton Makefile Log: Fix MASTER_SITES. I'm not sure why it was changed to MASTER_SITES_AFTERSTEP to begin with. Revision Changes Path 1.9 +2 -3 ports/misc/asbutton/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 13:34: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-7.dsl.lsan03.pacbell.net [63.207.60.7]) by hub.freebsd.org (Postfix) with ESMTP id A09D337B408; Tue, 21 Aug 2001 13:33:54 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 12DCA66D1C; Tue, 21 Aug 2001 13:33:52 -0700 (PDT) Date: Tue, 21 Aug 2001 13:33:51 -0700 From: Kris Kennaway To: Alexander Langer Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/sysutils/xcdroast Makefile pkg-plist ports/sysutils/xcdroast/files patch-Makefile Message-ID: <20010821133351.A19823@xor.obsecurity.org> References: <200108211950.f7LJo2B13278@freefall.freebsd.org> <20010821221705.A860@zerogravity.kawo2.rwth-aachen.d> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="LZvS9be/3tNcYl/X" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010821221705.A860@zerogravity.kawo2.rwth-aachen.d>; from alex@big.endian.de on Tue, Aug 21, 2001 at 10:17:05PM +0200 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --LZvS9be/3tNcYl/X Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 21, 2001 at 10:17:05PM +0200, Alexander Langer wrote: > Thus spake Alexander Langer (alex@FreeBSD.org): >=20 > > sysutils/xcdroast Makefile pkg-plist=20 > > sysutils/xcdroast/files patch-Makefile=20 > > Log: > > More fixes: >=20 > ... all submitted by MAINTAINER. >=20 > > - chown root:cdwrite various utilities used by xcdroast, such as > > cdrecord, and set them chmod 4710. I don't know if I like this. > > Opinions (Security Officer?)? >=20 > What about this? I missed this commit..you should forward mail to security-officer if you want us to look at it. I think this change looks wrong and potentially dangerous: you'd need to convince me it's the right thing to do and safe to leave in. Kris --LZvS9be/3tNcYl/X Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE7gsWuWry0BWjoQKURAljOAKDOTrD+uLxnPfBY/ce0K5g/W8r82QCg0Bwo UpP9zwTMtDdIRyQHhAMJiL4= =lxN0 -----END PGP SIGNATURE----- --LZvS9be/3tNcYl/X-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 13:52: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4DFA037B406; Tue, 21 Aug 2001 13:51:57 -0700 (PDT) (envelope-from se@FreeBSD.org) Received: (from se@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LKpvr23253; Tue, 21 Aug 2001 13:51:57 -0700 (PDT) (envelope-from se) Message-Id: <200108212051.f7LKpvr23253@freefall.freebsd.org> From: Stefan Esser Date: Tue, 21 Aug 2001 13:51:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/argus Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG se 2001/08/21 13:51:57 PDT Modified files: net/argus Makefile distinfo Log: Upgrade to 2.0.2 Revision Changes Path 1.11 +2 -2 ports/net/argus/Makefile 1.5 +2 -2 ports/net/argus/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 13:54:10 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5193737B403; Tue, 21 Aug 2001 13:54:05 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LKs5B23527; Tue, 21 Aug 2001 13:54:05 -0700 (PDT) (envelope-from alex) Message-Id: <200108212054.f7LKs5B23527@freefall.freebsd.org> From: Alexander Langer Date: Tue, 21 Aug 2001 13:54:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/xcdroast Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alex 2001/08/21 13:54:05 PDT Modified files: sysutils/xcdroast Makefile Log: Back out the chmod changes due to general agreement about this issue. Revision Changes Path 1.6 +7 -7 ports/sysutils/xcdroast/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 13:55:33 2001 Delivered-To: cvs-all@freebsd.org Received: from kawoserv.kawo2.rwth-aachen.de (kawoserv.kawo2.RWTH-Aachen.DE [134.130.180.1]) by hub.freebsd.org (Postfix) with ESMTP id BC0F837B401; Tue, 21 Aug 2001 13:55:20 -0700 (PDT) (envelope-from alex@big.endian.de) Received: from zerogravity.kawo2.rwth-aachen.de (zerogravity.kawo2.rwth-aachen.de [134.130.181.28]) by kawoserv.kawo2.rwth-aachen.de (8.9.3/8.9.3) with ESMTP id WAA22859; Tue, 21 Aug 2001 22:55:19 +0200 Received: by zerogravity.kawo2.rwth-aachen.de (Postfix, from userid 1001) id B2A1514E5B; Tue, 21 Aug 2001 22:55:18 +0200 (CEST) Date: Tue, 21 Aug 2001 22:55:18 +0200 From: Alexander Langer To: Kris Kennaway Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, lehmann@ans-netz.de Subject: Re: cvs commit: ports/sysutils/xcdroast Makefile pkg-plist ports/sysutils/xcdroast/files patch-Makefile Message-ID: <20010821225518.A2073@zerogravity.kawo2.rwth-aachen.d> References: <200108211950.f7LJo2B13278@freefall.freebsd.org> <20010821221705.A860@zerogravity.kawo2.rwth-aachen.d> <20010821133351.A19823@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="EeQfGwPcQSOJBaQU" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010821133351.A19823@xor.obsecurity.org>; from kris@obsecurity.org on Tue, Aug 21, 2001 at 01:33:51PM -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. Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --EeQfGwPcQSOJBaQU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Thus spake Kris Kennaway (kris@obsecurity.org): > > > - chown root:cdwrite various utilities used by xcdroast, such as > > > cdrecord, and set them chmod 4710. I don't know if I like this. > > > Opinions (Security Officer?)? > > What about this? > I missed this commit..you should forward mail to security-officer if Ok, will remember in future. > you want us to look at it. I think this change looks wrong and > potentially dangerous: you'd need to convince me it's the right thing > to do and safe to leave in. I backed it out, since I have the very same opinion. Maintainer Cc:'d. Alex --EeQfGwPcQSOJBaQU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.3 (FreeBSD) Comment: For info see http://www.gnupg.org iQEVAwUBO4LKtbRIIUSeqRcRAQFUPAf/Z//GKtJu0wspjZDFPC4KjQhCPvHoKH5Y Jz7q2fGxPSuXVsM/JgEel94cZMmxwp3XBZbCd4T8cVQhJXpjtMNBwm1CXY30kSF8 213q/lMvD9u8lGsT8F7el61gEIDd8q/s4jN4lcmp/hUV8h6JJ6FZE5dT8YWQtu7z xfavFef6XwYEqqzXLIYV1wQbqNqc4HwGfVjd6897Zi/nOy00hNoZWjCiySibFvNx YDLuboGFVcjo6LBxz9/8YknUEAROxWGZcdBvP0cQ9UlfO2etOzt/q55alMCwsyBk 79FgI2tBdpPIpasLQ++3R2U/PLVXJMhhuAqrJQE2jnyQyh9J+A2xrw== =ap3b -----END PGP SIGNATURE----- --EeQfGwPcQSOJBaQU-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 14: 0:25 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.netbeat.de (mail.netbeat.de [212.6.214.38]) by hub.freebsd.org (Postfix) with SMTP id 3C3E937B409 for ; Tue, 21 Aug 2001 14:00:19 -0700 (PDT) (envelope-from lehmann@ans-netz.de) Received: (qmail 17735 invoked from network); 21 Aug 2001 21:09:16 -0000 Received: from p3ee39107.dip.t-dialin.net (HELO ans-netz.de) (62.227.145.7) by mail.netbeat.de with SMTP; 21 Aug 2001 21:09:16 -0000 Message-ID: <3B82CC68.70607@ans-netz.de> Date: Tue, 21 Aug 2001 23:02:32 +0200 From: Oliver Lehmann User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.3+) Gecko/20010804 X-Accept-Language: de, en MIME-Version: 1.0 To: cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/sysutils/xcdroast Makefile pkg-plist ports/sysutils/xcdroast/files patch-Makefile Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In article <200108212024.f7LKOYm12559@intruder.bmah.org>, "Bruce A. Mah" wrote: > I'm not the SO, but I know I don't like it. This means the xcdroast > port is doing chown/chmod on files that were installed by *other* ports. > To my knowledge, no other port does this and (as a user of cdrecord) I > can't see any reason for making this change. > > Maybe the MAINTAINER (CC-ed) could give the reasoning for this? > imho, it's the only way to become xcdroast worked without beeing root. The Old way (give the xcdroast binary the set-user-ID-on-execution bit), would not work with gtk after 1.2.8. Maybye it's an security problem (for example, when root put's an user into the cdwrite group). Is it better to disable the "non-root" mode in the default installation of these port (don't change rights), and create a Makefile-target like "enable-nonroot" which must be called manually. Greetings Olli To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 14: 5:11 2001 Delivered-To: cvs-all@freebsd.org Received: from InterJet.elischer.org (c421509-a.pinol1.sfba.home.com [24.7.86.9]) by hub.freebsd.org (Postfix) with ESMTP id 8050437B407; Tue, 21 Aug 2001 14:05:02 -0700 (PDT) (envelope-from julian@elischer.org) Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id OAA43841; Tue, 21 Aug 2001 14:10:52 -0700 (PDT) Date: Tue, 21 Aug 2001 14:10:52 -0700 (PDT) From: Julian Elischer To: John Baldwin Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_synch.c In-Reply-To: <200108212009.f7LK95k17972@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG OOOOOOOHHHHH (will MFC soon :-) On Tue, 21 Aug 2001, John Baldwin wrote: > jhb 2001/08/21 13:09:05 PDT > > Modified files: > sys/kern kern_synch.c > Log: > Add a hook to mi_switch() to abort via db_error() if we attempt to > perform a context switch from DDB. > > Consulting from: bde > > Revision Changes Path > 1.157 +13 -1 src/sys/kern/kern_synch.c > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 14: 5:38 2001 Delivered-To: cvs-all@freebsd.org Received: from kawoserv.kawo2.rwth-aachen.de (kawoserv.kawo2.RWTH-Aachen.DE [134.130.180.1]) by hub.freebsd.org (Postfix) with ESMTP id CC9BB37B403; Tue, 21 Aug 2001 14:05:29 -0700 (PDT) (envelope-from alex@big.endian.de) Received: from zerogravity.kawo2.rwth-aachen.de (zerogravity.kawo2.rwth-aachen.de [134.130.181.28]) by kawoserv.kawo2.rwth-aachen.de (8.9.3/8.9.3) with ESMTP id XAA23248; Tue, 21 Aug 2001 23:05:27 +0200 Received: by zerogravity.kawo2.rwth-aachen.de (Postfix, from userid 1001) id EF2F014E5C; Tue, 21 Aug 2001 23:05:23 +0200 (CEST) Date: Tue, 21 Aug 2001 23:05:23 +0200 From: Alexander Langer To: Mike Barcroft , Brian Somers , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/usr.bin/whois Makefile Message-ID: <20010821230523.A2412@zerogravity.kawo2.rwth-aachen.d> References: <200108211933.f7LJXsU48118@hak.lan.Awfulhak.org> <20010821161010.B54853@coffee.q9media.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010821161010.B54853@coffee.q9media.com>; from mike@FreeBSD.org on Tue, Aug 21, 2001 at 04:10:10PM -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus spake Mike Barcroft (mike@FreeBSD.org): > also have other changes coming soon, so I'd appreciate it if any > changes were coordinated through me. I'm just curious, if you submit your changes to the other BSDs as well. whois is a commonly used tool, so I really appreciated to see the features somehow becoming standards :) Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 14:20:47 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 16F0037B409; Tue, 21 Aug 2001 14:20:43 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LLKh829194; Tue, 21 Aug 2001 14:20:43 -0700 (PDT) (envelope-from ache) Message-Id: <200108212120.f7LLKh829194@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Tue, 21 Aug 2001 14:20:43 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/21 14:20:43 PDT Modified files: sys/kern vfs_syscalls.c Log: Make lseek() POSIXed: for non character special files 1) handle off_t overflow with EOVERFLOW 2) handle negative offsets with EINVAL Reviewed by: arch discussion Revision Changes Path 1.199 +21 -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 Aug 21 14:31:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DF31C37B406; Tue, 21 Aug 2001 14:31:27 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LLVRf30136; Tue, 21 Aug 2001 14:31:27 -0700 (PDT) (envelope-from imp) Message-Id: <200108212131.f7LLVRf30136@freefall.freebsd.org> From: Warner Losh Date: Tue, 21 Aug 2001 14:31:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pccard pcic_pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/21 14:31:27 PDT Modified files: sys/pccard pcic_pci.c Log: Report the interrupt path via the sysctl to userland as a string. Submitted by: green Revision Changes Path 1.73 +19 -5 src/sys/pccard/pcic_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 14:35:46 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ABD3837B406; Tue, 21 Aug 2001 14:35:40 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LLZew30373; Tue, 21 Aug 2001 14:35:40 -0700 (PDT) (envelope-from n_hibma) Message-Id: <200108212135.f7LLZew30373@freefall.freebsd.org> From: Nick Hibma Date: Tue, 21 Aug 2001 14:35:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG n_hibma 2001/08/21 14:35:40 PDT Modified files: sys/dev/usb usbdevs Log: Add Mustek, National and Ultima scanners. Submitted by: Henning Meier-Geinitz PR: 29777 MFC after: 1 week Revision Changes Path 1.62 +10 -2 src/sys/dev/usb/usbdevs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 14:37: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EF72337B405; Tue, 21 Aug 2001 14:36:58 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LLawR30559; Tue, 21 Aug 2001 14:36:58 -0700 (PDT) (envelope-from n_hibma) Message-Id: <200108212136.f7LLawR30559@freefall.freebsd.org> From: Nick Hibma Date: Tue, 21 Aug 2001 14:36:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs.h usbdevs_data.h uscanner.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG n_hibma 2001/08/21 14:36:58 PDT Modified files: sys/dev/usb usbdevs.h usbdevs_data.h uscanner.c Log: Regen. National BearPaw 1200 has changed name USB_PRODUCT_NATIONAL_BEARPAW1200. Revision Changes Path 1.78 +10 -2 src/sys/dev/usb/usbdevs.h 1.78 +39 -3 src/sys/dev/usb/usbdevs_data.h 1.15 +7 -5 src/sys/dev/usb/uscanner.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 14:41:20 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 760B537B406; Tue, 21 Aug 2001 14:41:15 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LLfFW31056; Tue, 21 Aug 2001 14:41:15 -0700 (PDT) (envelope-from n_hibma) Message-Id: <200108212141.f7LLfFW31056@freefall.freebsd.org> From: Nick Hibma Date: Tue, 21 Aug 2001 14:41:15 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG n_hibma 2001/08/21 14:41:15 PDT Modified files: sys/dev/usb umass.c Log: Deconfuse a debugging message. Revision Changes Path 1.42 +4 -4 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 Aug 21 14:44:51 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BFE037B40A; Tue, 21 Aug 2001 14:44:48 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LLims31340; Tue, 21 Aug 2001 14:44:48 -0700 (PDT) (envelope-from ache) Message-Id: <200108212144.f7LLims31340@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Tue, 21 Aug 2001 14:44:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys lseek.2 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/21 14:44:48 PDT Modified files: lib/libc/sys lseek.2 Log: Document new EINVAL, EOVERFLOW cases. Sort ERRORS Revision Changes Path 1.16 +10 -4 src/lib/libc/sys/lseek.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 14:47:14 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E0C8937B409; Tue, 21 Aug 2001 14:47:08 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LLl8W31631; Tue, 21 Aug 2001 14:47:08 -0700 (PDT) (envelope-from n_hibma) Message-Id: <200108212147.f7LLl8W31631@freefall.freebsd.org> From: Nick Hibma Date: Tue, 21 Aug 2001 14:47:08 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG n_hibma 2001/08/21 14:47:08 PDT Modified files: sys/dev/usb umass.c Log: Add support for the Microtech CameraMate. Submitted by: Phil Knaack Submitted by: Jim Bryant Revision Changes Path 1.43 +10 -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 Aug 21 14:48:41 2001 Delivered-To: cvs-all@freebsd.org Received: from leviathan.inethouston.net (leviathan.inethouston.net [66.64.12.249]) by hub.freebsd.org (Postfix) with ESMTP id 83D5537B403; Tue, 21 Aug 2001 14:48:29 -0700 (PDT) (envelope-from dwcjr@inethouston.net) Received: by leviathan.inethouston.net (Postfix, from userid 1001) id 6C15A10F42F; Tue, 21 Aug 2001 16:48:33 -0500 (CDT) Date: Tue, 21 Aug 2001 16:48:33 -0500 From: "David W. Chapman Jr." To: Kris Kennaway Cc: Alfred Perlstein , John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h Message-ID: <20010821164833.D58026@leviathan.inethouston.net> Reply-To: "David W. Chapman Jr." Mail-Followup-To: Kris Kennaway , Alfred Perlstein , John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200108211842.f7LIgkp03186@freefall.freebsd.org> <20010821134601.J81307@elvis.mu.org> <20010821124428.B17739@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010821124428.B17739@xor.obsecurity.org> User-Agent: Mutt/1.3.20i X-Operating-System: FreeBSD 4.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Aug 21, 2001 at 12:44:28PM -0700, Kris Kennaway wrote: > On Tue, Aug 21, 2001 at 01:46:01PM -0500, Alfred Perlstein wrote: > > > How likely are these sort of fixes going to be able to help > > the perceived instability of -current? Is -current noticeably > > unstable or do we just have the usual crowd of people screaming > > sort of like what was going on a couple of months ago. > > > > "current is broken" > > "no it's not" > > "yes it is" > > "give me a crashdump" > > ":P" > > Most of the problems I was having weren't easily reproducible or didnt > cause panics, just lockups :-( > I am getting some lockups too, but they only last for around 30 seconds, sometimes they get so bad I get a BUS I/O Error when I try to do anything in some applications during the lockup. -- David W. Chapman Jr. dwcjr@inethouston.net Raintree Network Services, Inc. dwcjr@freebsd.org FreeBSD Committer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 14:50: 1 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9DAEF37B40A; Tue, 21 Aug 2001 14:49:55 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LLnt631939; Tue, 21 Aug 2001 14:49:55 -0700 (PDT) (envelope-from des) Message-Id: <200108212149.f7LLnt631939@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 21 Aug 2001 14:49:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/inn-stable Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2001/08/21 14:49:55 PDT Modified files: news/inn-stable Makefile distinfo Log: Upgrade to 2.3.20010821 Revision Changes Path 1.71 +2 -2 ports/news/inn-stable/Makefile 1.28 +1 -1 ports/news/inn-stable/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 15: 0:42 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B0FC637B40B; Tue, 21 Aug 2001 15:00:35 -0700 (PDT) (envelope-from jmas@FreeBSD.org) Received: (from jmas@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LM0Zk33551; Tue, 21 Aug 2001 15:00:35 -0700 (PDT) (envelope-from jmas) Message-Id: <200108212200.f7LM0Zk33551@freefall.freebsd.org> From: "Jose M. Alcaide" Date: Tue, 21 Aug 2001 15:00:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/tcpflow Makefile distinfo ports/net/tcpflow/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jmas 2001/08/21 15:00:35 PDT Modified files: net/tcpflow Makefile distinfo Removed files: net/tcpflow/files patch-aa Log: Upgrade to 0.20 Revision Changes Path 1.7 +2 -2 ports/net/tcpflow/Makefile 1.2 +1 -1 ports/net/tcpflow/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 15: 3:25 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 26D5A37B403; Tue, 21 Aug 2001 15:03:19 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LM3JN33830; Tue, 21 Aug 2001 15:03:19 -0700 (PDT) (envelope-from n_hibma) Message-Id: <200108212203.f7LM3JN33830@freefall.freebsd.org> From: Nick Hibma Date: Tue, 21 Aug 2001 15:03:19 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG n_hibma 2001/08/21 15:03:19 PDT Modified files: sys/dev/usb umass.c Log: Support for the HP 8200e CD writer. (commented out) Submitted by: Heath Nielson Revision Changes Path 1.44 +13 -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 Aug 21 15: 4:46 2001 Delivered-To: cvs-all@freebsd.org Received: from elvis.mu.org (elvis.mu.org [216.33.66.196]) by hub.freebsd.org (Postfix) with ESMTP id 269E037B406; Tue, 21 Aug 2001 15:04:36 -0700 (PDT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 0609281D0A; Tue, 21 Aug 2001 17:04:21 -0500 (CDT) Date: Tue, 21 Aug 2001 17:04:21 -0500 From: Alfred Perlstein To: Kris Kennaway , John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h Message-ID: <20010821170420.L81307@elvis.mu.org> References: <200108211842.f7LIgkp03186@freefall.freebsd.org> <20010821134601.J81307@elvis.mu.org> <20010821124428.B17739@xor.obsecurity.org> <20010821164833.D58026@leviathan.inethouston.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010821164833.D58026@leviathan.inethouston.net>; from dwcjr@inethouston.net on Tue, Aug 21, 2001 at 04:48:33PM -0500 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * David W. Chapman Jr. [010821 16:48] wrote: > On Tue, Aug 21, 2001 at 12:44:28PM -0700, Kris Kennaway wrote: > > On Tue, Aug 21, 2001 at 01:46:01PM -0500, Alfred Perlstein wrote: > > > > > How likely are these sort of fixes going to be able to help > > > the perceived instability of -current? Is -current noticeably > > > unstable or do we just have the usual crowd of people screaming > > > sort of like what was going on a couple of months ago. > > > > > > "current is broken" > > > "no it's not" > > > "yes it is" > > > "give me a crashdump" > > > ":P" > > > > Most of the problems I was having weren't easily reproducible or didnt > > cause panics, just lockups :-( > > > I am getting some lockups too, but they only last for around 30 > seconds, sometimes they get so bad I get a BUS I/O Error when I try > to do anything in some applications during the lockup. This is a pretty useless bug report. Please read the section in the handbook about kernel debugging and get us a useful traceback/crashdump as well as systat type info. -- -Alfred Perlstein [alfred@freebsd.org] Ok, who wrote this damn function called '??'? And why do my programs keep crashing in it? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 15:13:42 2001 Delivered-To: cvs-all@freebsd.org Received: from peitho.fxp.org (peitho.fxp.org [209.26.95.40]) by hub.freebsd.org (Postfix) with ESMTP id 6208D37B405; Tue, 21 Aug 2001 15:13:33 -0700 (PDT) (envelope-from cdf.lists@fxp.org) Received: by peitho.fxp.org (Postfix, from userid 1501) id 134231361D; Tue, 21 Aug 2001 18:13:33 -0400 (EDT) Date: Tue, 21 Aug 2001 18:13:32 -0400 From: Chris Faulhaber To: Alexander Langer Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/sysutils/xcdroast Makefile pkg-plist ports/sysutils/xcdroast/files patch-Makefile Message-ID: <20010821181332.A3971@peitho.fxp.org> References: <200108211950.f7LJo2B13278@freefall.freebsd.org> <20010821221705.A860@zerogravity.kawo2.rwth-aachen.d> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="4Ckj6UjgE2iN1+kY" Content-Disposition: inline In-Reply-To: <20010821221705.A860@zerogravity.kawo2.rwth-aachen.d> User-Agent: Mutt/1.3.20i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --4Ckj6UjgE2iN1+kY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 21, 2001 at 10:17:05PM +0200, Alexander Langer wrote: > Thus spake Alexander Langer (alex@FreeBSD.org): >=20 > > sysutils/xcdroast Makefile pkg-plist=20 > > sysutils/xcdroast/files patch-Makefile=20 > > Log: > > More fixes: >=20 > ... all submitted by MAINTAINER. >=20 > > - chown root:cdwrite various utilities used by xcdroast, such as > > cdrecord, and set them chmod 4710. I don't know if I like this. > > Opinions (Security Officer?)? >=20 > What about this? >=20 Does it actually need root permissions or simply proper permissions on the device(s). If the latter, can we not simply remind them to set the appropriate permissions on the applicable devices and use groups like the Unix gods intended? --=20 Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.FreeBSD.org --4Ckj6UjgE2iN1+kY Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: FreeBSD: The Power To Serve iEYEARECAAYFAjuC3QwACgkQObaG4P6BelCU6gCdHNvxUH0rKME2Ggx1KOwQbInT owUAnAz5TiXrOBsJ9iRd6TvXRHqXduNb =rskv -----END PGP SIGNATURE----- --4Ckj6UjgE2iN1+kY-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 15:14: 7 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CD00537B409; Tue, 21 Aug 2001 15:14:01 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LMDwV37864; Tue, 21 Aug 2001 15:13:58 -0700 (PDT) (envelope-from n_hibma) Message-Id: <200108212213.f7LMDwV37864@freefall.freebsd.org> From: Nick Hibma Date: Tue, 21 Aug 2001 15:13:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/cam/scsi scsi_da.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG n_hibma 2001/08/21 15:13:57 PDT Modified files: sys/cam/scsi scsi_da.c Log: Add quirks for the Olympus Digital Camera. PR: 26295 Add quirks for the Microtech CameraMate. Revision Changes Path 1.76 +17 -2 src/sys/cam/scsi/scsi_da.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 15:14:22 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C8EC37B405; Tue, 21 Aug 2001 15:14:13 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LMEDJ37950; Tue, 21 Aug 2001 15:14:13 -0700 (PDT) (envelope-from peter) Message-Id: <200108212214.f7LMEDJ37950@freefall.freebsd.org> From: Peter Wemm Date: Tue, 21 Aug 2001 15:14:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/include globals.h src/sys/ia64/include globals.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/21 15:14:13 PDT Modified files: sys/alpha/include globals.h sys/ia64/include globals.h Log: Strip out some #if's for old implementations of global data pointers. Revision Changes Path 1.8 +1 -5 src/sys/alpha/include/globals.h 1.7 +1 -5 src/sys/ia64/include/globals.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 15:14:54 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 54EF837B409; Tue, 21 Aug 2001 15:14:47 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LMElU38057; Tue, 21 Aug 2001 15:14:47 -0700 (PDT) (envelope-from alex) Message-Id: <200108212214.f7LMElU38057@freefall.freebsd.org> From: Alexander Langer Date: Tue, 21 Aug 2001 15:14:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 DRIVER_MODULE.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alex 2001/08/21 15:14:47 PDT Modified files: share/man/man9 DRIVER_MODULE.9 Log: Add MULTI_DRIVER_MODULE(). Revision Changes Path 1.8 +7 -1 src/share/man/man9/DRIVER_MODULE.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 15:16:52 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7AC0437B405; Tue, 21 Aug 2001 15:16:47 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LMGlD38309; Tue, 21 Aug 2001 15:16:47 -0700 (PDT) (envelope-from n_hibma) Message-Id: <200108212216.f7LMGlD38309@freefall.freebsd.org> From: Nick Hibma Date: Tue, 21 Aug 2001 15:16:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uscanner.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG n_hibma 2001/08/21 15:16:47 PDT Modified files: sys/dev/usb uscanner.c Log: Add support for the HP 4300C scanner. Submitted by: Ernst de Haan Revision Changes Path 1.16 +2 -1 src/sys/dev/usb/uscanner.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 15:17:55 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F07D937B405; Tue, 21 Aug 2001 15:17:47 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LMHlF38522; Tue, 21 Aug 2001 15:17:47 -0700 (PDT) (envelope-from alex) Message-Id: <200108212217.f7LMHlF38522@freefall.freebsd.org> From: Alexander Langer Date: Tue, 21 Aug 2001 15:17:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alex 2001/08/21 15:17:47 PDT Modified files: share/man/man9 Makefile Log: Link MULTI_DRIVER_MODULE.9 to DRIVER_MODULE.9 Revision Changes Path 1.133 +2 -1 src/share/man/man9/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 15:21: 0 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 50B6637B40D; Tue, 21 Aug 2001 15:20:50 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LMKo839091; Tue, 21 Aug 2001 15:20:50 -0700 (PDT) (envelope-from n_hibma) Message-Id: <200108212220.f7LMKo839091@freefall.freebsd.org> From: Nick Hibma Date: Tue, 21 Aug 2001 15:20:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb if_aue.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG n_hibma 2001/08/21 15:20:50 PDT Modified files: sys/dev/usb if_aue.c Log: Add support for the I-O DATA USB-ET/TX(USB Ethernet adapter) PR: 27792 Revision Changes Path 1.40 +4 -3 src/sys/dev/usb/if_aue.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 15:26: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B737937B406; Tue, 21 Aug 2001 15:26:02 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LMQ2539757; Tue, 21 Aug 2001 15:26:02 -0700 (PDT) (envelope-from bmah) Message-Id: <200108212226.f7LMQ2539757@freefall.freebsd.org> From: "Bruce A. Mah" Date: Tue, 21 Aug 2001 15:26:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2001/08/21 15:26:02 PDT Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release note: SA-01:54. Revision Changes Path 1.108 +6 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 15:27:41 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C4DD237B405; Tue, 21 Aug 2001 15:27:35 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LMRZA40102; Tue, 21 Aug 2001 15:27:35 -0700 (PDT) (envelope-from bmah) Message-Id: <200108212227.f7LMRZA40102@freefall.freebsd.org> From: "Bruce A. Mah" Date: Tue, 21 Aug 2001 15:27:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2001/08/21 15:27:35 PDT Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/errata article.sgml release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: SA-01:54 (and update for errata). Approved by: murray (implicitly) Revision Changes Path 1.1.2.15 +6 -1 src/release/doc/en_US.ISO8859-1/errata/article.sgml 1.22.2.68 +6 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 15:32: 5 2001 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 ADB9437B403; Tue, 21 Aug 2001 15:31:57 -0700 (PDT) (envelope-from des@ofug.org) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id AAA01459; Wed, 22 Aug 2001 00:31:54 +0200 (CEST) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Alfred Perlstein Cc: John Baldwin , Matt Dillon , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h References: <200108211842.f7LIgkp03186@freefall.freebsd.org> <20010821134601.J81307@elvis.mu.org> From: Dag-Erling Smorgrav Date: 22 Aug 2001 00:31:52 +0200 In-Reply-To: Message-ID: Lines: 18 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dag-Erling Smorgrav writes: > I don't think -CURRENT is particularly unstable, but it seems to have > issues with resource allocations that only affect certain motherboards > or chipsets. It's been getting steadily worse since the beginning of > June - first my floppy drive stopped working, then I started getting > massive ISA interrupt lossage (but only after a few hours of uptime), > then my floppy drive stopped even attaching. I haven't had a single > crash, though. Interesting Fact Of The Day: I just noticed that the syncer process is eating up heaps of CPU, (5%-10% continuously, even when the system is idle and there is *no* disk activity), and that running sync(1) hangs the machine for a couple of seconds and causes sio and kbd interrupts to be lost. Maybe the removal of vm_mtx is the culprit? DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 15:34:59 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 026DE37B40D; Tue, 21 Aug 2001 15:34:45 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LMYi141428; Tue, 21 Aug 2001 15:34:44 -0700 (PDT) (envelope-from bmah) Message-Id: <200108212234.f7LMYi141428@freefall.freebsd.org> From: "Bruce A. Mah" Date: Tue, 21 Aug 2001 15:34:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/4.3R errata.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2001/08/21 15:34:44 PDT Modified files: en/releases/4.3R errata.sgml Log: Add SA-01:54 to 4.3-RELEASE errata. Revision Changes Path 1.13 +7 -2 www/en/releases/4.3R/errata.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 15:37: 6 2001 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 0B85137B403; Tue, 21 Aug 2001 15:36:57 -0700 (PDT) (envelope-from des@ofug.org) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id AAA01495; Wed, 22 Aug 2001 00:36:54 +0200 (CEST) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Alfred Perlstein Cc: John Baldwin , Matt Dillon , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h References: <200108211842.f7LIgkp03186@freefall.freebsd.org> <20010821134601.J81307@elvis.mu.org> From: Dag-Erling Smorgrav Date: 22 Aug 2001 00:36:53 +0200 In-Reply-To: Message-ID: Lines: 15 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dag-Erling Smorgrav writes: > Interesting Fact Of The Day: I just noticed that the syncer process is > eating up heaps of CPU 8% averaged over the machine's uptime, in fact: root@des /sys/kern# uptime 12:31AM up 5 days, 10:27, 7 users, load averages: 1.94, 1.57, 1.69 root@des /sys/kern# ps -axlp 5 UID PID PPID CPU PRI NI VSZ RSS WCHAN STAT TT TIME COMMAND 0 5 0 142 20 0 0 0 syncer DL ?? 629:49.14 (syncer) DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 15:39:12 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F93C37B405; Tue, 21 Aug 2001 15:39:07 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LMd7U41916; Tue, 21 Aug 2001 15:39:07 -0700 (PDT) (envelope-from n_hibma) Message-Id: <200108212239.f7LMd7U41916@freefall.freebsd.org> From: Nick Hibma Date: Tue, 21 Aug 2001 15:39:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.c uhci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG n_hibma 2001/08/21 15:39:07 PDT Modified files: sys/dev/usb ohci.c uhci.c Log: Find spurious interrupts. Revision Changes Path 1.51 +3 -1 src/sys/dev/usb/ohci.c 1.58 +10 -4 src/sys/dev/usb/uhci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 15:54:35 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 02FD937B40A; Tue, 21 Aug 2001 15:54:24 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LMsNW43296; Tue, 21 Aug 2001 15:54:23 -0700 (PDT) (envelope-from obrien) Message-Id: <200108212254.f7LMsNW43296@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 21 Aug 2001 15:54:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/stlport Makefile ports/devel/stlport/files patch-cwchar X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/21 15:54:13 PDT Modified files: devel/stlport Makefile Removed files: devel/stlport/files patch-cwchar Log: Fix the STLport. It now compiles on 5-current and RELENG_4 !! Revision Changes Path 1.13 +2 -4 ports/devel/stlport/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 15:54:54 2001 Delivered-To: cvs-all@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id 9844E37B405; Tue, 21 Aug 2001 15:54:48 -0700 (PDT) (envelope-from dillon@earth.backplane.com) Received: (from dillon@localhost) by earth.backplane.com (8.11.4/8.11.2) id f7LMsFQ68740; Tue, 21 Aug 2001 15:54:15 -0700 (PDT) (envelope-from dillon) Date: Tue, 21 Aug 2001 15:54:15 -0700 (PDT) From: Matt Dillon Message-Id: <200108212254.f7LMsFQ68740@earth.backplane.com> To: Dag-Erling Smorgrav Cc: Alfred Perlstein , John Baldwin , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h References: <200108211842.f7LIgkp03186@freefall.freebsd.org> <20010821134601.J81307@elvis.mu.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG :Dag-Erling Smorgrav writes: :> Interesting Fact Of The Day: I just noticed that the syncer process is :> eating up heaps of CPU : :8% averaged over the machine's uptime, in fact: : :root@des /sys/kern# uptime :12:31AM up 5 days, 10:27, 7 users, load averages: 1.94, 1.57, 1.69 :root@des /sys/kern# ps -axlp 5 : UID PID PPID CPU PRI NI VSZ RSS WCHAN STAT TT TIME COMMAND : 0 5 0 142 20 0 0 0 syncer DL ?? 629:49.14 (syncer) : :DES :-- :Dag-Erling Smorgrav - des@ofug.org vm_mtx could not be responsible for a constant 8% cpu utilization by the syncer on an idle machine. Something is seriously whacked. I might be able to diagnose it with root access (and a kernel.debug) to the machine in question, or if you have a way of reproducing it I can try to reproduce it on one of my boxes. The syncer is not typically fragile. The only thing I can think of that could cause something like this to happen is if 'rushjob' (aka speedup_syncer()) is being called continuously. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 15:55:26 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B8E737B405; Tue, 21 Aug 2001 15:55:20 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LMtKG43424; Tue, 21 Aug 2001 15:55:20 -0700 (PDT) (envelope-from jhb) Message-Id: <200108212255.f7LMtKG43424@freefall.freebsd.org> From: John Baldwin Date: Tue, 21 Aug 2001 15:55:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_shutdown.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/21 15:55:20 PDT Modified files: sys/kern kern_shutdown.c Log: Allow one to restart from a panic in DDB by clearing the panicstr variable to NULL. Note that since panic() is marked with __dead2, this has somewhat unpredictable results at best. Revision Changes Path 1.104 +19 -7 src/sys/kern/kern_shutdown.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 16: 4:13 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 94D1437B409; Tue, 21 Aug 2001 16:04:09 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LN49M44308; Tue, 21 Aug 2001 16:04:09 -0700 (PDT) (envelope-from obrien) Message-Id: <200108212304.f7LN49M44308@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 21 Aug 2001 16:04:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.sys.mk src/etc/defaults make.conf src/share/man/man5 make.conf.5 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/21 16:04:08 PDT Modified files: (Branch: RELENG_4) share/mk bsd.sys.mk etc/defaults make.conf share/man/man5 make.conf.5 Log: Add the `WARNS_WERROR' knob which makes WARNS act as in 5-CURRENT. Approved by: re Revision Changes Path 1.3.2.3 +5 -2 src/share/mk/bsd.sys.mk 1.97.2.57 +5 -1 src/etc/defaults/make.conf 1.12.2.10 +5 -1 src/share/man/man5/make.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 16:10:48 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BD7CE37B405; Tue, 21 Aug 2001 16:10:38 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LNAcS47621; Tue, 21 Aug 2001 16:10:38 -0700 (PDT) (envelope-from jhb) Message-Id: <200108212310.f7LNAcS47621@freefall.freebsd.org> From: John Baldwin Date: Tue, 21 Aug 2001 16:10:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_synch.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/21 16:10:38 PDT Modified files: sys/kern kern_synch.c Log: Release the sched_lock before bombing out in mi_switch() via db_error(). This makes things slightly easier if you call a function that calls mi_switch() as it keeps the locking before and after closer. Revision Changes Path 1.158 +4 -2 src/sys/kern/kern_synch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 16:12:43 2001 Delivered-To: cvs-all@freebsd.org Received: from franklin.physics.purdue.edu (franklin.physics.purdue.edu [128.210.146.222]) by hub.freebsd.org (Postfix) with ESMTP id 4E24E37B401; Tue, 21 Aug 2001 16:12:35 -0700 (PDT) (envelope-from will@physics.purdue.edu) Received: from physics.purdue.edu (bohr.physics.purdue.edu [128.210.67.12]) by franklin.physics.purdue.edu (Postfix) with ESMTP id 22FFA20F08; Tue, 21 Aug 2001 18:14:16 -0500 (EST) Received: by physics.purdue.edu (Postfix, from userid 12409) id 540365BC3; Tue, 21 Aug 2001 18:14:30 -0500 (EST) Date: Tue, 21 Aug 2001 18:14:30 -0500 From: Will Andrews To: Boris Popov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/fs/smbfs smbfs_vnops.c Message-ID: <20010821181430.A35352@bohr.physics.purdue.edu> Reply-To: Will Andrews Mail-Followup-To: Boris Popov , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200108210825.f7L8P9I76680@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.17i In-Reply-To: <200108210825.f7L8P9I76680@freefall.freebsd.org>; from bp@FreeBSD.org on Tue, Aug 21, 2001 at 01:25:09AM -0700 X-Operating-System: FreeBSD 4.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Aug 21, 2001 at 01:25:09AM -0700, Boris Popov (bp@FreeBSD.org) wrote: > Log: > [...] > Obtained from: Mac OS X You mean Darwin? -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 16:15:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D77AD37B40D; Tue, 21 Aug 2001 16:15:25 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LNFPi47996; Tue, 21 Aug 2001 16:15:25 -0700 (PDT) (envelope-from jhb) Message-Id: <200108212315.f7LNFPi47996@freefall.freebsd.org> From: John Baldwin Date: Tue, 21 Aug 2001 16:15:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 trap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/21 16:15:25 PDT Modified files: sys/i386/i386 trap.c Log: Push down Giant some in trap_pfault() so we don't grab Giant around trap_fatal() to make restarting from panic's slightly easier. Before if one did 'w 0 0' in ddb, the longjmp in ddb inside of trap_fatal() would result in Giant being held (or recursed one level deeper) which led to problems later on. You can now drop to teh debugger, do 'w 0 0', and continue w/o a problem. Revision Changes Path 1.199 +6 -5 src/sys/i386/i386/trap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 16:25:20 2001 Delivered-To: cvs-all@freebsd.org Received: from InterJet.elischer.org (c421509-a.pinol1.sfba.home.com [24.7.86.9]) by hub.freebsd.org (Postfix) with ESMTP id 0158337B409; Tue, 21 Aug 2001 16:24:55 -0700 (PDT) (envelope-from julian@elischer.org) Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id QAA44451; Tue, 21 Aug 2001 16:35:37 -0700 (PDT) Date: Tue, 21 Aug 2001 16:35:37 -0700 (PDT) From: Julian Elischer To: John Baldwin Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_synch.c In-Reply-To: <200108212310.f7LNAcS47621@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hmmmm... I wonder if this will help me figure out what aht f*ck is going on.. On Tue, 21 Aug 2001, John Baldwin wrote: > jhb 2001/08/21 16:10:38 PDT > > Modified files: > sys/kern kern_synch.c > Log: > Release the sched_lock before bombing out in mi_switch() via db_error(). > This makes things slightly easier if you call a function that calls > mi_switch() as it keeps the locking before and after closer. > > Revision Changes Path > 1.158 +4 -2 src/sys/kern/kern_synch.c > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 16:26:44 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 25C9737B409; Tue, 21 Aug 2001 16:26:30 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7LNQTv28391; Wed, 22 Aug 2001 00:26:29 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7LNQHU51685; Wed, 22 Aug 2001 00:26:17 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108212326.f7LNQHU51685@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Nick Hibma Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/sys/dev/usb umass.c In-Reply-To: Message from Nick Hibma of "Tue, 21 Aug 2001 15:03:19 PDT." <200108212203.f7LM3JN33830@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 22 Aug 2001 00:26:17 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > n_hibma 2001/08/21 15:03:19 PDT > > Modified files: > sys/dev/usb umass.c > Log: > Support for the HP 8200e CD writer. (commented out) > > Submitted by: Heath Nielson > > Revision Changes Path > 1.44 +13 -1 src/sys/dev/usb/umass.c Hmm, aren't the 8200 devices ATAPI ? Does this mean ATAPI works these days ? -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 16:29:49 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D1DD537B407; Tue, 21 Aug 2001 16:29:40 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LNTeW49116; Tue, 21 Aug 2001 16:29:40 -0700 (PDT) (envelope-from jhb) Message-Id: <200108212329.f7LNTeW49116@freefall.freebsd.org> From: John Baldwin Date: Tue, 21 Aug 2001 16:29:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_shutdown.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/21 16:29:40 PDT Modified files: sys/kern kern_shutdown.c Log: Clear db_active in boot() so that one can call the boot function (as well as use the panic command) w/o having to manually clear db_active first to avoid the db_error() in mi_switch(). Revision Changes Path 1.105 +9 -1 src/sys/kern/kern_shutdown.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 16:36: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 426D637B410; Tue, 21 Aug 2001 16:35:56 -0700 (PDT) (envelope-from nik@FreeBSD.org) Received: (from nik@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LNZuJ49601; Tue, 21 Aug 2001 16:35:56 -0700 (PDT) (envelope-from nik) Message-Id: <200108212335.f7LNZuJ49601@freefall.freebsd.org> From: Nik Clayton Date: Tue, 21 Aug 2001 16:35:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/install disk-layout.kil disk-layout.eps X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nik 2001/08/21 16:35:55 PDT Added files: en_US.ISO8859-1/books/handbook/install disk-layout.kil disk-layout.eps Log: EPS file (and it's Kontour original) that diagrams the relationship between a disk, its slices, and its partitions. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 16:38:13 2001 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 747F237B40B; Tue, 21 Aug 2001 16:37:57 -0700 (PDT) (envelope-from des@ofug.org) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id BAA01812; Wed, 22 Aug 2001 01:37:52 +0200 (CEST) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Matt Dillon Cc: Alfred Perlstein , John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h References: <200108211842.f7LIgkp03186@freefall.freebsd.org> <20010821134601.J81307@elvis.mu.org> <200108212254.f7LMsFQ68740@earth.backplane.com> From: Dag-Erling Smorgrav Date: 22 Aug 2001 01:37:52 +0200 In-Reply-To: <200108212254.f7LMsFQ68740@earth.backplane.com> Message-ID: Lines: 23 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Matt Dillon writes: > :8% averaged over the machine's uptime, in fact: > : > :root@des /sys/kern# uptime > :12:31AM up 5 days, 10:27, 7 users, load averages: 1.94, 1.57, 1.69 > :root@des /sys/kern# ps -axlp 5 > : UID PID PPID CPU PRI NI VSZ RSS WCHAN STAT TT TIME COMMAND > : 0 5 0 142 20 0 0 0 syncer DL ?? 629:49.14 (syncer) > [...] > The syncer is not typically fragile. The only thing I can think of > that could cause something like this to happen is if 'rushjob' > (aka speedup_syncer()) is being called continuously. After some discussion with jhb on IRC, I rebooted in single-user mode and ran 'fsck -y' on all file systems. It found several unreferenced directories and files on / and /home, and a handful of incorrect link counts. Background fsck is now off, and I'm somewhat confident my interrupt latency problems will not resurface, though it's too early to tell. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 16:38:38 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E883337B40D; Tue, 21 Aug 2001 16:38:29 -0700 (PDT) (envelope-from nik@FreeBSD.org) Received: (from nik@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LNcTu49879; Tue, 21 Aug 2001 16:38:29 -0700 (PDT) (envelope-from nik) Message-Id: <200108212338.f7LNcTu49879@freefall.freebsd.org> From: Nik Clayton Date: Tue, 21 Aug 2001 16:38:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nik 2001/08/21 16:38:29 PDT Modified files: en_US.ISO8859-1/books/handbook Makefile Log: List disk-layout.eps in IMAGES. Revision Changes Path 1.45 +2 -1 doc/en_US.ISO8859-1/books/handbook/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 16:39:32 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C551537B410; Tue, 21 Aug 2001 16:39:26 -0700 (PDT) (envelope-from nik@FreeBSD.org) Received: (from nik@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LNdQY49970; Tue, 21 Aug 2001 16:39:26 -0700 (PDT) (envelope-from nik) Message-Id: <200108212339.f7LNdQY49970@freefall.freebsd.org> From: Nik Clayton Date: Tue, 21 Aug 2001 16:39:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/install disklabel-root2.scr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nik 2001/08/21 16:39:26 PDT Modified files: en_US.ISO8859-1/books/handbook/install disklabel-root2.scr Log: Change the size of the root filesystem shown to 64MB. Revision Changes Path 1.2 +1 -1 doc/en_US.ISO8859-1/books/handbook/install/disklabel-root2.scr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 16:42:58 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B9BBF37B409; Tue, 21 Aug 2001 16:42:46 -0700 (PDT) (envelope-from nik@FreeBSD.org) Received: (from nik@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LNgk950374; Tue, 21 Aug 2001 16:42:46 -0700 (PDT) (envelope-from nik) Message-Id: <200108212342.f7LNgk950374@freefall.freebsd.org> From: Nik Clayton Date: Tue, 21 Aug 2001 16:42:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/install chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nik 2001/08/21 16:42:45 PDT Modified files: en_US.ISO8859-1/books/handbook/install chapter.sgml Log: Add in a reference to disk-layout.eps, replacing the ASCII art for non-text users. Add much more information about the process of labelling a slice to create partitions. Revision Changes Path 1.95 +312 -115 doc/en_US.ISO8859-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 Aug 21 16:43: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E0C837B432; Tue, 21 Aug 2001 16:42:51 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LNgp150408; Tue, 21 Aug 2001 16:42:51 -0700 (PDT) (envelope-from murray) Message-Id: <200108212342.f7LNgp150408@freefall.freebsd.org> From: Murray Stokely Date: Tue, 21 Aug 2001 16:42:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/basics chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2001/08/21 16:42:51 PDT Modified files: en_US.ISO8859-1/books/handbook/basics chapter.sgml Log: Fix typo to form a complete sentence. Revision Changes Path 1.42 +2 -2 doc/en_US.ISO8859-1/books/handbook/basics/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 Aug 21 16:44:20 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F8CF37B40D; Tue, 21 Aug 2001 16:44:13 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7LNiDB50552; Tue, 21 Aug 2001 16:44:13 -0700 (PDT) (envelope-from murray) Message-Id: <200108212344.f7LNiDB50552@freefall.freebsd.org> From: Murray Stokely Date: Tue, 21 Aug 2001 16:44:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/l10n chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2001/08/21 16:44:13 PDT Modified files: en_US.ISO8859-1/books/handbook/l10n chapter.sgml Log: Reword part of the synopsis in a slightly more formal way. Remove a "Should you have any questions or suggestions, please email the author" line that doesn't belong in an individual chapter. Revision Changes Path 1.67 +5 -9 doc/en_US.ISO8859-1/books/handbook/l10n/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 Aug 21 16:45: 7 2001 Delivered-To: cvs-all@freebsd.org Received: from InterJet.elischer.org (c421509-a.pinol1.sfba.home.com [24.7.86.9]) by hub.freebsd.org (Postfix) with ESMTP id 643C437B40D; Tue, 21 Aug 2001 16:44:58 -0700 (PDT) (envelope-from julian@elischer.org) Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id QAA44505; Tue, 21 Aug 2001 16:43:13 -0700 (PDT) Date: Tue, 21 Aug 2001 16:43:12 -0700 (PDT) From: Julian Elischer To: cvs-committers@FreeBSD.org Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_synch.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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sorry that last one was not supposed to be to everyone... > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 17:18:59 2001 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-7.dsl.lsan03.pacbell.net [63.207.60.7]) by hub.freebsd.org (Postfix) with ESMTP id D11C137B407; Tue, 21 Aug 2001 17:18:33 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 19F6166D1C; Tue, 21 Aug 2001 17:18:33 -0700 (PDT) Date: Tue, 21 Aug 2001 17:18:33 -0700 From: Kris Kennaway To: Alfred Perlstein Cc: Kris Kennaway , John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h Message-ID: <20010821171832.B22330@xor.obsecurity.org> References: <200108211842.f7LIgkp03186@freefall.freebsd.org> <20010821134601.J81307@elvis.mu.org> <20010821124428.B17739@xor.obsecurity.org> <20010821164833.D58026@leviathan.inethouston.net> <20010821170420.L81307@elvis.mu.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="Fba/0zbH8Xs+Fj9o" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010821170420.L81307@elvis.mu.org>; from bright@mu.org on Tue, Aug 21, 2001 at 05:04:21PM -0500 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --Fba/0zbH8Xs+Fj9o Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 21, 2001 at 05:04:21PM -0500, Alfred Perlstein wrote: > * David W. Chapman Jr. [010821 16:48] wrote: > > On Tue, Aug 21, 2001 at 12:44:28PM -0700, Kris Kennaway wrote: > > > On Tue, Aug 21, 2001 at 01:46:01PM -0500, Alfred Perlstein wrote: > > >=20 > > > > How likely are these sort of fixes going to be able to help > > > > the perceived instability of -current? Is -current noticeably > > > > unstable or do we just have the usual crowd of people screaming > > > > sort of like what was going on a couple of months ago. > > > >=20 > > > > "current is broken" > > > > "no it's not" > > > > "yes it is" > > > > "give me a crashdump" > > > > ":P" > > >=20 > > > Most of the problems I was having weren't easily reproducible or didnt > > > cause panics, just lockups :-( > > >=20 > > I am getting some lockups too, but they only last for around 30=20 > > seconds, sometimes they get so bad I get a BUS I/O Error when I try=20 > > to do anything in some applications during the lockup. >=20 > This is a pretty useless bug report. >=20 > Please read the section in the handbook about kernel debugging > and get us a useful traceback/crashdump as well as systat type > info. This is the same problem I have. It's not a panic, so there's no traceback to obtain, and DDB is locked out for the duration of the freeze, and doesn't show anything useful I can determine once the system unfreezes. Kris --Fba/0zbH8Xs+Fj9o Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE7gvpXWry0BWjoQKURAmcfAKDj+1XmnrItzofqA82jnowUGME9JwCgkRgi n96ZhD/oo1jg0fd238JeeUw= =coea -----END PGP SIGNATURE----- --Fba/0zbH8Xs+Fj9o-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 17:21: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.netbeat.de (mail.netbeat.de [212.6.214.38]) by hub.freebsd.org (Postfix) with SMTP id 022C537B40D for ; Tue, 21 Aug 2001 17:20:59 -0700 (PDT) (envelope-from lehmann@ans-netz.de) Received: (qmail 21583 invoked from network); 22 Aug 2001 00:30:02 -0000 Received: from p3ee39107.dip.t-dialin.net (HELO olli.homeip.net) (62.227.145.7) by mail.netbeat.de with SMTP; 22 Aug 2001 00:30:02 -0000 Received: (qmail 8601 invoked by uid 83); 22 Aug 2001 00:24:39 -0000 Received: from unknown (HELO sina.sesamestreet.net) (192.168.0.200) by ernie.sesamestreet.net with SMTP; 22 Aug 2001 00:24:39 -0000 Date: Wed, 22 Aug 2001 02:23:17 +0200 From: Oliver Lehmann To: cvs-committers@FreeBSD.org Cc: cvs-all@freebsd.org Subject: Re: [Fwd: Re: cvs commit: ports/sysutils/xcdroast Makefile pkg-plist ports/sysutils/xcdroast/files patch-Makefile] Message-Id: <20010822022317.5cb08144.lehmann@ans-netz.de> X-Mailer: Sylpheed version 0.5.3cvs4 (GTK+ 1.2.10; i386-unknown-freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In article <20010821181332.A3971@peitho.fxp.org>, "Chris Faulhaber" wrote: > Does it actually need root permissions or simply proper permissions on > the device(s). If the latter, can we not simply remind them to set the > appropriate permissions on the applicable devices and use groups like > the Unix gods intended? > It (better cdrecord, readcd and cdda2wav) needs read/write permission on /dev/xpt* and /dev/pass* I've tryed it as normal user, and set (for these test only) a+rw modes on these devices. I don't know a solution on this way yet I've submitted an PR (http://www.freebsd.org/cgi/query-pr.cgi?pr=29939), which change the default install to root only (and display a security risc warning) . The Makefile has also a "enable-nonroot" target to change the Filemodes and create the group "cdwrite". Greetings Olli -- "I know not with what weapons World War III will be fought, but World War IV will be fought with sticks and stones." -- Albert Einstein To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 17:26:22 2001 Delivered-To: cvs-all@freebsd.org Received: from tao.org.uk (genesis.tao.org.uk [212.135.162.62]) by hub.freebsd.org (Postfix) with ESMTP id DAF7537B407; Tue, 21 Aug 2001 17:26:01 -0700 (PDT) (envelope-from joe@tao.org.uk) Received: by tao.org.uk (Postfix, from userid 100) id 745AC309; Wed, 22 Aug 2001 01:26:00 +0100 (BST) Date: Wed, 22 Aug 2001 01:26:00 +0100 From: Josef Karthauser To: Alfred Perlstein Cc: John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h Message-ID: <20010822012600.B17225@tao.org.uk> References: <200108211842.f7LIgkp03186@freefall.freebsd.org> <20010821134601.J81307@elvis.mu.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="DKU6Jbt7q3WqK7+M" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010821134601.J81307@elvis.mu.org>; from bright@mu.org on Tue, Aug 21, 2001 at 01:46:01PM -0500 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --DKU6Jbt7q3WqK7+M Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 21, 2001 at 01:46:01PM -0500, Alfred Perlstein wrote: > * John Baldwin [010821 13:42] wrote: > > jhb 2001/08/21 11:42:46 PDT > >=20 > > Modified files: > > sys/kern kern_condvar.c kern_synch.c=20 > > sys/sys proc.h=20 > > Log: > > - Fix a bug in the previous workaround for the tsleep/endtsleep race. > > callout_stop() would fail in two cases: > > 1) The timeout was currently executing, and > > 2) The timeout had already executed. > > We only needed to work around the race for 1). We caught some inst= ances > > of 2) via the PS_TIMEOUT flag, however, if endtsleep() fired after = the > > process had been woken up but before it had resumed execution, > > PS_TIMEOUT would not be set, but callout_stop() would fail, so we > > would block the process until endtsleep() resumed it. Except that > > endtsleep() had already run and couldn't resume it. This adds a ne= w flag > > PS_TIMOFAIL to indicate the case of 2) when PS_TIMEOUT isn't set. > > - Implement this race fix for condition variables as well. >=20 > How likely are these sort of fixes going to be able to help > the perceived instability of -current? Is -current noticeably > unstable or do we just have the usual crowd of people screaming > sort of like what was going on a couple of months ago. No - current is definitely having a problem at the moment. That said my normal machine has 256 mb of memory and my loaner machine only has 64 mb so it's possible that I'd not noticed the current set of problems that I've got before (documented in recent days on the current mailing list). Joe --DKU6Jbt7q3WqK7+M Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjuC/BcACgkQXVIcjOaxUBaZpQCcDSIgxSFt7CflGFU4Ej5p+CB4 HVYAn0NJCnDrGPx7gDvHZzTk7htJB9iS =AM+A -----END PGP SIGNATURE----- --DKU6Jbt7q3WqK7+M-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 17:39: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C29B037B40B; Tue, 21 Aug 2001 17:38:59 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M0cx863200; Tue, 21 Aug 2001 17:38:59 -0700 (PDT) (envelope-from jim) Message-Id: <200108220038.f7M0cx863200@freefall.freebsd.org> From: Jim Mock Date: Tue, 21 Aug 2001 17:38:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/examples/cvsup refuse.README X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jim 2001/08/21 17:38:59 PDT Modified files: share/examples/cvsup refuse.README Log: Add doc/sr and doc/sr_* to the sample refuse file. PR: 29935 Submitted by: Rob Simmons Revision Changes Path 1.3 +3 -1 src/share/examples/cvsup/refuse.README To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 17:42:15 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 82BC937B40D; Tue, 21 Aug 2001 17:41:58 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M0fwO63550; Tue, 21 Aug 2001 17:41:58 -0700 (PDT) (envelope-from will) Message-Id: <200108220041.f7M0fwO63550@freefall.freebsd.org> From: Will Andrews Date: Tue, 21 Aug 2001 17:41:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/astro/xplanet Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG will 2001/08/21 17:41:58 PDT Modified files: astro/xplanet Makefile distinfo Log: Update to 0.84. Notified by: author Revision Changes Path 1.17 +1 -1 ports/astro/xplanet/Makefile 1.9 +1 -1 ports/astro/xplanet/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 17:50:51 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 71FB137B40D; Tue, 21 Aug 2001 17:50:46 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M0okI64295; Tue, 21 Aug 2001 17:50:46 -0700 (PDT) (envelope-from peter) Message-Id: <200108220050.f7M0okI64295@freefall.freebsd.org> From: Peter Wemm Date: Tue, 21 Aug 2001 17:50:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 pmap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/21 17:50:46 PDT Modified files: sys/i386/i386 pmap.c Log: Introduce two new sysctl's.. vm.kvm_size and vm.kvm_free. These are purely informational and can give some advance indications of tuning problems. These are i386 only for now as it seems that the i386 is the only one suffering kvm pressure. Revision Changes Path 1.285 +22 -1 src/sys/i386/i386/pmap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 17:58:31 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C414637B414; Tue, 21 Aug 2001 17:58:16 -0700 (PDT) (envelope-from silby@FreeBSD.org) Received: (from silby@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M0wGf97070; Tue, 21 Aug 2001 17:58:16 -0700 (PDT) (envelope-from silby) Message-Id: <200108220058.f7M0wGf97070@freefall.freebsd.org> From: Mike Silbersack Date: Tue, 21 Aug 2001 17:58:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG silby 2001/08/21 17:58:16 PDT Modified files: sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h Log: Much delayed but now present: RFC 1948 style sequence numbers In order to ensure security and functionality, RFC 1948 style initial sequence number generation has been implemented. Barring any major crypographic breakthroughs, this algorithm should be unbreakable. In addition, the problems with TIME_WAIT recycling which affect our currently used algorithm are not present. Reviewed by: jesper Revision Changes Path 1.137 +3 -4 src/sys/netinet/tcp_input.c 1.17 +1 -22 src/sys/netinet/tcp_seq.h 1.113 +96 -71 src/sys/netinet/tcp_subr.c 1.47 +1 -3 src/sys/netinet/tcp_timer.c 1.66 +3 -3 src/sys/netinet/tcp_usrreq.c 1.71 +2 -6 src/sys/netinet/tcp_var.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 17:59:23 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5572037B410; Tue, 21 Aug 2001 17:59:13 -0700 (PDT) (envelope-from silby@FreeBSD.org) Received: (from silby@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M0xDe16950; Tue, 21 Aug 2001 17:59:13 -0700 (PDT) (envelope-from silby) Message-Id: <200108220059.f7M0xDe16950@freefall.freebsd.org> From: Mike Silbersack Date: Tue, 21 Aug 2001 17:59:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG silby 2001/08/21 17:59:13 PDT Modified files: (Branch: RELENG_4) sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h Log: Much delayed but now present: RFC 1948 style sequence numbers In order to ensure security and functionality, RFC 1948 style initial sequence number generation has been implemented. Barring any major crypographic breakthroughs, this algorithm should be unbreakable. In addition, the problems with TIME_WAIT recycling which affect our currently used algorithm are not present. Reviewed by: jesper Approved by: jkh Revision Changes Path 1.107.2.16 +3 -4 src/sys/netinet/tcp_input.c 1.11.2.5 +1 -22 src/sys/netinet/tcp_seq.h 1.73.2.22 +96 -71 src/sys/netinet/tcp_subr.c 1.34.2.11 +1 -3 src/sys/netinet/tcp_timer.c 1.51.2.9 +3 -3 src/sys/netinet/tcp_usrreq.c 1.56.2.8 +2 -6 src/sys/netinet/tcp_var.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 18: 1:36 2001 Delivered-To: cvs-all@freebsd.org Received: from tao.org.uk (genesis.tao.org.uk [212.135.162.62]) by hub.freebsd.org (Postfix) with ESMTP id 7529937B414; Tue, 21 Aug 2001 18:01:09 -0700 (PDT) (envelope-from joe@tao.org.uk) Received: by tao.org.uk (Postfix, from userid 100) id 38241157; Wed, 22 Aug 2001 02:00:58 +0100 (BST) Date: Wed, 22 Aug 2001 02:00:57 +0100 From: Josef Karthauser To: Dag-Erling Smorgrav Cc: Matt Dillon , Alfred Perlstein , John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h Message-ID: <20010822020056.A717@tao.org.uk> References: <200108211842.f7LIgkp03186@freefall.freebsd.org> <20010821134601.J81307@elvis.mu.org> <200108212254.f7LMsFQ68740@earth.backplane.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="h31gzZEtNLTqOjlF" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Wed, Aug 22, 2001 at 01:37:52AM +0200 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Aug 22, 2001 at 01:37:52AM +0200, Dag-Erling Smorgrav wrote: > Matt Dillon writes: > > :8% averaged over the machine's uptime, in fact: > > : > > :root@des /sys/kern# uptime > > :12:31AM up 5 days, 10:27, 7 users, load averages: 1.94, 1.57, 1.69 > > :root@des /sys/kern# ps -axlp 5 > > : UID PID PPID CPU PRI NI VSZ RSS WCHAN STAT TT TIME COM= MAND > > : 0 5 0 142 20 0 0 0 syncer DL ?? 629:49.14 (s= yncer) > > [...] > > The syncer is not typically fragile. The only thing I can think of > > that could cause something like this to happen is if 'rushjob' > > (aka speedup_syncer()) is being called continuously. >=20 > After some discussion with jhb on IRC, I rebooted in single-user mode > and ran 'fsck -y' on all file systems. It found several unreferenced > directories and files on / and /home, and a handful of incorrect link > counts. Background fsck is now off, and I'm somewhat confident my > interrupt latency problems will not resurface, though it's too early > to tell. I've just tried this, just in case it fixes my problem, but there were no reported problems by fsck. Joe --h31gzZEtNLTqOjlF Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjuDBEgACgkQXVIcjOaxUBb0VwCdHX6gTdmfJiIpI/nBotgHobUO XpEAoI14ZTvEp5FkoCQWoCDTVDv2n/UT =LfI/ -----END PGP SIGNATURE----- --h31gzZEtNLTqOjlF-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 18:35:29 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 39C5B37B40D; Tue, 21 Aug 2001 18:35:18 -0700 (PDT) (envelope-from iedowse@FreeBSD.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M1ZIC42122; Tue, 21 Aug 2001 18:35:18 -0700 (PDT) (envelope-from iedowse) Message-Id: <200108220135.f7M1ZIC42122@freefall.freebsd.org> From: Ian Dowse Date: Tue, 21 Aug 2001 18:35:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ufs ufs_lookup.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG iedowse 2001/08/21 18:35:18 PDT Modified files: sys/ufs/ufs ufs_lookup.c Log: When compressing directory blocks, the dirhash code didn't check that the directory entry was in use before attempting to find it in the hash structures to change its offset. Normally, unused entries do not need to be moved, but fsck can leave behind some unused entries that do. A dirhash sanity panic resulted when the entry to be moved was not found. Add a check that stops entries with d_ino == 0 from being passed to ufsdirhash_move(). Revision Changes Path 1.53 +2 -2 src/sys/ufs/ufs/ufs_lookup.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 18:36:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EF4C137B40C; Tue, 21 Aug 2001 18:36:40 -0700 (PDT) (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M1aev42342; Tue, 21 Aug 2001 18:36:40 -0700 (PDT) (envelope-from demon) Message-Id: <200108220136.f7M1aev42342@freefall.freebsd.org> From: Dmitry Sivachenko Date: Tue, 21 Aug 2001 18:36:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/unixODBC Makefile distinfo ports/databases/unixODBC/files patch-ad X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2001/08/21 18:36:40 PDT Modified files: databases/unixODBC Makefile distinfo Removed files: databases/unixODBC/files patch-ad Log: Upgrade to 2.0.9 PR: 29819 Submitted by: KATO Tsuguru Revision Changes Path 1.21 +2 -2 ports/databases/unixODBC/Makefile 1.10 +1 -1 ports/databases/unixODBC/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 19:13: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from corbulon.video-collage.com (corbulon.video-collage.com [64.35.99.179]) by hub.freebsd.org (Postfix) with ESMTP id E139537B412; Tue, 21 Aug 2001 19:12:48 -0700 (PDT) (envelope-from mi@corbulon.video-collage.com) Received: (from mi@localhost) by corbulon.video-collage.com (8.11.4/8.11.4) id f7M2CfR37801; Tue, 21 Aug 2001 22:12:41 -0400 (EDT) (envelope-from mi) From: Mikhail Teterin Message-Id: <200108220212.f7M2CfR37801@corbulon.video-collage.com> Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h In-Reply-To: <20010821170420.L81307@elvis.mu.org> To: Alfred Perlstein Date: Tue, 21 Aug 2001 22:12:40 -0400 (EDT) Cc: Kris Kennaway , John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL92b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > I am getting some lockups too, but they only last for around 30 > > seconds, sometimes they get so bad I get a BUS I/O Error when I try > > to do anything in some applications during the lockup. > > This is a pretty useless bug report. > > Please read the section in the handbook about kernel debugging and get > us a useful traceback/crashdump as well as systat type info. Yeah, and then what? Nobody seems to care either way... :-( -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 19:34:52 2001 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 3E75F37B408; Tue, 21 Aug 2001 19:34:46 -0700 (PDT) (envelope-from bp@freebsd.org) Received: by relay.butya.kz (Postfix, from userid 1000) id 1874228688; Wed, 22 Aug 2001 09:34:42 +0700 (ALMST) Received: from localhost (localhost [127.0.0.1]) by relay.butya.kz (Postfix) with ESMTP id D71E728678; Wed, 22 Aug 2001 09:34:42 +0700 (ALMST) Date: Wed, 22 Aug 2001 09:34:42 +0700 (ALMST) From: Boris Popov X-Sender: bp@lion.butya.kz To: Will Andrews Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/fs/smbfs smbfs_vnops.c In-Reply-To: <20010821181430.A35352@bohr.physics.purdue.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 21 Aug 2001, Will Andrews wrote: > On Tue, Aug 21, 2001 at 01:25:09AM -0700, Boris Popov (bp@FreeBSD.org) wrote: > > Log: > > [...] > > Obtained from: Mac OS X > > You mean Darwin? Yes. -- Boris Popov http://rbp.euro.ru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 19:45:58 2001 Delivered-To: cvs-all@freebsd.org Received: from elvis.mu.org (elvis.mu.org [216.33.66.196]) by hub.freebsd.org (Postfix) with ESMTP id 0183437B40D; Tue, 21 Aug 2001 19:45:53 -0700 (PDT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id BFE8381D15; Tue, 21 Aug 2001 21:45:42 -0500 (CDT) Date: Tue, 21 Aug 2001 21:45:42 -0500 From: Alfred Perlstein To: Dag-Erling Smorgrav Cc: Matt Dillon , John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h Message-ID: <20010821214542.M81307@elvis.mu.org> References: <200108211842.f7LIgkp03186@freefall.freebsd.org> <20010821134601.J81307@elvis.mu.org> <200108212254.f7LMsFQ68740@earth.backplane.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Wed, Aug 22, 2001 at 01:37:52AM +0200 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Dag-Erling Smorgrav [010821 21:13] wrote: > Matt Dillon writes: > > :8% averaged over the machine's uptime, in fact: > > : > > :root@des /sys/kern# uptime > > :12:31AM up 5 days, 10:27, 7 users, load averages: 1.94, 1.57, 1.69 > > :root@des /sys/kern# ps -axlp 5 > > : UID PID PPID CPU PRI NI VSZ RSS WCHAN STAT TT TIME COMMAND > > : 0 5 0 142 20 0 0 0 syncer DL ?? 629:49.14 (syncer) > > [...] > > The syncer is not typically fragile. The only thing I can think of > > that could cause something like this to happen is if 'rushjob' > > (aka speedup_syncer()) is being called continuously. > > After some discussion with jhb on IRC, I rebooted in single-user mode > and ran 'fsck -y' on all file systems. It found several unreferenced > directories and files on / and /home, and a handful of incorrect link > counts. Background fsck is now off, and I'm somewhat confident my > interrupt latency problems will not resurface, though it's too early > to tell. It probably would have been extremely useful to have the fsck output mailed to Kirk. -- -Alfred Perlstein [alfred@freebsd.org] Ok, who wrote this damn function called '??'? And why do my programs keep crashing in it? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 19:48:29 2001 Delivered-To: cvs-all@freebsd.org Received: from elvis.mu.org (elvis.mu.org [216.33.66.196]) by hub.freebsd.org (Postfix) with ESMTP id DA7A837B411; Tue, 21 Aug 2001 19:48:18 -0700 (PDT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id DECB881D0A; Tue, 21 Aug 2001 21:48:18 -0500 (CDT) Date: Tue, 21 Aug 2001 21:48:18 -0500 From: Alfred Perlstein To: Mikhail Teterin Cc: Kris Kennaway , John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h Message-ID: <20010821214818.N81307@elvis.mu.org> References: <20010821170420.L81307@elvis.mu.org> <200108220212.f7M2CfR37801@corbulon.video-collage.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108220212.f7M2CfR37801@corbulon.video-collage.com>; from mi@corbulon.video-collage.com on Tue, Aug 21, 2001 at 10:12:40PM -0400 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Mikhail Teterin [010821 21:13] wrote: > > > I am getting some lockups too, but they only last for around 30 > > > seconds, sometimes they get so bad I get a BUS I/O Error when I try > > > to do anything in some applications during the lockup. > > > > This is a pretty useless bug report. > > > > Please read the section in the handbook about kernel debugging and get > > us a useful traceback/crashdump as well as systat type info. > > Yeah, and then what? Nobody seems to care either way... :-( That's insulting to the people that are finding and fixing bugs. They do care and you ought to rethink your attitude towards the subject. -- -Alfred Perlstein [alfred@freebsd.org] Ok, who wrote this damn function called '??'? And why do my programs keep crashing in it? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 19:59:33 2001 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-7.dsl.lsan03.pacbell.net [63.207.60.7]) by hub.freebsd.org (Postfix) with ESMTP id 3EDA437B413; Tue, 21 Aug 2001 19:59:21 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id BB5C266D1C; Tue, 21 Aug 2001 19:59:20 -0700 (PDT) Date: Tue, 21 Aug 2001 19:59:20 -0700 From: Kris Kennaway To: Mike Silbersack Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h Message-ID: <20010821195920.A23850@xor.obsecurity.org> References: <200108220058.f7M0wGf97070@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="3V7upXqbjpZ4EhLz" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108220058.f7M0wGf97070@freefall.freebsd.org>; from silby@FreeBSD.org on Tue, Aug 21, 2001 at 05:58:16PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --3V7upXqbjpZ4EhLz Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 21, 2001 at 05:58:16PM -0700, Mike Silbersack wrote: > silby 2001/08/21 17:58:16 PDT >=20 > Modified files: > sys/netinet tcp_input.c tcp_seq.h tcp_subr.c=20 > tcp_timer.c tcp_usrreq.c tcp_var.h=20 > Log: > Much delayed but now present: RFC 1948 style sequence numbers Yay! > In order to ensure security and functionality, RFC 1948 style > initial sequence number generation has been implemented. Barring > any major crypographic breakthroughs, this algorithm should be > unbreakable. Except by brute force. A 32-bit sequence number just isn't naturally very resistent to guessing, and on a fast connection, under favourable circumstances, an attacker could simply cycle through them all. Kris --3V7upXqbjpZ4EhLz Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE7gyAIWry0BWjoQKURAngFAKC55ZJ/2g9ZU+ZfOqLIf6e0SGUmzgCfU9dk JcRwHtxLwkhpmGPZWDi7Nn0= =6zwV -----END PGP SIGNATURE----- --3V7upXqbjpZ4EhLz-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 20:10: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.cs.byu.edu (mail.cs.byu.edu [128.187.2.20]) by hub.freebsd.org (Postfix) with ESMTP id BB29037B401; Tue, 21 Aug 2001 20:09:44 -0700 (PDT) (envelope-from heath@cs.byu.edu) Received: from piano.cs.byu.edu (IDENT:heath@piano.cs.byu.edu [128.187.101.145]) by mail.cs.byu.edu (8.11.0/8.11.0) with ESMTP id f7M39dx05785; Tue, 21 Aug 2001 21:09:40 -0600 Date: Tue, 21 Aug 2001 21:09:39 -0600 (MDT) From: Heath Nielson To: Brian Somers Cc: Nick Hibma , , , Subject: Re: cvs commit: src/sys/dev/usb umass.c In-Reply-To: <200108212326.f7LNQHU51685@hak.lan.Awfulhak.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 22 Aug 2001, Brian Somers wrote: > > n_hibma 2001/08/21 15:03:19 PDT > > > > Modified files: > > sys/dev/usb umass.c > > Log: > > Support for the HP 8200e CD writer. (commented out) > > > > Submitted by: Heath Nielson > > > > Revision Changes Path > > 1.44 +13 -1 src/sys/dev/usb/umass.c > > Hmm, aren't the 8200 devices ATAPI ? Does this mean ATAPI works > these days ? > Yes they are ATAPI and no, this device at least doesn't work yet (I can't speak for all ATAPI support). I've played with trying to get this to work from time to time by perusing the Linux driver code. (Not a small task considering it's my first foray into kerneland :) Heath To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 20:13:49 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6965F37B401; Tue, 21 Aug 2001 20:13:34 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M3DYB56065; Tue, 21 Aug 2001 20:13:34 -0700 (PDT) (envelope-from bmah) Message-Id: <200108220313.f7M3DYB56065@freefall.freebsd.org> From: "Bruce A. Mah" Date: Tue, 21 Aug 2001 20:13:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2001/08/21 20:13:34 PDT Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release note: RFC 1948. Revision Changes Path 1.109 +7 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 21: 2:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4097F37B409; Tue, 21 Aug 2001 21:01:56 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M41u359973; Tue, 21 Aug 2001 21:01:56 -0700 (PDT) (envelope-from dillon) Message-Id: <200108220401.f7M41u359973@freefall.freebsd.org> From: Matt Dillon Date: Tue, 21 Aug 2001 21:01:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm vm_page.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2001/08/21 21:01:56 PDT Modified files: sys/vm vm_page.c Log: KASSERT if vm_page_t->wire_count overflows. Revision Changes Path 1.172 +2 -1 src/sys/vm/vm_page.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 21: 7:52 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BC9337B417; Tue, 21 Aug 2001 21:07:27 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M47R163489; Tue, 21 Aug 2001 21:07:27 -0700 (PDT) (envelope-from dillon) Message-Id: <200108220407.f7M47R163489@freefall.freebsd.org> From: Matt Dillon Date: Tue, 21 Aug 2001 21:07:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha machdep.c pmap.c src/sys/i386/i386 machdep.c pmap.c src/sys/kern kern_timeout.c vfs_bio.c src/sys/sys buf.h systm.h src/sys/vm vm.h vm_init.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2001/08/21 21:07:27 PDT Modified files: sys/alpha/alpha machdep.c pmap.c sys/i386/i386 machdep.c pmap.c sys/kern kern_timeout.c vfs_bio.c sys/sys buf.h systm.h sys/vm vm.h vm_init.c Log: Move most of the kernel submap initialization code, including the timeout callwheel and buffer cache, out of the platform specific areas and into the machine independant area. i386 and alpha adjusted here. Other cpus can be fixed piecemeal. Reviewed by: freebsd-smp, jake Revision Changes Path 1.140 +6 -11 src/sys/alpha/alpha/machdep.c 1.63 +2 -2 src/sys/alpha/alpha/pmap.c 1.473 +7 -12 src/sys/i386/i386/machdep.c 1.286 +2 -2 src/sys/i386/i386/pmap.c 1.70 +50 -1 src/sys/kern/kern_timeout.c 1.286 +62 -8 src/sys/kern/vfs_bio.c 1.120 +2 -2 src/sys/sys/buf.h 1.149 +3 -1 src/sys/sys/systm.h 1.19 +18 -1 src/sys/vm/vm.h 1.29 +90 -1 src/sys/vm/vm_init.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 21:28:36 2001 Delivered-To: cvs-all@freebsd.org Received: from corbulon.video-collage.com (corbulon.video-collage.com [64.35.99.179]) by hub.freebsd.org (Postfix) with ESMTP id ED79437B416; Tue, 21 Aug 2001 21:28:28 -0700 (PDT) (envelope-from mi@corbulon.video-collage.com) Received: (from mi@localhost) by corbulon.video-collage.com (8.11.4/8.11.4) id f7M4S6s61367; Wed, 22 Aug 2001 00:28:06 -0400 (EDT) (envelope-from mi) From: Mikhail Teterin Message-Id: <200108220428.f7M4S6s61367@corbulon.video-collage.com> Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h In-Reply-To: <20010821214818.N81307@elvis.mu.org> To: Alfred Perlstein Date: Wed, 22 Aug 2001 00:28:06 -0400 (EDT) Cc: Kris Kennaway , John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL92b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > > This is a pretty useless bug report. > > > > > > Please read the section in the handbook about kernel debugging and > > > get us a useful traceback/crashdump as well as systat type info. > > > > Yeah, and then what? Nobody seems to care either way... :-( > > That's insulting to the people that are finding and fixing bugs. Well, then they must be doing so silently, without even the: "I think that should be fixed now, make sure you have version such-and-such of such-and-such" and try again. I personally have submitted two crashdumps to -current this year, and one to WPaul personally (regarding crashes in the dc-driver) without A WORD OF RESPONSE . Aknowledging problems before and a heads-up after the fix is thought to be in, is _essential_ to be able to expect future reports. > They do care and you ought to rethink your attitude towards the > subject. My attitude was specifically designed to further stir this topic up, and, may be, cause some changes in some minds. -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 21:53:22 2001 Delivered-To: cvs-all@freebsd.org Received: from robin.mail.pas.earthlink.net (robin.mail.pas.earthlink.net [207.217.120.65]) by hub.freebsd.org (Postfix) with ESMTP id 85C8E37B403; Tue, 21 Aug 2001 21:52:58 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.245.130.30.Dial1.SanJose1.Level3.net [209.245.130.30]) by robin.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id VAA25317; Tue, 21 Aug 2001 21:52:53 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f7M4qk775771; Tue, 21 Aug 2001 21:52:46 -0700 (PDT) (envelope-from cjc) Date: Tue, 21 Aug 2001 21:52:45 -0700 From: "Crist J. Clark" To: Kris Kennaway Cc: Mike Silbersack , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h Message-ID: <20010821215244.G313@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <200108220058.f7M0wGf97070@freefall.freebsd.org> <20010821195920.A23850@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010821195920.A23850@xor.obsecurity.org>; from kris@obsecurity.org on Tue, Aug 21, 2001 at 07:59:20PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Aug 21, 2001 at 07:59:20PM -0700, Kris Kennaway wrote: > On Tue, Aug 21, 2001 at 05:58:16PM -0700, Mike Silbersack wrote: > > silby 2001/08/21 17:58:16 PDT > > > > Modified files: > > sys/netinet tcp_input.c tcp_seq.h tcp_subr.c > > tcp_timer.c tcp_usrreq.c tcp_var.h > > Log: > > Much delayed but now present: RFC 1948 style sequence numbers > > Yay! > > > In order to ensure security and functionality, RFC 1948 style > > initial sequence number generation has been implemented. Barring > > any major crypographic breakthroughs, this algorithm should be > > unbreakable. > > Except by brute force. A 32-bit sequence number just isn't naturally > very resistent to guessing, and on a fast connection, under favourable > circumstances, an attacker could simply cycle through them all. Actually, I believe the reason "total randomness" does not help all that much is more due to the fact a birthday attack on a 32-bit sequence number is not as difficult as it would seem. -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 22: 5:23 2001 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 EEEA937B408; Tue, 21 Aug 2001 22:05:18 -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.9.3/8.8.7) with ESMTP id PAA14498; Wed, 22 Aug 2001 15:05:17 +1000 Date: Wed, 22 Aug 2001 15:05:11 +1000 (EST) From: Bruce Evans X-X-Sender: To: John Baldwin Cc: , Subject: Re: cvs commit: src/sys/kern kern_shutdown.c In-Reply-To: <200108212255.f7LMtKG43424@freefall.freebsd.org> Message-ID: <20010822150135.X5785-100000@besplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 21 Aug 2001, John Baldwin wrote: > jhb 2001/08/21 15:55:20 PDT > > Modified files: > sys/kern kern_shutdown.c > Log: > Allow one to restart from a panic in DDB by clearing the panicstr > variable to NULL. Note that since panic() is marked with __dead2, this > has somewhat unpredictable results at best. Such as "never" working? :-) On i386's panic() has no function epilogue or return statement, so you have to do these manually to get it to return. Then the caller may be missing stack cleanups... The easiest workaround is to declare panic() as returning, but this will cause lots of compiler warnings. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 22: 7:16 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 833C437B40E; Tue, 21 Aug 2001 22:07:13 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M57DG73110; Tue, 21 Aug 2001 22:07:13 -0700 (PDT) (envelope-from murray) Message-Id: <200108220507.f7M57DG73110@freefall.freebsd.org> From: Murray Stokely Date: Tue, 21 Aug 2001 22:07:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/l10n chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2001/08/21 22:07:12 PDT Modified files: en_US.ISO8859-1/books/handbook/l10n chapter.sgml Log: Standardize the synopsis. (List of what the reader will learn by reading this chapter, and another list of what the reader is expected to already know.) Revision Changes Path 1.68 +29 -13 doc/en_US.ISO8859-1/books/handbook/l10n/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 Aug 21 22:23:47 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A76CD37B40D; Tue, 21 Aug 2001 22:23:26 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M5NQH81734; Tue, 21 Aug 2001 22:23:26 -0700 (PDT) (envelope-from dinoex) Message-Id: <200108220523.f7M5NQH81734@freefall.freebsd.org> From: Dirk Meyer Date: Tue, 21 Aug 2001 22:23:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics Makefile ports/graphics/mplayer-fonts Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2001/08/21 22:23:25 PDT Modified files: graphics Makefile Added files: graphics/mplayer-fonts Makefile distinfo pkg-comment pkg-descr pkg-plist Log: New port: needed for mplayer. This is the port which contains the superset of the fonts for the mplay on screen display and the sub title. In this stage it supports the following charsets: ISO for dutch, french, german, hungarian, italian and portugese cyrillic russian (koi8r) WWW: http://mplayer.sourceforge.net Revision Changes Path 1.341 +2 -1 ports/graphics/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 22:23:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E933537B43E; Tue, 21 Aug 2001 22:23:35 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M5NZb81794; Tue, 21 Aug 2001 22:23:35 -0700 (PDT) (envelope-from dinoex) Message-Id: <200108220523.f7M5NZb81794@freefall.freebsd.org> From: Dirk Meyer Date: Tue, 21 Aug 2001 22:23:35 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2001/08/21 22:23:35 PDT Modified files: . modules Log: mplayer-fonts --> ports/graphics/mplayer-fonts Revision Changes Path 1.3695 +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 Aug 21 22:29:29 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DF3B137B408; Tue, 21 Aug 2001 22:29:25 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M5TPs82394; Tue, 21 Aug 2001 22:29:25 -0700 (PDT) (envelope-from peter) Message-Id: <200108220529.f7M5TPs82394@freefall.freebsd.org> From: Peter Wemm Date: Tue, 21 Aug 2001 22:29:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/i386/loader Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/21 22:29:25 PDT Modified files: sys/boot/i386/loader Makefile Log: Generate an ELF /boot/loader instead of fake a.out. The fake a.out wrapper did not work with old a.out-only bootblocks anyway. :-( Revision Changes Path 1.51 +2 -2 src/sys/boot/i386/loader/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 22:34: 4 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 78BCF37B403; Tue, 21 Aug 2001 22:33:57 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M5Xv282869; Tue, 21 Aug 2001 22:33:57 -0700 (PDT) (envelope-from peter) Message-Id: <200108220533.f7M5Xv282869@freefall.freebsd.org> From: Peter Wemm Date: Tue, 21 Aug 2001 22:33:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb if_aue.c if_cue.c if_kue.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/21 22:33:57 PDT Modified files: sys/dev/usb if_aue.c if_cue.c if_kue.c Log: Make these depend on the usb module so they can use its symbols if they are loaded as seperate .ko files Revision Changes Path 1.41 +4 -3 src/sys/dev/usb/if_aue.c 1.19 +3 -3 src/sys/dev/usb/if_cue.c 1.32 +4 -2 src/sys/dev/usb/if_kue.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 22:34:48 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2497237B40D; Tue, 21 Aug 2001 22:34:11 -0700 (PDT) (envelope-from gshapiro@FreeBSD.org) Received: (from gshapiro@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M5YB782902; Tue, 21 Aug 2001 22:34:11 -0700 (PDT) (envelope-from gshapiro) Message-Id: <200108220534.f7M5YB782902@freefall.freebsd.org> From: Gregory Neil Shapiro Date: Tue, 21 Aug 2001 22:34:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/sendmail/src trace.c X-FreeBSD-CVS-Branch: RELENG_4_3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gshapiro 2001/08/21 22:34:11 PDT Modified files: (Branch: RELENG_4_3) contrib/sendmail/src trace.c Log: Fix command line processing security problem found by SecurityFocus. This is already fixed in the HEAD and RELENG_4 by virtue of the sendmail 8.11.6 import. Further, it doesn't need to be put in RELENG_3 or earlier as the bug only affects sendmail 8.11.0-8.11.5, none of which were in anything before RELENG_4. Approved by: kris Revision Changes Path 1.1.1.2.6.2.2.1 +1 -1 src/contrib/sendmail/src/trace.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 22:38: 7 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 53C9A37B409; Tue, 21 Aug 2001 22:37:51 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M5bpV83461; Tue, 21 Aug 2001 22:37:51 -0700 (PDT) (envelope-from murray) Message-Id: <200108220537.f7M5bpV83461@freefall.freebsd.org> From: Murray Stokely Date: Tue, 21 Aug 2001 22:37:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/config chapter.sgml doc/en_US.ISO8859-1/books/handbook/kernelconfig chapter.sgml doc/en_US.ISO8859-1/books/handbook/linuxemu chapter.sgml doc/en_US.ISO8859-1/books/handbook/printing chapter.sgml doc/en_US.ISO8859-1/books/handbook/serialcomms chapter.sgml doc/en_US.ISO8859-1/books/handbook/sound chapter.sgml ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2001/08/21 22:37:51 PDT Modified files: en_US.ISO8859-1/books/handbook/config chapter.sgml en_US.ISO8859-1/books/handbook/kernelconfig chapter.sgml en_US.ISO8859-1/books/handbook/linuxemu chapter.sgml en_US.ISO8859-1/books/handbook/printing chapter.sgml en_US.ISO8859-1/books/handbook/serialcomms chapter.sgml en_US.ISO8859-1/books/handbook/sound chapter.sgml en_US.ISO8859-1/books/handbook/users chapter.sgml en_US.ISO8859-1/books/handbook/x11 chapter.sgml Log: Terminate synopsis listitems with a period. Also give more information about prerequisites : "* Understand Unix permissions and processes (Chapter 3)." instead of : "* Read chapter 3" Revision Changes Path 1.22 +2 -2 doc/en_US.ISO8859-1/books/handbook/config/chapter.sgml 1.62 +7 -7 doc/en_US.ISO8859-1/books/handbook/kernelconfig/chapter.sgml 1.53 +3 -3 doc/en_US.ISO8859-1/books/handbook/linuxemu/chapter.sgml 1.47 +10 -10 doc/en_US.ISO8859-1/books/handbook/printing/chapter.sgml 1.45 +3 -3 doc/en_US.ISO8859-1/books/handbook/serialcomms/chapter.sgml 1.16 +2 -2 doc/en_US.ISO8859-1/books/handbook/sound/chapter.sgml 1.28 +9 -8 doc/en_US.ISO8859-1/books/handbook/users/chapter.sgml 1.50 +5 -5 doc/en_US.ISO8859-1/books/handbook/x11/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 Aug 21 22:44:52 2001 Delivered-To: cvs-all@freebsd.org Received: from InterJet.elischer.org (c421509-a.pinol1.sfba.home.com [24.7.86.9]) by hub.freebsd.org (Postfix) with ESMTP id 84FAA37B40B; Tue, 21 Aug 2001 22:44:37 -0700 (PDT) (envelope-from julian@elischer.org) Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id WAA45789; Tue, 21 Aug 2001 22:51:16 -0700 (PDT) Date: Tue, 21 Aug 2001 22:51:15 -0700 (PDT) From: Julian Elischer To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/i386/loader Makefile In-Reply-To: <200108220529.f7M5TPs82394@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I think whistle just lost their upgrade path.. they were loading the loader with the old a.out bootblocks (4.x based) assuming nothing changed between then and now it should have worked for them.. On Tue, 21 Aug 2001, Peter Wemm wrote: > peter 2001/08/21 22:29:25 PDT > > Modified files: > sys/boot/i386/loader Makefile > Log: > Generate an ELF /boot/loader instead of fake a.out. The fake a.out wrapper > did not work with old a.out-only bootblocks anyway. :-( > > Revision Changes Path > 1.51 +2 -2 src/sys/boot/i386/loader/Makefile > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 23: 8:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E38037B40A; Tue, 21 Aug 2001 23:08:03 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M683a89166; Tue, 21 Aug 2001 23:08:03 -0700 (PDT) (envelope-from murray) Message-Id: <200108220608.f7M683a89166@freefall.freebsd.org> From: Murray Stokely Date: Tue, 21 Aug 2001 23:08:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/mail chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2001/08/21 23:08:03 PDT Modified files: en_US.ISO8859-1/books/handbook/mail chapter.sgml Log: Standardize the synopsis. Revision Changes Path 1.35 +36 -16 doc/en_US.ISO8859-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 Aug 21 23: 9:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 942A537B40A; Tue, 21 Aug 2001 23:09:14 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M69EN89293; Tue, 21 Aug 2001 23:09:14 -0700 (PDT) (envelope-from dinoex) Message-Id: <200108220609.f7M69EN89293@freefall.freebsd.org> From: Dirk Meyer Date: Tue, 21 Aug 2001 23:09:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics Makefile ports/graphics/mplayer-codecs Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2001/08/21 23:09:14 PDT Modified files: graphics Makefile Added files: graphics/mplayer-codecs Makefile distinfo pkg-comment pkg-descr pkg-plist Log: New port: The superset of win32 codecs for mplayer includes support for a lot of different movie types including - Inter Video 3.2, 4.1 - MPEG-4 v1,v2,v3 (DivX :-)) - Cinepack Video - WMA Audio, MPEG-Layer 1,2,3, GSM6.1 and much more. This compilation of codecs is provided by the makers of mplayer. WWW: http://mplayer.sourceforge.net Riggs told on ports (not gnats) > The problem is that Vladimir and I have worked out a little different > concept for this mplayer port: To divide it in 3 sections: fonts, > codecs and the program with docs. > (Anyway, the other ports isn't working for the make install target > though. FreeBSD doesn't support install -D.) Revision Changes Path 1.342 +2 -1 ports/graphics/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 23: 9:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1828037B411; Tue, 21 Aug 2001 23:09:18 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M69IH89340; Tue, 21 Aug 2001 23:09:18 -0700 (PDT) (envelope-from dinoex) Message-Id: <200108220609.f7M69IH89340@freefall.freebsd.org> From: Dirk Meyer Date: Tue, 21 Aug 2001 23:09:18 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2001/08/21 23:09:18 PDT Modified files: . modules Log: mplayer-codecs --> ports/graphics/mplayer-codecs Revision Changes Path 1.3696 +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 Aug 21 23:11:23 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6DCC937B405; Tue, 21 Aug 2001 23:11:13 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M6BDE89794; Tue, 21 Aug 2001 23:11:13 -0700 (PDT) (envelope-from dinoex) Message-Id: <200108220611.f7M6BDE89794@freefall.freebsd.org> From: Dirk Meyer Date: Tue, 21 Aug 2001 23:11:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics Makefile ports/graphics/mplayer Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist ports/graphics/mplayer/files install-user patch-ab patch-ac patch-ad patch-ae X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2001/08/21 23:11:13 PDT Modified files: graphics Makefile Added files: graphics/mplayer Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist graphics/mplayer/files install-user patch-ab patch-ac patch-ad patch-ae Log: New Port: This is the port of mplayer, a project which has the effort to become a very stable and useful movie player. It is based on the windows codec compilation and provides the ability to play many formats in a very good quality without much CPU comsumption. WWW: http://mplayer.sourceforge.net PR: 29944 Submitted by: riggs@f113.hadiko.de Revision Changes Path 1.343 +2 -1 ports/graphics/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 23:11:25 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CBA7C37B40A; Tue, 21 Aug 2001 23:11:17 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M6BHK89833; Tue, 21 Aug 2001 23:11:17 -0700 (PDT) (envelope-from dinoex) Message-Id: <200108220611.f7M6BHK89833@freefall.freebsd.org> From: Dirk Meyer Date: Tue, 21 Aug 2001 23:11:17 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2001/08/21 23:11:17 PDT Modified files: . modules Log: mplayer --> ports/graphics/mplayer Revision Changes Path 1.3697 +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 Aug 21 23:19:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 644B637B40D; Tue, 21 Aug 2001 23:19:24 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M6JOk90718; Tue, 21 Aug 2001 23:19:24 -0700 (PDT) (envelope-from peter) Message-Id: <200108220619.f7M6JOk90718@freefall.freebsd.org> From: Peter Wemm Date: Tue, 21 Aug 2001 23:19:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf options.pc98 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/21 23:19:24 PDT Modified files: (Branch: RELENG_4) sys/conf options.pc98 Log: Missed part of SSE MFC, add the option to the pc98 file. This was part of the previously approved commit. Approved by: re (murray) Revision Changes Path 1.103.2.9 +2 -1 src/sys/conf/options.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 21 23:32:29 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3276A37B40D; Tue, 21 Aug 2001 23:32:25 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M6WPQ91911; Tue, 21 Aug 2001 23:32:25 -0700 (PDT) (envelope-from murray) Message-Id: <200108220632.f7M6WPQ91911@freefall.freebsd.org> From: Murray Stokely Date: Tue, 21 Aug 2001 23:32:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/disks chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2001/08/21 23:32:24 PDT Modified files: en_US.ISO8859-1/books/handbook/disks chapter.sgml Log: Standardize the synopsis. Revision Changes Path 1.54 +28 -5 doc/en_US.ISO8859-1/books/handbook/disks/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 Aug 21 23:45:23 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3CC4137B401; Tue, 21 Aug 2001 23:45:20 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M6jKN93219; Tue, 21 Aug 2001 23:45:20 -0700 (PDT) (envelope-from imp) Message-Id: <200108220645.f7M6jKN93219@freefall.freebsd.org> From: Warner Losh Date: Tue, 21 Aug 2001 23:45:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src UPDATING src/sys/conf newvers.sh X-FreeBSD-CVS-Branch: RELENG_4_3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/21 23:45:20 PDT Modified files: (Branch: RELENG_4_3) . UPDATING sys/conf newvers.sh Log: p13: sendmail arugment parsing bug fixed by Simon a few minutes ago. Revision Changes Path 1.73.2.28.2.6 +5 -2 src/UPDATING 1.44.2.14.2.3 +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 Tue Aug 21 23:53:25 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9026337B408; Tue, 21 Aug 2001 23:53:19 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M6rJ594044; Tue, 21 Aug 2001 23:53:19 -0700 (PDT) (envelope-from murray) Message-Id: <200108220653.f7M6rJ594044@freefall.freebsd.org> From: Murray Stokely Date: Tue, 21 Aug 2001 23:53:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/cutting-edge chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2001/08/21 23:53:19 PDT Modified files: en_US.ISO8859-1/books/handbook/cutting-edge chapter.sgml Log: Add standard synopsis. Revision Changes Path 1.87 +27 -1 doc/en_US.ISO8859-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 Tue Aug 21 23:54:50 2001 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (dsl092-013-169.sfo1.dsl.speakeasy.net [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 2B46D37B401; Tue, 21 Aug 2001 23:54:39 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.5/8.11.1) id f7M6sbE64872; Tue, 21 Aug 2001 23:54:37 -0700 (PDT) (envelope-from obrien) Date: Tue, 21 Aug 2001 23:54:37 -0700 From: "David O'Brien" To: Alfred Perlstein Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h Message-ID: <20010821235437.A64706@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200108211842.f7LIgkp03186@freefall.freebsd.org> <20010821134601.J81307@elvis.mu.org> <20010821124428.B17739@xor.obsecurity.org> <20010821164833.D58026@leviathan.inethouston.net> <20010821170420.L81307@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010821170420.L81307@elvis.mu.org>; from bright@mu.org on Tue, Aug 21, 2001 at 05:04:21PM -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Aug 21, 2001 at 05:04:21PM -0500, Alfred Perlstein wrote: > This is a pretty useless bug report. > > Please read the section in the handbook about kernel debugging > and get us a useful traceback/crashdump as well as systat type > info. OK Albert, I am one of these people. How the hell do you expect me to get crashdumps when my entire disk subsystem is what is freezing and going out to lunch??? I get to ddb and type `panic'. All I get is the first part of the message of writing to disk. But guess what!?! Nothing happens because guess what!?! I no longer have a disk subsystem to save the crashdump to. `ps' will totally wedge the machine when it is in this state also. Now would *YOU* like to offer something other than "pretty useless" debugging advice. -- -- 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 Tue Aug 21 23:55:10 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C56FA37B403; Tue, 21 Aug 2001 23:54:59 -0700 (PDT) (envelope-from jasone@FreeBSD.org) Received: (from jasone@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M6sx694200; Tue, 21 Aug 2001 23:54:59 -0700 (PDT) (envelope-from jasone) Message-Id: <200108220654.f7M6sx694200@freefall.freebsd.org> From: Jason Evans Date: Tue, 21 Aug 2001 23:54:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/onyx Makefile distinfo pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jasone 2001/08/21 23:54:59 PDT Modified files: lang/onyx Makefile distinfo pkg-descr pkg-plist Log: Update to version 2.0.0. Revision Changes Path 1.4 +2 -2 ports/lang/onyx/Makefile 1.4 +1 -1 ports/lang/onyx/distinfo 1.2 +1 -1 ports/lang/onyx/pkg-descr 1.4 +19 -32 ports/lang/onyx/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 Aug 21 23:56:10 2001 Delivered-To: cvs-all@freebsd.org Received: from peter3.wemm.org (c1315225-a.plstn1.sfba.home.com [24.14.150.180]) by hub.freebsd.org (Postfix) with ESMTP id DABCF37B401; Tue, 21 Aug 2001 23:55:55 -0700 (PDT) (envelope-from peter@wemm.org) Received: from overcee.netplex.com.au (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id f7M6ttM77531; Tue, 21 Aug 2001 23:55:55 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 9C46138FD; Tue, 21 Aug 2001 23:55:55 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 To: Julian Elischer Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/i386/loader Makefile In-Reply-To: Date: Tue, 21 Aug 2001 23:55:55 -0700 From: Peter Wemm Message-Id: <20010822065555.9C46138FD@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Julian Elischer wrote: > I think whistle just lost their upgrade path.. > they were loading the loader with the old a.out bootblocks > (4.x based) > assuming nothing changed between then and now it should have worked for > them.. Which bootblocks? sys/i386/boot/biosboot? Or sys/boot/i386/boot2? sys/i386/boot/biosboot is not even in -current. sys/boot/i386/boot2 does both a.out and elf. IMHO, if Whistle are going to go out on a limb with a 5.x release with old bootblocks that are no longer in the tree, I'm sure they can figure out how to change "btxld -f elf" back to "btxld -f aout". I tried this about two weeks ago, on old bootblocks (pre-4.x) and at the boot prompt, "wd(0,a)/boot/loader" was rewarded with "Invalid kernel". Installing /boot/boot2 solved it. I dont know which 2.x bootblocks they were, but they were *not* happy. 3.x and beyond shipped with a.out+elf aware bootblocks. > On Tue, 21 Aug 2001, Peter Wemm wrote: > > > peter 2001/08/21 22:29:25 PDT > > > > Modified files: > > sys/boot/i386/loader Makefile > > Log: > > Generate an ELF /boot/loader instead of fake a.out. The fake a.out wrapp er > > did not work with old a.out-only bootblocks anyway. :-( 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 Aug 21 23:56:32 2001 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (dsl092-013-169.sfo1.dsl.speakeasy.net [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 0369037B406; Tue, 21 Aug 2001 23:56:17 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.5/8.11.1) id f7M6uGQ64923; Tue, 21 Aug 2001 23:56:16 -0700 (PDT) (envelope-from obrien) Date: Tue, 21 Aug 2001 23:56:16 -0700 From: "David O'Brien" To: John Baldwin Cc: Alfred Perlstein , cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys Message-ID: <20010821235616.B64706@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20010821134601.J81307@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from jhb@FreeBSD.org on Tue, Aug 21, 2001 at 01:15:46PM -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Aug 21, 2001 at 01:15:46PM -0700, John Baldwin wrote: > > "current is broken" > > "no it's not" > > "yes it is" > > "give me a crashdump" > > ":P" > > "it panics trying to get a crashdump" > "use ddb" > "i don't have a serial console" > "i can't reproduce this on any of my 6 testboxes *bang head on desk*" > > > etc. Uh, Alpha current has been broken this month and you have gotten crashdump output from me. :-) -- -- 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 Aug 22 0: 4:24 2001 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id A4B4837B401; Wed, 22 Aug 2001 00:04: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.11.3/8.11.3) with ESMTP id f7M74Jq42034; Wed, 22 Aug 2001 01:04:19 -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.11.3/8.11.4) with ESMTP id f7M74JW72958; Wed, 22 Aug 2001 01:04:19 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200108220704.f7M74JW72958@harmony.village.org> Subject: Re: cvs commit: src UPDATING src/sys/conf newvers.sh Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Tue, 21 Aug 2001 23:45:20 PDT." <200108220645.f7M6jKN93219@freefall.freebsd.org> References: <200108220645.f7M6jKN93219@freefall.freebsd.org> Date: Wed, 22 Aug 2001 01:04:19 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <200108220645.f7M6jKN93219@freefall.freebsd.org> Warner Losh writes: : p13: sendmail arugment parsing bug fixed by Simon a few minutes ago. I don't know why I wrote "Simon" here when I really ment Gregory Shapiro. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 0: 9: 4 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 617C237B403; Wed, 22 Aug 2001 00:08:59 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M78xw98448; Wed, 22 Aug 2001 00:08:59 -0700 (PDT) (envelope-from knu) Message-Id: <200108220708.f7M78xw98448@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 22 Aug 2001 00:08:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/portupgrade Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/22 00:08:59 PDT Modified files: sysutils/portupgrade Makefile distinfo Log: Update to 20010822, which fixes some annoying bugs. Overall: * Fix a bug where when -R is set the specified package in the first place is not included somehow. [Reported by: Jose M. Alcaide ] * Improve the path regularization routines. portsdb: * Update the INDEX first, and then the database even if the options are specified in reversed order. (-uU) portupgrade: * Fix a misfeature where "skip" was regarded as failure, when checking for dependent ports' build/install failure. [Pointed out by: Jimmy Olgeni , Jose M. Alcaide ] * Do not move a backup package under PKG_DBDIR, but just keep it under TMPDIR. It should not require a large amount of free space in PKG_DBDIR. [Pointed out by: John Merryweather Cooper ] Revision Changes Path 1.55 +2 -2 ports/sysutils/portupgrade/Makefile 1.50 +1 -1 ports/sysutils/portupgrade/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 0:16:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A5E437B40E; Wed, 22 Aug 2001 00:16:37 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M7GbF99104; Wed, 22 Aug 2001 00:16:37 -0700 (PDT) (envelope-from murray) Message-Id: <200108220716.f7M7GbF99104@freefall.freebsd.org> From: Murray Stokely Date: Wed, 22 Aug 2001 00:16:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/basics chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2001/08/22 00:16:36 PDT Modified files: en_US.ISO8859-1/books/handbook/basics chapter.sgml Log: Add a standard synopsis. Revision Changes Path 1.43 +23 -1 doc/en_US.ISO8859-1/books/handbook/basics/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 Aug 22 0:20:25 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8560E37B403; Wed, 22 Aug 2001 00:20:20 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M7KKX99477; Wed, 22 Aug 2001 00:20:20 -0700 (PDT) (envelope-from murray) Message-Id: <200108220720.f7M7KKX99477@freefall.freebsd.org> From: Murray Stokely Date: Wed, 22 Aug 2001 00:20:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/mirrors chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2001/08/22 00:20:20 PDT Modified files: en_US.ISO8859-1/books/handbook/mirrors chapter.sgml Log: Add a missing word. Revision Changes Path 1.147 +2 -2 doc/en_US.ISO8859-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 Wed Aug 22 0:24:57 2001 Delivered-To: cvs-all@freebsd.org Received: from InterJet.elischer.org (c421509-a.pinol1.sfba.home.com [24.7.86.9]) by hub.freebsd.org (Postfix) with ESMTP id 5320C37B407; Wed, 22 Aug 2001 00:24:42 -0700 (PDT) (envelope-from julian@elischer.org) Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id AAA46186; Wed, 22 Aug 2001 00:23:52 -0700 (PDT) Date: Wed, 22 Aug 2001 00:23:51 -0700 (PDT) From: Julian Elischer To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/i386/loader Makefile In-Reply-To: <20010822065555.9C46138FD@overcee.netplex.com.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Whistle's oldest custommers have machines which were originally installed with 2.2.5 The bootblocks are threfore 2.2.5 bootblocks from /sys/i386/boot with the NEXTBOOT option (as that is critical to how the machines operate) they cannot upgrade to /sys/boot/i386 bootblocks because equivalent functionality to NEXTBOOT is not present. At present they load a kernel called kernel.elf and have the boot loader called 'kernel' so that the oldest machines can be upgraded. On upgrade, the systems replace the entire root partition (they have 2 root partitions and they newfs and then rewrite the one that is not in use). However they do not replace the bootblocks from the upgrade. It is possible that they can draw a line in the sand and say that they will never upgrade past 4.x. So the point is moot, however. (It is also possible that if they ever do a 5.x release it would only be reachable from a specific "other" release which could replace the bootblocks. They would have to add the Nextboot support themselves, or get elf loading working in the old bootblocks. Having said all that I doubt a 5.x release will ever happen at whistle. On Tue, 21 Aug 2001, Peter Wemm wrote: > Julian Elischer wrote: > > I think whistle just lost their upgrade path.. > > they were loading the loader with the old a.out bootblocks > > (4.x based) > > assuming nothing changed between then and now it should have worked for > > them.. > > Which bootblocks? sys/i386/boot/biosboot? Or sys/boot/i386/boot2? > > sys/i386/boot/biosboot is not even in -current. > > sys/boot/i386/boot2 does both a.out and elf. > > IMHO, if Whistle are going to go out on a limb with a 5.x release with old > bootblocks that are no longer in the tree, I'm sure they can figure out how > to change "btxld -f elf" back to "btxld -f aout". > > I tried this about two weeks ago, on old bootblocks (pre-4.x) and at the > boot prompt, "wd(0,a)/boot/loader" was rewarded with "Invalid kernel". > Installing /boot/boot2 solved it. I dont know which 2.x bootblocks they > were, but they were *not* happy. > > 3.x and beyond shipped with a.out+elf aware bootblocks. > > > On Tue, 21 Aug 2001, Peter Wemm wrote: > > > > > peter 2001/08/21 22:29:25 PDT > > > > > > Modified files: > > > sys/boot/i386/loader Makefile > > > Log: > > > Generate an ELF /boot/loader instead of fake a.out. The fake a.out wrapp > er > > > did not work with old a.out-only bootblocks anyway. :-( > > 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 Wed Aug 22 0:30:33 2001 Delivered-To: cvs-all@freebsd.org Received: from winston.freebsd.org (adsl-64-173-15-98.dsl.sntc01.pacbell.net [64.173.15.98]) by hub.freebsd.org (Postfix) with ESMTP id 8157337B406; Wed, 22 Aug 2001 00:30:15 -0700 (PDT) (envelope-from jkh@freebsd.org) Received: from localhost (jkh@localhost [127.0.0.1]) by winston.freebsd.org (8.11.4/8.11.4) with ESMTP id f7M7U3I05862; Wed, 22 Aug 2001 00:30:03 -0700 (PDT) (envelope-from jkh@freebsd.org) To: julian@elischer.org Cc: peter@wemm.org, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/boot/i386/loader Makefile In-Reply-To: References: <20010822065555.9C46138FD@overcee.netplex.com.au> X-Mailer: Mew version 1.94.1 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: <20010822003003C.jkh@freebsd.org> Date: Wed, 22 Aug 2001 00:30:03 -0700 From: Jordan Hubbard X-Dispatcher: imput version 20000228(IM140) Lines: 81 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Erm, isn't Whistle down to 5 employees anyway at this point? It seems a little odd to get worked up over Whistle's upgrade path when its own parent company doesn't show a very clear interest in even having Whistle be around long enough to particularly matter.... - Jordan From: Julian Elischer Subject: Re: cvs commit: src/sys/boot/i386/loader Makefile Date: Wed, 22 Aug 2001 00:23:51 -0700 (PDT) > Whistle's oldest custommers have machines which were originally installed > with 2.2.5 > > The bootblocks are threfore 2.2.5 bootblocks > from /sys/i386/boot with the NEXTBOOT option > (as that is critical to how the machines operate) they cannot upgrade > to /sys/boot/i386 bootblocks because equivalent functionality to NEXTBOOT > is not present. At present they load a kernel called kernel.elf > and have the boot loader called 'kernel' so that the oldest machines can > be upgraded. > > On upgrade, the systems replace the entire root partition > (they have 2 root partitions and they newfs and then rewrite the one > that is not in use). However they do not replace the bootblocks from the > upgrade. It is possible that they can draw a line in the sand and say that > they will never upgrade past 4.x. So the point is moot, however. > > (It is also possible that if they ever do a 5.x release it would only be > reachable from a specific "other" release which could replace the > bootblocks. They would have to add the Nextboot support themselves, or > get elf loading working in the old bootblocks. > > Having said all that I doubt a 5.x release will ever happen at whistle. > > > On Tue, 21 Aug 2001, Peter Wemm wrote: > > > Julian Elischer wrote: > > > I think whistle just lost their upgrade path.. > > > they were loading the loader with the old a.out bootblocks > > > (4.x based) > > > assuming nothing changed between then and now it should have worked for > > > them.. > > > > Which bootblocks? sys/i386/boot/biosboot? Or sys/boot/i386/boot2? > > > > sys/i386/boot/biosboot is not even in -current. > > > > sys/boot/i386/boot2 does both a.out and elf. > > > > IMHO, if Whistle are going to go out on a limb with a 5.x release with old > > bootblocks that are no longer in the tree, I'm sure they can figure out how > > to change "btxld -f elf" back to "btxld -f aout". > > > > I tried this about two weeks ago, on old bootblocks (pre-4.x) and at the > > boot prompt, "wd(0,a)/boot/loader" was rewarded with "Invalid kernel". > > Installing /boot/boot2 solved it. I dont know which 2.x bootblocks they > > were, but they were *not* happy. > > > > 3.x and beyond shipped with a.out+elf aware bootblocks. > > > > > On Tue, 21 Aug 2001, Peter Wemm wrote: > > > > > > > peter 2001/08/21 22:29:25 PDT > > > > > > > > Modified files: > > > > sys/boot/i386/loader Makefile > > > > Log: > > > > Generate an ELF /boot/loader instead of fake a.out. The fake a.out wrapp > > er > > > > did not work with old a.out-only bootblocks anyway. :-( > > > > 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 Wed Aug 22 0:46:29 2001 Delivered-To: cvs-all@freebsd.org Received: from mail6.speakeasy.net (mail6.speakeasy.net [216.254.0.206]) by hub.freebsd.org (Postfix) with ESMTP id 62E7537B40E for ; Wed, 22 Aug 2001 00:46:19 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (qmail 4143 invoked from network); 22 Aug 2001 07:46:18 -0000 Received: from unknown (HELO laptop.baldwin.cx) ([64.81.54.73]) (envelope-sender ) by mail6.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 22 Aug 2001 07:46:18 -0000 Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20010822150135.X5785-100000@besplex.bde.org> Date: Wed, 22 Aug 2001 00:46:25 -0700 (PDT) From: John Baldwin To: Bruce Evans Subject: Re: cvs commit: src/sys/kern kern_shutdown.c Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 22-Aug-01 Bruce Evans wrote: > On Tue, 21 Aug 2001, John Baldwin wrote: > >> jhb 2001/08/21 15:55:20 PDT >> >> Modified files: >> sys/kern kern_shutdown.c >> Log: >> Allow one to restart from a panic in DDB by clearing the panicstr >> variable to NULL. Note that since panic() is marked with __dead2, this >> has somewhat unpredictable results at best. > > Such as "never" working? :-) On i386's panic() has no function epilogue > or return statement, so you have to do these manually to get it to > return. Then the caller may be missing stack cleanups... The easiest > workaround is to declare panic() as returning, but this will cause > lots of compiler warnings. It works sometimes. :) Perhaps what I should do is wrap this in some option (RESTARTABLE_PANICS maybe) and if it is on turn off _dead2 on panic(). > Bruce -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.baldwin.cx/~john/pgpkey.asc "Power Users Use 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 Wed Aug 22 0:46:30 2001 Delivered-To: cvs-all@freebsd.org Received: from mail5.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by hub.freebsd.org (Postfix) with ESMTP id 06C7937B410 for ; Wed, 22 Aug 2001 00:46:21 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (qmail 54382 invoked from network); 22 Aug 2001 07:46:20 -0000 Received: from unknown (HELO laptop.baldwin.cx) ([64.81.54.73]) (envelope-sender ) by mail5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 22 Aug 2001 07:46:20 -0000 Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20010821235616.B64706@dragon.nuxi.com> Date: Wed, 22 Aug 2001 00:46:26 -0700 (PDT) From: John Baldwin To: "David O'Brien" Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, Alfred Perlstein Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 22-Aug-01 David O'Brien wrote: > On Tue, Aug 21, 2001 at 01:15:46PM -0700, John Baldwin wrote: >> > "current is broken" >> > "no it's not" >> > "yes it is" >> > "give me a crashdump" >> > ":P" >> >> "it panics trying to get a crashdump" >> "use ddb" >> "i don't have a serial console" >> "i can't reproduce this on any of my 6 testboxes *bang head on desk*" >> >> > etc. > > Uh, Alpha current has been broken this month and you have gotten > crashdump output from me. > >:-) I was stating the general case here. -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.baldwin.cx/~john/pgpkey.asc "Power Users Use 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 Wed Aug 22 0:46:56 2001 Delivered-To: cvs-all@freebsd.org Received: from mail6.speakeasy.net (mail6.speakeasy.net [216.254.0.206]) by hub.freebsd.org (Postfix) with ESMTP id 00B6137B412 for ; Wed, 22 Aug 2001 00:46:22 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (qmail 4165 invoked from network); 22 Aug 2001 07:46:21 -0000 Received: from unknown (HELO laptop.baldwin.cx) ([64.81.54.73]) (envelope-sender ) by mail6.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 22 Aug 2001 07:46:21 -0000 Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200108220529.f7M5TPs82394@freefall.freebsd.org> Date: Wed, 22 Aug 2001 00:46:27 -0700 (PDT) From: John Baldwin To: Peter Wemm Subject: RE: cvs commit: src/sys/boot/i386/loader Makefile Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 22-Aug-01 Peter Wemm wrote: > peter 2001/08/21 22:29:25 PDT > > Modified files: > sys/boot/i386/loader Makefile > Log: > Generate an ELF /boot/loader instead of fake a.out. The fake a.out wrapper > did not work with old a.out-only bootblocks anyway. :-( You just broke pxeldr. :( -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.baldwin.cx/~john/pgpkey.asc "Power Users Use 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 Wed Aug 22 0:52:50 2001 Delivered-To: cvs-all@freebsd.org Received: from gate.qubesoft.com (gate.qubesoft.com [212.113.16.243]) by hub.freebsd.org (Postfix) with ESMTP id 96ACD37B403; Wed, 22 Aug 2001 00:52:41 -0700 (PDT) (envelope-from n_hibma@qubesoft.com) Received: from builder03 (dhcp139.qubesoft.com [192.168.1.139]) by gate.qubesoft.com (8.11.3/8.11.3) with SMTP id f7M7qYl90321; Wed, 22 Aug 2001 08:52:34 +0100 (BST) (envelope-from n_hibma@qubesoft.com) From: "Nick Hibma" To: "Brian Somers" Cc: , , Subject: RE: cvs commit: src/sys/dev/usb umass.c Date: Wed, 22 Aug 2001 08:52:34 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-Reply-To: <200108212326.f7LNQHU51685@hak.lan.Awfulhak.org> X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Importance: Normal Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ATAPI works in some limited cases, but definitely not in all. This is just the attachment code to remind me to include it in the rewritten probe. Nick > -----Original Message----- > From: Brian Somers [mailto:brian@Awfulhak.org] > Sent: 22 August 2001 00:26 > To: Nick Hibma > Cc: cvs-committers@FreeBSD.org; cvs-all@FreeBSD.org; > brian@freebsd-services.com > Subject: Re: cvs commit: src/sys/dev/usb umass.c > > > > n_hibma 2001/08/21 15:03:19 PDT > > > > Modified files: > > sys/dev/usb umass.c > > Log: > > Support for the HP 8200e CD writer. (commented out) > > > > Submitted by: Heath Nielson > > > > Revision Changes Path > > 1.44 +13 -1 src/sys/dev/usb/umass.c > > Hmm, aren't the 8200 devices ATAPI ? Does this mean ATAPI works > these days ? > > -- > Brian > http://www.freebsd-services.com/ > Don't _EVER_ lose your sense of humour ! > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 1: 2: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AF21A37B40A; Wed, 22 Aug 2001 01:02:01 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M821D04465; Wed, 22 Aug 2001 01:02:01 -0700 (PDT) (envelope-from peter) Message-Id: <200108220802.f7M821D04465@freefall.freebsd.org> From: Peter Wemm Date: Wed, 22 Aug 2001 01:02:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/i386/loader Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/22 01:02:01 PDT Modified files: sys/boot/i386/loader Makefile Log: OK, now I am scared of pxeldr. It had /boot/loader appended onto the end of it and decoded the headers. Submitted by: jhb Revision Changes Path 1.52 +2 -2 src/sys/boot/i386/loader/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 1: 4:10 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E413E37B40D; Wed, 22 Aug 2001 01:04:04 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M844q04702; Wed, 22 Aug 2001 01:04:04 -0700 (PDT) (envelope-from knu) Message-Id: <200108220804.f7M844q04702@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 22 Aug 2001 01:04:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/ruby-avl Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/22 01:04:04 PDT Modified files: devel Makefile Added files: devel/ruby-avl Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add ruby-avl, AVL tree class for Ruby. Revision Changes Path 1.621 +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 Wed Aug 22 1: 4:23 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2C9A637B41D; Wed, 22 Aug 2001 01:04:13 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M84Dm04752; Wed, 22 Aug 2001 01:04:13 -0700 (PDT) (envelope-from knu) Message-Id: <200108220804.f7M84Dm04752@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 22 Aug 2001 01:04: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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/22 01:04:13 PDT Modified files: . modules Log: ruby-avl --> ports/devel/ruby-avl Revision Changes Path 1.3698 +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 Aug 22 1:18:52 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 572A937B40A; Wed, 22 Aug 2001 01:18:45 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M8IjB09262; Wed, 22 Aug 2001 01:18:45 -0700 (PDT) (envelope-from imp) Message-Id: <200108220818.f7M8IjB09262@freefall.freebsd.org> From: Warner Losh Date: Wed, 22 Aug 2001 01:18:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src UPDATING X-FreeBSD-CVS-Branch: RELENG_4_3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/22 01:18:45 PDT Modified files: (Branch: RELENG_4_3) . UPDATING Log: Note that p12 is the subject of FreeBSD-SA-01:55. Revision Changes Path 1.73.2.28.2.7 +2 -2 src/UPDATING To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 1:20:43 2001 Delivered-To: cvs-all@freebsd.org Received: from peter3.wemm.org (c1315225-a.plstn1.sfba.home.com [24.14.150.180]) by hub.freebsd.org (Postfix) with ESMTP id 96AE037B401; Wed, 22 Aug 2001 01:20:25 -0700 (PDT) (envelope-from peter@wemm.org) Received: from overcee.netplex.com.au (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id f7M8KMM77959; Wed, 22 Aug 2001 01:20:22 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id DC1EA38FD; Wed, 22 Aug 2001 01:20:20 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 To: Julian Elischer Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/i386/loader Makefile In-Reply-To: Date: Wed, 22 Aug 2001 01:20:20 -0700 From: Peter Wemm Message-Id: <20010822082020.DC1EA38FD@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Julian Elischer wrote: > Whistle's oldest custommers have machines which were originally installed > with 2.2.5 > > The bootblocks are threfore 2.2.5 bootblocks > from /sys/i386/boot with the NEXTBOOT option > (as that is critical to how the machines operate) they cannot upgrade > to /sys/boot/i386 bootblocks because equivalent functionality to NEXTBOOT > is not present. At present they load a kernel called kernel.elf > and have the boot loader called 'kernel' so that the oldest machines can > be upgraded. I understand that.. But if whistle are building all this old stuff specially, I'm sure they can figure out how to change three letters "elf" to four letters "aout" in one file. The support is fundamental to the btxld command, and isn't going anywhere. > On upgrade, the systems replace the entire root partition > (they have 2 root partitions and they newfs and then rewrite the one > that is not in use). However they do not replace the bootblocks from the > upgrade. It is possible that they can draw a line in the sand and say that > they will never upgrade past 4.x. So the point is moot, however. > > (It is also possible that if they ever do a 5.x release it would only be > reachable from a specific "other" release which could replace the > bootblocks. They would have to add the Nextboot support themselves, or > get elf loading working in the old bootblocks. I realize that. But I think you're overestimating the amount of trauma that this one-line change would have caused. I was actually contemplating seeing what it would take to add nextboot-like functionality to boot2 with the space savings from only having to support one format. > Having said all that I doubt a 5.x release will ever happen at whistle. I doubt that there is any reason to, given that everything significant is getting MFC'ed and will likely be for quite some time. I'm not sure that 5.x is going to be suitable for small/embedded systems like the interjet for a while.. Maybe 6.x though, if whistle is still around and hasn't been borged by then. 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 Wed Aug 22 1:24:12 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1905E37B40E; Wed, 22 Aug 2001 01:24:03 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) Received: (from rnordier@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M8O3M09802; Wed, 22 Aug 2001 01:24:03 -0700 (PDT) (envelope-from rnordier) From: Message-Id: <200108220824.f7M8O3M09802@freefall.freebsd.org> Subject: Re: cvs commit: src/sys/boot/i386/loader Makefile In-Reply-To: <200108220529.f7M5TPs82394@freefall.freebsd.org> from Peter Wemm at "Aug 21, 2001 10:29:25 pm" To: peter@FreeBSD.org (Peter Wemm) Date: Wed, 22 Aug 2001 01:24:03 -0700 (PDT) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > peter 2001/08/21 22:29:25 PDT > > Modified files: > sys/boot/i386/loader Makefile > Log: > Generate an ELF /boot/loader instead of fake a.out. The fake a.out wrapper > did not work with old a.out-only bootblocks anyway. :-( I don't mind about the change, but your statement that the a.out wrapper did not work is less than accurate (as well as being less than fair). As confirmation of that, I've just booted a 4.3R system here using bootblocks taken straight off a FreeBSD 2.0 (January 1995) CD. This was all gone into in some detail on the mailing lists several years ago, when I related tests involving a whole range of 2.x bootblocks, all of which were able to load the (then 3.x) /boot/loader. At the time, no-one could come up with bootblocks which didn't work. Whether you've subsequently managed to do so or not, this stuff basically worked, and it's annoying to have contrary assertions embedded in the cvs logs now. -- Robert Nordier To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 1:26:53 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 93CB437B408; Wed, 22 Aug 2001 01:26:47 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M8Qlt10195; Wed, 22 Aug 2001 01:26:47 -0700 (PDT) (envelope-from knu) Message-Id: <200108220826.f7M8Qlt10195@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 22 Aug 2001 01:26:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/ruby-xmlscan Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/22 01:26:47 PDT Modified files: textproc Makefile Added files: textproc/ruby-xmlscan Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add ruby-xmlscan, pure Ruby XML/HTML scanner and XPath processor/compiler modules. Revision Changes Path 1.230 +2 -1 ports/textproc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 1:27: 7 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3534A37B41C; Wed, 22 Aug 2001 01:26:55 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M8QtX10246; Wed, 22 Aug 2001 01:26:55 -0700 (PDT) (envelope-from knu) Message-Id: <200108220826.f7M8QtX10246@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 22 Aug 2001 01:26: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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/22 01:26:55 PDT Modified files: . modules Log: ruby-xmlscan --> ports/textproc/ruby-xmlscan Revision Changes Path 1.3699 +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 Aug 22 1:40:42 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CCEF437B406; Wed, 22 Aug 2001 01:40:33 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M8eXn11578; Wed, 22 Aug 2001 01:40:33 -0700 (PDT) (envelope-from knu) Message-Id: <200108220840.f7M8eXn11578@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 22 Aug 2001 01:40:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/ruby-xslt Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/22 01:40:33 PDT Modified files: textproc Makefile Added files: textproc/ruby-xslt Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add ruby-xslt, an XSLT processor in pure Ruby. Revision Changes Path 1.231 +2 -1 ports/textproc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 1:40:52 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 82F3637B41E; Wed, 22 Aug 2001 01:40:44 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M8eiY11641; Wed, 22 Aug 2001 01:40:44 -0700 (PDT) (envelope-from knu) Message-Id: <200108220840.f7M8eiY11641@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 22 Aug 2001 01:40: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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/22 01:40:44 PDT Modified files: . modules Log: ruby-xslt --> ports/textproc/ruby-xslt Revision Changes Path 1.3700 +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 Aug 22 1:41:56 2001 Delivered-To: cvs-all@freebsd.org Received: from peter3.wemm.org (c1315225-a.plstn1.sfba.home.com [24.14.150.180]) by hub.freebsd.org (Postfix) with ESMTP id C571137B406; Wed, 22 Aug 2001 01:41:46 -0700 (PDT) (envelope-from peter@wemm.org) Received: from overcee.netplex.com.au (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id f7M8fkM78071; Wed, 22 Aug 2001 01:41:46 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 79E3638FD; Wed, 22 Aug 2001 01:41:46 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 To: rnordier@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/i386/loader Makefile In-Reply-To: <200108220824.f7M8O3M09802@freefall.freebsd.org> Date: Wed, 22 Aug 2001 01:41:46 -0700 From: Peter Wemm Message-Id: <20010822084146.79E3638FD@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rnordier@FreeBSD.org wrote: > > peter 2001/08/21 22:29:25 PDT > > > > Modified files: > > sys/boot/i386/loader Makefile > > Log: > > Generate an ELF /boot/loader instead of fake a.out. The fake a.out wrapp er > > did not work with old a.out-only bootblocks anyway. :-( > > I don't mind about the change, but your statement that the a.out > wrapper did not work is less than accurate (as well as being less > than fair). Yes, it was uncalled for. Sorry about that. > As confirmation of that, I've just booted a 4.3R system here using > bootblocks taken straight off a FreeBSD 2.0 (January 1995) CD. > > This was all gone into in some detail on the mailing lists several > years ago, when I related tests involving a whole range of 2.x > bootblocks, all of which were able to load the (then 3.x) /boot/loader. > > At the time, no-one could come up with bootblocks which didn't > work. Whether you've subsequently managed to do so or not, this > stuff basically worked, and it's annoying to have contrary assertions > embedded in the cvs logs now. I have a disk image of a set that are unhappy. I will dig them up tomorrow. When you enter /boot/loader at the boot prompt, it says: "Invalid kernel". If I cannot produce a set, I'll retract it in the commit logs. 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 Wed Aug 22 1:52:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D462037B413; Wed, 22 Aug 2001 01:52:13 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M8qDv12941; Wed, 22 Aug 2001 01:52:13 -0700 (PDT) (envelope-from knu) Message-Id: <200108220852.f7M8qDv12941@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 22 Aug 2001 01:52:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/ruby-mwdom Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/22 01:52:13 PDT Modified files: textproc Makefile Added files: textproc/ruby-mwdom Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add ruby-mwdom, DOM level2 module, XMLWriter and XHTMLWriter for Ruby. Revision Changes Path 1.232 +2 -1 ports/textproc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 1:52:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F4E337B429; Wed, 22 Aug 2001 01:52:22 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M8qMJ13009; Wed, 22 Aug 2001 01:52:22 -0700 (PDT) (envelope-from knu) Message-Id: <200108220852.f7M8qMJ13009@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 22 Aug 2001 01:52: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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/22 01:52:22 PDT Modified files: . modules Log: ruby-mwdom --> ports/textproc/ruby-mwdom Revision Changes Path 1.3701 +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 Aug 22 2:21:29 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5009637B40B; Wed, 22 Aug 2001 02:21:24 -0700 (PDT) (envelope-from bp@FreeBSD.org) Received: (from bp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M9LOg18750; Wed, 22 Aug 2001 02:21:24 -0700 (PDT) (envelope-from bp) Message-Id: <200108220921.f7M9LOg18750@freefall.freebsd.org> From: Boris Popov Date: Wed, 22 Aug 2001 02:21:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/ncplib Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bp 2001/08/22 02:21:24 PDT Modified files: net/ncplib Makefile Log: Update URL. Revision Changes Path 1.5 +2 -2 ports/net/ncplib/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 2:46:59 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1FEFC37B40B; Wed, 22 Aug 2001 02:46:55 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7M9ksX21051; Wed, 22 Aug 2001 02:46:54 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108220946.f7M9ksX21051@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 22 Aug 2001 02:46:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/comms/mserver Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/22 02:46:54 PDT Modified files: comms/mserver Makefile Log: Update MASTER_SITES. Submitted by: fenner's distfiles survey Revision Changes Path 1.8 +2 -1 ports/comms/mserver/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 3: 2:36 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C11FB37B40D; Wed, 22 Aug 2001 03:02:27 -0700 (PDT) (envelope-from wjv@FreeBSD.org) Received: (from wjv@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MA2Rn22849; Wed, 22 Aug 2001 03:02:27 -0700 (PDT) (envelope-from wjv) Message-Id: <200108221002.f7MA2Rn22849@freefall.freebsd.org> From: Johann Visagie Date: Wed, 22 Aug 2001 03:02:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/biology/phylip Makefile distinfo pkg-descr pkg-plist ports/biology/phylip/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wjv 2001/08/22 03:02:27 PDT Modified files: biology/phylip Makefile distinfo pkg-descr pkg-plist biology/phylip/files patch-aa Log: - Update to version 3.6.a2.1 - since the distribution tarball hadn't been renamed between versions, this port failed checksum. - Apply some whitespace edits and cut pkg-descr down to size to placate portlint. Reported by: Jason Stajich Approved by: No response from MAINTAINER Revision Changes Path 1.4 +12 -14 ports/biology/phylip/Makefile 1.3 +1 -1 ports/biology/phylip/distinfo 1.3 +1 -23 ports/biology/phylip/pkg-descr 1.4 +2 -0 ports/biology/phylip/pkg-plist 1.2 +15 -6 ports/biology/phylip/files/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 Aug 22 3: 5:46 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 533FD37B40A; Wed, 22 Aug 2001 03:05:40 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MA5ev26107; Wed, 22 Aug 2001 03:05:40 -0700 (PDT) (envelope-from ru) Message-Id: <200108221005.f7MA5ev26107@freefall.freebsd.org> From: Ruslan Ermilov Date: Wed, 22 Aug 2001 03:05:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 rc.conf.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2001/08/22 03:05:40 PDT Modified files: share/man/man5 rc.conf.5 Log: Zap reference to tickadj(8). Forgotten in rev. 1.24. Revision Changes Path 1.131 +1 -2 src/share/man/man5/rc.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 3: 8:32 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DB7E237B403; Wed, 22 Aug 2001 03:08:19 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MA8JH26485; Wed, 22 Aug 2001 03:08:19 -0700 (PDT) (envelope-from knu) Message-Id: <200108221008.f7MA8JH26485@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 22 Aug 2001 03:08:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/ruby Makefile ports/lang/ruby-devel Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/22 03:08:19 PDT Modified files: lang/ruby Makefile lang/ruby-devel Makefile Log: Utilize ${MANEXT} to fix manpage symlinks. Revision Changes Path 1.73 +2 -2 ports/lang/ruby/Makefile 1.18 +2 -2 ports/lang/ruby-devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 3:21:31 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3017237B406; Wed, 22 Aug 2001 03:21:20 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MALKE27762; Wed, 22 Aug 2001 03:21:20 -0700 (PDT) (envelope-from ru) Message-Id: <200108221021.f7MALKE27762@freefall.freebsd.org> From: Ruslan Ermilov Date: Wed, 22 Aug 2001 03:21:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 hier.7 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2001/08/22 03:21:19 PDT Modified files: share/man/man7 hier.7 Log: Mentions about /var/spool/secretmail were deleted in BSD.var.dist,v 1.2. Revision Changes Path 1.55 +1 -5 src/share/man/man7/hier.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 3:32: 3 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4721337B412; Wed, 22 Aug 2001 03:31:55 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MAVtS28940; Wed, 22 Aug 2001 03:31:55 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108221031.f7MAVtS28940@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 22 Aug 2001 03:31:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/py-gnupg Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/22 03:31:54 PDT Modified files: security/py-gnupg Makefile distinfo Log: upgrade to 0.2.1 drop maintainership Revision Changes Path 1.2 +3 -3 ports/security/py-gnupg/Makefile 1.2 +1 -1 ports/security/py-gnupg/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 3:46:58 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3FDDB37B413; Wed, 22 Aug 2001 03:46:54 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MAksg30394; Wed, 22 Aug 2001 03:46:54 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108221046.f7MAksg30394@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 22 Aug 2001 03:46:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/py-gnupg Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/22 03:46:53 PDT Modified files: security/py-gnupg Makefile Log: pass maintainership Submitted by: shell@shellhung.org (new maintainer) Revision Changes Path 1.3 +2 -2 ports/security/py-gnupg/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 4: 0:54 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C9DB937B408; Wed, 22 Aug 2001 04:00:48 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MB0mM31885; Wed, 22 Aug 2001 04:00:48 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108221100.f7MB0mM31885@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 22 Aug 2001 04:00:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/libxml pkg-descr ports/textproc/libxml2 pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/22 04:00:48 PDT Modified files: textproc/libxml pkg-descr textproc/libxml2 pkg-descr Log: Add WWW. Submitted by: kuriyama Revision Changes Path 1.2 +2 -0 ports/textproc/libxml/pkg-descr 1.2 +2 -0 ports/textproc/libxml2/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 Aug 22 4:13:49 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C228D37B407; Wed, 22 Aug 2001 04:13:45 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MBDjo41863; Wed, 22 Aug 2001 04:13:45 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108221113.f7MBDjo41863@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 22 Aug 2001 04:13:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/mad pkg-plist ports/audio/mad/files patch-libmad-Makefile.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/22 04:13:44 PDT Modified files: audio/mad pkg-plist Added files: audio/mad/files patch-libmad-Makefile.in Log: fix shlib support PR: 29927 Submitted by: MAINTAINER Revision Changes Path 1.4 +1 -1 ports/audio/mad/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 4:22:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5609137B403; Wed, 22 Aug 2001 04:22:15 -0700 (PDT) (envelope-from wjv@FreeBSD.org) Received: (from wjv@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MBMFn42694; Wed, 22 Aug 2001 04:22:15 -0700 (PDT) (envelope-from wjv) Message-Id: <200108221122.f7MBMFn42694@freefall.freebsd.org> From: Johann Visagie Date: Wed, 22 Aug 2001 04:22:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/py-twisted Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wjv 2001/08/22 04:22:14 PDT Modified files: devel/py-twisted Makefile pkg-plist Log: - Add an explicit dependency on py-tkinter (instead of relying on an implied dependency via py-unit). - Add a run-time dependency on py-gnome, which is required by some non- mission-critical elements of this package. (This should possibly be an optional dependency(?) - I'm in two minds about this.) - Do not install two somewhat Debian-specific scripts. - Bump the PORTREVISION once more. Revision Changes Path 1.7 +7 -6 ports/devel/py-twisted/Makefile 1.6 +0 -2 ports/devel/py-twisted/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 4:42: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E750C37B403; Wed, 22 Aug 2001 04:41:54 -0700 (PDT) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MBfsF44656; Wed, 22 Aug 2001 04:41:54 -0700 (PDT) (envelope-from tg) Message-Id: <200108221141.f7MBfsF44656@freefall.freebsd.org> From: Thomas Gellekum Date: Wed, 22 Aug 2001 04:41:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/opendx Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tg 2001/08/22 04:41:54 PDT Modified files: graphics/opendx Makefile Log: Take out the check for ${XFREE86_VERSION} >= 4; libGL always needs the thread lib now. Revision Changes Path 1.17 +5 -12 ports/graphics/opendx/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 5: 7:46 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C19CC37B41A; Wed, 22 Aug 2001 05:07:30 -0700 (PDT) (envelope-from wjv@FreeBSD.org) Received: (from wjv@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MC7UB50360; Wed, 22 Aug 2001 05:07:30 -0700 (PDT) (envelope-from wjv) Message-Id: <200108221207.f7MC7UB50360@freefall.freebsd.org> From: Johann Visagie Date: Wed, 22 Aug 2001 05:07: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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wjv 2001/08/22 05:07:30 PDT Modified files: . modules Log: seqio --> ports/biology/seqio Revision Changes Path 1.3702 +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 Aug 22 5: 7:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3259F37B411; Wed, 22 Aug 2001 05:07:26 -0700 (PDT) (envelope-from wjv@FreeBSD.org) Received: (from wjv@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MC7Qv50315; Wed, 22 Aug 2001 05:07:26 -0700 (PDT) (envelope-from wjv) Message-Id: <200108221207.f7MC7Qv50315@freefall.freebsd.org> From: Johann Visagie Date: Wed, 22 Aug 2001 05:07:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/biology Makefile ports/biology/seqio Makefile distinfo pkg-comment pkg-descr pkg-plist ports/biology/seqio/files patch-Makefile patch-fmtseq patch-grepseq patch-seqio X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wjv 2001/08/22 05:07:26 PDT Modified files: biology Makefile Added files: biology/seqio Makefile distinfo pkg-comment pkg-descr pkg-plist biology/seqio/files patch-Makefile patch-fmtseq patch-grepseq patch-seqio Log: Add seqio 1.2.2, a set of C functions which can read/write biological sequence files. PR: 29922 Submitted by: Tony Maher Revision Changes Path 1.39 +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 Wed Aug 22 5:59:23 2001 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 75A1737B417; Wed, 22 Aug 2001 05:59:16 -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.9.3/8.8.7) with ESMTP id WAA31015; Wed, 22 Aug 2001 22:59:14 +1000 Date: Wed, 22 Aug 2001 22:59:08 +1000 (EST) From: Bruce Evans X-X-Sender: To: Mike Silbersack Cc: , Subject: Re: cvs commit: src/sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h In-Reply-To: <200108220059.f7M0xDe16950@freefall.freebsd.org> Message-ID: <20010822225728.H8304-100000@besplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 21 Aug 2001, Mike Silbersack wrote: > silby 2001/08/21 17:59:13 PDT > > Modified files: (Branch: RELENG_4) > sys/netinet tcp_input.c tcp_seq.h tcp_subr.c > tcp_timer.c tcp_usrreq.c tcp_var.h > Log: > Much delayed but now present: RFC 1948 style sequence numbers Actually delayed by 57 seconds relative to the commit to -current. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 6: 5:13 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 168E737B41C; Wed, 22 Aug 2001 06:04:59 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MD4xl60949; Wed, 22 Aug 2001 06:04:59 -0700 (PDT) (envelope-from bde) Message-Id: <200108221304.f7MD4xl60949@freefall.freebsd.org> From: Bruce Evans Date: Wed, 22 Aug 2001 06:04:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa cy.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bde 2001/08/22 06:04:59 PDT Modified files: (Branch: RELENG_4) sys/i386/isa cy.c Log: MFC (1.120: fixed minor numbers when there is more than one cy card). PR: 19256 Revision Changes Path 1.97.2.2 +16 -7 src/sys/i386/isa/cy.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 6:18:16 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CDB3F37B41D; Wed, 22 Aug 2001 06:18:10 -0700 (PDT) (envelope-from wjv@FreeBSD.org) Received: (from wjv@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MDIAO66765; Wed, 22 Aug 2001 06:18:10 -0700 (PDT) (envelope-from wjv) Message-Id: <200108221318.f7MDIAO66765@freefall.freebsd.org> From: Johann Visagie Date: Wed, 22 Aug 2001 06:18:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/biology/hmmer Makefile distinfo pkg-plist ports/biology/hmmer/files patch-Makefile.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wjv 2001/08/22 06:18:10 PDT Modified files: biology/hmmer Makefile distinfo pkg-plist biology/hmmer/files patch-Makefile.in Log: - Update port to version 2.2g Revision Changes Path 1.10 +14 -13 ports/biology/hmmer/Makefile 1.3 +1 -1 ports/biology/hmmer/distinfo 1.7 +7 -204 ports/biology/hmmer/pkg-plist 1.2 +13 -6 ports/biology/hmmer/files/patch-Makefile.in To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 6:57:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 60C0637B40F; Wed, 22 Aug 2001 06:57:14 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MDvEF77230; Wed, 22 Aug 2001 06:57:14 -0700 (PDT) (envelope-from ru) Message-Id: <200108221357.f7MDvEF77230@freefall.freebsd.org> From: Ruslan Ermilov Date: Wed, 22 Aug 2001 06:57:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4/man4.i386 tx.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2001/08/22 06:57:14 PDT Modified files: share/man/man4/man4.i386 tx.4 Log: mdoc(7) police: - removed whitespace at EOL - removed hard sentence break - minor grammar and spelling fixes - s/pseudo-device/device/ Revision Changes Path 1.19 +15 -10 src/share/man/man4/man4.i386/tx.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 7:16:38 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B4E437B41C; Wed, 22 Aug 2001 07:16:32 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MEGWo82737; Wed, 22 Aug 2001 07:16:32 -0700 (PDT) (envelope-from ru) Message-Id: <200108221416.f7MEGWo82737@freefall.freebsd.org> From: Ruslan Ermilov Date: Wed, 22 Aug 2001 07:16:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys reboot.2 src/lib/libdevstat devstat.3 src/lib/libtacplus tacplus.conf.5 src/lib/libusb usb.3 src/sbin/fsck fsck.8 src/share/man/man5 passwd.5 periodic.conf.5 rc.conf.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2001/08/22 07:16:32 PDT Modified files: lib/libc/sys reboot.2 lib/libdevstat devstat.3 lib/libtacplus tacplus.conf.5 lib/libusb usb.3 sbin/fsck fsck.8 share/man/man5 passwd.5 periodic.conf.5 rc.conf.5 Log: mdoc(7) police: Fixed broken xrefs. Revision Changes Path 1.13 +2 -2 src/lib/libc/sys/reboot.2 1.17 +2 -2 src/lib/libdevstat/devstat.3 1.6 +7 -3 src/lib/libtacplus/tacplus.conf.5 1.6 +2 -2 src/lib/libusb/usb.3 1.27 +2 -2 src/sbin/fsck/fsck.8 1.34 +3 -3 src/share/man/man5/passwd.5 1.34 +2 -2 src/share/man/man5/periodic.conf.5 1.132 +2 -2 src/share/man/man5/rc.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 7:43:49 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 068ED37B41C; Wed, 22 Aug 2001 07:43:46 -0700 (PDT) (envelope-from wjv@FreeBSD.org) Received: (from wjv@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MEhjZ86452; Wed, 22 Aug 2001 07:43:45 -0700 (PDT) (envelope-from wjv) Message-Id: <200108221443.f7MEhjZ86452@freefall.freebsd.org> From: Johann Visagie Date: Wed, 22 Aug 2001 07:43:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/biology/migrate Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wjv 2001/08/22 07:43:45 PDT Modified files: biology/migrate Makefile distinfo Log: - Update to version 1.2.4 Revision Changes Path 1.2 +2 -2 ports/biology/migrate/Makefile 1.2 +1 -1 ports/biology/migrate/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 8:30: 3 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 389EB37B429; Wed, 22 Aug 2001 08:29:54 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MFTsv95236; Wed, 22 Aug 2001 08:29:54 -0700 (PDT) (envelope-from sada) Message-Id: <200108221529.f7MFTsv95236@freefall.freebsd.org> From: SADA Kenji Date: Wed, 22 Aug 2001 08:29:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/kb2mb2/files patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sada 2001/08/22 08:29:53 PDT Added files: x11/kb2mb2/files patch-ab Log: Cope with Xvnc. Submitted by: Christophe GIAUME To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 8:41:48 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C602037B420; Wed, 22 Aug 2001 08:41:44 -0700 (PDT) (envelope-from iwasaki@FreeBSD.org) Received: (from iwasaki@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MFfic96232; Wed, 22 Aug 2001 08:41:44 -0700 (PDT) (envelope-from iwasaki) Message-Id: <200108221541.f7MFfic96232@freefall.freebsd.org> From: Mitsuru IWASAKI Date: Wed, 22 Aug 2001 08:41:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 locore.s X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG iwasaki 2001/08/22 08:41:44 PDT Modified files: sys/i386/i386 locore.s Log: Move CR4.PGE enabling code after paging is enabled via CR0.PG based on the description (2.5. CONTROL REGISTERS) of Intel developer's manual at: ftp://download.intel.com/design/PentiumII/manuals/24319202.pdf Reviewed by: peter, bde, tlambert2@mindspring.com Pointed-out by: "Shin'ya Kumabuchi" MFC after: 1 week Revision Changes Path 1.145 +7 -8 src/sys/i386/i386/locore.s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 8:44:23 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 286D337B40E; Wed, 22 Aug 2001 08:44:20 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MFiKl96501; Wed, 22 Aug 2001 08:44:20 -0700 (PDT) (envelope-from imp) Message-Id: <200108221544.f7MFiKl96501@freefall.freebsd.org> From: Warner Losh Date: Wed, 22 Aug 2001 08:44:19 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/22 08:44:19 PDT Modified files: . UPDATING Log: Remove some stray text that crept into this verison of the updating file. It is for current, not the 4.3 release branch. Revision Changes Path 1.167 +1 -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 Wed Aug 22 8:50:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AD50937B41C; Wed, 22 Aug 2001 08:50:06 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MFo6X97070; Wed, 22 Aug 2001 08:50:06 -0700 (PDT) (envelope-from imp) Message-Id: <200108221550.f7MFo6X97070@freefall.freebsd.org> From: Warner Losh Date: Wed, 22 Aug 2001 08:50:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src UPDATING src/sys/conf newvers.sh X-FreeBSD-CVS-Branch: RELENG_4_3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/22 08:50:05 PDT Modified files: (Branch: RELENG_4_3) . UPDATING sys/conf newvers.sh Log: p13 really was the IRC DCC issue. Add that and move the sendmail issue to p14. Submitted by: Makoto `MAR' MATSUSHITA Revision Changes Path 1.73.2.28.2.8 +6 -3 src/UPDATING 1.44.2.14.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 Aug 22 9: 1:34 2001 Delivered-To: cvs-all@freebsd.org Received: from niwun.pair.com (niwun.pair.com [209.68.2.70]) by hub.freebsd.org (Postfix) with SMTP id BDA9337B431 for ; Wed, 22 Aug 2001 09:01:20 -0700 (PDT) (envelope-from silby@silby.com) Received: (qmail 37122 invoked by uid 3193); 22 Aug 2001 16:01:19 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 22 Aug 2001 16:01:19 -0000 Date: Wed, 22 Aug 2001 12:01:19 -0400 (EDT) From: Mike Silbersack X-Sender: To: Kris Kennaway Cc: Mike Silbersack , , Subject: Re: cvs commit: src/sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h In-Reply-To: <20010821195920.A23850@xor.obsecurity.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 21 Aug 2001, Kris Kennaway wrote: > On Tue, Aug 21, 2001 at 05:58:16PM -0700, Mike Silbersack wrote: > > In order to ensure security and functionality, RFC 1948 style > > initial sequence number generation has been implemented. Barring > > any major crypographic breakthroughs, this algorithm should be > > unbreakable. > > Except by brute force. A 32-bit sequence number just isn't naturally > very resistent to guessing, and on a fast connection, under favourable > circumstances, an attacker could simply cycle through them all. > > Kris True, I suppose that could become feasible as more bandwidth becomes available. When it does, I guess we'll have to add rate limiting of some sort to incoming SYNs from the same host if too many bad ones are received. RST attacks would be hard to stop in the face of such an attack, though. I'm not going to worry about it: I don't have any boxes with enough bandwidth for the attack to work on. :) Mike "Silby" Silbersack To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 9: 6:39 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EB71537B41C; Wed, 22 Aug 2001 09:06:33 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Received: (from jeh@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MG6X801867; Wed, 22 Aug 2001 09:06:33 -0700 (PDT) (envelope-from jeh) Message-Id: <200108221606.f7MG6X801867@freefall.freebsd.org> From: "James E. Housley" Date: Wed, 22 Aug 2001 09:06:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/uvscan-dat Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeh 2001/08/22 09:06:33 PDT Modified files: security/uvscan-dat Makefile distinfo Log: Update to 4155 Revision Changes Path 1.47 +2 -2 ports/security/uvscan-dat/Makefile 1.47 +1 -1 ports/security/uvscan-dat/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 9:30:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BD4337B42B; Wed, 22 Aug 2001 09:30:41 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MGUfK04526; Wed, 22 Aug 2001 09:30:41 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108221630.f7MGUfK04526@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 22 Aug 2001 09:30:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/gnumeric/files patch-src::Makefile.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/22 09:30:40 PDT Removed files: math/gnumeric/files patch-src::Makefile.in Log: Forgot to cvs rm this patch when committing 0.70 update. Submitted by: olgeni To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 10:12:22 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EB95B37B41B; Wed, 22 Aug 2001 10:12:11 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MHCBl11696; Wed, 22 Aug 2001 10:12:11 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108221712.f7MHCBl11696@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 22 Aug 2001 10:12:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/t1lib Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/22 10:12:11 PDT Modified files: devel/t1lib Makefile distinfo pkg-plist Log: upgrade to 1.2 Revision Changes Path 1.17 +3 -3 ports/devel/t1lib/Makefile 1.8 +1 -1 ports/devel/t1lib/distinfo 1.8 +2 -2 ports/devel/t1lib/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 10:27:32 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F2B2537B410; Wed, 22 Aug 2001 10:27:22 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MHRMD13657; Wed, 22 Aug 2001 10:27:22 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108221727.f7MHRMD13657@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 22 Aug 2001 10:27:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/dictd Makefile ports/net/dictd/files patch-configure patch-zlib::Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/22 10:27:22 PDT Modified files: net/dictd Makefile Added files: net/dictd/files patch-configure Removed files: net/dictd/files patch-zlib::Makefile Log: use system zlib Submitted by: obrien Revision Changes Path 1.8 +3 -2 ports/net/dictd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 10:29: 7 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1935337B413; Wed, 22 Aug 2001 10:28:53 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MHSrN13867; Wed, 22 Aug 2001 10:28:53 -0700 (PDT) (envelope-from obrien) Message-Id: <200108221728.f7MHSrN13867@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 22 Aug 2001 10:28:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/pccts Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/22 10:28:53 PDT Modified files: devel/pccts Makefile distinfo pkg-plist Log: Update to 1.33.25. [and drop ownership] PR: 28511 Submitted by: Sergey A.Osokin Revision Changes Path 1.15 +5 -5 ports/devel/pccts/Makefile 1.10 +1 -1 ports/devel/pccts/distinfo 1.8 +6 -3 ports/devel/pccts/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 10:40:59 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4175E37B407; Wed, 22 Aug 2001 10:40:55 -0700 (PDT) (envelope-from joerg@FreeBSD.org) Received: (from joerg@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MHetR15408; Wed, 22 Aug 2001 10:40:55 -0700 (PDT) (envelope-from joerg) Message-Id: <200108221740.f7MHetR15408@freefall.freebsd.org> From: Joerg Wunsch Date: Wed, 22 Aug 2001 10:40:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/pw pw_user.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joerg 2001/08/22 10:40:55 PDT Modified files: (Branch: RELENG_4) usr.sbin/pw pw_user.c Log: MFC: rev 1.47 and 1.48. One fixes a serious bug in the USE_MD5CRYPT version of pw_getpass() (which is not compiled in by default), the other one adds proper random seeding to the default version of pw_getpass() so the generated passwords are actually random. Approved by: jkh Revision Changes Path 1.34.2.9 +3 -2 src/usr.sbin/pw/pw_user.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 10:47:10 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9BAE737B41B; Wed, 22 Aug 2001 10:46:52 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MHkqx16114; Wed, 22 Aug 2001 10:46:52 -0700 (PDT) (envelope-from obrien) Message-Id: <200108221746.f7MHkqx16114@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 22 Aug 2001 10:46:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/urlview Makefile ports/textproc/urlview/files patch-url_handler.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/22 10:46:52 PDT Modified files: textproc/urlview Makefile Added files: textproc/urlview/files patch-url_handler.sh Log: Fix bash'isms. Make PREFIX clean (by me) PR: 23332 Submitted by: Kerne Fahey , Glenn Johnson Revision Changes Path 1.13 +5 -1 ports/textproc/urlview/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 11: 7: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ABFAE37B419; Wed, 22 Aug 2001 11:06:44 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MI6ia21525; Wed, 22 Aug 2001 11:06:44 -0700 (PDT) (envelope-from obrien) Message-Id: <200108221806.f7MI6ia21525@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 22 Aug 2001 11:06:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/ngrep Makefile distinfo pkg-descr pkg-plist ports/net/ngrep/files patch-ngrep.c patch-Makefile.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/22 11:06:44 PDT Modified files: net/ngrep Makefile distinfo pkg-descr pkg-plist net/ngrep/files patch-ngrep.c Removed files: net/ngrep/files patch-Makefile.in Log: Update to 1.40. - update mastersite - install more docs, use DOCSDIR - properly support NOPORTDOCS in pkg-plist - sync pkg-descr with current features - update ngrep.c (the t->tm_mon+1 change has been integrated in 1.40) - remove patch-Makefile.in (no longer necessary) PR: 29588 Submitted by: Pete Fritchman Revision Changes Path 1.7 +9 -5 ports/net/ngrep/Makefile 1.3 +1 -1 ports/net/ngrep/distinfo 1.2 +6 -3 ports/net/ngrep/pkg-descr 1.3 +7 -3 ports/net/ngrep/pkg-plist 1.4 +8 -17 ports/net/ngrep/files/patch-ngrep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 11: 6:42 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 214E337B40D; Wed, 22 Aug 2001 11:06:37 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MI6bX21446; Wed, 22 Aug 2001 11:06:37 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108221806.f7MI6bX21446@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 22 Aug 2001 11:06:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/gnomelibs Makefile distinfo pkg-plist ports/x11/gnomelibs/files patch-aa patch-bi patch-bl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/22 11:06:37 PDT Modified files: x11/gnomelibs Makefile distinfo pkg-plist x11/gnomelibs/files patch-aa patch-bi patch-bl Log: Update to 1.4.1.1. Revision Changes Path 1.88 +1 -2 ports/x11/gnomelibs/Makefile 1.35 +1 -1 ports/x11/gnomelibs/distinfo 1.30 +147 -3 ports/x11/gnomelibs/pkg-plist 1.16 +19 -7 ports/x11/gnomelibs/files/patch-aa 1.6 +12 -9 ports/x11/gnomelibs/files/patch-bi 1.2 +7 -4 ports/x11/gnomelibs/files/patch-bl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 11: 8: 9 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 20AE137B408; Wed, 22 Aug 2001 11:08:05 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MI85e21777; Wed, 22 Aug 2001 11:08:05 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108221808.f7MI85e21777@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 22 Aug 2001 11:08:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/gal Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/22 11:08:05 PDT Modified files: x11-toolkits/gal Makefile distinfo pkg-plist Log: Update to 0.11.1. Revision Changes Path 1.20 +1 -1 ports/x11-toolkits/gal/Makefile 1.14 +1 -1 ports/x11-toolkits/gal/distinfo 1.12 +2 -1 ports/x11-toolkits/gal/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 11:10:41 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A03437B419; Wed, 22 Aug 2001 11:10:38 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MIAcu22062; Wed, 22 Aug 2001 11:10:38 -0700 (PDT) (envelope-from dillon) Message-Id: <200108221810.f7MIAcu22062@freefall.freebsd.org> From: Matt Dillon Date: Wed, 22 Aug 2001 11:10:37 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2001/08/22 11:10:37 PDT Modified files: sys/kern vfs_bio.c Log: Remove the code that limited the buffer_map to 1/2 the size of the kernel_map. maxbcache takes care of this now and the 1/2 limit can interfere with testing. Suggested by: bde Revision Changes Path 1.287 +3 -1 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 Wed Aug 22 11:13: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 294FD37B433; Wed, 22 Aug 2001 11:12:58 -0700 (PDT) (envelope-from chern@FreeBSD.org) Received: (from chern@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MICvC22356; Wed, 22 Aug 2001 11:12:57 -0700 (PDT) (envelope-from chern) Message-Id: <200108221812.f7MICvC22356@freefall.freebsd.org> From: Chern Lee Date: Wed, 22 Aug 2001 11:12:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/install chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG chern 2001/08/22 11:12:57 PDT Modified files: en_US.ISO8859-1/books/handbook/install chapter.sgml Log: British English -> American English: * organisation -> organization * organise -> organize * optimisation -> optimization * optimises -> optimizes * artefacts -> artifacts Spelling: * asociated -> associated Revision Changes Path 1.96 +9 -9 doc/en_US.ISO8859-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 Aug 22 11:19:47 2001 Delivered-To: cvs-all@freebsd.org Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by hub.freebsd.org (Postfix) with ESMTP id A2E7A37B41B; Wed, 22 Aug 2001 11:19:27 -0700 (PDT) (envelope-from j@uriah.heep.sax.de) Received: (from uucp@localhost) by sax.sax.de (8.9.3/8.9.3) with UUCP id UAA14049; Wed, 22 Aug 2001 20:19:25 +0200 (CEST) Received: (from j@localhost) by uriah.heep.sax.de (8.11.4/8.11.4) id f7MI7Cd01913; Wed, 22 Aug 2001 20:07:12 +0200 (MET DST) (envelope-from j) Date: Wed, 22 Aug 2001 20:07:12 +0200 From: Joerg Wunsch To: Oliver Lehmann Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: [Fwd: Re: cvs commit: ports/sysutils/xcdroast Makefile pkg-plist ports/sysutils/xcdroast/files patch-Makefile] Message-ID: <20010822200712.A1838@uriah.heep.sax.de> Reply-To: Joerg Wunsch References: <20010822022317.5cb08144.lehmann@ans-netz.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20010822022317.5cb08144.lehmann@ans-netz.de>; from lehmann@ans-netz.de on Wed, Aug 22, 2001 at 02:23:17AM +0200 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG As Oliver Lehmann wrote: > It (better cdrecord, readcd and cdda2wav) needs read/write permission on > > > /dev/xpt* > and > /dev/pass* This is a design bug of cdrecord. Its author insists on the opinion that doing direct SCSI bus handling from a userland program is the optimal way of implementing this kind of functionality. So there won't be a fix for it. The cdrecord manual claims that it would be safe to be setuid root, but then, users have reported about sig11 (buffer overflows), so who's going to trust that? (The IMHO correct way would be to split off the device handling into a device driver. But since nobody is going to implement this, it won't happen anytime soon.) -- cheers, J"org .-.-. --... ...-- -.. . DL8DTL http://www.sax.de/~joerg/ NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 11:35:36 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 498EC37B438; Wed, 22 Aug 2001 11:35:29 -0700 (PDT) (envelope-from ade@FreeBSD.org) Received: (from ade@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MIZTX24542; Wed, 22 Aug 2001 11:35:29 -0700 (PDT) (envelope-from ade) Message-Id: <200108221835.f7MIZTX24542@freefall.freebsd.org> From: Ade Lovett Date: Wed, 22 Aug 2001 11:35:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ade 2001/08/22 11:35:29 PDT Modified files: . access Log: Welcome Pete Fritchman (petef) to the ever-growing band of strangely insane lifeforms that want to be ports monkeys. Pete is here by the usual "virtue" of having submitted one too many quality PRs. Now he can deal with them himself. Approved by: core Mentored by: ade Account created by: cshumway Revision Changes Path 1.254 +2 -1 CVSROOT/access To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 11:38:22 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 02C9B37B43B; Wed, 22 Aug 2001 11:37:48 -0700 (PDT) (envelope-from yar@FreeBSD.org) Received: (from yar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MIblJ24869; Wed, 22 Aug 2001 11:37:47 -0700 (PDT) (envelope-from yar) Message-Id: <200108221837.f7MIblJ24869@freefall.freebsd.org> From: Yar Tikhiy Date: Wed, 22 Aug 2001 11:37:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ifconfig ifconfig.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yar 2001/08/22 11:37:47 PDT Modified files: sbin/ifconfig ifconfig.8 Log: ``create'' and ``destroy'' are command modifiers (.Cm), not flags (.Fl). Revision Changes Path 1.47 +3 -3 src/sbin/ifconfig/ifconfig.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 11:38:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C64D37B41B; Wed, 22 Aug 2001 11:38:14 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MIcDe24929; Wed, 22 Aug 2001 11:38:13 -0700 (PDT) (envelope-from obrien) Message-Id: <200108221838.f7MIcDe24929@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 22 Aug 2001 11:38:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/ia64sim Makefile pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/22 11:38:13 PDT Modified files: emulators/ia64sim Makefile pkg-descr pkg-plist Log: Tweak install(partically from PR), use DOCDIR, use NOPORTDOCS(from PR) PR: 28076 Submitted by: Patrick Li Revision Changes Path 1.4 +4 -4 ports/emulators/ia64sim/Makefile 1.2 +1 -0 ports/emulators/ia64sim/pkg-descr 1.3 +3 -2 ports/emulators/ia64sim/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 11:42: 1 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 125DE37B416; Wed, 22 Aug 2001 11:41:47 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MIfl825447; Wed, 22 Aug 2001 11:41:47 -0700 (PDT) (envelope-from sobomax) Message-Id: <200108221841.f7MIfl825447@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 22 Aug 2001 11:41:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/pan/files patch-gmime::gmime-utils.c patch-pan::message-send.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/08/22 11:41:47 PDT Added files: news/pan/files patch-gmime::gmime-utils.c patch-pan::message-send.c Log: Don't use nl_langinfo() - this interface doesn't exist in 4-stable. Reported by: Jose M. Alcaide To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 11:45: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B448337B416; Wed, 22 Aug 2001 11:45:01 -0700 (PDT) (envelope-from iedowse@FreeBSD.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MIj1t26117; Wed, 22 Aug 2001 11:45:01 -0700 (PDT) (envelope-from iedowse) Message-Id: <200108221845.f7MIj1t26117@freefall.freebsd.org> From: Ian Dowse Date: Wed, 22 Aug 2001 11:45:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ufs ufs_lookup.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG iedowse 2001/08/22 11:45:01 PDT Modified files: (Branch: RELENG_4) sys/ufs/ufs ufs_lookup.c Log: MFC: 1.53; don't call ufsdirhash_move() on the unused directory entries that fsck leaves behind. Approved by: jkh Revision Changes Path 1.33.2.6 +2 -2 src/sys/ufs/ufs/ufs_lookup.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 11:51:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 92DD537B40F; Wed, 22 Aug 2001 11:51:15 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MIpFr26680; Wed, 22 Aug 2001 11:51:15 -0700 (PDT) (envelope-from obrien) Message-Id: <200108221851.f7MIpFr26680@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 22 Aug 2001 11:51:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/vietnamese/vnterm/files vnterm.1V X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/22 11:51:15 PDT Modified files: vietnamese/vnterm/files vnterm.1V Log: Our -man package does not understand .PN and .MS. So use .B (bold) until I figure out what is the correct spelling for .PN and .MS. Revision Changes Path 1.3 +21 -19 ports/vietnamese/vnterm/files/vnterm.1V To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 11:54:26 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C710037B43C; Wed, 22 Aug 2001 11:54:19 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MIsJ427342; Wed, 22 Aug 2001 11:54:19 -0700 (PDT) (envelope-from obrien) Message-Id: <200108221854.f7MIsJ427342@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 22 Aug 2001 11:54:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/vietnamese/vnelvis/files patch-vnelvis.1V X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/22 11:54:19 PDT Added files: vietnamese/vnelvis/files patch-vnelvis.1V Log: Our -man package does not understand .PN and .MS. So use .B (bold) until I figure out what is the correct spelling for .PN and .MS. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 12: 0:10 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B4A8F37B43E; Wed, 22 Aug 2001 12:00:03 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MJ03L28267; Wed, 22 Aug 2001 12:00:03 -0700 (PDT) (envelope-from petef) Message-Id: <200108221900.f7MJ03L28267@freefall.freebsd.org> From: Pete Fritchman Date: Wed, 22 Aug 2001 12:00:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/news news.xml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/22 12:00:03 PDT Modified files: en/news news.xml Log: Add a newflash about me being a new committer. Reviewed by: ade Revision Changes Path 1.14 +10 -1 www/en/news/news.xml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 12: 8: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 187DD37B41F; Wed, 22 Aug 2001 12:07:59 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MJ7x632418; Wed, 22 Aug 2001 12:07:59 -0700 (PDT) (envelope-from petef) Message-Id: <200108221907.f7MJ7x632418@freefall.freebsd.org> From: Pete Fritchman Date: Wed, 22 Aug 2001 12:07:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors article.sgml doc/en_US.ISO8859-1/books/handbook authors.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/22 12:07:59 PDT Modified files: en_US.ISO8859-1/articles/contributors article.sgml en_US.ISO8859-1/books/handbook authors.ent Log: - add an entity for myself - remove myself from the additional contributors section and add myself to the developers section Reviewed by: ade Revision Changes Path 1.12 +5 -5 doc/en_US.ISO8859-1/articles/contributors/article.sgml 1.180 +3 -1 doc/en_US.ISO8859-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 Wed Aug 22 12:12:28 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B24A837B422; Wed, 22 Aug 2001 12:12:24 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MJCOl32878; Wed, 22 Aug 2001 12:12:24 -0700 (PDT) (envelope-from alex) Message-Id: <200108221912.f7MJCOl32878@freefall.freebsd.org> From: Alexander Langer Date: Wed, 22 Aug 2001 12:12:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_exec.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alex 2001/08/22 12:12:24 PDT Modified files: sys/kern kern_exec.c Log: Fix a simple typo I just happened to find. Revision Changes Path 1.136 +2 -2 src/sys/kern/kern_exec.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 12:52:13 2001 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 13DC237B43C; Wed, 22 Aug 2001 12:51:47 -0700 (PDT) (envelope-from des@ofug.org) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id VAA06346; Wed, 22 Aug 2001 21:51:41 +0200 (CEST) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Matt Dillon Cc: Alfred Perlstein , John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h References: <200108211842.f7LIgkp03186@freefall.freebsd.org> <20010821134601.J81307@elvis.mu.org> <200108212254.f7LMsFQ68740@earth.backplane.com> From: Dag-Erling Smorgrav Date: 22 Aug 2001 21:51:41 +0200 In-Reply-To: Message-ID: Lines: 15 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dag-Erling Smorgrav writes: > After some discussion with jhb on IRC, I rebooted in single-user mode > and ran 'fsck -y' on all file systems. It found several unreferenced > directories and files on / and /home, and a handful of incorrect link > counts. Background fsck is now off, and I'm somewhat confident my > interrupt latency problems will not resurface, though it's too early > to tell. Actually, it didn't help (or not much). I'm considering turning soft updates off altogether, but as I'm leaving for .de tomorrow, I won't have time to test much. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 12:58:48 2001 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 007D737B421; Wed, 22 Aug 2001 12:57:54 -0700 (PDT) (envelope-from des@ofug.org) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id VAA06366; Wed, 22 Aug 2001 21:57:51 +0200 (CEST) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Alfred Perlstein Cc: Mikhail Teterin , Kris Kennaway , John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h References: <20010821170420.L81307@elvis.mu.org> <200108220212.f7M2CfR37801@corbulon.video-collage.com> <20010821214818.N81307@elvis.mu.org> From: Dag-Erling Smorgrav Date: 22 Aug 2001 21:57:51 +0200 In-Reply-To: <20010821214818.N81307@elvis.mu.org> Message-ID: Lines: 20 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alfred Perlstein writes: > * Mikhail Teterin [010821 21:13] wrote: > > > Please read the section in the handbook about kernel debugging and get > > > us a useful traceback/crashdump as well as systat type info. > > Yeah, and then what? Nobody seems to care either way... :-( > That's insulting to the people that are finding and fixing bugs. How sweet, Alfred still believes in fairies... FYI, I haven't been able to get a crash dump for several months now, but nobody seemed to care when I reported it. I haven't yet had a chance to test the changes jhb committed yesterday, though, maybe it's finally been fixed. (don't bother telling me to "read the section about kernel debugging", BTW - I've written and/or edited large parts of it) DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 13:14: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B65937B40A; Wed, 22 Aug 2001 13:13:51 -0700 (PDT) (envelope-from dirk@FreeBSD.org) Received: (from dirk@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MKDpe41492; Wed, 22 Aug 2001 13:13:51 -0700 (PDT) (envelope-from dirk) Message-Id: <200108222013.f7MKDpe41492@freefall.freebsd.org> From: Dirk Froemberg Date: Wed, 22 Aug 2001 13:13:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mod_php3 Makefile ports/www/mod_php4 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dirk 2001/08/22 13:13:51 PDT Modified files: www/mod_php3 Makefile www/mod_php4 Makefile Log: Set IS_INTERACTIVE if port is interactive. 8-) Submitted by: olgeni Revision Changes Path 1.128 +5 -1 ports/www/mod_php3/Makefile 1.147 +5 -1 ports/www/mod_php4/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 13:31:27 2001 Delivered-To: cvs-all@freebsd.org Received: from foo.osd.bsdi.com (foo.lab.nuxi.com [66.123.5.77]) by hub.freebsd.org (Postfix) with ESMTP id 914D837B417; Wed, 22 Aug 2001 13:31:01 -0700 (PDT) (envelope-from jhb@foo.osd.bsdi.com) Received: (from jhb@localhost) by foo.osd.bsdi.com (8.11.4/8.11.4) id f7MKUuY82838; Wed, 22 Aug 2001 13:30:56 -0700 (PDT) (envelope-from jhb) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20010822084146.79E3638FD@overcee.netplex.com.au> Date: Wed, 22 Aug 2001 13:30:56 -0700 (PDT) From: John Baldwin To: Peter Wemm Subject: Re: cvs commit: src/sys/boot/i386/loader Makefile Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, rnordier@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 22-Aug-01 Peter Wemm wrote: > rnordier@FreeBSD.org wrote: >> > peter 2001/08/21 22:29:25 PDT >> > >> > Modified files: >> > sys/boot/i386/loader Makefile >> > Log: >> > Generate an ELF /boot/loader instead of fake a.out. The fake a.out >> > wrapp > er >> > did not work with old a.out-only bootblocks anyway. :-( >> >> I don't mind about the change, but your statement that the a.out >> wrapper did not work is less than accurate (as well as being less >> than fair). > > Yes, it was uncalled for. Sorry about that. > >> As confirmation of that, I've just booted a 4.3R system here using >> bootblocks taken straight off a FreeBSD 2.0 (January 1995) CD. >> >> This was all gone into in some detail on the mailing lists several >> years ago, when I related tests involving a whole range of 2.x >> bootblocks, all of which were able to load the (then 3.x) /boot/loader. >> >> At the time, no-one could come up with bootblocks which didn't >> work. Whether you've subsequently managed to do so or not, this >> stuff basically worked, and it's annoying to have contrary assertions >> embedded in the cvs logs now. > > I have a disk image of a set that are unhappy. I will dig them up > tomorrow. When you enter /boot/loader at the boot prompt, it > says: "Invalid kernel". > > If I cannot produce a set, I'll retract it in the commit logs. If so, it may be that the old blocks except a certain fixed entry point for the kernel and the breakage could be my fault. At one point during the PXE stuff the entry point of the loader was bumped up to 2 meg (from 1 meg) and it stayed that way, though it should be fine to knock it back down to 1 meg again. If you can produce the problem try reverting that makefile tweak to teh loader makefile to see if it works again. -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.Baldwin.cx/~john/pgpkey.asc "Power Users Use 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 Wed Aug 22 13:36:57 2001 Delivered-To: cvs-all@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id E6B2F37B42B; Wed, 22 Aug 2001 13:36:49 -0700 (PDT) (envelope-from dillon@earth.backplane.com) Received: (from dillon@localhost) by earth.backplane.com (8.11.4/8.11.2) id f7MKaGP78077; Wed, 22 Aug 2001 13:36:16 -0700 (PDT) (envelope-from dillon) Date: Wed, 22 Aug 2001 13:36:16 -0700 (PDT) From: Matt Dillon Message-Id: <200108222036.f7MKaGP78077@earth.backplane.com> To: Dag-Erling Smorgrav Cc: Alfred Perlstein , John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h References: <200108211842.f7LIgkp03186@freefall.freebsd.org> <20010821134601.J81307@elvis.mu.org> <200108212254.f7LMsFQ68740@earth.backplane.com> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG : :Dag-Erling Smorgrav writes: :> After some discussion with jhb on IRC, I rebooted in single-user mode :> and ran 'fsck -y' on all file systems. It found several unreferenced :> directories and files on / and /home, and a handful of incorrect link :> counts. Background fsck is now off, and I'm somewhat confident my :> interrupt latency problems will not resurface, though it's too early :> to tell. : :Actually, it didn't help (or not much). I'm considering turning soft :updates off altogether, but as I'm leaving for .de tomorrow, I won't :have time to test much. : :DES :-- :Dag-Erling Smorgrav - des@ofug.org A kernel core and kernel.debug made from a DDB panic while the system is in this syncer load state would be helpful. I might be able to figure out what is going on from that. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 13:38:16 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 452C537B443; Wed, 22 Aug 2001 13:38:04 -0700 (PDT) (envelope-from rpratt@FreeBSD.org) Received: (from rpratt@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MKc4744724; Wed, 22 Aug 2001 13:38:04 -0700 (PDT) (envelope-from rpratt) Message-Id: <200108222038.f7MKc4744724@freefall.freebsd.org> From: Randy Pratt Date: Wed, 22 Aug 2001 13:38:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook Makefile doc/en_US.ISO8859-1/books/handbook/install edit-inetd-conf.scr chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rpratt 2001/08/22 13:38:04 PDT Modified files: en_US.ISO8859-1/books/handbook Makefile en_US.ISO8859-1/books/handbook/install chapter.sgml Added files: en_US.ISO8859-1/books/handbook/install edit-inetd-conf.scr Log: Add new section for configuring internet services (inetd). Update security section to reflect options in 4.4 Approved by: murray Revision Changes Path 1.46 +2 -1 doc/en_US.ISO8859-1/books/handbook/Makefile 1.97 +108 -22 doc/en_US.ISO8859-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 Aug 22 13:40:53 2001 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 69BF137B40A; Wed, 22 Aug 2001 13:40:35 -0700 (PDT) (envelope-from des@ofug.org) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id WAA06574; Wed, 22 Aug 2001 22:40:31 +0200 (CEST) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Matt Dillon Cc: Alfred Perlstein , John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h References: <200108211842.f7LIgkp03186@freefall.freebsd.org> <20010821134601.J81307@elvis.mu.org> <200108212254.f7LMsFQ68740@earth.backplane.com> <200108222036.f7MKaGP78077@earth.backplane.com> From: Dag-Erling Smorgrav Date: 22 Aug 2001 22:40:31 +0200 In-Reply-To: <200108222036.f7MKaGP78077@earth.backplane.com> Message-ID: Lines: 11 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Matt Dillon writes: > A kernel core and kernel.debug made from a DDB panic > while the system is in this syncer load state would be helpful. I > might be able to figure out what is going on from that. As mentioned elsewhere in this thread, I haven't been able to get a crash dump in several months. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 13:51:25 2001 Delivered-To: cvs-all@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id 5494D37B444; Wed, 22 Aug 2001 13:51:06 -0700 (PDT) (envelope-from dillon@earth.backplane.com) Received: (from dillon@localhost) by earth.backplane.com (8.11.4/8.11.2) id f7MKoY478333; Wed, 22 Aug 2001 13:50:34 -0700 (PDT) (envelope-from dillon) Date: Wed, 22 Aug 2001 13:50:34 -0700 (PDT) From: Matt Dillon Message-Id: <200108222050.f7MKoY478333@earth.backplane.com> To: Dag-Erling Smorgrav Cc: Alfred Perlstein , John Baldwin , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h References: <200108211842.f7LIgkp03186@freefall.freebsd.org> <20010821134601.J81307@elvis.mu.org> <200108212254.f7LMsFQ68740@earth.backplane.com> <200108222036.f7MKaGP78077@earth.backplane.com> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG : :Matt Dillon writes: :> A kernel core and kernel.debug made from a DDB panic :> while the system is in this syncer load state would be helpful. I :> might be able to figure out what is going on from that. : :As mentioned elsewhere in this thread, I haven't been able to get a :crash dump in several months. : :DES :-- :Dag-Erling Smorgrav - des@ofug.org Oops. Well, then the next best thing is to gdb the live system while the syncer is in this weird load state. Maybe when you get back from wherever you are going you can arrange it with me and I'll dive in and try to figure out what is going on... -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 14:36:47 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 07EAD37B411; Wed, 22 Aug 2001 14:36:26 -0700 (PDT) (envelope-from chern@FreeBSD.org) Received: (from chern@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MLaPZ68433; Wed, 22 Aug 2001 14:36:25 -0700 (PDT) (envelope-from chern) Message-Id: <200108222136.f7MLaPZ68433@freefall.freebsd.org> From: Chern Lee Date: Wed, 22 Aug 2001 14:36:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG chern 2001/08/22 14:36:25 PDT Modified files: en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml Log: Place a host -> gateway list into an informaltable. Revision Changes Path 1.94 +22 -6 doc/en_US.ISO8859-1/books/handbook/advanced-networking/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 Aug 22 14:40:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F2BC37B411; Wed, 22 Aug 2001 14:40:12 -0700 (PDT) (envelope-from chern@FreeBSD.org) Received: (from chern@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MLeCK69016; Wed, 22 Aug 2001 14:40:12 -0700 (PDT) (envelope-from chern) Message-Id: <200108222140.f7MLeCK69016@freefall.freebsd.org> From: Chern Lee Date: Wed, 22 Aug 2001 14:40:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG chern 2001/08/22 14:40:12 PDT Modified files: en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml Log: Change standard chapter sypnosis to form complete sentences: Before reading this chapter you should: "understand"... "be familiar with"... Revision Changes Path 1.95 +3 -3 doc/en_US.ISO8859-1/books/handbook/advanced-networking/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 Aug 22 14:44: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D698137B406; Wed, 22 Aug 2001 14:43:46 -0700 (PDT) (envelope-from rpratt@FreeBSD.org) Received: (from rpratt@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MLhkM69441; Wed, 22 Aug 2001 14:43:46 -0700 (PDT) (envelope-from rpratt) Message-Id: <200108222143.f7MLhkM69441@freefall.freebsd.org> From: Randy Pratt Date: Wed, 22 Aug 2001 14:43:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/install security.scr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rpratt 2001/08/22 14:43:46 PDT Modified files: en_US.ISO8859-1/books/handbook/install security.scr Log: Update security options image for release (4.4) Approved by: murray Revision Changes Path 1.2 +1 -1 doc/en_US.ISO8859-1/books/handbook/install/security.scr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 14:52:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D55C637B40F; Wed, 22 Aug 2001 14:52:12 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MLqC270194; Wed, 22 Aug 2001 14:52:12 -0700 (PDT) (envelope-from knu) Message-Id: <200108222152.f7MLqC270194@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 22 Aug 2001 14:52:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/portupgrade Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/22 14:52:12 PDT Modified files: sysutils/portupgrade Makefile distinfo Log: Update to 20010823. I feel it's getting as stable as before... :) Overall: - Fix commands and libraries to run on a statically linked ruby. - If a command fails to load dynamic modules with dynamically linked ruby, restart itself with statically linked ruby. This is to cope with the 4.3 -> 4.4 upgrade, since ruby's dynamic modules are under a directory with a name including a FreeBSD version. Now portupgrade can upgrade itself and ruby even after a major FreeBSD upgrade. portupgrade: - Fix a bug where portupgrade -sS 'su root -c %s' did not properly work. [Submitted by: KOMATSU Shinichiro ] portcvsweb: - Accept a port path as well. portsdb: - Adopt better error handling and a better PORTS_DBDIR selection algorithm. - Check database errors a bit harder. Revision Changes Path 1.56 +4 -3 ports/sysutils/portupgrade/Makefile 1.51 +1 -1 ports/sysutils/portupgrade/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 15:22:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 654EA37B40B; Wed, 22 Aug 2001 15:22:10 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MMMA275872; Wed, 22 Aug 2001 15:22:10 -0700 (PDT) (envelope-from obrien) Message-Id: <200108222222.f7MMMA275872@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 22 Aug 2001 15:22:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/xosview/files patch-kernel.cc patch-kernel.h patch-swapinternal.cc patch-swapinternal.h patch-swapmeter.cc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/22 15:22:06 PDT Modified files: sysutils/xosview/files patch-kernel.cc patch-kernel.h patch-swapinternal.cc patch-swapinternal.h patch-swapmeter.cc Log: Use a consistant 64-bit int type. Revision Changes Path 1.4 +1 -1 ports/sysutils/xosview/files/patch-kernel.cc 1.3 +1 -1 ports/sysutils/xosview/files/patch-kernel.h 1.2 +4 -4 ports/sysutils/xosview/files/patch-swapinternal.cc 1.2 +2 -2 ports/sysutils/xosview/files/patch-swapinternal.h 1.2 +1 -1 ports/sysutils/xosview/files/patch-swapmeter.cc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 15:30:38 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5518537B444; Wed, 22 Aug 2001 15:30:27 -0700 (PDT) (envelope-from nik@FreeBSD.org) Received: (from nik@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MMURB76500; Wed, 22 Aug 2001 15:30:27 -0700 (PDT) (envelope-from nik) Message-Id: <200108222230.f7MMURB76500@freefall.freebsd.org> From: Nik Clayton Date: Wed, 22 Aug 2001 15:30:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/share/mk doc.docbook.mk X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nik 2001/08/22 15:30:27 PDT Modified files: share/mk doc.docbook.mk Log: Discover the -s parameter to pkg_create, and remove the dependency on installing the files before packaging them up. Revision Changes Path 1.44 +6 -4 doc/share/mk/doc.docbook.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 15:55:16 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8269837B420; Wed, 22 Aug 2001 15:55:11 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MMtBs78922; Wed, 22 Aug 2001 15:55:11 -0700 (PDT) (envelope-from petef) Message-Id: <200108222255.f7MMtBs78922@freefall.freebsd.org> From: Pete Fritchman Date: Wed, 22 Aug 2001 15:55:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/astro/fooseti Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/22 15:55:03 PDT Modified files: astro/fooseti Makefile Log: Change my email address to petef@FreeBSD.org for the ports I maintain. Reviewed by: ade Revision Changes Path 1.2 +2 -2 ports/astro/fooseti/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 16: 4: 3 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 99D8537B446; Wed, 22 Aug 2001 16:04:00 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MN40j81058; Wed, 22 Aug 2001 16:04:00 -0700 (PDT) (envelope-from jhb) Message-Id: <200108222304.f7MN40j81058@freefall.freebsd.org> From: John Baldwin Date: Wed, 22 Aug 2001 16:04:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/efancylauncher Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/22 16:04:00 PDT Modified files: x11/efancylauncher Makefile Log: Depend on the x11-wm/libepplet port for libepplet rather than the x11-wm/epplets port. Revision Changes Path 1.4 +2 -2 ports/x11/efancylauncher/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 16: 8:30 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A71D37B410; Wed, 22 Aug 2001 16:07:27 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MN7RR85827; Wed, 22 Aug 2001 16:07:27 -0700 (PDT) (envelope-from petef) Message-Id: <200108222307.f7MN7RR85827@freefall.freebsd.org> From: Pete Fritchman Date: Wed, 22 Aug 2001 16:07:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/astro/tkseti Makefile ports/audio/mp3info Makefile ports/audio/napster Makefile ports/databases/mysql2pgsql Makefile ports/databases/p5-DBIWrapper Makefile ports/deskutils/dailystrips Makefile ports/deskutils/jlj Makefile ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/22 16:07:25 PDT Modified files: astro/tkseti Makefile audio/mp3info Makefile audio/napster Makefile databases/mysql2pgsql Makefile databases/p5-DBIWrapper Makefile deskutils/dailystrips Makefile deskutils/jlj Makefile devel/cscope Makefile devel/cvspadm Makefile devel/devtodo Makefile devel/libevent Makefile devel/p5-Class-Date Makefile devel/p5-Config-Setting Makefile devel/p5-Curses-Widgets Makefile devel/patch Makefile devel/rvi Makefile editors/joe-devel Makefile ftp/bftpd Makefile ftp/p5-Net-FTPServer Makefile games/dopewars Makefile games/eboard Makefile graphics/p5-Graphics-ColorNames Makefile graphics/peps Makefile graphics/synaesthesia Makefile irc/scrollz Makefile mail/demime Makefile mail/getmail Makefile mail/glbiff Makefile mail/maildrop Makefile mail/p5-Mail-Audit Makefile mail/p5-Mail-Verify Makefile mail/pgen Makefile mail/qtools Makefile mail/regm Makefile mail/rmoldmail Makefile mail/tkrat Makefile misc/explosions Makefile misc/p5-Geo-Weather Makefile misc/reed Makefile net/etherape Makefile net/ipcalc Makefile net/iperf Makefile net/nslint Makefile net/p5-File-Rsync Makefile net/p5-SNMP_Session Makefile net/passlogd Makefile news/newsgrab Makefile news/p5-NNTPClient Makefile security/p5-Digest-MD2 Makefile security/p5-Digest-MD5 Makefile security/secpanel Makefile security/ssh-multiadd Makefile sysutils/colorize Makefile sysutils/log_analysis Makefile sysutils/service-config Makefile textproc/ascii2pdf Makefile textproc/p5-HTML-Format Makefile textproc/p5-PDF-Create Makefile textproc/p5-URI-Find Makefile textproc/pspell Makefile www/amyc Makefile www/cgiwrap Makefile www/crawl Makefile www/hypermail Makefile www/mdw Makefile www/mod_layout Makefile www/p5-CGI-Application Makefile www/p5-CGI-Cache Makefile www/p5-HTML-Table Makefile www/p5-libwww Makefile x11-fm/cfm Makefile x11-fonts/p5-Font-AFM Makefile x11-wm/fvwm2 Makefile Log: Change my email address to petef@FreeBSD.org for the ports I maintain. Reviewed by: ade Revision Changes Path 1.11 +2 -2 ports/astro/tkseti/Makefile 1.10 +2 -2 ports/audio/mp3info/Makefile 1.16 +2 -2 ports/audio/napster/Makefile 1.3 +2 -2 ports/databases/mysql2pgsql/Makefile 1.4 +2 -2 ports/databases/p5-DBIWrapper/Makefile 1.4 +2 -2 ports/deskutils/dailystrips/Makefile 1.3 +2 -2 ports/deskutils/jlj/Makefile 1.18 +2 -2 ports/devel/cscope/Makefile 1.3 +2 -2 ports/devel/cvspadm/Makefile 1.4 +2 -2 ports/devel/devtodo/Makefile 1.2 +2 -2 ports/devel/libevent/Makefile 1.4 +2 -2 ports/devel/p5-Class-Date/Makefile 1.2 +3 -3 ports/devel/p5-Config-Setting/Makefile 1.2 +3 -3 ports/devel/p5-Curses-Widgets/Makefile 1.9 +2 -2 ports/devel/patch/Makefile 1.3 +2 -2 ports/devel/rvi/Makefile 1.21 +2 -2 ports/editors/joe-devel/Makefile 1.4 +2 -2 ports/ftp/bftpd/Makefile 1.5 +2 -2 ports/ftp/p5-Net-FTPServer/Makefile 1.16 +2 -2 ports/games/dopewars/Makefile 1.5 +3 -3 ports/games/eboard/Makefile 1.2 +2 -2 ports/graphics/p5-Graphics-ColorNames/Makefile 1.2 +3 -3 ports/graphics/peps/Makefile 1.2 +3 -3 ports/graphics/synaesthesia/Makefile 1.14 +2 -2 ports/irc/scrollz/Makefile 1.3 +2 -2 ports/mail/demime/Makefile 1.3 +2 -2 ports/mail/getmail/Makefile 1.17 +2 -2 ports/mail/glbiff/Makefile 1.16 +2 -2 ports/mail/maildrop/Makefile 1.7 +2 -2 ports/mail/p5-Mail-Audit/Makefile 1.2 +2 -2 ports/mail/p5-Mail-Verify/Makefile 1.3 +3 -3 ports/mail/pgen/Makefile 1.2 +3 -3 ports/mail/qtools/Makefile 1.2 +2 -2 ports/mail/regm/Makefile 1.2 +3 -3 ports/mail/rmoldmail/Makefile 1.25 +2 -2 ports/mail/tkrat/Makefile 1.2 +2 -2 ports/misc/explosions/Makefile 1.2 +2 -2 ports/misc/p5-Geo-Weather/Makefile 1.2 +2 -2 ports/misc/reed/Makefile 1.6 +2 -2 ports/net/etherape/Makefile 1.4 +2 -2 ports/net/ipcalc/Makefile 1.2 +2 -2 ports/net/iperf/Makefile 1.13 +2 -2 ports/net/nslint/Makefile 1.2 +3 -3 ports/net/p5-File-Rsync/Makefile 1.14 +2 -2 ports/net/p5-SNMP_Session/Makefile 1.2 +2 -2 ports/net/passlogd/Makefile 1.2 +2 -2 ports/news/newsgrab/Makefile 1.7 +2 -2 ports/news/p5-NNTPClient/Makefile 1.2 +3 -3 ports/security/p5-Digest-MD2/Makefile 1.16 +2 -2 ports/security/p5-Digest-MD5/Makefile 1.2 +2 -2 ports/security/secpanel/Makefile 1.3 +2 -2 ports/security/ssh-multiadd/Makefile 1.3 +3 -3 ports/sysutils/colorize/Makefile 1.3 +3 -3 ports/sysutils/log_analysis/Makefile 1.2 +3 -3 ports/sysutils/service-config/Makefile 1.3 +2 -2 ports/textproc/ascii2pdf/Makefile 1.3 +2 -2 ports/textproc/p5-HTML-Format/Makefile 1.2 +2 -2 ports/textproc/p5-PDF-Create/Makefile 1.2 +2 -2 ports/textproc/p5-URI-Find/Makefile 1.14 +2 -2 ports/textproc/pspell/Makefile 1.3 +2 -2 ports/www/amyc/Makefile 1.13 +2 -2 ports/www/cgiwrap/Makefile 1.3 +2 -2 ports/www/crawl/Makefile 1.13 +2 -2 ports/www/hypermail/Makefile 1.2 +3 -3 ports/www/mdw/Makefile 1.5 +2 -2 ports/www/mod_layout/Makefile 1.8 +2 -2 ports/www/p5-CGI-Application/Makefile 1.5 +2 -2 ports/www/p5-CGI-Cache/Makefile 1.4 +2 -2 ports/www/p5-HTML-Table/Makefile 1.51 +2 -2 ports/www/p5-libwww/Makefile 1.3 +3 -3 ports/x11-fm/cfm/Makefile 1.2 +2 -2 ports/x11-fonts/p5-Font-AFM/Makefile 1.32 +2 -2 ports/x11-wm/fvwm2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 16:12:47 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C028F37B43C; Wed, 22 Aug 2001 16:12:29 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MNCT586515; Wed, 22 Aug 2001 16:12:29 -0700 (PDT) (envelope-from petef) Message-Id: <200108222312.f7MNCT586515@freefall.freebsd.org> From: Pete Fritchman Date: Wed, 22 Aug 2001 16:12:29 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/22 16:12:29 PDT Modified files: astro/xearth/files freebsd.committers.markers Log: Add myself. Reviewed by: ade Revision Changes Path 1.79 +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 Wed Aug 22 16:14:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 154D637B410; Wed, 22 Aug 2001 16:13:56 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MNDup86798; Wed, 22 Aug 2001 16:13:56 -0700 (PDT) (envelope-from petef) Message-Id: <200108222313.f7MNDup86798@freefall.freebsd.org> From: Pete Fritchman Date: Wed, 22 Aug 2001 16:13:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/22 16:13:56 PDT Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add myself. Reviewed by: ade Revision Changes Path 1.43 +2 -1 src/usr.bin/calendar/calendars/calendar.freebsd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 16:16:22 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1AA3D37B40B; Wed, 22 Aug 2001 16:16:12 -0700 (PDT) (envelope-from mike@FreeBSD.org) Received: (from mike@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MNGA787101; Wed, 22 Aug 2001 16:16:10 -0700 (PDT) (envelope-from mike) Message-Id: <200108222316.f7MNGA787101@freefall.freebsd.org> From: Mike Barcroft Date: Wed, 22 Aug 2001 16:16:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/committers-guide article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mike 2001/08/22 16:16:09 PDT Modified files: en_US.ISO8859-1/articles/committers-guide article.sgml Log: Correct the Committer Guide: newsflash.sgml is now news.xml Discussed with: nik Revision Changes Path 1.83 +2 -2 doc/en_US.ISO8859-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 Aug 22 16:16:46 2001 Delivered-To: cvs-all@freebsd.org Received: from elvis.mu.org (elvis.mu.org [216.33.66.196]) by hub.freebsd.org (Postfix) with ESMTP id 1D33037B410; Wed, 22 Aug 2001 16:16:20 -0700 (PDT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id C47DE81D0D; Wed, 22 Aug 2001 18:16:09 -0500 (CDT) Date: Wed, 22 Aug 2001 18:16:09 -0500 From: Alfred Perlstein To: David O'Brien Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h Message-ID: <20010822181609.S81307@elvis.mu.org> References: <200108211842.f7LIgkp03186@freefall.freebsd.org> <20010821134601.J81307@elvis.mu.org> <20010821124428.B17739@xor.obsecurity.org> <20010821164833.D58026@leviathan.inethouston.net> <20010821170420.L81307@elvis.mu.org> <20010821235437.A64706@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010821235437.A64706@dragon.nuxi.com>; from obrien@freebsd.org on Tue, Aug 21, 2001 at 11:54:37PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * David O'Brien [010822 17:53] wrote: > On Tue, Aug 21, 2001 at 05:04:21PM -0500, Alfred Perlstein wrote: > > This is a pretty useless bug report. > > > > Please read the section in the handbook about kernel debugging > > and get us a useful traceback/crashdump as well as systat type > > info. > > OK Albert, > > I am one of these people. How the hell do you expect me to get > crashdumps when my entire disk subsystem is what is freezing and going > out to lunch??? I get to ddb and type `panic'. All I get is the first > part of the message of writing to disk. But guess what!?! Nothing > happens because guess what!?! I no longer have a disk subsystem to save > the crashdump to. `ps' will totally wedge the machine when it is in this > state also. > > Now would *YOU* like to offer something other than "pretty useless" > debugging advice. I assume you're familiar with the standard C library function printf(3), it can be used as a handy debugging tool to output state information when a debugger doesn't seem to be working. The cool part is that someone took the time to port printf(3) into the kernel so that you can use it. Also see ktr(9). best of luck, -- -Alfred Perlstein [alfred@freebsd.org] Ok, who wrote this damn function called '??'? And why do my programs keep crashing in it? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 16:22:55 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 505CD37B40B; Wed, 22 Aug 2001 16:22:50 -0700 (PDT) (envelope-from tmm@FreeBSD.org) Received: (from tmm@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MNMoZ87527; Wed, 22 Aug 2001 16:22:50 -0700 (PDT) (envelope-from tmm) Message-Id: <200108222322.f7MNMoZ87527@freefall.freebsd.org> From: Thomas Moestl Date: Wed, 22 Aug 2001 16:22:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern makesyscalls.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tmm 2001/08/22 16:22:47 PDT Modified files: sys/kern makesyscalls.sh Log: Add padding before each element of the syscall argument structures in sysproto.h in addition to the existing padding afterwards. This is needed to support big-endian architectures like sparc64. Reviewed by: bde Tested on alpha by: jhb Revision Changes Path 1.45 +16 -3 src/sys/kern/makesyscalls.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 16:25:22 2001 Delivered-To: cvs-all@freebsd.org Received: from mailgate.originative.co.uk (mailgate.originative.co.uk [62.232.68.68]) by hub.freebsd.org (Postfix) with ESMTP id 37E7A37B40B; Wed, 22 Aug 2001 16:25:05 -0700 (PDT) (envelope-from paul@freebsd-services.com) Received: from lobster.originative.co.uk (lobster [62.232.68.81]) by mailgate.originative.co.uk (Postfix) with ESMTP id 2926E1D146; Thu, 23 Aug 2001 00:25:03 +0100 (BST) Date: Thu, 23 Aug 2001 00:25:03 +0100 From: Paul Richards To: Mike Silbersack , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h Message-ID: <200500000.998522703@lobster.originative.co.uk> In-Reply-To: <200108220059.f7M0xDe16950@freefall.freebsd.org> References: <200108220059.f7M0xDe16950@freefall.freebsd.org> X-Mailer: Mulberry/2.1.0b3 (Linux/x86 Demo) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --On Tuesday, August 21, 2001 17:59:13 -0700 Mike Silbersack wrote: > silby 2001/08/21 17:59:13 PDT > > Modified files: (Branch: RELENG_4) > sys/netinet tcp_input.c tcp_seq.h tcp_subr.c > tcp_timer.c tcp_usrreq.c tcp_var.h > Log: > Much delayed but now present: RFC 1948 style sequence numbers > > In order to ensure security and functionality, RFC 1948 style > initial sequence number generation has been implemented. Barring > any major crypographic breakthroughs, this algorithm should be > unbreakable. In addition, the problems with TIME_WAIT recycling > which affect our currently used algorithm are not present. > > Reviewed by: jesper > Approved by: jkh > > Revision Changes Path > 1.107.2.16 +3 -4 src/sys/netinet/tcp_input.c > 1.11.2.5 +1 -22 src/sys/netinet/tcp_seq.h > 1.73.2.22 +96 -71 src/sys/netinet/tcp_subr.c > 1.34.2.11 +1 -3 src/sys/netinet/tcp_timer.c > 1.51.2.9 +3 -3 src/sys/netinet/tcp_usrreq.c > 1.56.2.8 +2 -6 src/sys/netinet/tcp_var.h This is allowed to go through *after* RC1 of a "stable" release!!! So what exactly fails the release engineer's criteria for a stable commit at this stage? Paul Richards FreeBSD Services Ltd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 16:27:39 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A1FE37B420; Wed, 22 Aug 2001 16:27:24 -0700 (PDT) (envelope-from tmm@FreeBSD.org) Received: (from tmm@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MNRNC88345; Wed, 22 Aug 2001 16:27:23 -0700 (PDT) (envelope-from tmm) Message-Id: <200108222327.f7MNRNC88345@freefall.freebsd.org> From: Thomas Moestl Date: Wed, 22 Aug 2001 16:27:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern init_sysent.c syscalls.c src/sys/sys syscall-hide.h syscall.h syscall.mk sysproto.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tmm 2001/08/22 16:27:21 PDT Modified files: sys/kern init_sysent.c syscalls.c sys/sys syscall-hide.h syscall.h syscall.mk sysproto.h Log: Regenerate from syscalls.master using the new makesyscalls.sh revision. Revision Changes Path 1.101 +1 -1 src/sys/kern/init_sysent.c 1.90 +1 -1 src/sys/kern/syscalls.c 1.84 +1 -1 src/sys/sys/syscall-hide.h 1.88 +1 -1 src/sys/sys/syscall.h 1.42 +1 -1 src/sys/sys/syscall.mk 1.78 +617 -607 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 Wed Aug 22 16:43:23 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 61A1837B406; Wed, 22 Aug 2001 16:43:20 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MNhKX89771; Wed, 22 Aug 2001 16:43:20 -0700 (PDT) (envelope-from jkh) Message-Id: <200108222343.f7MNhKX89771@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Wed, 22 Aug 2001 16:43:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 make.conf.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jkh 2001/08/22 16:43:19 PDT Modified files: share/man/man5 make.conf.5 Log: The name of the kernel is KERNCONF, not KERNEL now. Revision Changes Path 1.29 +2 -2 src/share/man/man5/make.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 16:51:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3070B37B509; Wed, 22 Aug 2001 16:50:55 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MNotV90312; Wed, 22 Aug 2001 16:50:55 -0700 (PDT) (envelope-from bmah) Message-Id: <200108222350.f7MNotV90312@freefall.freebsd.org> From: "Bruce A. Mah" Date: Wed, 22 Aug 2001 16:50:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2001/08/22 16:50:54 PDT Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Typo and markup fixes. Submitted by: Alex Kapranoff Revision Changes Path 1.110 +7 -7 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 16:52:39 2001 Delivered-To: cvs-all@freebsd.org Received: from niwun.pair.com (niwun.pair.com [209.68.2.70]) by hub.freebsd.org (Postfix) with SMTP id 67F7037B446 for ; Wed, 22 Aug 2001 16:51:24 -0700 (PDT) (envelope-from silby@silby.com) Received: (qmail 17378 invoked by uid 3193); 22 Aug 2001 23:51:23 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 22 Aug 2001 23:51:23 -0000 Date: Wed, 22 Aug 2001 19:51:23 -0400 (EDT) From: Mike Silbersack X-Sender: To: Paul Richards Cc: Mike Silbersack , , Subject: Re: cvs commit: src/sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h In-Reply-To: <200500000.998522703@lobster.originative.co.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 23 Aug 2001, Paul Richards wrote: > --On Tuesday, August 21, 2001 17:59:13 -0700 Mike Silbersack > wrote: > > > silby 2001/08/21 17:59:13 PDT > > > > Modified files: (Branch: RELENG_4) > > sys/netinet tcp_input.c tcp_seq.h tcp_subr.c > > tcp_timer.c tcp_usrreq.c tcp_var.h > > Log: > > Much delayed but now present: RFC 1948 style sequence numbers > This is allowed to go through *after* RC1 of a "stable" release!!! > > So what exactly fails the release engineer's criteria for a stable commit > at this stage? > > > Paul Richards > FreeBSD Services Ltd This is a very important change which many people have been waiting for. While it would have been better to commit earlier, time constraints prevented that from happening. The patch was well tested and isn't anything you should get upset over. Mike "Silby" Silbersack To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 16:56: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from winston.freebsd.org (adsl-64-173-15-98.dsl.sntc01.pacbell.net [64.173.15.98]) by hub.freebsd.org (Postfix) with ESMTP id 6B64737B411; Wed, 22 Aug 2001 16:55:48 -0700 (PDT) (envelope-from jkh@freebsd.org) Received: from localhost (jkh@localhost [127.0.0.1]) by winston.freebsd.org (8.11.4/8.11.4) with ESMTP id f7MNtQI09310; Wed, 22 Aug 2001 16:55:27 -0700 (PDT) (envelope-from jkh@freebsd.org) To: paul@freebsd-services.com Cc: silby@freebsd.org, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h In-Reply-To: <200500000.998522703@lobster.originative.co.uk> References: <200108220059.f7M0xDe16950@freefall.freebsd.org> <200500000.998522703@lobster.originative.co.uk> X-Mailer: Mew version 1.94.1 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: <20010822165526C.jkh@freebsd.org> Date: Wed, 22 Aug 2001 16:55:26 -0700 From: Jordan Hubbard X-Dispatcher: imput version 20000228(IM140) Lines: 21 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG From: Paul Richards Subject: Re: cvs commit: src/sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h Date: Thu, 23 Aug 2001 00:25:03 +0100 > This is allowed to go through *after* RC1 of a "stable" release!!! It's always a judgement call, Paul, and has been since the very beginning. Sometimes it's been called wrong and the release engineer (among many others) gets bitton on the ass. Other times, it's called right and we all go "thank GOD that change made it in before we rolled!" As long as the number of times it's called right significantly exceeds the number of times it's called wrong, I'm a happy camper and so far that's thankfully been the case. We've been waiting for this particular change for a long time now and the impact was judged less severe then continuing to get beat up over not having it. If I called it right, everyone will probably just happily use it and I'll not hear another thing about it. If I called it wrong, I'll get flamed to toast. Such is the life of the RE. :) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 16:59:10 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E216437B409; Wed, 22 Aug 2001 16:58:54 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7MNwss91699; Wed, 22 Aug 2001 16:58:54 -0700 (PDT) (envelope-from petef) Message-Id: <200108222358.f7MNwss91699@freefall.freebsd.org> From: Pete Fritchman Date: Wed, 22 Aug 2001 16:58:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/p5-Net-Traceroute6 Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/22 16:58:54 PDT Modified files: net Makefile Added files: net/p5-Net-Traceroute6 Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Initial import of p5-Net-Traceroute6 0.01. Perl module to parse traceroute6(8) output PR: 29664 Submitted by: petef Reviewed by: ade Revision Changes Path 1.593 +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 Aug 22 17: 2:20 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 17F1537B40B; Wed, 22 Aug 2001 17:02:12 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N02Bu92012; Wed, 22 Aug 2001 17:02:11 -0700 (PDT) (envelope-from petef) Message-Id: <200108230002.f7N02Bu92012@freefall.freebsd.org> From: Pete Fritchman Date: Wed, 22 Aug 2001 17:02:11 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/22 17:02:11 PDT Modified files: . modules Log: p5-Net-Traceroute6 --> ports/net/p5-Net-Traceroute6 Revision Changes Path 1.3703 +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 Aug 22 17: 2:38 2001 Delivered-To: cvs-all@freebsd.org Received: from mailgate.originative.co.uk (mailgate.originative.co.uk [62.232.68.68]) by hub.freebsd.org (Postfix) with ESMTP id 1BEB637B40E; Wed, 22 Aug 2001 17:02:14 -0700 (PDT) (envelope-from paul@freebsd-services.com) Received: from lobster.originative.co.uk (lobster [62.232.68.81]) by mailgate.originative.co.uk (Postfix) with ESMTP id 4DA1C1D146; Thu, 23 Aug 2001 01:02:12 +0100 (BST) Date: Thu, 23 Aug 2001 01:02:12 +0100 From: Paul Richards To: Jordan Hubbard Cc: silby@freebsd.org, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h Message-ID: <253280000.998524932@lobster.originative.co.uk> In-Reply-To: <20010822165526C.jkh@freebsd.org> References: <200108220059.f7M0xDe16950@freefall.freebsd.org> <200500000.998522703@lobster.originative.co.uk> <20010822165526C.jkh@freebsd.org> X-Mailer: Mulberry/2.1.0b3 (Linux/x86 Demo) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --On Wednesday, August 22, 2001 16:55:26 -0700 Jordan Hubbard wrote: > We've been waiting for this particular change for a long time now and > the impact was judged less severe then continuing to get beat up over > not having it. If I called it right, everyone will probably just > happily use it and I'll not hear another thing about it. If I called > it wrong, I'll get flamed to toast. Such is the life of the RE. :) It's a *very* late call for code that has never seen the light of day before (and the authors testing doesn't count in this context). No offense Mike, since I'm sure you've tested it a lot, but this is a significant enough change that such a late merge to -stable without any testing at all in -current merits at least a questioning email. Paul Richards FreeBSD Services Ltd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 17:12: 0 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4847C37B40B; Wed, 22 Aug 2001 17:11:46 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N0BkE95686; Wed, 22 Aug 2001 17:11:46 -0700 (PDT) (envelope-from jhb) Message-Id: <200108230011.f7N0BkE95686@freefall.freebsd.org> From: John Baldwin Date: Wed, 22 Aug 2001 17:11:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/efancylauncher Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/22 17:11:45 PDT Modified files: x11/efancylauncher Makefile Log: Bah, revert the previous change for now. There are work directories shared among all epplets that should be created and "owned" by the libepplet port, but they aren't. They are created and owned by the epplets port, so depend on epplets again until that is fixed. Revision Changes Path 1.5 +2 -2 ports/x11/efancylauncher/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 17:15:25 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9360437B405; Wed, 22 Aug 2001 17:15:20 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N0FKA96087; Wed, 22 Aug 2001 17:15:20 -0700 (PDT) (envelope-from jhb) Message-Id: <200108230015.f7N0FKA96087@freefall.freebsd.org> From: John Baldwin Date: Wed, 22 Aug 2001 17:15:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/efancylauncher Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/22 17:15:19 PDT Modified files: x11/efancylauncher Makefile Log: Sigh, fix a fat-finger: epplet -> epplets. Revision Changes Path 1.6 +2 -2 ports/x11/efancylauncher/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 17:38:55 2001 Delivered-To: cvs-all@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id DC31137B406; Wed, 22 Aug 2001 17:38:21 -0700 (PDT) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 195B46ACF0; Thu, 23 Aug 2001 10:08:15 +0930 (CST) Date: Thu, 23 Aug 2001 10:08:15 +0930 From: Greg Lehey To: David O'Brien Cc: Alfred Perlstein , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h Message-ID: <20010823100815.E31104@wantadilla.lemis.com> References: <200108211842.f7LIgkp03186@freefall.freebsd.org> <20010821134601.J81307@elvis.mu.org> <20010821124428.B17739@xor.obsecurity.org> <20010821164833.D58026@leviathan.inethouston.net> <20010821170420.L81307@elvis.mu.org> <20010821235437.A64706@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010821235437.A64706@dragon.nuxi.com>; from obrien@FreeBSD.org on Tue, Aug 21, 2001 at 11:54:37PM -0700 Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tuesday, 21 August 2001 at 23:54:37 -0700, David O'Brien wrote: > On Tue, Aug 21, 2001 at 05:04:21PM -0500, Alfred Perlstein wrote: >> This is a pretty useless bug report. >> >> Please read the section in the handbook about kernel debugging >> and get us a useful traceback/crashdump as well as systat type >> info. > > OK Albert, > > I am one of these people. How the hell do you expect me to get > crashdumps when my entire disk subsystem is what is freezing and going > out to lunch??? I get to ddb and type `panic'. All I get is the first > part of the message of writing to disk. But guess what!?! Nothing > happens because guess what!?! I no longer have a disk subsystem to save > the crashdump to. `ps' will totally wedge the machine when it is in this > state also. > > Now would *YOU* like to offer something other than "pretty useless" > debugging advice. I can't speak for Alfred, but I'd advise you to set up a serial debug link. Greg -- See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 17:43:58 2001 Delivered-To: cvs-all@freebsd.org Received: from coffee.q9media.com (coffee.q9media.com [216.94.229.19]) by hub.freebsd.org (Postfix) with ESMTP id 2C0DC37B407; Wed, 22 Aug 2001 17:43:34 -0700 (PDT) (envelope-from mike@coffee.q9media.com) Received: (from mike@localhost) by coffee.q9media.com (8.11.2/8.11.3) id f7N15kd58306; Wed, 22 Aug 2001 21:05:46 -0400 (EDT) (envelope-from mike) Date: Wed, 22 Aug 2001 21:05:46 -0400 From: Mike Barcroft To: Alexander Langer Cc: Brian Somers , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/usr.bin/whois Makefile Message-ID: <20010822210546.A58265@coffee.q9media.com> Mail-Followup-To: Mike Barcroft , Alexander Langer , Brian Somers , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com References: <200108211933.f7LJXsU48118@hak.lan.Awfulhak.org> <20010821161010.B54853@coffee.q9media.com> <20010821230523.A2412@zerogravity.kawo2.rwth-aachen.d> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010821230523.A2412@zerogravity.kawo2.rwth-aachen.d>; from alex@big.endian.de on Tue, Aug 21, 2001 at 11:05:23PM +0200 Organization: The FreeBSD Project Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alexander Langer writes: > Thus spake Mike Barcroft (mike@FreeBSD.org): > > > also have other changes coming soon, so I'd appreciate it if any > > changes were coordinated through me. > > I'm just curious, if you submit your changes to the other > BSDs as well. > > whois is a commonly used tool, so I really appreciated to see the > features somehow becoming standards :) It might be difficult with NetBSD since they seem to be using RIPE's whois(1) client, but sharing the changes with OpenBSD shouldn't be a big problem since our codebases are quite similar. I haven't investigate any other BSDs. Best regards, Mike Barcroft To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 17:57:28 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 11C7337B40B; Wed, 22 Aug 2001 17:57:24 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N0vNk99436; Wed, 22 Aug 2001 17:57:23 -0700 (PDT) (envelope-from taoka) Message-Id: <200108230057.f7N0vNk99436@freefall.freebsd.org> From: Satoshi Taoka Date: Wed, 22 Aug 2001 17:57:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/vera-fpw Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG taoka 2001/08/22 17:57:23 PDT Modified files: japanese/vera-fpw Makefile distinfo pkg-plist Log: * Update a distfile to vera-1.7-fpw1.0.2 (upgrade vera to 1.7 and its converting script to 1.0.2) * Using a converted files on the master site instead of converting the original file by its converting script in this port. Revision Changes Path 1.5 +15 -33 ports/japanese/vera-fpw/Makefile 1.2 +1 -2 ports/japanese/vera-fpw/distinfo 1.2 +5 -3 ports/japanese/vera-fpw/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 17:57:54 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E15F737B40E; Wed, 22 Aug 2001 17:57:41 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Received: (from nsayer@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N0vfO99486; Wed, 22 Aug 2001 17:57:41 -0700 (PDT) (envelope-from nsayer) Message-Id: <200108230057.f7N0vfO99486@freefall.freebsd.org> From: Nick Sayer Date: Wed, 22 Aug 2001 17:57:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/wi if_wi.c if_wireg.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nsayer 2001/08/22 17:57:41 PDT Modified files: sys/dev/wi if_wi.c if_wireg.h Log: Add support for the Netgear MA301 PCI adapter for the MA401. It appears that a number of PrismII card vendors seem to be doing the same thing (that is, using the same PCI bridge chip) to support PCI, but each with their own vendor/product ID. So rather than cut-n-paste another if statement into the probe routine, it's probably better to provide support for a table. Adding new devices will be a lot easier that way. Revision Changes Path 1.55 +16 -5 src/sys/dev/wi/if_wi.c 1.15 +1 -3 src/sys/dev/wi/if_wireg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 18: 0:54 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B26C237B409; Wed, 22 Aug 2001 18:00:48 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N10mP99726; Wed, 22 Aug 2001 18:00:48 -0700 (PDT) (envelope-from taoka) Message-Id: <200108230100.f7N10mP99726@freefall.freebsd.org> From: Satoshi Taoka Date: Wed, 22 Aug 2001 18:00:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/wdic-fpw Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG taoka 2001/08/22 18:00:47 PDT Modified files: japanese/wdic-fpw Makefile distinfo Log: Update to 1.2a Submitted by: Yoichi NAKAYAMA Obtained from: ports-jp@jp.freebsd.org Revision Changes Path 1.9 +2 -2 ports/japanese/wdic-fpw/Makefile 1.4 +1 -1 ports/japanese/wdic-fpw/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 18: 2:46 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B9C7637B409; Wed, 22 Aug 2001 18:02:42 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N12gR99985; Wed, 22 Aug 2001 18:02:42 -0700 (PDT) (envelope-from taoka) Message-Id: <200108230102.f7N12gR99985@freefall.freebsd.org> From: Satoshi Taoka Date: Wed, 22 Aug 2001 18:02:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/jargon-fpw Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG taoka 2001/08/22 18:02:42 PDT Modified files: japanese/jargon-fpw Makefile distinfo Log: Update to 1.2a Submitted by: Yoichi NAKAYAMA Obtained from: ports-jp@jp.freebsd.org Revision Changes Path 1.6 +2 -2 ports/japanese/jargon-fpw/Makefile 1.4 +1 -1 ports/japanese/jargon-fpw/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 18: 4:17 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E6C337B41D; Wed, 22 Aug 2001 18:04:00 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N13u700230; Wed, 22 Aug 2001 18:03:56 -0700 (PDT) (envelope-from peter) Message-Id: <200108230103.f7N13u700230@freefall.freebsd.org> From: Peter Wemm Date: Wed, 22 Aug 2001 18:03:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa npx.c src/sys/pc98/pc98 npx.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/22 18:03:56 PDT Modified files: sys/i386/isa npx.c sys/pc98/pc98 npx.c Log: Dont compile in SSE fxsave/fxrstor instructions if CPU_ENABLE_SSE isn't active. Revision Changes Path 1.109 +16 -7 src/sys/i386/isa/npx.c 1.85 +16 -7 src/sys/pc98/pc98/npx.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 18:12:39 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4296937B412; Wed, 22 Aug 2001 18:12:35 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N1CZM03866; Wed, 22 Aug 2001 18:12:35 -0700 (PDT) (envelope-from peter) Message-Id: <200108230112.f7N1CZM03866@freefall.freebsd.org> From: Peter Wemm Date: Wed, 22 Aug 2001 18:12:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/22 18:12:35 PDT Modified files: sys/dev/usb uhci.c Log: Revert part of the last commit, as suggested by Nick. This is expected, it is part of the way PCI shared interrupts work. Revision Changes Path 1.59 +2 -5 src/sys/dev/usb/uhci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 18:16:25 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CA9C737B40E; Wed, 22 Aug 2001 18:16:10 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N1GAn04185; Wed, 22 Aug 2001 18:16:10 -0700 (PDT) (envelope-from peter) Message-Id: <200108230116.f7N1GAn04185@freefall.freebsd.org> From: Peter Wemm Date: Wed, 22 Aug 2001 18:16:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.c uhci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/22 18:16:10 PDT Modified files: sys/dev/usb ohci.c uhci.c Log: Do not printf when we get called as a result of a pci shared interrupt, and add a comment to that effect. Revision Changes Path 1.52 +2 -6 src/sys/dev/usb/ohci.c 1.60 +2 -2 src/sys/dev/usb/uhci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 18:25:37 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E04AC37B408; Wed, 22 Aug 2001 18:25:21 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N1PLA04896; Wed, 22 Aug 2001 18:25:21 -0700 (PDT) (envelope-from peter) Message-Id: <200108230125.f7N1PLA04896@freefall.freebsd.org> From: Peter Wemm Date: Wed, 22 Aug 2001 18:25:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/22 18:25:21 PDT Modified files: sys/i386/i386 machdep.c Log: Dont add UPAGES to the %cs segment limit. There is nothing there except page tables. Revision Changes Path 1.474 +3 -17 src/sys/i386/i386/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 18:30:13 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.gnf.org (firewall.gnf.org [208.44.31.34]) by hub.freebsd.org (Postfix) with ESMTP id 1732937B408; Wed, 22 Aug 2001 18:29:58 -0700 (PDT) (envelope-from gordont@gnf.org) Received: by mail.gnf.org (Postfix, from userid 888) id 31A4211E50C; Wed, 22 Aug 2001 18:30:00 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by mail.gnf.org (Postfix) with ESMTP id 2C61B11A56A; Wed, 22 Aug 2001 18:30:00 -0700 (PDT) Date: Wed, 22 Aug 2001 18:30:00 -0700 (PDT) From: Gordon Tetlow To: Paul Richards Cc: Jordan Hubbard , , , Subject: Re: cvs commit: src/sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h In-Reply-To: <253280000.998524932@lobster.originative.co.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 23 Aug 2001, Paul Richards wrote: > It's a *very* late call for code that has never seen the light of day > before (and the authors testing doesn't count in this context). > > No offense Mike, since I'm sure you've tested it a lot, but this is a > significant enough change that such a late merge to -stable without any > testing at all in -current merits at least a questioning email. You should read -arch. The patch has been posted there for 2 days shy of a month (July 24) and was revised on Aug 10th. -gordon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 18:31: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5DDEC37B408; Wed, 22 Aug 2001 18:30:51 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N1Upu05349; Wed, 22 Aug 2001 18:30:51 -0700 (PDT) (envelope-from peter) Message-Id: <200108230130.f7N1Upu05349@freefall.freebsd.org> From: Peter Wemm Date: Wed, 22 Aug 2001 18:30:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/i386 machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/22 18:30:51 PDT Modified files: sys/pc98/i386 machdep.c Log: Merge i386/machdep.c rev 1.470. Limit KVM for buffer cache etc. Forgotten by: dillon Revision Changes Path 1.232 +7 -2 src/sys/pc98/i386/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 18:34:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DC4E537B41D; Wed, 22 Aug 2001 18:34:35 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N1YZl05877; Wed, 22 Aug 2001 18:34:35 -0700 (PDT) (envelope-from peter) Message-Id: <200108230134.f7N1YZl05877@freefall.freebsd.org> From: Peter Wemm Date: Wed, 22 Aug 2001 18:34:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/i386 machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/22 18:34:35 PDT Modified files: sys/pc98/i386 machdep.c Log: Merge i386/machdep.c rev 1.472: Fix bug in physmem_est and maxbcache calculation Forgotten by: dillon Revision Changes Path 1.233 +7 -5 src/sys/pc98/i386/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 18:37: 4 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 05F4F37B407; Wed, 22 Aug 2001 18:36:55 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N1asG06119; Wed, 22 Aug 2001 18:36:54 -0700 (PDT) (envelope-from peter) Message-Id: <200108230136.f7N1asG06119@freefall.freebsd.org> From: Peter Wemm Date: Wed, 22 Aug 2001 18:36:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/i386 machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/22 18:36:54 PDT Modified files: sys/pc98/i386 machdep.c Log: Identical to i386/machdep.c rev 1.473: move submap initialization to MI. Revision Changes Path 1.234 +7 -12 src/sys/pc98/i386/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 18:39: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 31D2D37B40B; Wed, 22 Aug 2001 18:38:52 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N1cqs06322; Wed, 22 Aug 2001 18:38:52 -0700 (PDT) (envelope-from taoka) Message-Id: <200108230138.f7N1cqs06322@freefall.freebsd.org> From: Satoshi Taoka Date: Wed, 22 Aug 2001 18:38:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/sdic Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG taoka 2001/08/22 18:38:52 PDT Modified files: japanese/sdic Makefile Log: Update MASTER_SITES Pointed out by: fenner's mail Revision Changes Path 1.5 +2 -2 ports/japanese/sdic/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 18:42:32 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 303D537B40E; Wed, 22 Aug 2001 18:42:22 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N1gMN06887; Wed, 22 Aug 2001 18:42:22 -0700 (PDT) (envelope-from peter) Message-Id: <200108230142.f7N1gMN06887@freefall.freebsd.org> From: Peter Wemm Date: Wed, 22 Aug 2001 18:42:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/i386 machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/22 18:42:22 PDT Modified files: sys/pc98/i386 machdep.c Log: Merge 386/machdep.c rev 1.467: fix bugs/miscalculations Forgotten by: iwasaki Revision Changes Path 1.235 +13 -11 src/sys/pc98/i386/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 18:43:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ED06E37B40B; Wed, 22 Aug 2001 18:43:39 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N1hd407022; Wed, 22 Aug 2001 18:43:39 -0700 (PDT) (envelope-from peter) Message-Id: <200108230143.f7N1hd407022@freefall.freebsd.org> From: Peter Wemm Date: Wed, 22 Aug 2001 18:43:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/i386 machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/22 18:43:39 PDT Modified files: sys/pc98/i386 machdep.c Log: Merge i386/machdep.c rev 1.468: make breakpoint/trace interrupt instead of trap gates Forgotten by: bde Revision Changes Path 1.236 +3 -3 src/sys/pc98/i386/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 18:46:20 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EF7B837B407; Wed, 22 Aug 2001 18:45:59 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N1jxe07301; Wed, 22 Aug 2001 18:45:59 -0700 (PDT) (envelope-from taoka) Message-Id: <200108230145.f7N1jxe07301@freefall.freebsd.org> From: Satoshi Taoka Date: Wed, 22 Aug 2001 18:45:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/mpg123.el distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG taoka 2001/08/22 18:45:59 PDT Modified files: audio/mpg123.el distinfo Log: Update MD5 (but its version is not updated) Obtained from: bento Revision Changes Path 1.11 +1 -1 ports/audio/mpg123.el/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 18:47: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B436837B413; Wed, 22 Aug 2001 18:46:23 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N1kNM07355; Wed, 22 Aug 2001 18:46:23 -0700 (PDT) (envelope-from peter) Message-Id: <200108230146.f7N1kNM07355@freefall.freebsd.org> From: Peter Wemm Date: Wed, 22 Aug 2001 18:46:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/i386 machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/22 18:46:23 PDT Modified files: sys/pc98/i386 machdep.c Log: Merge i386/machdep.c rev 1.469: whitespace changes to fit 80 columns Forgotten by: jhb Revision Changes Path 1.237 +61 -33 src/sys/pc98/i386/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 18:47:29 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 645C637B411; Wed, 22 Aug 2001 18:47:26 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N1lQS07493; Wed, 22 Aug 2001 18:47:26 -0700 (PDT) (envelope-from peter) Message-Id: <200108230147.f7N1lQS07493@freefall.freebsd.org> From: Peter Wemm Date: Wed, 22 Aug 2001 18:47:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/i386 machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/22 18:47:26 PDT Modified files: sys/pc98/i386 machdep.c Log: Merge i386/machdep.c rev 1.474: dont overextend %cs. (finally, it doesn't conflict with unmerged changes) Revision Changes Path 1.238 +3 -17 src/sys/pc98/i386/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 18:49:26 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5913637B40B; Wed, 22 Aug 2001 18:49:12 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N1nCx07669; Wed, 22 Aug 2001 18:49:12 -0700 (PDT) (envelope-from peter) Message-Id: <200108230149.f7N1nCx07669@freefall.freebsd.org> From: Peter Wemm Date: Wed, 22 Aug 2001 18:49:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/22 18:49:12 PDT Modified files: sys/i386/i386 machdep.c Log: Fix a comment error that was fixed in the pc98 version. hw.maxmem is really hw.physmem. Revision Changes Path 1.475 +2 -2 src/sys/i386/i386/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 18:50:35 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D1B0C37B407; Wed, 22 Aug 2001 18:50:31 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N1oVY07786; Wed, 22 Aug 2001 18:50:31 -0700 (PDT) (envelope-from peter) Message-Id: <200108230150.f7N1oVY07786@freefall.freebsd.org> From: Peter Wemm Date: Wed, 22 Aug 2001 18:50:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/i386 machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/22 18:50:31 PDT Modified files: sys/pc98/i386 machdep.c Log: Fix a #endif misplacement in 1.231 due to misapplied patch Pointy hat to: peter Revision Changes Path 1.239 +2 -2 src/sys/pc98/i386/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 18:52:57 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 58FDD37B408; Wed, 22 Aug 2001 18:52:53 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N1qrX08009; Wed, 22 Aug 2001 18:52:53 -0700 (PDT) (envelope-from taoka) Message-Id: <200108230152.f7N1qrX08009@freefall.freebsd.org> From: Satoshi Taoka Date: Wed, 22 Aug 2001 18:52:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/bjfiltercom distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG taoka 2001/08/22 18:52:53 PDT Modified files: print/bjfiltercom distinfo Log: Update MD5's data for distfiles (readme.tar.gz and faq.tar.gz) Revision Changes Path 1.4 +2 -2 ports/print/bjfiltercom/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 18:57:42 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 89FF537B408; Wed, 22 Aug 2001 18:57:35 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N1vZs08560; Wed, 22 Aug 2001 18:57:35 -0700 (PDT) (envelope-from taoka) Message-Id: <200108230157.f7N1vZs08560@freefall.freebsd.org> From: Satoshi Taoka Date: Wed, 22 Aug 2001 18:57:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/edict-fpw Makefile distinfo pkg-plist ports/japanese/web1913-fpw Makefile distinfo pkg-plist ports/japanese/wordnet-fpw Makefile distinfo pkg-plist ports/japanese/wordnet-fpw/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG taoka 2001/08/22 18:57:35 PDT Modified files: japanese/edict-fpw Makefile distinfo pkg-plist japanese/web1913-fpw Makefile distinfo pkg-plist japanese/wordnet-fpw Makefile distinfo pkg-plist Removed files: japanese/wordnet-fpw/files patch-aa Log: Use the converted file on the master site instead of converting the original file by its converting script in this port. Revision Changes Path 1.6 +11 -29 ports/japanese/edict-fpw/Makefile 1.5 +1 -3 ports/japanese/edict-fpw/distinfo 1.3 +3 -3 ports/japanese/edict-fpw/pkg-plist 1.5 +10 -32 ports/japanese/web1913-fpw/Makefile 1.2 +1 -2 ports/japanese/web1913-fpw/distinfo 1.2 +2 -2 ports/japanese/web1913-fpw/pkg-plist 1.6 +9 -26 ports/japanese/wordnet-fpw/Makefile 1.2 +1 -2 ports/japanese/wordnet-fpw/distinfo 1.2 +2 -2 ports/japanese/wordnet-fpw/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 19: 3:35 2001 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id EE5E337B40A; Wed, 22 Aug 2001 19:03:23 -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.11.3/8.11.3) with ESMTP id f7N23Mq45811; Wed, 22 Aug 2001 20:03: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.11.3/8.11.4) with ESMTP id f7N23KW80266; Wed, 22 Aug 2001 20:03:20 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200108230203.f7N23KW80266@harmony.village.org> To: Jordan Hubbard Subject: Re: cvs commit: src/sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h Cc: paul@freebsd-services.com, silby@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Wed, 22 Aug 2001 16:55:26 PDT." <20010822165526C.jkh@freebsd.org> References: <20010822165526C.jkh@freebsd.org> <200108220059.f7M0xDe16950@freefall.freebsd.org> <200500000.998522703@lobster.originative.co.uk> Date: Wed, 22 Aug 2001 20:03:20 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <20010822165526C.jkh@freebsd.org> Jordan Hubbard writes: : We've been waiting for this particular change for a long time now and : the impact was judged less severe then continuing to get beat up over : not having it. If I called it right, everyone will probably just : happily use it and I'll not hear another thing about it. If I called : it wrong, I'll get flamed to toast. Such is the life of the RE. :) Yes. Likely people should be far more worried about the pccard changes that are rolling in... Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 19: 6:54 2001 Delivered-To: cvs-all@freebsd.org Received: from peter3.wemm.org (c1315225-a.plstn1.sfba.home.com [24.14.150.180]) by hub.freebsd.org (Postfix) with ESMTP id B0AA537B40C; Wed, 22 Aug 2001 19:06:34 -0700 (PDT) (envelope-from peter@wemm.org) Received: from overcee.netplex.com.au (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id f7N26YM80932; Wed, 22 Aug 2001 19:06:34 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 6090B380F; Wed, 22 Aug 2001 19:06:34 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 To: Paul Richards Cc: Jordan Hubbard , silby@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h In-Reply-To: <253280000.998524932@lobster.originative.co.uk> Date: Wed, 22 Aug 2001 19:06:34 -0700 From: Peter Wemm Message-Id: <20010823020634.6090B380F@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Paul Richards wrote: > --On Wednesday, August 22, 2001 16:55:26 -0700 Jordan Hubbard > wrote: > > > We've been waiting for this particular change for a long time now and > > the impact was judged less severe then continuing to get beat up over > > not having it. If I called it right, everyone will probably just > > happily use it and I'll not hear another thing about it. If I called > > it wrong, I'll get flamed to toast. Such is the life of the RE. :) > > It's a *very* late call for code that has never seen the light of day > before (and the authors testing doesn't count in this context). > > No offense Mike, since I'm sure you've tested it a lot, but this is a > significant enough change that such a late merge to -stable without any > testing at all in -current merits at least a questioning email. Dont forget, having something in current for a while doesn't guarantee anything. Witness the PCI interrupt steering and pcibios stuff. It sat in -current for a whole *year* before it got MFC'ed and discovered that it doesn't work on a sufficient number of machines for it to be a showstopper. Yes, it is nice to set it sit in current for a while so people can *look* at it, but dont pretend that it is going to be well tested. In some areas it will, but it is no guarantee. One would have though that boot time probe/attach of pci stuff would have got tested, but it would seem that not even 12 months of "testing" in -current is enough. I'm not aiming this gripe at Paul specifically, but please dont spread the myth that some arbitary "test period" in -current is going to magically validate anything. And yes, I undertand your alarm at this particular commit. But it cannot be any worse than what is there now (ie: random with complete disregard to the ISS sequence space). There is no real downside. 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 Wed Aug 22 19:18:42 2001 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 8217337B40B; Wed, 22 Aug 2001 19:18:34 -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.11.3/8.11.3) with ESMTP id f7N2IWq45846; Wed, 22 Aug 2001 20:18: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.11.3/8.11.4) with ESMTP id f7N2GhW80371; Wed, 22 Aug 2001 20:18:31 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200108230218.f7N2GhW80371@harmony.village.org> To: Peter Wemm Subject: Re: cvs commit: src/sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h Cc: Paul Richards , Jordan Hubbard , silby@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Wed, 22 Aug 2001 19:06:34 PDT." <20010823020634.6090B380F@overcee.netplex.com.au> References: <20010823020634.6090B380F@overcee.netplex.com.au> Date: Wed, 22 Aug 2001 20:16:43 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <20010823020634.6090B380F@overcee.netplex.com.au> Peter Wemm writes: : Dont forget, having something in current for a while doesn't guarantee : anything. Witness the PCI interrupt steering and pcibios stuff. It sat in : -current for a whole *year* before it got MFC'ed and discovered that it : doesn't work on a sufficient number of machines for it to be a showstopper. It sure took me by complete surprise.... None of the machine that I've tested it on had any problems 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 Wed Aug 22 19:26:25 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A19D437B40C; Wed, 22 Aug 2001 19:26:18 -0700 (PDT) (envelope-from jake@FreeBSD.org) Received: (from jake@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N2QIP13705; Wed, 22 Aug 2001 19:26:18 -0700 (PDT) (envelope-from jake) Message-Id: <200108230226.f7N2QIP13705@freefall.freebsd.org> From: Jake Burkholder Date: Wed, 22 Aug 2001 19:26:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2001/08/22 19:26:18 PDT Modified files: . access Log: Welcome Robert Drehmel (robert) to the insanity. Robert will be working on a port of the loader to sparc64 and helping with the sparc64 kernel port as he sees fit. Approved by: core Revision Changes Path 1.255 +2 -1 CVSROOT/access To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 19:27:19 2001 Delivered-To: cvs-all@freebsd.org Received: from k7.locore.ca (k7.locore.ca [198.96.117.169]) by hub.freebsd.org (Postfix) with ESMTP id F358437B40C; Wed, 22 Aug 2001 19:27:05 -0700 (PDT) (envelope-from jake@k7.locore.ca) Received: from k7.locore.ca (localhost [127.0.0.1]) by k7.locore.ca (8.11.4/8.11.4) with ESMTP id f7N2RTG14622; Wed, 22 Aug 2001 22:27:29 -0400 (EDT) (envelope-from jake@k7.locore.ca) Message-Id: <200108230227.f7N2RTG14622@k7.locore.ca> X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 To: Jake Burkholder Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, jake@k7.locore.ca Subject: Re: cvs commit: CVSROOT access In-Reply-To: Message from Jake Burkholder of "Wed, 22 Aug 2001 19:26:18 PDT." <200108230226.f7N2QIP13705@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 22 Aug 2001 22:27:29 -0400 From: Jake Burkholder Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > jake 2001/08/22 19:26:18 PDT > > Modified files: > . access > Log: > Welcome Robert Drehmel (robert) to the insanity. Robert will be working > on a port of the loader to sparc64 and helping with the sparc64 kernel > port as he sees fit. > > Approved by: core > > Revision Changes Path > 1.255 +2 -1 CVSROOT/access > Oops. I will be his mentor. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 20: 6:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 038C337B409; Wed, 22 Aug 2001 20:06:17 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Received: (from nsayer@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N36G020428; Wed, 22 Aug 2001 20:06:16 -0700 (PDT) (envelope-from nsayer) Message-Id: <200108230306.f7N36G020428@freefall.freebsd.org> From: Nick Sayer Date: Wed, 22 Aug 2001 20:06:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/wi if_wi.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nsayer 2001/08/22 20:06:16 PDT Modified files: sys/dev/wi if_wi.c Log: Oops. The new pci_ids array should be static. Revision Changes Path 1.56 +2 -2 src/sys/dev/wi/if_wi.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 20:15:53 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5DFC037B408; Wed, 22 Aug 2001 20:15:42 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N3Fg021560; Wed, 22 Aug 2001 20:15:42 -0700 (PDT) (envelope-from will) Message-Id: <200108230315.f7N3Fg021560@freefall.freebsd.org> From: Will Andrews Date: Wed, 22 Aug 2001 20:15:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/kdebase2 pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG will 2001/08/22 20:15:42 PDT Modified files: x11/kdebase2 pkg-plist Log: Argh! Get this plist right, for the last time... Found by: bento Revision Changes Path 1.39 +0 -1 ports/x11/kdebase2/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 20:20:13 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4A7FD37B40C; Wed, 22 Aug 2001 20:19:55 -0700 (PDT) (envelope-from ken@FreeBSD.org) Received: (from ken@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N3Jtw21876; Wed, 22 Aug 2001 20:19:55 -0700 (PDT) (envelope-from ken) Message-Id: <200108230319.f7N3Jtw21876@freefall.freebsd.org> From: "Kenneth D. Merry" Date: Wed, 22 Aug 2001 20:19:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/iostat Makefile iostat.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ken 2001/08/22 20:19:55 PDT Modified files: usr.sbin/iostat Makefile iostat.c Log: Bring in some iostat fixes that bde reminded me about. These fixes were originally written in January, 2000, but have been substantially updated. - No longer use hz/stathz and the CPU times in computing the TTY stats, but rather use etime, like the disk stats. - Clean up malloc/realloc failure tests. - Use a new integrated routine to fetch devstat information via sysctl or KVM. - Get rid of the X() macro for calculating CPU stats - Use rint() on the CPU state display to avoid truncation errors. (this requires libm) - Clean up flag usage somewhat. Reviewed by: bde Revision Changes Path 1.11 +3 -4 src/usr.sbin/iostat/Makefile 1.21 +124 -93 src/usr.sbin/iostat/iostat.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 22: 2:22 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.musha.org (daemon.musha.org [61.122.44.178]) by hub.freebsd.org (Postfix) with ESMTP id C3DA337B40E; Wed, 22 Aug 2001 22:02:17 -0700 (PDT) (envelope-from knu@iDaemons.org) Received: from daemon.musha.org (daemon.local.idaemons.org [192.168.1.1]) by mail.musha.org (Postfix) with ESMTP id 9B31B4D836; Thu, 23 Aug 2001 14:02:16 +0900 (JST) Date: Thu, 23 Aug 2001 14:02:16 +0900 Message-ID: <86ofp7v06f.wl@daemon.musha.org> From: "Akinori MUSHA" To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Cc: tadayuki@mediaone.net, sean@chittenden.org Subject: Re: cvs commit: ports/sysutils/portupgrade Makefile distinfo In-Reply-To: <200108222152.f7MLqC270194@freefall.freebsd.org> References: <200108222152.f7MLqC270194@freefall.freebsd.org> User-Agent: Wanderlust/2.7.2 (Too Funky) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-1?Q?Unebigory=F2mae?=) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Wed, 22 Aug 2001 14:52:12 -0700 (PDT), I wrote: > knu 2001/08/22 14:52:12 PDT > > Modified files: > sysutils/portupgrade Makefile distinfo > Log: > Update to 20010823. I feel it's getting as stable as before... :) Sorry, the copy of the distfile on *.FreeBSD.org was wrong. I've just transferred the correct one. Please wait until the ones on *.FreeBSD.org mirror sites are updated, or download the master copy from the following site: http://www.idaemons.org/distfiles/ -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "Freeze this moment a little bit longer, make each impression a little bit stronger.. Experience slips away -- Time stand still" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 22:20:55 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C84337B407; Wed, 22 Aug 2001 22:20:51 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N5KpZ50490; Wed, 22 Aug 2001 22:20:51 -0700 (PDT) (envelope-from taoka) Message-Id: <200108230520.f7N5KpZ50490@freefall.freebsd.org> From: Satoshi Taoka Date: Wed, 22 Aug 2001 22:20:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/srd-fpw-package Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG taoka 2001/08/22 22:20:51 PDT Modified files: japanese/srd-fpw-package Makefile distinfo Log: Update version to 1.0.7 Revision Changes Path 1.6 +2 -2 ports/japanese/srd-fpw-package/Makefile 1.5 +1 -1 ports/japanese/srd-fpw-package/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 22:21:28 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AD7EC37B40B; Wed, 22 Aug 2001 22:21:22 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N5LMb50569; Wed, 22 Aug 2001 22:21:22 -0700 (PDT) (envelope-from taoka) Message-Id: <200108230521.f7N5LMb50569@freefall.freebsd.org> From: Satoshi Taoka Date: Wed, 22 Aug 2001 22:21:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/mypaedia-fpw-package Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG taoka 2001/08/22 22:21:22 PDT Modified files: japanese/mypaedia-fpw-package Makefile distinfo Log: Update version to 1.0.6 Revision Changes Path 1.7 +2 -2 ports/japanese/mypaedia-fpw-package/Makefile 1.5 +1 -1 ports/japanese/mypaedia-fpw-package/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 22:21:38 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D8C3D37B445; Wed, 22 Aug 2001 22:21:30 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: (from scottl@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N5LUk50608; Wed, 22 Aug 2001 22:21:30 -0700 (PDT) (envelope-from scottl) Message-Id: <200108230521.f7N5LUk50608@freefall.freebsd.org> From: Scott Long Date: Wed, 22 Aug 2001 22:21:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/asr MAINTAINER asr.c dptsig.h i2omsg.h osd_defs.h osd_unix.h osd_util.h sys_info.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG scottl 2001/08/22 22:21:30 PDT Modified files: (Branch: RELENG_4) sys/dev/asr MAINTAINER asr.c dptsig.h i2omsg.h osd_defs.h osd_unix.h osd_util.h sys_info.h Log: MFC updated driver. Approved by: jkh Obtained from: mark_salyzyn@adaptec.com Revision Changes Path 1.1.2.2 +2 -2 src/sys/dev/asr/MAINTAINER 1.3.2.2 +460 -150 src/sys/dev/asr/asr.c 1.1.2.2 +69 -16 src/sys/dev/asr/dptsig.h 1.1.2.2 +16 -25 src/sys/dev/asr/i2omsg.h 1.1.2.2 +2 -2 src/sys/dev/asr/osd_defs.h 1.1.2.2 +1 -3 src/sys/dev/asr/osd_unix.h 1.1.2.2 +1 -3 src/sys/dev/asr/osd_util.h 1.1.2.2 +1 -3 src/sys/dev/asr/sys_info.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 22:25: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 51AA937B406; Wed, 22 Aug 2001 22:25:01 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N5P1w51025; Wed, 22 Aug 2001 22:25:01 -0700 (PDT) (envelope-from knu) Message-Id: <200108230525.f7N5P1w51025@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 22 Aug 2001 22:25:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/pkg_tarup Makefile ports/misc/pkg_tarup/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/22 22:25:01 PDT Modified files: misc/pkg_tarup Makefile misc/pkg_tarup/files patch-aa Log: Make pkg_tarup invoke pkg_create(1) and pkg_info(1) with their full paths, so it works even if /usr/sbin is not in user's PATH. Reported by: Christopher Masto Revision Changes Path 1.4 +2 -2 ports/misc/pkg_tarup/Makefile 1.4 +37 -12 ports/misc/pkg_tarup/files/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 Aug 22 22:28:31 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B3E537B40D; Wed, 22 Aug 2001 22:28:24 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N5SOo51301; Wed, 22 Aug 2001 22:28:24 -0700 (PDT) (envelope-from knu) Message-Id: <200108230528.f7N5SOo51301@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 22 Aug 2001 22:28:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/portupgrade pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/22 22:28:23 PDT Modified files: sysutils/portupgrade pkg-plist Log: Add a missing entry ("ChangeLog") to pkg-plist. Submitted by: Jimmy Olgeni Revision Changes Path 1.15 +1 -0 ports/sysutils/portupgrade/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 22:29:59 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A172937B409; Wed, 22 Aug 2001 22:29:54 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N5TsD51465; Wed, 22 Aug 2001 22:29:54 -0700 (PDT) (envelope-from taoka) Message-Id: <200108230529.f7N5TsD51465@freefall.freebsd.org> From: Satoshi Taoka Date: Wed, 22 Aug 2001 22:29:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese Makefile ports/japanese/foldoc-fpw Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG taoka 2001/08/22 22:29:54 PDT Modified files: japanese Makefile Added files: japanese/foldoc-fpw Makefile distinfo pkg-comment pkg-descr pkg-plist Log: The Free On-line Dictionary of Computing (EPWING V1 format) Revision Changes Path 1.375 +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 Wed Aug 22 22:30:15 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4478B37B426; Wed, 22 Aug 2001 22:30:01 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N5U1i51519; Wed, 22 Aug 2001 22:30:01 -0700 (PDT) (envelope-from taoka) Message-Id: <200108230530.f7N5U1i51519@freefall.freebsd.org> From: Satoshi Taoka Date: Wed, 22 Aug 2001 22:30:01 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG taoka 2001/08/22 22:30:01 PDT Modified files: . modules Log: ja-foldoc-fpw --> ports/japanese/foldoc-fpw Revision Changes Path 1.3704 +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 Aug 22 22:30:51 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B3B137B405; Wed, 22 Aug 2001 22:30:45 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N5Ujk51662; Wed, 22 Aug 2001 22:30:45 -0700 (PDT) (envelope-from taoka) Message-Id: <200108230530.f7N5Ujk51662@freefall.freebsd.org> From: Satoshi Taoka Date: Wed, 22 Aug 2001 22:30:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese Makefile ports/japanese/ebd-fpw Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG taoka 2001/08/22 22:30:45 PDT Modified files: japanese Makefile Added files: japanese/ebd-fpw Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Easton's 1897 Bible Dictionary (EPWING V1 format) Revision Changes Path 1.376 +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 Wed Aug 22 22:30:59 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 35C0437B410; Wed, 22 Aug 2001 22:30:51 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N5UpK51706; Wed, 22 Aug 2001 22:30:51 -0700 (PDT) (envelope-from taoka) Message-Id: <200108230530.f7N5UpK51706@freefall.freebsd.org> From: Satoshi Taoka Date: Wed, 22 Aug 2001 22:30:51 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG taoka 2001/08/22 22:30:51 PDT Modified files: . modules Log: ja-ebd-fpw --> ports/japanese/ebd-fpw Revision Changes Path 1.3705 +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 Aug 22 23: 9: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CB8D637B40C; Wed, 22 Aug 2001 23:08:58 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N68wp67723; Wed, 22 Aug 2001 23:08:58 -0700 (PDT) (envelope-from dinoex) Message-Id: <200108230608.f7N68wp67723@freefall.freebsd.org> From: Dirk Meyer Date: Wed, 22 Aug 2001 23:08:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2001/08/22 23:08:58 PDT Modified files: en_US.ISO8859-1/articles/contributors article.sgml Log: addded: Thomas E. Zander for port/grahics/mplayer* Revision Changes Path 1.13 +5 -1 doc/en_US.ISO8859-1/articles/contributors/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 Aug 22 23: 9:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 12B4D37B40C; Wed, 22 Aug 2001 23:09:45 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N69jC68120; Wed, 22 Aug 2001 23:09:45 -0700 (PDT) (envelope-from dinoex) Message-Id: <200108230609.f7N69jC68120@freefall.freebsd.org> From: Dirk Meyer Date: Wed, 22 Aug 2001 23:09:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/ifmail Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2001/08/22 23:09:45 PDT Modified files: news/ifmail Makefile Log: Removed MASTER_SITE Revision Changes Path 1.18 +2 -3 ports/news/ifmail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 23:35:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5068F37B409; Wed, 22 Aug 2001 23:35:38 -0700 (PDT) (envelope-from yar@FreeBSD.org) Received: (from yar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N6ZcD80573; Wed, 22 Aug 2001 23:35:38 -0700 (PDT) (envelope-from yar) Message-Id: <200108230635.f7N6ZcD80573@freefall.freebsd.org> From: Yar Tikhiy Date: Wed, 22 Aug 2001 23:35:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ifconfig ifconfig.8 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yar 2001/08/22 23:35:38 PDT Modified files: (Branch: RELENG_4) sbin/ifconfig ifconfig.8 Log: MFC: rev 1.47: .Fl -> .Cm for "create" and "destroy" parameters. Approved by: jkh Revision Changes Path 1.27.2.14 +3 -3 src/sbin/ifconfig/ifconfig.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 23:47: 9 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 757FD37B405; Wed, 22 Aug 2001 23:47:02 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N6kZB85873; Wed, 22 Aug 2001 23:46:35 -0700 (PDT) (envelope-from knu) Message-Id: <200108230646.f7N6kZB85873@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 22 Aug 2001 23:46:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/ruby-qt2gl Makefile pkg-plist ports/textproc/ruby-qt2xml Makefile pkg-plist ports/x11-toolkits/ruby-qt2 Makefile.common distinfo pkg-plist ports/x11-toolkits/ruby-qt2canvas Makefile pkg-plist ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/22 23:46:35 PDT Modified files: graphics/ruby-qt2gl Makefile pkg-plist textproc/ruby-qt2xml Makefile pkg-plist x11-toolkits/ruby-qt2 Makefile.common distinfo pkg-plist x11-toolkits/ruby-qt2canvas Makefile pkg-plist x11-toolkits/ruby-qt2iconview Makefile pkg-plist x11-toolkits/ruby-qt2table Makefile pkg-plist Log: Update ruby-qt2 modules to 0.14. Revision Changes Path 1.8 +1 -3 ports/graphics/ruby-qt2gl/Makefile 1.3 +0 -36 ports/graphics/ruby-qt2gl/pkg-plist 1.8 +1 -7 ports/textproc/ruby-qt2xml/Makefile 1.5 +0 -54 ports/textproc/ruby-qt2xml/pkg-plist 1.11 +5 -5 ports/x11-toolkits/ruby-qt2/Makefile.common 1.12 +1 -1 ports/x11-toolkits/ruby-qt2/distinfo 1.10 +148 -5 ports/x11-toolkits/ruby-qt2/pkg-plist 1.8 +1 -7 ports/x11-toolkits/ruby-qt2canvas/Makefile 1.3 +0 -13 ports/x11-toolkits/ruby-qt2canvas/pkg-plist 1.7 +1 -7 ports/x11-toolkits/ruby-qt2iconview/Makefile 1.2 +0 -3 ports/x11-toolkits/ruby-qt2iconview/pkg-plist 1.8 +1 -7 ports/x11-toolkits/ruby-qt2table/Makefile 1.3 +0 -7 ports/x11-toolkits/ruby-qt2table/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 22 23:57:13 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BFFDE37B40D; Wed, 22 Aug 2001 23:57:09 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N6v9O91494; Wed, 22 Aug 2001 23:57:09 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108230657.f7N6v9O91494@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 22 Aug 2001 23:57:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/py-reportlab Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/22 23:57:09 PDT Modified files: print/py-reportlab Makefile distinfo pkg-plist Log: upgrade to 1.09 Revision Changes Path 1.6 +2 -2 ports/print/py-reportlab/Makefile 1.5 +1 -1 ports/print/py-reportlab/distinfo 1.6 +9 -1 ports/print/py-reportlab/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 Aug 23 0: 4:13 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7DD2637B403; Thu, 23 Aug 2001 00:04:09 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N73uT95168; Thu, 23 Aug 2001 00:03:56 -0700 (PDT) (envelope-from kris) Message-Id: <200108230703.f7N73uT95168@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 00:03:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security Makefile ports/security/ppgen Makefile distinfo pkg-comment pkg-descr pkg-plist ports/security/ppgen/files patch-ppg_random_c patch-ppgen_c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 00:03:56 PDT Modified files: security Makefile Added files: security/ppgen Makefile distinfo pkg-comment pkg-descr pkg-plist security/ppgen/files patch-ppg_random_c patch-ppgen_c Log: Add ppgen 1.0, a program to generate random passphrases from dictionary words, with a desired amount of entropy. Obtained from: OpenBSD Revision Changes Path 1.220 +2 -1 ports/security/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 0:20:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A9B0237B417; Thu, 23 Aug 2001 00:20:22 -0700 (PDT) (envelope-from mike@FreeBSD.org) Received: (from mike@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N7KDg07242; Thu, 23 Aug 2001 00:20:13 -0700 (PDT) (envelope-from mike) Message-Id: <200108230720.f7N7KDg07242@freefall.freebsd.org> From: Mike Barcroft Date: Thu, 23 Aug 2001 00:20:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/whois Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mike 2001/08/23 00:20:13 PDT Modified files: (Branch: RELENG_4) usr.bin/whois Makefile Log: MFC Rev 1.5: Take maintainership of whois(1). Approved by: jkh Revision Changes Path 1.3.2.2 +3 -1 src/usr.bin/whois/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 0:30:40 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A600D37B412; Thu, 23 Aug 2001 00:30:33 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N7UX208462; Thu, 23 Aug 2001 00:30:33 -0700 (PDT) (envelope-from knu) Message-Id: <200108230730.f7N7UX208462@freefall.freebsd.org> From: Akinori MUSHA Date: Thu, 23 Aug 2001 00:30:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio Makefile ports/audio/ruby-qt2sound Makefile pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/23 00:30:33 PDT Modified files: audio Makefile Added files: audio/ruby-qt2sound Makefile pkg-comment pkg-descr pkg-plist Log: Add ruby-qt2sound, Qt2 sound extension for Ruby. Revision Changes Path 1.247 +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 Aug 23 0:30:56 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BC65C37B40F; Thu, 23 Aug 2001 00:30:45 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N7Ujw08617; Thu, 23 Aug 2001 00:30:45 -0700 (PDT) (envelope-from kris) Message-Id: <200108230730.f7N7Ujw08617@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 00:30:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/nbtscan Makefile distinfo pkg-comment pkg-descr pkg-plist ports/net/nbtscan/files patch-configure patch-configure_in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 00:30:45 PDT Modified files: net Makefile Added files: net/nbtscan Makefile distinfo pkg-comment pkg-descr pkg-plist net/nbtscan/files patch-configure patch-configure_in Log: Add nbtscan 1.0.2, a tool for scanning for NetBIOS name information. Obtained from: OpenBSD Revision Changes Path 1.594 +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 Aug 23 0:30:53 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D5A2737B434; Thu, 23 Aug 2001 00:30:43 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N7UhA08588; Thu, 23 Aug 2001 00:30:43 -0700 (PDT) (envelope-from knu) Message-Id: <200108230730.f7N7UhA08588@freefall.freebsd.org> From: Akinori MUSHA Date: Thu, 23 Aug 2001 00:30: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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/23 00:30:43 PDT Modified files: . modules Log: ruby-qt2sound --> ports/audio/ruby-qt2sound Revision Changes Path 1.3706 +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 Aug 23 0:33:15 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4726537B403; Thu, 23 Aug 2001 00:33:09 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N7X9008859; Thu, 23 Aug 2001 00:33:09 -0700 (PDT) (envelope-from jkoshy) Message-Id: <200108230733.f7N7X9008859@freefall.freebsd.org> From: Joseph Koshy Date: Thu, 23 Aug 2001 00:33:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/news press.xml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jkoshy 2001/08/23 00:33:09 PDT Modified files: en/news press.xml Log: Add WorkingMac.com interview with JKH. Revision Changes Path 1.3 +21 -1 www/en/news/press.xml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 0:42:44 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1629937B410; Thu, 23 Aug 2001 00:42:41 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N7gfc09659; Thu, 23 Aug 2001 00:42:41 -0700 (PDT) (envelope-from ache) Message-Id: <200108230742.f7N7gfc09659@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 00:42:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_descrip.c kern_lockf.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 00:42:41 PDT Modified files: sys/kern kern_descrip.c kern_lockf.c Log: Detect off_t EOVERFLOW of start/end offsets calculations for adv. lock, as POSIX require. Revision Changes Path 1.103 +16 -3 src/sys/kern/kern_descrip.c 1.29 +13 -2 src/sys/kern/kern_lockf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 0:47:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 917A437B408; Thu, 23 Aug 2001 00:47:23 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N7lNV10089; Thu, 23 Aug 2001 00:47:23 -0700 (PDT) (envelope-from knu) Message-Id: <200108230747.f7N7lNV10089@freefall.freebsd.org> From: Akinori MUSHA Date: Thu, 23 Aug 2001 00:47:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/portupgrade Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/23 00:47:23 PDT Modified files: sysutils/portupgrade Makefile Log: - Fix a typo. Reported by: David M. Heller - Replace another occurrence of /usr/local with ${LOCALBASE}. - Bump PORTREVISION. Revision Changes Path 1.57 +6 -2 ports/sysutils/portupgrade/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 0:53:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CEE9E37B401; Thu, 23 Aug 2001 00:53:08 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N7r8S10613; Thu, 23 Aug 2001 00:53:08 -0700 (PDT) (envelope-from knu) Message-Id: <200108230753.f7N7r8S10613@freefall.freebsd.org> From: Akinori MUSHA Date: Thu, 23 Aug 2001 00:53:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc/ruby-rica Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/23 00:53:08 PDT Modified files: irc/ruby-rica Makefile distinfo pkg-plist Log: Update to 0.6. Revision Changes Path 1.3 +5 -5 ports/irc/ruby-rica/Makefile 1.3 +1 -1 ports/irc/ruby-rica/distinfo 1.3 +2 -2 ports/irc/ruby-rica/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 Aug 23 0:57:20 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F4A937B406; Thu, 23 Aug 2001 00:57:14 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N7vEp11040; Thu, 23 Aug 2001 00:57:14 -0700 (PDT) (envelope-from imp) Message-Id: <200108230757.f7N7vEp11040@freefall.freebsd.org> From: Warner Losh Date: Thu, 23 Aug 2001 00:57:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pccard pccard_nbk.c pcic.c pcic_isa.c pcic_pci.c pcicvar.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/23 00:57:14 PDT Modified files: (Branch: RELENG_4) sys/pccard pccard_nbk.c pcic.c pcic_isa.c pcic_pci.c pcicvar.h Log: MFC the interrupt routing changes suggested by Ian Dowse. And some cosmetic changes to the tunables. Approved by: jkh Revision Changes Path 1.15.2.9 +1 -2 src/sys/pccard/pccard_nbk.c 1.89.2.20 +7 -7 src/sys/pccard/pcic.c 1.13.2.5 +3 -3 src/sys/pccard/pcic_isa.c 1.54.2.8 +40 -67 src/sys/pccard/pcic_pci.c 1.15.2.8 +4 -4 src/sys/pccard/pcicvar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 0:59:12 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6CF4937B408; Thu, 23 Aug 2001 00:59:07 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N7x7n11358; Thu, 23 Aug 2001 00:59:07 -0700 (PDT) (envelope-from murray) Message-Id: <200108230759.f7N7x7n11358@freefall.freebsd.org> From: Murray Stokely Date: Thu, 23 Aug 2001 00:59:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook Makefile doc/share/mk doc.docbook.mk doc/share/sgml pgp.dsl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2001/08/23 00:59:07 PDT Modified files: en_US.ISO8859-1/books/handbook Makefile share/mk doc.docbook.mk Added files: share/sgml pgp.dsl Log: Add a new target to the Handbook makefile: 'pgpkeyring'. This target finds all elements in the Handbook and writes out a flat text file suitable for importing into PGP or GPG. This can be used in the web build to automatically update the public keyring of FreeBSD developers. Revision Changes Path 1.47 +13 -1 doc/en_US.ISO8859-1/books/handbook/Makefile 1.45 +2 -1 doc/share/mk/doc.docbook.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 1:12:30 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D0D8B37B403; Thu, 23 Aug 2001 01:12:26 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N8CQd15569; Thu, 23 Aug 2001 01:12:26 -0700 (PDT) (envelope-from murray) Message-Id: <200108230812.f7N8CQd15569@freefall.freebsd.org> From: Murray Stokely Date: Thu, 23 Aug 2001 01:12:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/doc Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2001/08/23 01:12:26 PDT Modified files: en/doc Makefile Log: Create pgpkeyring.txt as part of the web build. Revision Changes Path 1.7 +7 -3 www/en/doc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 1:20:24 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5427537B406; Thu, 23 Aug 2001 01:20:21 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N8KLj16349; Thu, 23 Aug 2001 01:20:21 -0700 (PDT) (envelope-from ache) Message-Id: <200108230820.f7N8KLj16349@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 01:20:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/nfs nfs_lock.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 01:20:21 PDT Modified files: sys/nfs nfs_lock.c Log: adv. lock: detect off_t overflow _before_ it occurse and return EOVERFLOW instead of EINVAL Revision Changes Path 1.7 +6 -6 src/sys/nfs/nfs_lock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 1:24:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8693337B40B; Thu, 23 Aug 2001 01:24:07 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N8O7b16815; Thu, 23 Aug 2001 01:24:07 -0700 (PDT) (envelope-from murray) Message-Id: <200108230824.f7N8O7b16815@freefall.freebsd.org> From: Murray Stokely Date: Thu, 23 Aug 2001 01:24:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2001/08/23 01:24:07 PDT Modified files: en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml Log: Point users to the automatically generated keyring for easy download. Also fix the markup for two keys that I missed in a previous edit. Revision Changes Path 1.84 +11 -14 doc/en_US.ISO8859-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 Thu Aug 23 1:24:56 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 133E737B40D; Thu, 23 Aug 2001 01:24:53 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N8Oaf16901; Thu, 23 Aug 2001 01:24:36 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108230824.f7N8Oaf16901@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 23 Aug 2001 01:24:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security Makefile ports/security/borzoi Makefile distinfo pkg-comment pkg-descr pkg-plist ports/security/borzoi/files patch-configure patch-src::Makefile.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/23 01:24:36 PDT Modified files: security Makefile Added files: security/borzoi Makefile distinfo pkg-comment pkg-descr pkg-plist security/borzoi/files patch-configure patch-src::Makefile.in Log: add borzoi An Elliptic Curve Cryptography Library Revision Changes Path 1.221 +2 -1 ports/security/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 1:25:10 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 12DFB37B432; Thu, 23 Aug 2001 01:24:57 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N8Ods16942; Thu, 23 Aug 2001 01:24:39 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108230824.f7N8Ods16942@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 23 Aug 2001 01:24:39 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/23 01:24:39 PDT Modified files: . modules Log: borzoi --> ports/security/borzoi Revision Changes Path 1.3707 +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 Aug 23 1:30:35 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7BD3637B415; Thu, 23 Aug 2001 01:30:29 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N8UTL17456; Thu, 23 Aug 2001 01:30:29 -0700 (PDT) (envelope-from kris) Message-Id: <200108230830.f7N8UTL17456@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 01:30:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/wmcube Makefile ports/sysutils/wmcube/files patch-wmcube.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 01:30:29 PDT Modified files: sysutils/wmcube Makefile Added files: sysutils/wmcube/files patch-wmcube.c Log: Don't buffer overflow when reading the config file. Obtained from: OpenBSD Revision Changes Path 1.5 +2 -1 ports/sysutils/wmcube/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 1:32:34 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 12CFA37B407; Thu, 23 Aug 2001 01:32:30 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N8WUR17602; Thu, 23 Aug 2001 01:32:30 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108230832.f7N8WUR17602@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 23 Aug 2001 01:32:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/libdvdcss Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/23 01:32:30 PDT Modified files: graphics/libdvdcss Makefile distinfo pkg-plist Log: upgrade to 0.0.3 Revision Changes Path 1.3 +2 -2 ports/graphics/libdvdcss/Makefile 1.3 +1 -1 ports/graphics/libdvdcss/distinfo 1.2 +1 -1 ports/graphics/libdvdcss/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 Aug 23 1:50:10 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AADFB37B40A; Thu, 23 Aug 2001 01:50:03 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N8o3219259; Thu, 23 Aug 2001 01:50:03 -0700 (PDT) (envelope-from ache) Message-Id: <200108230850.f7N8o3219259@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 01:50: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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 01:50:03 PDT Modified files: . modules Log: Fix path for modules moved under sys/fs Revision Changes Path 1.3708 +12 -12 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 Aug 23 1:54:25 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 17A1837B416; Thu, 23 Aug 2001 01:54:20 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N8sKX19844; Thu, 23 Aug 2001 01:54:20 -0700 (PDT) (envelope-from kris) Message-Id: <200108230854.f7N8sKX19844@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 01:54:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils Makefile ports/sysutils/pstree Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 01:54:20 PDT Modified files: sysutils Makefile Added files: sysutils/pstree Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add pstree 2.16, a frontend to ps(1) which displays the process tree as a tree. Obtained from: OpenBSD Revision Changes Path 1.209 +2 -1 ports/sysutils/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 1:54:29 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B21C37B403; Thu, 23 Aug 2001 01:54:22 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N8sM719866; Thu, 23 Aug 2001 01:54:22 -0700 (PDT) (envelope-from ache) Message-Id: <200108230854.f7N8sM719866@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 01:54:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/smbfs smbfs_vnops.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 01:54:22 PDT Modified files: sys/fs/smbfs smbfs_vnops.c Log: adv. lock: copy EOVERFLOW handling code from main variant fix type of 'size' arg Revision Changes Path 1.4 +15 -3 src/sys/fs/smbfs/smbfs_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 Aug 23 2: 3: 7 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 95D6F37B412; Thu, 23 Aug 2001 02:03:03 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N933Z20798; Thu, 23 Aug 2001 02:03:03 -0700 (PDT) (envelope-from kris) Message-Id: <200108230903.f7N933Z20798@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 02:03:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security Makefile ports/security/rats Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 02:03:03 PDT Modified files: security Makefile Added files: security/rats Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add rats-1.1 This is RATS, a rough auditing tool for security, developed by Secure Software Solutions. It is a tool for scanning source code (C, C++, Perl, and Python) and flagging common security related programming errors such as buffer overflows and TOCTOU (Time Of Check, Time Of Use) race conditions. As its name implies, the tool performs only a rough analysis of source code. It will not find every error and will also find things that are not errors. Manual inspection of your code is still necessary, but greatly aided with this tool. Obtained from: OpenBSD Revision Changes Path 1.222 +2 -1 ports/security/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 2: 6:44 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 98D5337B40F; Thu, 23 Aug 2001 02:06:40 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N96e724149; Thu, 23 Aug 2001 02:06:40 -0700 (PDT) (envelope-from murray) Message-Id: <200108230906.f7N96e724149@freefall.freebsd.org> From: Murray Stokely Date: Thu, 23 Aug 2001 02:06:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/docproj handbook.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2001/08/23 02:06:40 PDT Modified files: en/docproj handbook.sgml Log: Add new tasks that need to be done. Revision Changes Path 1.12 +44 -24 www/en/docproj/handbook.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 2: 7:35 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 67B7337B40C; Thu, 23 Aug 2001 02:07:29 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N97TD24281; Thu, 23 Aug 2001 02:07:29 -0700 (PDT) (envelope-from kris) Message-Id: <200108230907.f7N97TD24281@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 02:07:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/pscan Makefile ports/security/rats Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 02:07:29 PDT Modified files: security/pscan Makefile security/rats Makefile Log: Correct CATEGORIES to "security devel" Revision Changes Path 1.4 +2 -2 ports/security/pscan/Makefile 1.2 +2 -2 ports/security/rats/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 2:13:53 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 811FB37B403; Thu, 23 Aug 2001 02:13:49 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N9Dk525008; Thu, 23 Aug 2001 02:13:46 -0700 (PDT) (envelope-from ache) Message-Id: <200108230913.f7N9Dk525008@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 02:13: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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 02:13:46 PDT Modified files: . modules Log: Remove non-existen kernfs sys_nfs -> nfs (like other *fs) Add nfsclient Revision Changes Path 1.3709 +3 -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 Thu Aug 23 2:16:34 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7080537B40F; Thu, 23 Aug 2001 02:16:29 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N9GTb25280; Thu, 23 Aug 2001 02:16:29 -0700 (PDT) (envelope-from ache) Message-Id: <200108230916.f7N9GTb25280@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 02:16:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/nfsclient nfs_lock.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 02:16:29 PDT Modified files: sys/nfsclient nfs_lock.c Log: Copy EOVERFLOW changes from nfs/nfs_lock.c Revision Changes Path 1.7 +6 -6 src/sys/nfsclient/nfs_lock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 2:20:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8AEB237B40F; Thu, 23 Aug 2001 02:20:04 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N9K4n25615; Thu, 23 Aug 2001 02:20:04 -0700 (PDT) (envelope-from kris) Message-Id: <200108230920.f7N9K4n25615@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 02:20:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/gtksee Makefile ports/graphics/gtksee/files patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 02:20:04 PDT Modified files: graphics/gtksee Makefile Added files: graphics/gtksee/files patch-ab Log: Fix a minor Y2K problem in displaying dates. Obtained from: OpenBSD Approved by: maintainer Revision Changes Path 1.25 +2 -1 ports/graphics/gtksee/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 2:29: 0 2001 Delivered-To: cvs-all@freebsd.org Received: from mailgate.originative.co.uk (mailgate.originative.co.uk [62.232.68.68]) by hub.freebsd.org (Postfix) with ESMTP id A32DC37B40A; Thu, 23 Aug 2001 02:28:53 -0700 (PDT) (envelope-from paul@freebsd-services.com) Received: from lobster.originative.co.uk (lobster [62.232.68.81]) by mailgate.originative.co.uk (Postfix) with ESMTP id 59B5D1D146; Thu, 23 Aug 2001 10:28:51 +0100 (BST) Date: Thu, 23 Aug 2001 10:28:51 +0100 From: Paul Richards To: Warner Losh , Peter Wemm Cc: Jordan Hubbard , silby@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h Message-ID: <333850000.998558931@lobster.originative.co.uk> In-Reply-To: <200108230218.f7N2GhW80371@harmony.village.org> References: <20010823020634.6090B380F@overcee.netplex.com.au> <200108230218.f7N2GhW80371@harmony.village.org> X-Mailer: Mulberry/2.1.0b3 (Linux/x86 Demo) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --On Wednesday, August 22, 2001 20:16:43 -0600 Warner Losh wrote: > In message <20010823020634.6090B380F@overcee.netplex.com.au> Peter Wemm > writes: : Dont forget, having something in current for a while doesn't > guarantee : anything. Witness the PCI interrupt steering and pcibios > stuff. It sat in : -current for a whole *year* before it got MFC'ed and > discovered that it : doesn't work on a sufficient number of machines for > it to be a showstopper. > > It sure took me by complete surprise.... None of the machine that > I've tested it on had any problems at all :-( You knew it didn't work on my laptop. I showed you at Usenix. You even told me not to worry about -stable getting broken because you'd make sure it was working before MFCing it! Paul Richards FreeBSD Services Ltd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 2:32:15 2001 Delivered-To: cvs-all@freebsd.org Received: from mailgate.originative.co.uk (mailgate.originative.co.uk [62.232.68.68]) by hub.freebsd.org (Postfix) with ESMTP id 3B4B237B410; Thu, 23 Aug 2001 02:32:09 -0700 (PDT) (envelope-from paul@freebsd-services.com) Received: from lobster.originative.co.uk (lobster [62.232.68.81]) by mailgate.originative.co.uk (Postfix) with ESMTP id C2C811D146; Thu, 23 Aug 2001 10:31:50 +0100 (BST) Date: Thu, 23 Aug 2001 10:31:50 +0100 From: Paul Richards To: Warner Losh , Jordan Hubbard Cc: silby@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h Message-ID: <335520000.998559110@lobster.originative.co.uk> In-Reply-To: <200108230203.f7N23KW80266@harmony.village.org> References: <20010822165526C.jkh@freebsd.org> <200108220059.f7M0xDe16950@freefall.freebsd.org> <200500000.998522703@lobster.originative.co.uk> <200108230203.f7N23KW80266@harmony.village.org> X-Mailer: Mulberry/2.1.0b3 (Linux/x86 Demo) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --On Wednesday, August 22, 2001 20:03:20 -0600 Warner Losh wrote: > In message <20010822165526C.jkh@freebsd.org> Jordan Hubbard writes: > : We've been waiting for this particular change for a long time now and > : the impact was judged less severe then continuing to get beat up over > : not having it. If I called it right, everyone will probably just > : happily use it and I'll not hear another thing about it. If I called > : it wrong, I'll get flamed to toast. Such is the life of the RE. :) > > Yes. Likely people should be far more worried about the pccard > changes that are rolling in... Believe me I am, but we're in a situation there where MFCs prior to the release cycle meant that trying to fix things up was the only option. I am annoyed that pccard has been hacked on so extensively in -stable over the last few months though because now I have to resort to cutting CD's in order to update the sources on my laptop! Paul Richards FreeBSD Services Ltd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 2:36:39 2001 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 64B1137B408; Thu, 23 Aug 2001 02:36:32 -0700 (PDT) (envelope-from des@ofug.org) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id LAA09579; Thu, 23 Aug 2001 11:36:31 +0200 (CEST) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: "Andrey A. Chernov" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT modules References: <200108230913.f7N9Dk525008@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 23 Aug 2001 11:36:30 +0200 In-Reply-To: <200108230913.f7N9Dk525008@freefall.freebsd.org> Message-ID: Lines: 11 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Andrey A. Chernov" writes: > Log: > Remove non-existen kernfs Why do you do that? It's not "non-existent", it's just been removed from -CURRENT. I believe we have a stated policy of not removing CVSROOT/modules entries for code that still exists on older branches. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 2:42:35 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9009637B411; Thu, 23 Aug 2001 02:42:30 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N9gUo28061; Thu, 23 Aug 2001 02:42:30 -0700 (PDT) (envelope-from ache) Message-Id: <200108230942.f7N9gUo28061@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 02:42:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys fcntl.2 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 02:42:30 PDT Modified files: lib/libc/sys fcntl.2 Log: Describe EOVERFLOW, EOPNOTSUPP and reaction to negative l_len Revision Changes Path 1.26 +19 -8 src/lib/libc/sys/fcntl.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 2:47:29 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 005B837B409; Thu, 23 Aug 2001 02:47:25 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N9lOm28485; Thu, 23 Aug 2001 02:47:24 -0700 (PDT) (envelope-from kris) Message-Id: <200108230947.f7N9lOm28485@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 02:47:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/slurpie Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 02:47:24 PDT Modified files: security/slurpie Makefile pkg-plist Log: Allow package builds and correct the plist. Approved by: maintainer Revision Changes Path 1.5 +1 -3 ports/security/slurpie/Makefile 1.2 +2 -1 ports/security/slurpie/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 Aug 23 2:49:39 2001 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 DA5C437B401; Thu, 23 Aug 2001 02:49:31 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id f7N9nLX06093; Thu, 23 Aug 2001 13:49:21 +0400 (MSD) (envelope-from ache) Date: Thu, 23 Aug 2001 13:49:19 +0400 From: "Andrey A. Chernov" To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT modules Message-ID: <20010823134919.B5992@nagual.pp.ru> References: <200108230913.f7N9Dk525008@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.20i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Aug 23, 2001 at 11:36:30 +0200, Dag-Erling Smorgrav wrote: > "Andrey A. Chernov" writes: > > Log: > > Remove non-existen kernfs > > Why do you do that? It's not "non-existent", it's just been removed > from -CURRENT. I believe we have a stated policy of not removing > CVSROOT/modules entries for code that still exists on older branches. I doubt we can keep 'modules' useful for non-current too, just consider movings like many things from sys/miscfs to sys/fs. Current module names in that case are unusable for non-current. Or do you mean it must be semi-usable excepting movings? -- 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 Thu Aug 23 2:53: 1 2001 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 7FE7C37B401; Thu, 23 Aug 2001 02:52:56 -0700 (PDT) (envelope-from des@ofug.org) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id LAA09658; Thu, 23 Aug 2001 11:52:49 +0200 (CEST) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: "Andrey A. Chernov" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT modules References: <200108230913.f7N9Dk525008@freefall.freebsd.org> <20010823134919.B5992@nagual.pp.ru> From: Dag-Erling Smorgrav Date: 23 Aug 2001 11:52:49 +0200 In-Reply-To: <20010823134919.B5992@nagual.pp.ru> Message-ID: Lines: 14 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Andrey A. Chernov" writes: > I doubt we can keep 'modules' useful for non-current too, just consider > movings like many things from sys/miscfs to sys/fs. Current module names > in that case are unusable for non-current. Or do you mean it must be > semi-usable excepting movings? Please search the archives. You will find that we have always, in the past, kept modules around after the actual code was removed from -CURRENT, so people working on older branches could still check out the module. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 2:55:16 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 08F5737B40C; Thu, 23 Aug 2001 02:55:11 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7N9tBr29147; Thu, 23 Aug 2001 02:55:11 -0700 (PDT) (envelope-from ache) Message-Id: <200108230955.f7N9tBr29147@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 02:55:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys fcntl.2 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 02:55:10 PDT Modified files: lib/libc/sys fcntl.2 Log: Rephrasing prev. commit a bit. Revision Changes Path 1.27 +13 -5 src/lib/libc/sys/fcntl.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 2:59: 3 2001 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 097AF37B406; Thu, 23 Aug 2001 02:58:58 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id f7N9wnD06215; Thu, 23 Aug 2001 13:58:50 +0400 (MSD) (envelope-from ache) Date: Thu, 23 Aug 2001 13:58:46 +0400 From: "Andrey A. Chernov" To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT modules Message-ID: <20010823135845.A6196@nagual.pp.ru> References: <200108230913.f7N9Dk525008@freefall.freebsd.org> <20010823134919.B5992@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.20i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Aug 23, 2001 at 11:52:49 +0200, Dag-Erling Smorgrav wrote: > "Andrey A. Chernov" writes: > > I doubt we can keep 'modules' useful for non-current too, just consider > > movings like many things from sys/miscfs to sys/fs. Current module names > > in that case are unusable for non-current. Or do you mean it must be > > semi-usable excepting movings? > > Please search the archives. You will find that we have always, in the > past, kept modules around after the actual code was removed from > -CURRENT, so people working on older branches could still check out > the module. Ok, I'll restore it, but I not see much sense in this. It will be better to keep two separated versions of modules for -current and non-current. -- 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 Thu Aug 23 3: 1:46 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0957C37B405; Thu, 23 Aug 2001 03:01:42 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NA1gT30004; Thu, 23 Aug 2001 03:01:42 -0700 (PDT) (envelope-from ache) Message-Id: <200108231001.f7NA1gT30004@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 03:01: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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 03:01:41 PDT Modified files: . modules Log: Restore kernfs (for non-current) Revision Changes Path 1.3710 +5 -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 Aug 23 3:18:39 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 17BC337B412; Thu, 23 Aug 2001 03:18:34 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NAIYO34047; Thu, 23 Aug 2001 03:18:34 -0700 (PDT) (envelope-from ache) Message-Id: <200108231018.f7NAIYO34047@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 03:18:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/mutt-devel Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 03:18:33 PDT Modified files: mail/mutt-devel Makefile distinfo pkg-plist Log: Upgrade to 1.3.21 (from maintainer) Add news to CATEGORIES if MUTT_WITH_NNTP defined PR: 29952 Submitted by: Udo Schweigert Revision Changes Path 1.120 +6 -3 ports/mail/mutt-devel/Makefile 1.58 +1 -1 ports/mail/mutt-devel/distinfo 1.30 +10 -7 ports/mail/mutt-devel/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 Aug 23 3:30:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E0E7437B40B; Thu, 23 Aug 2001 03:30:47 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NAUlN35476; Thu, 23 Aug 2001 03:30:47 -0700 (PDT) (envelope-from jim) Message-Id: <200108231030.f7NAUlN35476@freefall.freebsd.org> From: Jim Mock Date: Thu, 23 Aug 2001 03:30:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/examples/cvsup refuse.README X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jim 2001/08/23 03:30:47 PDT Modified files: (Branch: RELENG_4) share/examples/cvsup refuse.README Log: MFC rev 1.3 Approved by: jkh Revision Changes Path 1.1.2.3 +3 -1 src/share/examples/cvsup/refuse.README To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 3:32:34 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0694037B407; Thu, 23 Aug 2001 03:32:30 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NAWUr35642; Thu, 23 Aug 2001 03:32:30 -0700 (PDT) (envelope-from bde) Message-Id: <200108231032.f7NAWUr35642@freefall.freebsd.org> From: Bruce Evans Date: Thu, 23 Aug 2001 03:32:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_shutdown.c subr_disk.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bde 2001/08/23 03:32:29 PDT Modified files: (Branch: RELENG_4) sys/kern kern_shutdown.c subr_disk.c Log: MFC (kern_shutdown.c-rev.1.103, subr_disk.c-rev.1.42: don't dump on the label sector or below; reduced nearby overflow bugs). Revision Changes Path 1.72.2.8 +4 -3 src/sys/kern/kern_shutdown.c 1.20.2.5 +3 -3 src/sys/kern/subr_disk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 3:38:30 2001 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 2A7F837B40E; Thu, 23 Aug 2001 03:38:25 -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.9.3/8.8.7) with ESMTP id UAA17491; Thu, 23 Aug 2001 20:38:23 +1000 Date: Thu, 23 Aug 2001 20:38:17 +1000 (EST) From: Bruce Evans X-X-Sender: To: Bruce Evans Cc: , Subject: Re: cvs commit: src/sys/kern kern_shutdown.c subr_disk.c In-Reply-To: <200108231032.f7NAWUr35642@freefall.freebsd.org> Message-ID: <20010823203611.W19942-100000@besplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 23 Aug 2001, Bruce Evans wrote: > bde 2001/08/23 03:32:29 PDT > > Modified files: (Branch: RELENG_4) > sys/kern kern_shutdown.c subr_disk.c > Log: > MFC (kern_shutdown.c-rev.1.103, subr_disk.c-rev.1.42: don't dump on the > label sector or below; reduced nearby overflow bugs). Approved-by-jkh-forgotten-again-by: bde Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 3:44: 3 2001 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (dsl092-013-169.sfo1.dsl.speakeasy.net [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id CD3AC37B40F; Thu, 23 Aug 2001 03:43:58 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.5/8.11.1) id f7NAhYk81224; Thu, 23 Aug 2001 03:43:34 -0700 (PDT) (envelope-from obrien) Date: Thu, 23 Aug 2001 03:43:34 -0700 From: "David O'Brien" To: Gordon Tetlow Cc: silby@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h Message-ID: <20010823034334.A81151@dragon.nuxi.com> Reply-To: silby@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <253280000.998524932@lobster.originative.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from gordont@gnf.org on Wed, Aug 22, 2001 at 06:30:00PM -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Aug 22, 2001 at 06:30:00PM -0700, Gordon Tetlow wrote: > > It's a *very* late call for code that has never seen the light of day > > before (and the authors testing doesn't count in this context). > > > > No offense Mike, since I'm sure you've tested it a lot, but this is a > > significant enough change that such a late merge to -stable without any > > testing at all in -current merits at least a questioning email. > > You should read -arch. The patch has been posted there for 2 days shy of a > month (July 24) and was revised on Aug 10th. So what a patch has been in a mailing list archive for a month. How many people acutally *ran* that patch? W/o numbers I share Paul's concern. -- -- 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 Thu Aug 23 4:22:34 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CA5E137B407; Thu, 23 Aug 2001 04:22:30 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NBMUE48948; Thu, 23 Aug 2001 04:22:30 -0700 (PDT) (envelope-from ache) Message-Id: <200108231122.f7NBMUE48948@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 04:22:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mnogosearch Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 04:22:30 PDT Modified files: www/mnogosearch Makefile Log: Upgrade to 1.3.19 Revision Changes Path 1.30 +2 -2 ports/www/mnogosearch/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 4:23:57 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 409A737B40F; Thu, 23 Aug 2001 04:23:52 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NBNqa49149; Thu, 23 Aug 2001 04:23:52 -0700 (PDT) (envelope-from ache) Message-Id: <200108231123.f7NBNqa49149@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 04:23:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mnogosearch distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 04:23:52 PDT Modified files: www/mnogosearch distinfo Log: Upgrade to 1.3.19 Revision Changes Path 1.10 +1 -1 ports/www/mnogosearch/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 4:25: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6043237B409; Thu, 23 Aug 2001 04:24:57 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NBOvu49252; Thu, 23 Aug 2001 04:24:57 -0700 (PDT) (envelope-from kris) Message-Id: <200108231124.f7NBOvu49252@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 04:24:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/leafnode Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 04:24:57 PDT Modified files: news/leafnode Makefile distinfo Log: Update to leafnode 1.9.19 and freshen the MASTER_SITES Approved by: maintainer Revision Changes Path 1.17 +7 -3 ports/news/leafnode/Makefile 1.9 +1 -1 ports/news/leafnode/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 4:30:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E58937B40B; Thu, 23 Aug 2001 04:30:40 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NBUeG50002; Thu, 23 Aug 2001 04:30:40 -0700 (PDT) (envelope-from kris) Message-Id: <200108231130.f7NBUeG50002@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 04:30:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang Makefile ports/lang/klone Makefile distinfo pkg-comment pkg-descr pkg-plist ports/lang/klone/files freebsd X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 04:30:40 PDT Modified files: lang Makefile Added files: lang/klone Makefile distinfo pkg-comment pkg-descr pkg-plist lang/klone/files freebsd Log: Initial import of klone-2.1.359 KLONE is a small and fast fully interpreted language intended to be embedded into C applications to provide them with a powerful, yet fast and small extension language. Its syntax is very inspired from Lisp (its external syntax has been kept as close as possible to Common Lisp as possible), but its implementation is original and efficient, to give full extensibility, intimate interfacing to C, incremental garbage collection, and full portability on either K&R or ANSI C. Obtained from: OpenBSD Revision Changes Path 1.247 +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 Thu Aug 23 4:31: 1 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AE1D337B405; Thu, 23 Aug 2001 04:30:53 -0700 (PDT) (envelope-from cg@FreeBSD.org) Received: (from cg@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NBUrw50167; Thu, 23 Aug 2001 04:30:53 -0700 (PDT) (envelope-from cg) Message-Id: <200108231130.f7NBUrw50167@freefall.freebsd.org> From: Cameron Grant Date: Thu, 23 Aug 2001 04:30:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/isa ad1816.c es1888.c ess.c gusc.c mss.c sb16.c sb8.c sbc.c src/sys/dev/sound/pci als4000.c aureal.c cmi.c cs4281.c csa.c csapcm.c ds1.c emu10k1.c es137x.c fm801.c ich.c maestro.c maestro3.c neomagic.c solo.c t4dwave.c via82c686.c ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cg 2001/08/23 04:30:53 PDT Modified files: sys/dev/sound/isa ad1816.c es1888.c ess.c gusc.c mss.c sb16.c sb8.c sbc.c sys/dev/sound/pci als4000.c aureal.c cmi.c cs4281.c csa.c csapcm.c ds1.c emu10k1.c es137x.c fm801.c ich.c maestro.c maestro3.c neomagic.c solo.c t4dwave.c via82c686.c vibes.c sys/dev/sound/pcm ac97.c buffer.c channel.c dsp.c fake.c feeder.c feeder_fmt.c feeder_rate.c mixer.c sndstat.c sound.c sound.h vchan.c vchan.h Log: many changes: * add new channels to the end of the list so channels used in order of addition * de-globalise definition of struct snddev_info and provide accessor functions where necessary. * move the $FreeBSD$ tag in each .c file into a macro and allow the /dev/sndstat handler to display these when set to maximum verbosity to aid debugging. * allow each device to register its own sndstat handler to reduce the amount of groping sndstat must do in foreign structs. Revision Changes Path 1.21 +3 -3 src/sys/dev/sound/isa/ad1816.c 1.9 +3 -3 src/sys/dev/sound/isa/es1888.c 1.21 +4 -4 src/sys/dev/sound/isa/ess.c 1.12 +3 -3 src/sys/dev/sound/isa/gusc.c 1.71 +5 -5 src/sys/dev/sound/isa/mss.c 1.72 +3 -3 src/sys/dev/sound/isa/sb16.c 1.66 +3 -3 src/sys/dev/sound/isa/sb8.c 1.33 +3 -3 src/sys/dev/sound/isa/sbc.c 1.5 +3 -3 src/sys/dev/sound/pci/als4000.c 1.20 +3 -3 src/sys/dev/sound/pci/aureal.c 1.10 +3 -3 src/sys/dev/sound/pci/cmi.c 1.8 +3 -3 src/sys/dev/sound/pci/cs4281.c 1.21 +2 -2 src/sys/dev/sound/pci/csa.c 1.23 +3 -3 src/sys/dev/sound/pci/csapcm.c 1.25 +3 -3 src/sys/dev/sound/pci/ds1.c 1.24 +3 -3 src/sys/dev/sound/pci/emu10k1.c 1.39 +3 -3 src/sys/dev/sound/pci/es137x.c 1.11 +3 -3 src/sys/dev/sound/pci/fm801.c 1.4 +27 -14 src/sys/dev/sound/pci/ich.c 1.12 +3 -2 src/sys/dev/sound/pci/maestro.c 1.9 +3 -3 src/sys/dev/sound/pci/maestro3.c 1.26 +3 -3 src/sys/dev/sound/pci/neomagic.c 1.22 +3 -3 src/sys/dev/sound/pci/solo.c 1.26 +3 -3 src/sys/dev/sound/pci/t4dwave.c 1.14 +3 -3 src/sys/dev/sound/pci/via82c686.c 1.8 +4 -3 src/sys/dev/sound/pci/vibes.c 1.21 +2 -2 src/sys/dev/sound/pcm/ac97.c 1.7 +2 -2 src/sys/dev/sound/pcm/buffer.c 1.61 +4 -4 src/sys/dev/sound/pcm/channel.c 1.45 +70 -42 src/sys/dev/sound/pcm/dsp.c 1.10 +2 -2 src/sys/dev/sound/pcm/fake.c 1.18 +2 -2 src/sys/dev/sound/pcm/feeder.c 1.6 +2 -2 src/sys/dev/sound/pcm/feeder_fmt.c 1.3 +2 -2 src/sys/dev/sound/pcm/feeder_rate.c 1.22 +4 -6 src/sys/dev/sound/pcm/mixer.c 1.5 +198 -77 src/sys/dev/sound/pcm/sndstat.c 1.61 +301 -51 src/sys/dev/sound/pcm/sound.c 1.41 +34 -34 src/sys/dev/sound/pcm/sound.h 1.6 +8 -89 src/sys/dev/sound/pcm/vchan.c 1.2 +2 -2 src/sys/dev/sound/pcm/vchan.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 4:34: 0 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C2EA37B40E; Thu, 23 Aug 2001 04:33:56 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NBXuq50627; Thu, 23 Aug 2001 04:33:56 -0700 (PDT) (envelope-from kris) Message-Id: <200108231133.f7NBXuq50627@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 04:33:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/vomit Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 04:33:55 PDT Modified files: net Makefile Added files: net/vomit Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add vomit 0.1 The vomit utility converts a Cisco IP phone conversation into a wave file that can be played with ordinary sound players. The phone conversation can either be played directly from the network or from a tcpdump output file. Vomit is also capable of inserting wavefiles into ongoing telephone conversations. Vomit can be used as a network debugging tool, a speaker phone, etc ... --- I haven't tested whether this works. Obtained from: OpenBSD Revision Changes Path 1.595 +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 Aug 23 4:42:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E18837B403; Thu, 23 Aug 2001 04:42:14 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NBgED51484; Thu, 23 Aug 2001 04:42:14 -0700 (PDT) (envelope-from kris) Message-Id: <200108231142.f7NBgED51484@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 04:42:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/pstree distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 04:42:14 PDT Modified files: sysutils/pstree distinfo Log: Remove extraneous distfile hashes Revision Changes Path 1.2 +0 -2 ports/sysutils/pstree/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 4:42:59 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 959E237B413; Thu, 23 Aug 2001 04:42:48 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NBgmV51563; Thu, 23 Aug 2001 04:42:48 -0700 (PDT) (envelope-from kris) Message-Id: <200108231142.f7NBgmV51563@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 04:42:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/rats distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 04:42:48 PDT Modified files: security/rats distinfo Log: Remove extraneous distfile hashes Revision Changes Path 1.2 +0 -2 ports/security/rats/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 4:43: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3802E37B40C; Thu, 23 Aug 2001 04:43:04 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NBh4Q51601; Thu, 23 Aug 2001 04:43:04 -0700 (PDT) (envelope-from kris) Message-Id: <200108231143.f7NBh4Q51601@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 04:43:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/klone distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 04:43:04 PDT Modified files: lang/klone distinfo Log: Remove extraneous distfile hashes Revision Changes Path 1.2 +0 -2 ports/lang/klone/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 4:43:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E2F8537B61A; Thu, 23 Aug 2001 04:43:18 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NBhIY51641; Thu, 23 Aug 2001 04:43:18 -0700 (PDT) (envelope-from kris) Message-Id: <200108231143.f7NBhIY51641@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 04:43:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/vomit distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 04:43:18 PDT Modified files: net/vomit distinfo Log: Remove extraneous distfile hashes Revision Changes Path 1.2 +0 -2 ports/net/vomit/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 4:46:21 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 474A937B401; Thu, 23 Aug 2001 04:46:18 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NBkIk51928; Thu, 23 Aug 2001 04:46:18 -0700 (PDT) (envelope-from nbm) Message-Id: <200108231146.f7NBkIk51928@freefall.freebsd.org> From: Neil Blakey-Milner Date: Thu, 23 Aug 2001 04:46:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/courier-imap Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nbm 2001/08/23 04:46:18 PDT Modified files: mail/courier-imap Makefile pkg-plist Log: Build with PAM support, since it seems to work. Can specify WITHOUT_PAM to not compile in PAM authentication support. Submitted by: Blaz Zupan Revision Changes Path 1.21 +13 -7 ports/mail/courier-imap/Makefile 1.15 +1 -0 ports/mail/courier-imap/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 Aug 23 4:52:32 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6005137B408; Thu, 23 Aug 2001 04:52:26 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NBqQS52918; Thu, 23 Aug 2001 04:52:26 -0700 (PDT) (envelope-from kris) Message-Id: <200108231152.f7NBqQS52918@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 04:52:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors Makefile ports/editors/impress Makefile distinfo pkg-comment pkg-descr pkg-plist ports/editors/impress/files patch-Makefile patch-src_Makefile patch-src_impress_tcl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 04:52:26 PDT Modified files: editors Makefile Added files: editors/impress Makefile distinfo pkg-comment pkg-descr pkg-plist editors/impress/files patch-Makefile patch-src_Makefile patch-src_impress_tcl Log: Add impress 1.1b9 ImPressTM is a WYSIWYG layout program designed especially for Linux [sic]. It allows you to create presentations and Postscript documents using fully scalable graphics similar to programs like Macromedia Freehand, Corel Draw, Adobe Illustrator and Visio. It is different from raster graphic packages like gimp, Adobe PhotoShop and Jasc's PaintShop Pro in that it deals with graphical objects which can be manipulated on a canvas rather than just layers of paint. Obtained from: OpenBSD Revision Changes Path 1.155 +2 -1 ports/editors/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 4:56:13 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8879F37B40B; Thu, 23 Aug 2001 04:56:08 -0700 (PDT) (envelope-from cg@FreeBSD.org) Received: (from cg@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NBu8S53441; Thu, 23 Aug 2001 04:56:08 -0700 (PDT) (envelope-from cg) Message-Id: <200108231156.f7NBu8S53441@freefall.freebsd.org> From: Cameron Grant Date: Thu, 23 Aug 2001 04:56:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/pcm mixer.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cg 2001/08/23 04:56:08 PDT Modified files: sys/dev/sound/pcm mixer.c Log: MFS: allow multiple opens of mixer devices Revision Changes Path 1.23 +12 -9 src/sys/dev/sound/pcm/mixer.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 4:58:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A620037B40D; Thu, 23 Aug 2001 04:58:38 -0700 (PDT) (envelope-from cg@FreeBSD.org) Received: (from cg@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NBwc553812; Thu, 23 Aug 2001 04:58:38 -0700 (PDT) (envelope-from cg) Message-Id: <200108231158.f7NBwc553812@freefall.freebsd.org> From: Cameron Grant Date: Thu, 23 Aug 2001 04:58:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/pcm dsp.c channel.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cg 2001/08/23 04:58:38 PDT Modified files: sys/dev/sound/pcm dsp.c channel.c Log: MFS: make SNDCTL_DSP_SETTRIGGER work Revision Changes Path 1.46 +5 -7 src/sys/dev/sound/pcm/dsp.c 1.62 +2 -2 src/sys/dev/sound/pcm/channel.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 5: 2:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 871F637B407; Thu, 23 Aug 2001 05:02:29 -0700 (PDT) (envelope-from cg@FreeBSD.org) Received: (from cg@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NC2TY54311; Thu, 23 Aug 2001 05:02:29 -0700 (PDT) (envelope-from cg) Message-Id: <200108231202.f7NC2TY54311@freefall.freebsd.org> From: Cameron Grant Date: Thu, 23 Aug 2001 05:02:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/pci t4dwave.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cg 2001/08/23 05:02:29 PDT Modified files: sys/dev/sound/pci t4dwave.c Log: make the 4dwave nx chip work Submitted by: Philippe Anel Revision Changes Path 1.27 +2 -2 src/sys/dev/sound/pci/t4dwave.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 5: 3:32 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2521C37B407; Thu, 23 Aug 2001 05:03:26 -0700 (PDT) (envelope-from hm@FreeBSD.org) Received: (from hm@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NC3QU54475; Thu, 23 Aug 2001 05:03:26 -0700 (PDT) (envelope-from hm) Message-Id: <200108231203.f7NC3QU54475@freefall.freebsd.org> From: Hellmuth Michaelis Date: Thu, 23 Aug 2001 05:03:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i4b/driver i4b_ipr.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hm 2001/08/23 05:03:26 PDT Modified files: (Branch: RELENG_4) sys/i4b/driver i4b_ipr.c Log: Some i4b users on usenet reported, that the ipr interface dials out but did not send anything after a connection was established. The fix for this was to add a missing IF_ENQUEUE which obviously got lost at the time the ipr driver in current was backported to work also on stable. Approved by: jkh Revision Changes Path 1.8.2.2 +4 -2 src/sys/i4b/driver/i4b_ipr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 5:21:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 25EC137B407; Thu, 23 Aug 2001 05:21:13 -0700 (PDT) (envelope-from cg@FreeBSD.org) Received: (from cg@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NCLDU59268; Thu, 23 Aug 2001 05:21:13 -0700 (PDT) (envelope-from cg) Message-Id: <200108231221.f7NCLDU59268@freefall.freebsd.org> From: Cameron Grant Date: Thu, 23 Aug 2001 05:21:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/pcm dsp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cg 2001/08/23 05:21:13 PDT Modified files: sys/dev/sound/pcm dsp.c Log: handle bogus values passed to SOUND_PCM_WRITE_CHANNELS/SNDCTL_DSP_CHANNELS ioctls better- if 0 is passed, return the current setting. if 1 or 2 are passed, behave accordingly. treat values >2 as 2. PR: kern/29964 Revision Changes Path 1.47 +6 -5 src/sys/dev/sound/pcm/dsp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 5:27:31 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3394437B407; Thu, 23 Aug 2001 05:27:27 -0700 (PDT) (envelope-from cg@FreeBSD.org) Received: (from cg@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NCRRk60146; Thu, 23 Aug 2001 05:27:27 -0700 (PDT) (envelope-from cg) Message-Id: <200108231227.f7NCRRk60146@freefall.freebsd.org> From: Cameron Grant Date: Thu, 23 Aug 2001 05:27:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/pcm feeder.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cg 2001/08/23 05:27:27 PDT Modified files: sys/dev/sound/pcm feeder.c Log: the feederchain builder is currently broken for recording channels. disable it until it is fixed. this limits recording to native formats and speeds only. Revision Changes Path 1.19 +4 -1 src/sys/dev/sound/pcm/feeder.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 5:28:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C14D37B406; Thu, 23 Aug 2001 05:28:12 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NCSCf60332; Thu, 23 Aug 2001 05:28:12 -0700 (PDT) (envelope-from kris) Message-Id: <200108231228.f7NCSCf60332@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 05:28:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games Makefile ports/games/newvox Makefile distinfo pkg-comment pkg-descr pkg-plist ports/games/newvox/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 05:28:12 PDT Modified files: games Makefile Added files: games/newvox Makefile distinfo pkg-comment pkg-descr pkg-plist games/newvox/files patch-aa Log: Add voxel-1.0 Voxel-style landscape rendering. Move around the landscape by using the arrow keys. Obtained from: OpenBSD Revision Changes Path 1.407 +2 -1 ports/games/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 5:36:55 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C48E237B409; Thu, 23 Aug 2001 05:36:52 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NCaqJ61350; Thu, 23 Aug 2001 05:36:52 -0700 (PDT) (envelope-from knu) Message-Id: <200108231236.f7NCaqJ61350@freefall.freebsd.org> From: Akinori MUSHA Date: Thu, 23 Aug 2001 05:36:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/portupgrade Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/23 05:36:52 PDT Modified files: sysutils/portupgrade Makefile distinfo Log: Seems there was a mirroring trouble. (probably my fault) Just include a typo fix and call it 20010823b. Revision Changes Path 1.58 +2 -4 ports/sysutils/portupgrade/Makefile 1.52 +1 -1 ports/sysutils/portupgrade/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 5:52:10 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8370437B401; Thu, 23 Aug 2001 05:52:04 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NCq4B62802; Thu, 23 Aug 2001 05:52:04 -0700 (PDT) (envelope-from kris) Message-Id: <200108231252.f7NCq4B62802@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 05:52:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/thcrut Makefile distinfo pkg-comment pkg-descr pkg-plist ports/net/thcrut/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 05:52:04 PDT Modified files: net Makefile Added files: net/thcrut Makefile distinfo pkg-comment pkg-descr pkg-plist net/thcrut/files patch-aa Log: Add thc-rut 0.1 RUT (pronouced as 'root') mean 'aRe yoU There'. It was developed to brute force its way into wvlan (IEEE 802.11b) access points which use mac authentification. It offers a wide range of _local_ network discovery features like arp lookup on all hosts on a network with vendor-string, spoofed DHCP request, RARP, BOOTP, ICMP-ping and address mask request and some other features. Obtained from: OpenBSD Revision Changes Path 1.596 +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 Aug 23 5:53:21 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 32BE737B409; Thu, 23 Aug 2001 05:53:16 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NCrGC63009; Thu, 23 Aug 2001 05:53:16 -0700 (PDT) (envelope-from brian) Message-Id: <200108231253.f7NCrGC63009@freefall.freebsd.org> From: Brian Somers Date: Thu, 23 Aug 2001 05:53:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/ftp fetch.c util.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/23 05:53:16 PDT Modified files: usr.bin/ftp fetch.c util.c Log: Fix my previous snprintf() patches (which were largely no-ops). Mostly submitted by: bde Revision Changes Path 1.18 +3 -3 src/usr.bin/ftp/fetch.c 1.20 +10 -8 src/usr.bin/ftp/util.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 5:54:54 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C0CF37B40C; Thu, 23 Aug 2001 05:54:48 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NCsmc63303; Thu, 23 Aug 2001 05:54:48 -0700 (PDT) (envelope-from kris) Message-Id: <200108231254.f7NCsmc63303@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 05:54:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/security Makefile ports/devel/flawfinder Makefile distinfo pkg-comment pkg-descr pkg-plist ports/security/flawfinder Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 05:54:48 PDT Modified files: devel Makefile security Makefile Added files: security/flawfinder Makefile distinfo pkg-comment pkg-descr pkg-plist Removed files: devel/flawfinder Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Move flawfinder from devel to security where the other source-code auditing tools live. Discussed with: ijliao Revision Changes Path 1.622 +1 -2 ports/devel/Makefile 1.223 +2 -1 ports/security/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 5:55:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 366BF37B410; Thu, 23 Aug 2001 05:55:22 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NCtMq63418; Thu, 23 Aug 2001 05:55:22 -0700 (PDT) (envelope-from kris) Message-Id: <200108231255.f7NCtMq63418@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 05:55:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/flawfinder Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 05:55:22 PDT Modified files: security/flawfinder Makefile Log: Correct CATEGORIES to "security devel" Revision Changes Path 1.2 +2 -2 ports/security/flawfinder/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 5:56:24 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CC75F37B407; Thu, 23 Aug 2001 05:56:19 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NCuJp63603; Thu, 23 Aug 2001 05:56:19 -0700 (PDT) (envelope-from ache) Message-Id: <200108231256.f7NCuJp63603@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 05:56:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/mutt-devel Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 05:56:19 PDT Modified files: mail/mutt-devel Makefile pkg-plist Log: - build with IMAP and POP support when PACKAGE_BUILDING (because that was default before adding the WITH_MUTT_IMAP and WITH_MUTT_POP knobs). - fix pkg-plist if not build with WITH_MUTT_IMAP or WITH_MUTT_POP. - rename internal variable to less confusing name Submitted by: Udo Schweigert Revision Changes Path 1.121 +443 -17 ports/mail/mutt-devel/Makefile 1.31 +122 -3 ports/mail/mutt-devel/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 Aug 23 6: 5:20 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2962C37B403; Thu, 23 Aug 2001 06:05:15 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7ND5FO65550; Thu, 23 Aug 2001 06:05:15 -0700 (PDT) (envelope-from mikeh) Message-Id: <200108231305.f7ND5FO65550@freefall.freebsd.org> From: Mike Heffner Date: Thu, 23 Aug 2001 06:05:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/squeak2 pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mikeh 2001/08/23 06:05:15 PDT Modified files: lang/squeak2 pkg-plist Log: Fix plist. Approved by: maintainer Noticed by: bento Revision Changes Path 1.6 +2 -2 ports/lang/squeak2/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 Aug 23 6: 8:17 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 8042837B40B; Thu, 23 Aug 2001 06:08:08 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7ND8Fv36704; Thu, 23 Aug 2001 14:08:15 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7ND87g70025; Thu, 23 Aug 2001 14:08:07 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108231308.f7ND87g70025@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Peter Wemm Cc: Paul Richards , Jordan Hubbard , silby@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h In-Reply-To: Message from Peter Wemm of "Wed, 22 Aug 2001 19:06:34 PDT." <20010823020634.6090B380F@overcee.netplex.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 23 Aug 2001 14:08:07 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > I'm not aiming this gripe at Paul specifically, but please dont spread the > myth that some arbitary "test period" in -current is going to magically > validate anything. This used-to-be-reality-and-now-is-a-myth idea is self perpetuating. If people are allowed to put stuff into -stable without at least a couple of weeks in -current, not only will the code definitely not be run by -current users, but it will encourage the FreeBSD developer base to simply run -stable because it causes less local problems. I'm not aiming this gripe at you Peter, but please don't spread the myth that it's ok to put stuff in -stable that hasn't had any shaking-out in -current 8*P -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 6:11: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B941B37B401; Thu, 23 Aug 2001 06:10:57 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NDAve68248; Thu, 23 Aug 2001 06:10:57 -0700 (PDT) (envelope-from kris) Message-Id: <200108231310.f7NDAve68248@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 06:10:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/xprobe Makefile distinfo pkg-comment pkg-descr pkg-plist ports/net/xprobe/files patch-Makefile_in patch-configure X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 06:10:57 PDT Modified files: net Makefile Added files: net/xprobe Makefile distinfo pkg-comment pkg-descr pkg-plist net/xprobe/files patch-Makefile_in patch-configure Log: Add xprobe-0.0.1p1 Xprobe is a tool automating the X logic. X is a logic developed from the various Active Operating System Fingerprinting methods discovered during the "ICMP Usage In Scanning" research project. Obtained from: OpenBSD Revision Changes Path 1.597 +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 Aug 23 6:19:35 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F17F37B407; Thu, 23 Aug 2001 06:19:32 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NDJW969259; Thu, 23 Aug 2001 06:19:32 -0700 (PDT) (envelope-from ache) Message-Id: <200108231319.f7NDJW969259@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 06:19:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_descrip.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 06:19:32 PDT Modified files: sys/kern kern_descrip.c Log: Move after Add missing fdrop() before EOVERFLOW Pointed by: bde Revision Changes Path 1.104 +10 -4 src/sys/kern/kern_descrip.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 6:20: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C3F1F37B40A; Thu, 23 Aug 2001 06:20:01 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NDK1r69345; Thu, 23 Aug 2001 06:20:01 -0700 (PDT) (envelope-from kris) Message-Id: <200108231320.f7NDK1r69345@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 06:20:01 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 06:20:01 PDT Modified files: . modules Log: Add the following modules: impress ports/editors/impress klone ports/lang/klone nbtscan ports/net/nbtscan newvox ports/games/newvox ppgen ports/security/ppgen pstree ports/sysutils/pstree rats ports/security/rats thcrut ports/net/thcrut vomit ports/net/vomit xprobe ports/net/xprobe Revision Changes Path 1.3711 +11 -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 Aug 23 6:21:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8005737B405; Thu, 23 Aug 2001 06:21:17 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NDLHu69551; Thu, 23 Aug 2001 06:21:17 -0700 (PDT) (envelope-from ache) Message-Id: <200108231321.f7NDLHu69551@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 06:21:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_lockf.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 06:21:17 PDT Modified files: sys/kern kern_lockf.c Log: Move after Pointed by: bde Revision Changes Path 1.30 +3 -3 src/sys/kern/kern_lockf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 6:26:30 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A870F37B416; Thu, 23 Aug 2001 06:26:23 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NDQNt70355; Thu, 23 Aug 2001 06:26:23 -0700 (PDT) (envelope-from ache) Message-Id: <200108231326.f7NDQNt70355@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 06:26:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/smbfs smbfs_vnops.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 06:26:23 PDT Modified files: sys/fs/smbfs smbfs_vnops.c Log: Move after Pointed by: bde Revision Changes Path 1.5 +3 -2 src/sys/fs/smbfs/smbfs_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 Aug 23 6:26:52 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AD06837B415; Thu, 23 Aug 2001 06:26:43 -0700 (PDT) (envelope-from wjv@FreeBSD.org) Received: (from wjv@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NDQh170405; Thu, 23 Aug 2001 06:26:43 -0700 (PDT) (envelope-from wjv) Message-Id: <200108231326.f7NDQh170405@freefall.freebsd.org> From: Johann Visagie Date: Thu, 23 Aug 2001 06:26:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/viewcvs Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wjv 2001/08/23 06:26:43 PDT Modified files: devel/viewcvs Makefile Log: - Deploy USE_PYTHON - Ensure that ${PKGMESSAGE} is created in final form (all substitutions performed) for inclusion in package Revision Changes Path 1.5 +12 -9 ports/devel/viewcvs/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 6:28: 4 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0FBF737B407; Thu, 23 Aug 2001 06:27:59 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NDRxY70625; Thu, 23 Aug 2001 06:27:59 -0700 (PDT) (envelope-from ache) Message-Id: <200108231327.f7NDRxY70625@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 06:27:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/nfs nfs_lock.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 06:27:59 PDT Modified files: sys/nfs nfs_lock.c Log: Move after Pointed by: bde Revision Changes Path 1.8 +3 -2 src/sys/nfs/nfs_lock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 6:29:41 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 55E6137B401; Thu, 23 Aug 2001 06:29:36 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NDTaS70908; Thu, 23 Aug 2001 06:29:36 -0700 (PDT) (envelope-from ache) Message-Id: <200108231329.f7NDTaS70908@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 06:29:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/nfsclient nfs_lock.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 06:29:36 PDT Modified files: sys/nfsclient nfs_lock.c Log: Copy main nfs/nfs_lock.c: move after Pointed by: bde Revision Changes Path 1.8 +2 -1 src/sys/nfsclient/nfs_lock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 6:34:51 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EEF7137B405; Thu, 23 Aug 2001 06:34:46 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NDYkK79251; Thu, 23 Aug 2001 06:34:46 -0700 (PDT) (envelope-from kuriyama) Message-Id: <200108231334.f7NDYkK79251@freefall.freebsd.org> From: Jun Kuriyama Date: Thu, 23 Aug 2001 06:34:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2001/08/23 06:34:46 PDT Modified files: etc/defaults rc.conf etc/mtree BSD.var.dist etc/namedb named.conf Log: Invoke named with privilege of bind:bind. Change pidfile location to /var/run/named/pid. Revision Changes Path 1.120 +2 -3 src/etc/defaults/rc.conf 1.48 +3 -1 src/etc/mtree/BSD.var.dist 1.10 +2 -1 src/etc/namedb/named.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 6:44:13 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 68C2F37B40D; Thu, 23 Aug 2001 06:44:10 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NDiAc41882; Thu, 23 Aug 2001 06:44:10 -0700 (PDT) (envelope-from kuriyama) Message-Id: <200108231344.f7NDiAc41882@freefall.freebsd.org> From: Jun Kuriyama Date: Thu, 23 Aug 2001 06:44:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/projects projects.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2001/08/23 06:44:09 PDT Modified files: en/projects projects.sgml Log: Update bsdcounter's URL. Submitted by: Phill Kenoyer Revision Changes Path 1.112 +2 -2 www/en/projects/projects.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 6:45:12 2001 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 3051637B40A; Thu, 23 Aug 2001 06:45:02 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id f7NDj0Y27463; Thu, 23 Aug 2001 17:45:00 +0400 (MSD) (envelope-from ache) Date: Thu, 23 Aug 2001 17:44:58 +0400 From: "Andrey A. Chernov" To: Jun Kuriyama Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf Message-ID: <20010823174457.A27360@nagual.pp.ru> References: <200108231334.f7NDYkK79251@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200108231334.f7NDYkK79251@freefall.freebsd.org> User-Agent: Mutt/1.3.21i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Aug 23, 2001 at 06:34:46 -0700, Jun Kuriyama wrote: > kuriyama 2001/08/23 06:34:46 PDT > > Modified files: > etc/defaults rc.conf > etc/mtree BSD.var.dist > etc/namedb named.conf > Log: > Invoke named with privilege of bind:bind. > Change pidfile location to /var/run/named/pid. Is it discussed or I miss something? We already have an option to run it in bind sandbox, but as non-default option. Some functions not works in bind sandbox, 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 Thu Aug 23 6:51:24 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 3DEB037B408; Thu, 23 Aug 2001 06:51:14 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7NDpPv36891; Thu, 23 Aug 2001 14:51:25 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7NDpHg70735; Thu, 23 Aug 2001 14:51:17 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108231351.f7NDpHg70735@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Ian Dowse Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/sys/ufs/ufs ufs_lookup.c In-Reply-To: Message from Ian Dowse of "Tue, 21 Aug 2001 18:35:18 PDT." <200108220135.f7M1ZIC42122@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 23 Aug 2001 14:51:17 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > iedowse 2001/08/21 18:35:18 PDT > > Modified files: > sys/ufs/ufs ufs_lookup.c > Log: > When compressing directory blocks, the dirhash code didn't check > that the directory entry was in use before attempting to find it > in the hash structures to change its offset. Normally, unused > entries do not need to be moved, but fsck can leave behind some > unused entries that do. A dirhash sanity panic resulted when the > entry to be moved was not found. Add a check that stops entries > with d_ino == 0 from being passed to ufsdirhash_move(). > > Revision Changes Path > 1.53 +2 -2 src/sys/ufs/ufs/ufs_lookup.c You forgot: MFC after: 17 hours 9 minutes and 43 seconds -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 6:51:25 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5099037B40B; Thu, 23 Aug 2001 06:51:18 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NDpIJ80378; Thu, 23 Aug 2001 06:51:18 -0700 (PDT) (envelope-from ache) Message-Id: <200108231351.f7NDpIJ80378@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 06:51:18 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 06:51:18 PDT Modified files: sys/kern vfs_syscalls.c Log: Cosmetique: more into one group, separate include families by blank line Revision Changes Path 1.200 +3 -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 Thu Aug 23 6:57: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from white.imgsrc.co.jp (ns.imgsrc.co.jp [210.226.20.2]) by hub.freebsd.org (Postfix) with ESMTP id 2325537B40A; Thu, 23 Aug 2001 06:57:00 -0700 (PDT) (envelope-from kuriyama@imgsrc.co.jp) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [2001:218:422:2:290:27ff:fe98:c0b7]) by white.imgsrc.co.jp (Postfix) with ESMTP id 21FAF24D2C; Thu, 23 Aug 2001 22:56:59 +0900 (JST) Received: from waterblue.imgsrc.co.jp (waterblue.imgsrc.co.jp [210.226.20.160]) by black.imgsrc.co.jp (Postfix) with ESMTP id 1420AD1406; Thu, 23 Aug 2001 22:56:57 +0900 (JST) Date: Thu, 23 Aug 2001 22:56:53 +0900 Message-ID: <7m1ym2yj4q.wl@waterblue.imgsrc.co.jp> From: Jun Kuriyama To: "Andrey A. Chernov" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: <20010823174457.A27360@nagual.pp.ru> References: <200108231334.f7NDYkK79251@freefall.freebsd.org> <20010823174457.A27360@nagual.pp.ru> User-Agent: Wanderlust/2.6.0 (Twist And Shout) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-1?Q?Unebigory=F2mae?=) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Thu, 23 Aug 2001 17:44:58 +0400, Andrey A. Chernov wrote: > Is it discussed or I miss something? We already have an option to run it > in bind sandbox, but as non-default option. Some functions not works in > bind sandbox, I don't remember exactly at this moment. I believe you read my message on current@FreeBSD.org I posted before (*1). If there is disadvantage caused by this modification, please let me know. *1 http://www.FreeBSD.org/cgi/getmsg.cgi?fetch=575408+579367+/usr/local/www/db/text/2001/freebsd-current/20010805.freebsd-current -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 7: 3:56 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6374837B407; Thu, 23 Aug 2001 07:03:50 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NE3oD81855; Thu, 23 Aug 2001 07:03:50 -0700 (PDT) (envelope-from kuriyama) Message-Id: <200108231403.f7NE3oD81855@freefall.freebsd.org> From: Jun Kuriyama Date: Thu, 23 Aug 2001 07:03:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en index.xsl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2001/08/23 07:03:50 PDT Modified files: en index.xsl Log: Add Belgian mirror. Submitted by: Cedric Gavage Revision Changes Path 1.6 +3 -2 www/en/index.xsl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 7: 9:23 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CCD6337B407; Thu, 23 Aug 2001 07:09:16 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NE9GQ85425; Thu, 23 Aug 2001 07:09:16 -0700 (PDT) (envelope-from ache) Message-Id: <200108231409.f7NE9GQ85425@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 07:09:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/nfs nfs_lock.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 07:09:16 PDT Modified files: sys/nfs nfs_lock.c Log: Apparently SEEK_END locking not supported by NFS. Previous variant returns EINVAL in that case, change it to EOPNOTSUPP. Revision Changes Path 1.9 +6 -2 src/sys/nfs/nfs_lock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 7:14: 4 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 5534D37B408; Thu, 23 Aug 2001 07:13:55 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7NEE5v36979; Thu, 23 Aug 2001 15:14:06 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7NEDvg71094; Thu, 23 Aug 2001 15:13:57 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108231413.f7NEDvg71094@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: "Andrey A. Chernov" Cc: Jun Kuriyama , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: Message from "Andrey A. Chernov" of "Thu, 23 Aug 2001 17:44:58 +0400." <20010823174457.A27360@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 23 Aug 2001 15:13:57 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Thu, Aug 23, 2001 at 06:34:46 -0700, Jun Kuriyama wrote: > > kuriyama 2001/08/23 06:34:46 PDT > > > > Modified files: > > etc/defaults rc.conf > > etc/mtree BSD.var.dist > > etc/namedb named.conf > > Log: > > Invoke named with privilege of bind:bind. > > Change pidfile location to /var/run/named/pid. > > Is it discussed or I miss something? We already have an option to run it > in bind sandbox, but as non-default option. Some functions not works in > bind sandbox, I don't remember exactly at this moment. named won't be able to listen on interface addresses that are not configured when named is invoked. This can break name services on a dialup server quite badly. I think this change should be reverted. > -- > Andrey A. Chernov > http://ache.pp.ru/ -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 7:21:32 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D5D8637B40C; Thu, 23 Aug 2001 07:21:26 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NELQq86866; Thu, 23 Aug 2001 07:21:26 -0700 (PDT) (envelope-from ache) Message-Id: <200108231421.f7NELQq86866@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 07:21:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/nfs nfs_lock.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 07:21:26 PDT Modified files: sys/nfs nfs_lock.c Log: Even better move: suppose that server is able to handle SEEK_END, so check arguments for all but not SEEK_END case, leaving SEEK_END handling for server Revision Changes Path 1.10 +7 -7 src/sys/nfs/nfs_lock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 7:25:12 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D8D4937B40A; Thu, 23 Aug 2001 07:25:03 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NEP3U87364; Thu, 23 Aug 2001 07:25:03 -0700 (PDT) (envelope-from ache) Message-Id: <200108231425.f7NEP3U87364@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 07:25:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/nfsclient nfs_lock.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 07:25:03 PDT Modified files: sys/nfsclient nfs_lock.c Log: Reflect nfs/nfs_lock.c: don't return EINVAL on SEEK_END, but pass it to the server instead. Revision Changes Path 1.9 +7 -3 src/sys/nfsclient/nfs_lock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 7:41:44 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E614B37B403; Thu, 23 Aug 2001 07:41:39 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NEfd989583; Thu, 23 Aug 2001 07:41:39 -0700 (PDT) (envelope-from ache) Message-Id: <200108231441.f7NEfd989583@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 07:41:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_lockf.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 07:41:39 PDT Modified files: sys/kern kern_lockf.c Log: Cosmetique: correct English in comments Pointed by: bde Revision Changes Path 1.31 +3 -3 src/sys/kern/kern_lockf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 7:45: 9 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8AECB37B406; Thu, 23 Aug 2001 07:45:02 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NEj2B90155; Thu, 23 Aug 2001 07:45:02 -0700 (PDT) (envelope-from nbm) Message-Id: <200108231445.f7NEj2B90155@freefall.freebsd.org> From: Neil Blakey-Milner Date: Thu, 23 Aug 2001 07:45:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/arpwatch Makefile pkg-plist ports/net/arpwatch/files arpwatch.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nbm 2001/08/23 07:45:02 PDT Modified files: net/arpwatch Makefile pkg-plist net/arpwatch/files arpwatch.sh Log: arpwatch package will now install an arp.dat file, meaning arpwatch from the package will work by default. Additionally, setting arpwatch_interfaces in the rc.conf system will allow you to specify which interfaces arpwatches will run on. By default (ie, variable empty or not set), it will run on the first non-local interface it finds. Approved by: brian (thanks!) Revision Changes Path 1.22 +2 -1 ports/net/arpwatch/Makefile 1.7 +2 -1 ports/net/arpwatch/pkg-plist 1.5 +26 -2 ports/net/arpwatch/files/arpwatch.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 7:45:37 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A990737B406; Thu, 23 Aug 2001 07:45:31 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NEjVs90186; Thu, 23 Aug 2001 07:45:31 -0700 (PDT) (envelope-from ache) Message-Id: <200108231445.f7NEjVs90186@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 07:45:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/smbfs smbfs_vnops.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 07:45:31 PDT Modified files: sys/fs/smbfs smbfs_vnops.c Log: Cosmetique: correct English in comments non-cosmetique: add missing break; - original code was broken here Revision Changes Path 1.6 +4 -3 src/sys/fs/smbfs/smbfs_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 Aug 23 7:49: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 249BF37B406; Thu, 23 Aug 2001 07:49:03 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NEn3Q90776; Thu, 23 Aug 2001 07:49:03 -0700 (PDT) (envelope-from ache) Message-Id: <200108231449.f7NEn3Q90776@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 07:49:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/stdio fseek.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 07:49:03 PDT Modified files: lib/libc/stdio fseek.c Log: Cosmetique: correct English in comments Revision Changes Path 1.18 +3 -3 src/lib/libc/stdio/fseek.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 7:55:32 2001 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 3DFC637B403; Thu, 23 Aug 2001 07:55:25 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id f7NEtGN28235; Thu, 23 Aug 2001 18:55:16 +0400 (MSD) (envelope-from ache) Date: Thu, 23 Aug 2001 18:55:15 +0400 From: "Andrey A. Chernov" To: Brian Somers Cc: Jun Kuriyama , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf Message-ID: <20010823185515.A28168@nagual.pp.ru> References: <20010823174457.A27360@nagual.pp.ru> <200108231413.f7NEDvg71094@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200108231413.f7NEDvg71094@hak.lan.Awfulhak.org> User-Agent: Mutt/1.3.21i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Aug 23, 2001 at 15:13:57 +0100, Brian Somers wrote: > > On Thu, Aug 23, 2001 at 06:34:46 -0700, Jun Kuriyama wrote: > > > kuriyama 2001/08/23 06:34:46 PDT > > > > > > Modified files: > > > etc/defaults rc.conf > > > etc/mtree BSD.var.dist > > > etc/namedb named.conf > > > Log: > > > Invoke named with privilege of bind:bind. > > > Change pidfile location to /var/run/named/pid. > > > > Is it discussed or I miss something? We already have an option to run it > > in bind sandbox, but as non-default option. Some functions not works in > > bind sandbox, I don't remember exactly at this moment. > > named won't be able to listen on interface addresses that are not > configured when named is invoked. This can break name services on a > dialup server quite badly. Yes, exact this thing. > I think this change should be reverted. I too. If named allows root compromise, better fix named. -- 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 Thu Aug 23 8: 5: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from white.imgsrc.co.jp (ns.imgsrc.co.jp [210.226.20.2]) by hub.freebsd.org (Postfix) with ESMTP id CA57C37B405; Thu, 23 Aug 2001 08:04:58 -0700 (PDT) (envelope-from kuriyama@imgsrc.co.jp) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [2001:218:422:2:290:27ff:fe98:c0b7]) by white.imgsrc.co.jp (Postfix) with ESMTP id A599724D25; Fri, 24 Aug 2001 00:04:57 +0900 (JST) Received: from waterblue.imgsrc.co.jp (waterblue.imgsrc.co.jp [210.226.20.160]) by black.imgsrc.co.jp (Postfix) with ESMTP id 5F1F3D1401; Fri, 24 Aug 2001 00:04:55 +0900 (JST) Date: Fri, 24 Aug 2001 00:04:51 +0900 Message-ID: <7my9oax1f0.wl@waterblue.imgsrc.co.jp> From: Jun Kuriyama To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: <20010823185515.A28168@nagual.pp.ru> References: <20010823174457.A27360@nagual.pp.ru> <200108231413.f7NEDvg71094@hak.lan.Awfulhak.org> <20010823185515.A28168@nagual.pp.ru> User-Agent: Wanderlust/2.6.0 (Twist And Shout) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-1?Q?Unebigory=F2mae?=) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Thu, 23 Aug 2001 18:55:15 +0400, Andrey A. Chernov wrote: > > I think this change should be reverted. > > I too. OK. Other comments? I'll revert changes if noone supports this. > If named allows root compromise, better fix named. Of course. But I like safety net like this. IMHO users who want to use root privilege for named should override it by named_flags="" on their /etc/rc.conf. -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 8: 9:16 2001 Delivered-To: cvs-all@freebsd.org Received: from franklin.physics.purdue.edu (franklin.physics.purdue.edu [128.210.146.222]) by hub.freebsd.org (Postfix) with ESMTP id 4357037B410; Thu, 23 Aug 2001 08:09:10 -0700 (PDT) (envelope-from will@physics.purdue.edu) Received: from physics.purdue.edu (bohr.physics.purdue.edu [128.210.67.12]) by franklin.physics.purdue.edu (Postfix) with ESMTP id 31DBB20F06; Thu, 23 Aug 2001 10:10:58 -0500 (EST) Received: by physics.purdue.edu (Postfix, from userid 12409) id 57CA75BC3; Thu, 23 Aug 2001 10:11:11 -0500 (EST) Date: Thu, 23 Aug 2001 10:11:11 -0500 From: Will Andrews To: Murray Stokely Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/books/handbook Makefile doc/share/mk doc.docbook.mk doc/share/sgml pgp.dsl Message-ID: <20010823101111.P35352@bohr.physics.purdue.edu> Reply-To: Will Andrews Mail-Followup-To: Murray Stokely , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200108230759.f7N7x7n11358@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.17i In-Reply-To: <200108230759.f7N7x7n11358@freefall.freebsd.org>; from murray@FreeBSD.org on Thu, Aug 23, 2001 at 12:59:07AM -0700 X-Operating-System: FreeBSD 4.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Aug 23, 2001 at 12:59:07AM -0700, Murray Stokely (murray@FreeBSD.org) wrote: > Log: > Add a new target to the Handbook makefile: 'pgpkeyring'. > > This target finds all elements in the > Handbook and writes out a flat text file suitable for importing into > PGP or GPG. > > This can be used in the web build to automatically update the public > keyring of FreeBSD developers. Very nice. Perhaps a keys.freebsd.org is warranted? :) -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 8:16: 3 2001 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 BCCFA37B405; Thu, 23 Aug 2001 08:15:55 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id f7NFFm128580; Thu, 23 Aug 2001 19:15:49 +0400 (MSD) (envelope-from ache) Date: Thu, 23 Aug 2001 19:15:45 +0400 From: "Andrey A. Chernov" To: Jun Kuriyama Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf Message-ID: <20010823191543.A28556@nagual.pp.ru> References: <20010823174457.A27360@nagual.pp.ru> <200108231413.f7NEDvg71094@hak.lan.Awfulhak.org> <20010823185515.A28168@nagual.pp.ru> <7my9oax1f0.wl@waterblue.imgsrc.co.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <7my9oax1f0.wl@waterblue.imgsrc.co.jp> User-Agent: Mutt/1.3.21i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Aug 24, 2001 at 00:04:51 +0900, Jun Kuriyama wrote: > At Thu, 23 Aug 2001 18:55:15 +0400, > Andrey A. Chernov wrote: > > > I think this change should be reverted. > > > > I too. > > OK. Other comments? I'll revert changes if noone supports this. > > > If named allows root compromise, better fix named. > > Of course. But I like safety net like this. IMHO users who want to > use root privilege for named should override it by named_flags="" on > their /etc/rc.conf. They are not 'some' users, but all dialup users. We can't have defaults which require changes for so large group. -- 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 Thu Aug 23 8:22:18 2001 Delivered-To: cvs-all@freebsd.org Received: from pebkac.owp.csus.edu (pebkac.owp.csus.edu [130.86.232.245]) by hub.freebsd.org (Postfix) with ESMTP id D76E637B403; Thu, 23 Aug 2001 08:22:10 -0700 (PDT) (envelope-from joseph.scott@owp.csus.edu) Received: (from root@localhost) by pebkac.owp.csus.edu (8.9.3/8.9.3) id IAA80865; Thu, 23 Aug 2001 08:22:30 -0700 (PDT) (envelope-from joseph.scott@owp.csus.edu) Received: from localhost (scottj@localhost) by pebkac.owp.csus.edu (8.9.3/8.9.3av) with ESMTP id IAA80858; Thu, 23 Aug 2001 08:22:29 -0700 (PDT) (envelope-from joseph.scott@owp.csus.edu) Date: Thu, 23 Aug 2001 08:22:29 -0700 (PDT) From: Joseph Scott X-Sender: scottj@pebkac.owp.csus.edu To: Kris Kennaway Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: ports/net Makefile ports/net/nbtscan Makefile distinfo pkg-comment pkg-descr pkg-plist ports/net/nbtscan/files patch-configure patch-configure_in In-Reply-To: <200108230730.f7N7Ujw08617@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by AMaViS perl-10 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 23 Aug 2001, Kris Kennaway wrote: # kris 2001/08/23 00:30:45 PDT # # Modified files: # net Makefile # Added files: # net/nbtscan Makefile distinfo pkg-comment pkg-descr # pkg-plist # net/nbtscan/files patch-configure patch-configure_in # Log: # Add nbtscan 1.0.2, a tool for scanning for NetBIOS name information. # # Obtained from: OpenBSD Do all three of these ports: net/nat net/nbtscan security/nbaudit do the same exact thing then? I thought at one point the older ones were going to be removed because they were no longer being developed. If nbtscan is the one we keep, might security be a better place for it (along with nmap and friends) than net? -Joseph To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 8:30:52 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 81BC837B408; Thu, 23 Aug 2001 08:30:41 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NFUfa99663; Thu, 23 Aug 2001 08:30:41 -0700 (PDT) (envelope-from petef) Message-Id: <200108231530.f7NFUfa99663@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 23 Aug 2001 08:30:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/slrn Makefile distinfo pkg-descr pkg-plist ports/news/slrn/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/23 08:30:40 PDT Modified files: news/slrn Makefile distinfo pkg-descr pkg-plist Removed files: news/slrn/files patch-aa Log: - update to version 0.9.7.2 - use MASTER_SITE_SOURCEFORGE - build with SSL by default (WITH_SSL => WITHOUT_SSL) - replace patch w/regex - clean up do-install target - better pkg-descr - take over as maintainer PR: 29918 Submitted by: petef Reviewed by: ade Approved by: previous maintainer (xaa+ports@timewasters.nl) Revision Changes Path 1.25 +20 -16 ports/news/slrn/Makefile 1.19 +1 -1 ports/news/slrn/distinfo 1.5 +6 -5 ports/news/slrn/pkg-descr 1.5 +1 -0 ports/news/slrn/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 Aug 23 8:37:15 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2098737B405; Thu, 23 Aug 2001 08:37:10 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NFbAh00450; Thu, 23 Aug 2001 08:37:10 -0700 (PDT) (envelope-from kevlo) Message-Id: <200108231537.f7NFbAh00450@freefall.freebsd.org> From: Kevin Lo Date: Thu, 23 Aug 2001 08:37:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/licq-qt-gui pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2001/08/23 08:37:09 PDT Modified files: net/licq-qt-gui pkg-plist Log: Trivial fix for pkg-plist Revision Changes Path 1.3 +1 -0 ports/net/licq-qt-gui/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 Aug 23 8:37:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CB8EB37B40A; Thu, 23 Aug 2001 08:37:42 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NFbgZ00520; Thu, 23 Aug 2001 08:37:42 -0700 (PDT) (envelope-from petef) Message-Id: <200108231537.f7NFbgZ00520@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 23 Aug 2001 08:37:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www Makefile ports/www/mod_cvs Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/23 08:37:42 PDT Modified files: www Makefile Added files: www/mod_cvs Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist Log: add mod_cvs 0.5 A module that makes Apache CVS aware PR: 29693 Reviewed by: ade Revision Changes Path 1.398 +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 Thu Aug 23 8:39:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 97FB637B40B; Thu, 23 Aug 2001 08:39:13 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NFdD900973; Thu, 23 Aug 2001 08:39:13 -0700 (PDT) (envelope-from imp) Message-Id: <200108231539.f7NFdD900973@freefall.freebsd.org> From: Warner Losh Date: Thu, 23 Aug 2001 08:39:13 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/23 08:39:13 PDT Modified files: . UPDATING Log: Fix typo in repo damage message. Submitted by: Vadim Ostranitsyn Revision Changes Path 1.168 +2 -2 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 Aug 23 8:39:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 45D9B37B403; Thu, 23 Aug 2001 08:39:27 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NFdRr01030; Thu, 23 Aug 2001 08:39:27 -0700 (PDT) (envelope-from imp) Message-Id: <200108231539.f7NFdRr01030@freefall.freebsd.org> From: Warner Losh Date: Thu, 23 Aug 2001 08:39:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src UPDATING X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/23 08:39:27 PDT Modified files: (Branch: RELENG_4) . UPDATING Log: Fix typo in repo damage message. Submitted by: Vadim Ostranitsyn Revision Changes Path 1.73.2.42 +2 -2 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 Aug 23 8:40: 0 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9FC9B37B405; Thu, 23 Aug 2001 08:39:57 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NFdv701188; Thu, 23 Aug 2001 08:39:57 -0700 (PDT) (envelope-from imp) Message-Id: <200108231539.f7NFdv701188@freefall.freebsd.org> From: Warner Losh Date: Thu, 23 Aug 2001 08:39:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src UPDATING X-FreeBSD-CVS-Branch: RELENG_4_3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/23 08:39:57 PDT Modified files: (Branch: RELENG_4_3) . UPDATING Log: MFC: Merge the repo damage entry from -current. Revision Changes Path 1.73.2.28.2.9 +9 -1 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 Aug 23 8:40:38 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9526237B403; Thu, 23 Aug 2001 08:40:31 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NFeVx01365; Thu, 23 Aug 2001 08:40:31 -0700 (PDT) (envelope-from ache) Message-Id: <200108231540.f7NFeVx01365@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 08:40:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_lockf.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 08:40:31 PDT Modified files: sys/kern kern_lockf.c Log: Originally BSD return EINVAL for l_len < 0, but now POSIX wants it too, so implement POSIX l_len < 0 handling. Revision Changes Path 1.32 +7 -4 src/sys/kern/kern_lockf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 8:41:34 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CD39837B403; Thu, 23 Aug 2001 08:41:27 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NFfR101476; Thu, 23 Aug 2001 08:41:27 -0700 (PDT) (envelope-from petef) Message-Id: <200108231541.f7NFfR101476@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 23 Aug 2001 08:41:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail Makefile ports/mail/p5-Mail-ListDetector Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/23 08:41:27 PDT Modified files: mail Makefile Added files: mail/p5-Mail-ListDetector Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add p5-Mail-ListDetector 0.15 Perl module for detecting mailing list messages PR: 29665 Reviewed by: ade Revision Changes Path 1.245 +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 Aug 23 8:43:49 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4BC9F37B40A; Thu, 23 Aug 2001 08:43:45 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NFhjb01873; Thu, 23 Aug 2001 08:43:45 -0700 (PDT) (envelope-from petef) Message-Id: <200108231543.f7NFhjb01873@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 23 Aug 2001 08:43:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security Makefile ports/security/p5-GPG Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/23 08:43:45 PDT Modified files: security Makefile Added files: security/p5-GPG Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add p5-GPG 0.06 A Perl interface to GnuPG PR: 29658 Reviewed by: ade Revision Changes Path 1.224 +2 -1 ports/security/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 8:44:31 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A978937B409; Thu, 23 Aug 2001 08:44:24 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NFiOR02015; Thu, 23 Aug 2001 08:44:24 -0700 (PDT) (envelope-from ache) Message-Id: <200108231544.f7NFiOR02015@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 08:44:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/smbfs smbfs_vnops.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 08:44:24 PDT Modified files: sys/fs/smbfs smbfs_vnops.c Log: Copy POSIX l_len<0 handling from kern_lockf.c Revision Changes Path 1.7 +7 -4 src/sys/fs/smbfs/smbfs_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 Aug 23 8:45:30 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9946037B407; Thu, 23 Aug 2001 08:45:27 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NFjR302155; Thu, 23 Aug 2001 08:45:27 -0700 (PDT) (envelope-from petef) Message-Id: <200108231545.f7NFjR302155@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 23 Aug 2001 08:45:27 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/23 08:45:27 PDT Modified files: . modules Log: p5-Mail-ListDetector --> ports/mail/p5-Mail-ListDetector p5-GPG --> ports/security/p5-GPG mod_cvs --> ports/www/mod_cvs Revision Changes Path 1.3712 +4 -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 Aug 23 8:53:11 2001 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 5FA3C37B40B; Thu, 23 Aug 2001 08:53: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.11.3/8.11.3) with ESMTP id f7NFr2q48479; Thu, 23 Aug 2001 09:53:03 -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.11.3/8.11.4) with ESMTP id f7NFr1W85308; Thu, 23 Aug 2001 09:53:01 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200108231553.f7NFr1W85308@harmony.village.org> To: Brian Somers Subject: Re: cvs commit: src/sys/netinet tcp_input.c tcp_seq.h tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Thu, 23 Aug 2001 14:08:07 BST." <200108231308.f7ND87g70025@hak.lan.Awfulhak.org> References: <200108231308.f7ND87g70025@hak.lan.Awfulhak.org> Date: Thu, 23 Aug 2001 09:53:01 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <200108231308.f7ND87g70025@hak.lan.Awfulhak.org> Brian Somers writes: : I'm not aiming this gripe at you Peter, but please don't spread the : myth that it's ok to put stuff in -stable that hasn't had any : shaking-out in -current 8*P Placing it in -current is necessary, but not sufficient, to get testing done. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 8:59:30 2001 Delivered-To: cvs-all@freebsd.org Received: from mx1.zsea.zp.ua (ZSEA.zp.ua [212.8.40.5]) by hub.freebsd.org (Postfix) with ESMTP id 38CAD37B408; Thu, 23 Aug 2001 08:59:18 -0700 (PDT) (envelope-from laa@laa.zp.ua) Received: (from laa@localhost) by mx1.zsea.zp.ua with œ id f7NFxIs08888; Thu, 23 Aug 2001 18:59:18 +0300 (EEST) (envelope-from laa@laa.zp.ua)œ Date: Thu, 23 Aug 2001 18:59:18 +0300 From: Alexandr Listopad To: "Andrey A. Chernov" Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/mail/mutt-devel Makefile distinfo pkg-plist Message-ID: <20010823185918.F21333@laa.zp.ua> References: <200108231018.f7NAIYO34047@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200108231018.f7NAIYO34047@freefall.freebsd.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Aug 23, 2001 at 03:18:33AM -0700, Andrey A. Chernov wrote: > ache 2001/08/23 03:18:33 PDT > > Modified files: > mail/mutt-devel Makefile distinfo pkg-plist > Log: > Upgrade to 1.3.21 (from maintainer) > Add news to CATEGORIES if MUTT_WITH_NNTP defined > > PR: 29952 > Submitted by: Udo Schweigert > > Revision Changes Path > 1.120 +6 -3 ports/mail/mutt-devel/Makefile > 1.58 +1 -1 ports/mail/mutt-devel/distinfo ^^^^^ What about distinfo: MD5 (mutt/patch-1.3.20.rr.compressed.gz) = e5fcd9e272262173045f4022995cf119 MD5 (mutt/patch-1.3.20.vvv.nntp.gz) = 52e8576f272b0d9a65ef4b3bff4916ff MD5 (mutt/patch-1.3.20.vvv.initials.gz) = 04553b07741c82ca024d4cd194915dd2 MD5 (mutt/patch-1.3.20.vvv.quote.gz) = 904bd277dadc89046b05ca70d70ab0ec MD5 (mutt/patch-1.3.20.vvv.ru.gz) = a285aeab33093fc21f6f513e1ebeec13 ? vvv@ has new patches on the ftp://mutt.org.ua/. -- Laa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 9: 0:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 918AB37B401; Thu, 23 Aug 2001 09:00:27 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NG0Rt03856; Thu, 23 Aug 2001 09:00:27 -0700 (PDT) (envelope-from ache) Message-Id: <200108231600.f7NG0Rt03856@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 09:00:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_lockf.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 09:00:27 PDT Modified files: sys/kern kern_lockf.c Log: Oops, fix my broken handling of new l_len<0 case Revision Changes Path 1.33 +5 -3 src/sys/kern/kern_lockf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 9: 2: 3 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9562F37B40E; Thu, 23 Aug 2001 09:01:58 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NG1wp04099; Thu, 23 Aug 2001 09:01:58 -0700 (PDT) (envelope-from alex) Message-Id: <200108231601.f7NG1wp04099@freefall.freebsd.org> From: Alexander Langer Date: Thu, 23 Aug 2001 09:01:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/p5-Tk-FileDialog Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alex 2001/08/23 09:01:58 PDT Modified files: x11-toolkits/p5-Tk-FileDialog Makefile pkg-plist Log: Use PLIST_SUB for PERL_VERSION in pkg-plist. Submitted by: bento Revision Changes Path 1.2 +3 -1 ports/x11-toolkits/p5-Tk-FileDialog/Makefile 1.2 +1 -1 ports/x11-toolkits/p5-Tk-FileDialog/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 Aug 23 9: 4:21 2001 Delivered-To: cvs-all@freebsd.org Received: from goliath.siemens.de (goliath.siemens.de [194.138.37.131]) by hub.freebsd.org (Postfix) with ESMTP id 7AC4537B40A; Thu, 23 Aug 2001 09:04:12 -0700 (PDT) (envelope-from ust@cert.siemens.de) X-Envelope-Sender-Is: ust@cert.siemens.de (at relayer goliath.siemens.de) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by goliath.siemens.de (8.11.1/8.11.1) with ESMTP id f7NG47b01384; Thu, 23 Aug 2001 18:04:07 +0200 (MET DST) Received: from mars.cert.siemens.de (ust.mchp.siemens.de [139.23.201.17]) by mail1.siemens.de (8.11.6/8.11.6) with ESMTP id f7NG46F11597; Thu, 23 Aug 2001 18:04:06 +0200 (MET DST) Received: from reims.mchp.siemens.de (alaska [139.23.202.134]) by mars.cert.siemens.de (8.11.6/8.11.6/Siemens CERT [ $Revision: 1.17 ]) with ESMTP id f7NG46k13639; Thu, 23 Aug 2001 18:04:06 +0200 (CEST) (envelope-from ust@reims.mchp.siemens.de) Received: (from ust@localhost) by reims.mchp.siemens.de (8.11.6/8.11.6/alaska [ $Revision: 1.8 ]) id f7NG46r74084; Thu, 23 Aug 2001 18:04:06 +0200 (CEST) (envelope-from ust) Date: Thu, 23 Aug 2001 18:04:06 +0200 From: Udo Schweigert To: Alexandr Listopad Cc: "Andrey A. Chernov" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/mail/mutt-devel Makefile distinfo pkg-plist Message-ID: <20010823180406.A68044@alaska.cert.siemens.de> Mail-Followup-To: Alexandr Listopad , "Andrey A. Chernov" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200108231018.f7NAIYO34047@freefall.freebsd.org> <20010823185918.F21333@laa.zp.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010823185918.F21333@laa.zp.ua> User-Agent: Mutt/1.3.21i X-Operating-System: FreeBSD 4.4-RC Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Aug 23, 2001 at 18:59:18 +0300, Alexandr Listopad wrote: AL> On Thu, Aug 23, 2001 at 03:18:33AM -0700, Andrey A. Chernov wrote: >> ache 2001/08/23 03:18:33 PDT >> >> Modified files: >> mail/mutt-devel Makefile distinfo pkg-plist >> Log: >> Upgrade to 1.3.21 (from maintainer) >> Add news to CATEGORIES if MUTT_WITH_NNTP defined >> >> PR: 29952 >> Submitted by: Udo Schweigert >> >> Revision Changes Path >> 1.120 +6 -3 ports/mail/mutt-devel/Makefile >> 1.58 +1 -1 ports/mail/mutt-devel/distinfo AL> ^^^^^ AL> What about distinfo: AL> AL> MD5 (mutt/patch-1.3.20.rr.compressed.gz) = e5fcd9e272262173045f4022995cf119 AL> MD5 (mutt/patch-1.3.20.vvv.nntp.gz) = 52e8576f272b0d9a65ef4b3bff4916ff AL> MD5 (mutt/patch-1.3.20.vvv.initials.gz) = 04553b07741c82ca024d4cd194915dd2 AL> MD5 (mutt/patch-1.3.20.vvv.quote.gz) = 904bd277dadc89046b05ca70d70ab0ec AL> MD5 (mutt/patch-1.3.20.vvv.ru.gz) = a285aeab33093fc21f6f513e1ebeec13 AL> AL> ? AL> AL> vvv@ has new patches on the ftp://mutt.org.ua/. AL> Yes, I just noticed that. This morning when I checked last they weren't there. This will be updated soon. Best regards -- Udo Schweigert, Siemens AG | Voice : +49 89 636 42170 CT IC 3, Siemens CERT | Fax : +49 89 636 41166 D-81730 Muenchen / Germany | email : ust@cert.siemens.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 9: 6:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 75C5037B401; Thu, 23 Aug 2001 09:06:14 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NG6E907530; Thu, 23 Aug 2001 09:06:14 -0700 (PDT) (envelope-from ache) Message-Id: <200108231606.f7NG6E907530@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 09:06:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/smbfs smbfs_vnops.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 09:06:14 PDT Modified files: sys/fs/smbfs smbfs_vnops.c Log: Copy my newly introduced l_len<0 'oops' fix from kern_lockf.c Revision Changes Path 1.8 +5 -3 src/sys/fs/smbfs/smbfs_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 Aug 23 9: 7:41 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2A53B37B407; Thu, 23 Aug 2001 09:07:34 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NG7Ye07693; Thu, 23 Aug 2001 09:07:34 -0700 (PDT) (envelope-from alex) Message-Id: <200108231607.f7NG7Ye07693@freefall.freebsd.org> From: Alexander Langer Date: Thu, 23 Aug 2001 09:07:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/xsb Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alex 2001/08/23 09:07:34 PDT Modified files: lang/xsb Makefile Log: USE_GMAKE Submitted by: bento Revision Changes Path 1.2 +2 -1 ports/lang/xsb/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 9:14: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 92DFA37B401; Thu, 23 Aug 2001 09:13:59 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NGDxK08519; Thu, 23 Aug 2001 09:13:59 -0700 (PDT) (envelope-from ache) Message-Id: <200108231613.f7NGDxK08519@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 09:13:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/nfs nfs_lock.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 09:13:59 PDT Modified files: sys/nfs nfs_lock.c Log: Implement l_len<0 per POSIX check. Check for valid l_whence too. Revision Changes Path 1.11 +7 -5 src/sys/nfs/nfs_lock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 9:15:26 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1037337B403; Thu, 23 Aug 2001 09:15:21 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NGFLV08780; Thu, 23 Aug 2001 09:15:21 -0700 (PDT) (envelope-from alex) Message-Id: <200108231615.f7NGFLV08780@freefall.freebsd.org> From: Alexander Langer Date: Thu, 23 Aug 2001 09:15:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/german/BBBike pkg-plist pkg-plist.5005 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alex 2001/08/23 09:15:21 PDT Modified files: german/BBBike pkg-plist pkg-plist.5005 Log: Remove garbage at and of line. Submitted by: bento Revision Changes Path 1.6 +1 -1 ports/german/BBBike/pkg-plist 1.2 +1 -1 ports/german/BBBike/pkg-plist.5005 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 9:16: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D6B4637B408; Thu, 23 Aug 2001 09:16:03 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NGG3208829; Thu, 23 Aug 2001 09:16:03 -0700 (PDT) (envelope-from ache) Message-Id: <200108231616.f7NGG3208829@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 09:16:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/nfsclient nfs_lock.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 09:16:03 PDT Modified files: sys/nfsclient nfs_lock.c Log: Copy from main nfs/nfs_lock.c: implement l_len<0 per POSIX check check for valid l_whence too. Revision Changes Path 1.10 +6 -4 src/sys/nfsclient/nfs_lock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 9:18:38 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.wolves.k12.mo.us (mail.wolves.k12.mo.us [207.160.214.1]) by hub.freebsd.org (Postfix) with ESMTP id EE44737B408; Thu, 23 Aug 2001 09:18:31 -0700 (PDT) (envelope-from cdillon@wolves.k12.mo.us) Received: from mail.wolves.k12.mo.us (cdillon@mail.wolves.k12.mo.us [207.160.214.1]) by mail.wolves.k12.mo.us (8.9.3/8.9.3) with ESMTP id LAA76063; Thu, 23 Aug 2001 11:18:08 -0500 (CDT) (envelope-from cdillon@wolves.k12.mo.us) Date: Thu, 23 Aug 2001 11:18:08 -0500 (CDT) From: Chris Dillon To: "Andrey A. Chernov" Cc: Jun Kuriyama , , Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: <20010823191543.A28556@nagual.pp.ru> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 23 Aug 2001, Andrey A. Chernov wrote: > They are not 'some' users, but all dialup users. We can't have > defaults which require changes for so large group. Most dialup users do not configure named for local DNS. This will not be a "dialup user" problem. Those dialup users that are smart enough to configure named in the first place can and will know enough to get named out of the sandbox if they need to. It doesn't really matter wether we default to it being in a sandbox or not since named is not enabled by default, but it is best to be on the safe side, IMHO. -- Chris Dillon - cdillon@wolves.k12.mo.us - cdillon@inter-linc.net FreeBSD: The fastest and most stable server OS on the planet - Available for IA32 (Intel x86) and Alpha architectures - IA64, PowerPC, UltraSPARC, and ARM architectures under development - 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 Thu Aug 23 9:19:48 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 27BD737B407; Thu, 23 Aug 2001 09:19:43 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NGJhc09328; Thu, 23 Aug 2001 09:19:43 -0700 (PDT) (envelope-from alex) Message-Id: <200108231619.f7NGJhc09328@freefall.freebsd.org> From: Alexander Langer Date: Thu, 23 Aug 2001 09:19:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/libggi pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alex 2001/08/23 09:19:42 PDT Modified files: graphics/libggi pkg-plist Log: Remove non-present files. Submitted by: bento Revision Changes Path 1.5 +0 -8 ports/graphics/libggi/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 Aug 23 9:24:41 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 141DA37B406; Thu, 23 Aug 2001 09:24:34 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7NGOjv37579; Thu, 23 Aug 2001 17:24:45 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7NGOZg73719; Thu, 23 Aug 2001 17:24:35 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108231624.f7NGOZg73719@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Chris Dillon Cc: "Andrey A. Chernov" , Jun Kuriyama , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: Message from Chris Dillon of "Thu, 23 Aug 2001 11:18:08 CDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 23 Aug 2001 17:24:35 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Thu, 23 Aug 2001, Andrey A. Chernov wrote: > > > They are not 'some' users, but all dialup users. We can't have > > defaults which require changes for so large group. > > Most dialup users do not configure named for local DNS. This will not > be a "dialup user" problem. Those dialup users that are smart enough > to configure named in the first place can and will know enough to get > named out of the sandbox if they need to. It doesn't really matter > wether we default to it being in a sandbox or not since named is not > enabled by default, but it is best to be on the safe side, IMHO. Changing this breaks configurations that currently say named_enable=YES in rc.conf (without any other variables). I don't believe that the benefit (none at all - as you point out, it's disabled out of the box) is worth the breakage of existing configurations. > -- > Chris Dillon - cdillon@wolves.k12.mo.us - cdillon@inter-linc.net > FreeBSD: The fastest and most stable server OS on the planet > - Available for IA32 (Intel x86) and Alpha architectures > - IA64, PowerPC, UltraSPARC, and ARM architectures under development > - http://www.freebsd.org -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 9:27:47 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E88437B403; Thu, 23 Aug 2001 09:27:42 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NGRgq10145; Thu, 23 Aug 2001 09:27:42 -0700 (PDT) (envelope-from imp) Message-Id: <200108231627.f7NGRgq10145@freefall.freebsd.org> From: Warner Losh Date: Thu, 23 Aug 2001 09:27:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src UPDATING X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/23 09:27:41 PDT Modified files: (Branch: RELENG_4) . UPDATING Log: Add note about shared interrupts. Revision Changes Path 1.73.2.43 +5 -1 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 Aug 23 9:34: 7 2001 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id D854E37B403; Thu, 23 Aug 2001 09:34:00 -0700 (PDT) (envelope-from root@aldan.algebra.com) Received: (from root@localhost) by aldan.algebra.com (8.11.5/8.11.5) id f7NGWEo55019; Thu, 23 Aug 2001 12:32:14 -0400 (EDT) (envelope-from root) From: Charlie Root Message-Id: <200108231632.f7NGWEo55019@aldan.algebra.com> Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: <200108231413.f7NEDvg71094@hak.lan.Awfulhak.org> To: Brian Somers Date: Thu, 23 Aug 2001 12:32:14 -0400 (EDT) Cc: "Andrey A. Chernov" , Jun Kuriyama , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com X-Mailer: ELM [version 2.4ME+ PL92 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > > Change pidfile location to /var/run/named/pid. Yes! I'd also suggest moving the sandbox into /var/db/named ... > > Is it discussed or I miss something? We already have an option to > > run it in bind sandbox, but as non-default option. Some functions > > not works in bind sandbox, I don't remember exactly at this moment. > > named won't be able to listen on interface addresses that are not > configured when named is invoked. This can break name services on a > dialup server quite badly. How about putting the named.restart (if rc.conf says named_enable is YES) into ppp-linkup by default? The named_enable=YES should also be an indication not to mess with /etc/resolv.conf by default, BTW :-) -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 9:44:56 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 06D6437B403; Thu, 23 Aug 2001 09:44:37 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7NGiiv37654; Thu, 23 Aug 2001 17:44:46 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7NGiZg74042; Thu, 23 Aug 2001 17:44:35 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108231644.f7NGiZg74042@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Charlie Root Cc: Brian Somers , "Andrey A. Chernov" , Jun Kuriyama , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: Message from Charlie Root of "Thu, 23 Aug 2001 12:32:14 EDT." <200108231632.f7NGWEo55019@aldan.algebra.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 23 Aug 2001 17:44:35 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > > > Change pidfile location to /var/run/named/pid. > > Yes! I'd also suggest moving the sandbox into /var/db/named ... > > > > Is it discussed or I miss something? We already have an option to > > > run it in bind sandbox, but as non-default option. Some functions > > > not works in bind sandbox, I don't remember exactly at this moment. > > > > named won't be able to listen on interface addresses that are not > > configured when named is invoked. This can break name services on a > > dialup server quite badly. > > How about putting the named.restart (if rc.conf says named_enable is > YES) into ppp-linkup by default? The named_enable=YES should also be an > indication not to mess with /etc/resolv.conf by default, BTW :-) The commands in ppp.linkup are run as the uid of the user that ran ppp, not necessarily uid 0. > -mi -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 9:45:58 2001 Delivered-To: cvs-all@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id F33A437B403; Thu, 23 Aug 2001 09:45:46 -0700 (PDT) (envelope-from dillon@earth.backplane.com) Received: (from dillon@localhost) by earth.backplane.com (8.11.4/8.11.2) id f7NGjYe86993; Thu, 23 Aug 2001 09:45:34 -0700 (PDT) (envelope-from dillon) Date: Thu, 23 Aug 2001 09:45:34 -0700 (PDT) From: Matt Dillon Message-Id: <200108231645.f7NGjYe86993@earth.backplane.com> To: "Andrey A. Chernov" Cc: Brian Somers , Jun Kuriyama , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf References: <20010823174457.A27360@nagual.pp.ru> <200108231413.f7NEDvg71094@hak.lan.Awfulhak.org> <20010823185515.A28168@nagual.pp.ru> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I like the idea of, finally, invoking named in a sandbox. I don't understand why the pidfile location has to change, though. named creates its pidfile as root before it setuid's itself. While it is true that named cannot rescan interfaces when operating in this mode, this restriction has never been an impediment to anything I've ever done with it. Most dialup users don't run named, they simply allow ppp to setup /etc/resolv.conf for them. Those who do will be savvy enough to add the appropriate override to /etc/rc.conf (or won't have to if they don't bother to mergemaster the new default rc files). I know it isn't a perfect solution, but we *REALLY* need to secure named this time around. It is years past the time we should have done it. -Matt :> > > Invoke named with privilege of bind:bind. :> > > Change pidfile location to /var/run/named/pid. :> > :> > Is it discussed or I miss something? We already have an option to run it :> > in bind sandbox, but as non-default option. Some functions not works in :> > bind sandbox, I don't remember exactly at this moment. :> :> named won't be able to listen on interface addresses that are not :> configured when named is invoked. This can break name services on a :> dialup server quite badly. : :Yes, exact this thing. : :> I think this change should be reverted. : :I too. :If named allows root compromise, better fix named. : :-- :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 Thu Aug 23 9:50: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.wolves.k12.mo.us (mail.wolves.k12.mo.us [207.160.214.1]) by hub.freebsd.org (Postfix) with ESMTP id 3AF6937B406; Thu, 23 Aug 2001 09:50:00 -0700 (PDT) (envelope-from cdillon@wolves.k12.mo.us) Received: from mail.wolves.k12.mo.us (cdillon@mail.wolves.k12.mo.us [207.160.214.1]) by mail.wolves.k12.mo.us (8.9.3/8.9.3) with ESMTP id LAA76545; Thu, 23 Aug 2001 11:49:47 -0500 (CDT) (envelope-from cdillon@wolves.k12.mo.us) Date: Thu, 23 Aug 2001 11:49:47 -0500 (CDT) From: Chris Dillon To: Brian Somers Cc: "Andrey A. Chernov" , Jun Kuriyama , , , Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: <200108231624.f7NGOZg73719@hak.lan.Awfulhak.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 23 Aug 2001, Brian Somers wrote: > Changing this breaks configurations that currently say > > named_enable=YES > > in rc.conf (without any other variables). I don't believe that > the benefit (none at all - as you point out, it's disabled out of > the box) is worth the breakage of existing configurations. Yes, true. In -CURRENT this won't be a big deal. In -STABLE it is probably good enough that we have a note in defaults/rc.conf that named can be run in a sandbox. It doesn't really motivate one to do so, though. Maybe instead of saying "it may be possible to run named in a sandbox" we could be a little more assertive and say "it would be a REALLY good idea if you ran named in a sandbox". -- Chris Dillon - cdillon@wolves.k12.mo.us - cdillon@inter-linc.net FreeBSD: The fastest and most stable server OS on the planet - Available for IA32 (Intel x86) and Alpha architectures - IA64, PowerPC, UltraSPARC, and ARM architectures under development - 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 Thu Aug 23 9:53:58 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7975537B407; Thu, 23 Aug 2001 09:53:50 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NGroL13017; Thu, 23 Aug 2001 09:53:50 -0700 (PDT) (envelope-from alex) Message-Id: <200108231653.f7NGroL13017@freefall.freebsd.org> From: Alexander Langer Date: Thu, 23 Aug 2001 09:53:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/amulet Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alex 2001/08/23 09:53:50 PDT Modified files: devel/amulet Makefile Log: Mark BROKEN again (internal compiler error). This port has been broken since I can think (almost). Submitted by: bento Revision Changes Path 1.14 +3 -1 ports/devel/amulet/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 10: 1: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5FA5237B407; Thu, 23 Aug 2001 10:00:58 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NH0wo13688; Thu, 23 Aug 2001 10:00:58 -0700 (PDT) (envelope-from brian) Message-Id: <200108231700.f7NH0wo13688@freefall.freebsd.org> From: Brian Somers Date: Thu, 23 Aug 2001 10:00:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/uk-phone Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/23 10:00:58 PDT Modified files: misc/uk-phone Makefile distinfo Log: Upgrade to version 2.5 Revision Changes Path 1.15 +2 -2 ports/misc/uk-phone/Makefile 1.7 +1 -1 ports/misc/uk-phone/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 10: 1:31 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5802137B40C; Thu, 23 Aug 2001 10:01:25 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NH1Ps13763; Thu, 23 Aug 2001 10:01:25 -0700 (PDT) (envelope-from ache) Message-Id: <200108231701.f7NH1Ps13763@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 10:01:25 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 10:01:25 PDT Modified files: sys/kern vfs_syscalls.c Log: lseek: fix check for vattr.va_size overflow. Check suggested by bde simple not works with unsigned types. Revision Changes Path 1.201 +3 -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 Thu Aug 23 10: 1:29 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 29C7337B420; Thu, 23 Aug 2001 10:01:06 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NH16Y13726; Thu, 23 Aug 2001 10:01:06 -0700 (PDT) (envelope-from alex) Message-Id: <200108231701.f7NH16Y13726@freefall.freebsd.org> From: Alexander Langer Date: Thu, 23 Aug 2001 10:01:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/palm/coldsync Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alex 2001/08/23 10:01:06 PDT Modified files: palm/coldsync Makefile Log: Install locale files to match pkg-plist. I assume this has been the default once, but isn't any more if you don't enable it with --with-i18n. Revision Changes Path 1.9 +3 -1 ports/palm/coldsync/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 10: 8: 1 2001 Delivered-To: cvs-all@freebsd.org Received: from green.bikeshed.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E4CF37B409; Thu, 23 Aug 2001 10:07:46 -0700 (PDT) (envelope-from green@green.bikeshed.org) Received: from localhost (green@localhost) by green.bikeshed.org (8.11.4/8.11.1) with ESMTP id f7NH7dG14247; Thu, 23 Aug 2001 13:07:39 -0400 (EDT) (envelope-from green@green.bikeshed.org) Message-Id: <200108231707.f7NH7dG14247@green.bikeshed.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Matt Dillon Cc: "Andrey A. Chernov" , Brian Somers , Jun Kuriyama , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: Your message of "Thu, 23 Aug 2001 09:45:34 PDT." <200108231645.f7NGjYe86993@earth.backplane.com> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 23 Aug 2001 13:07:38 -0400 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Matt Dillon wrote: > > I like the idea of, finally, invoking named in a sandbox. I don't > understand why the pidfile location has to change, though. named > creates its pidfile as root before it setuid's itself. > > While it is true that named cannot rescan interfaces when operating > in this mode, this restriction has never been an impediment to anything > I've ever done with it. Most dialup users don't run named, they simply > allow ppp to setup /etc/resolv.conf for them. Those who do will be savvy > enough to add the appropriate override to /etc/rc.conf (or won't have to > if they don't bother to mergemaster the new default rc files). > > I know it isn't a perfect solution, but we *REALLY* need to secure > named this time around. It is years past the time we should have done > it. For what it's worth, here's how I configure named on the computers I run. Not that it's the best way, but it's definitely very reasonable for a default if nothing else. In rc.conf I use: syslogd_flags="-s -l /etc/namedb/var/run/log" # Flags to syslogd (if enabled). named_flags="-u daemon -g daemon -t /etc/namedb -c named.conf" named.conf: logging { channel to_syslog { syslog daemon; }; category default { to_syslog; }; category panic { to_syslog; }; }; options { directory "/"; // chrooted into /etc/namedb }; /etc/namedb: -rw-r--r-- 1 root wheel 423 Feb 26 2000 PROTO.localhost.rev -rw-r--r-- 1 root wheel 457 Oct 13 2000 localhost.rev -rw-r--r-- 1 root wheel 843 Dec 10 2000 make-localhost -rw-r--r-- 1 root wheel 2647 Oct 21 1997 named.boot -rw-r--r-- 1 root wheel 3592 Mar 29 10:17 named.conf -rw-r--r-- 1 root wheel 2843 Feb 26 2000 named.root drwxr-xr-x 4 root wheel 512 Nov 12 2000 var /etc/namedb/var: total 2 drwxr-xr-x 2 root wheel 512 Nov 12 2000 log drwxr-xr-x 2 root wheel 512 Aug 22 23:06 run /etc/namedb/var/log: /etc/namedb/var/run: total 1 srw-rw-rw- 1 root wheel 0 Aug 22 23:06 log -rw-r--r-- 1 daemon daemon 4 Aug 22 23:06 named.pid srw------- 1 root wheel 0 Aug 22 23:06 ndc -- 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 Thu Aug 23 10: 8:30 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A88937B407; Thu, 23 Aug 2001 10:08:27 -0700 (PDT) (envelope-from gallatin@FreeBSD.org) Received: (from gallatin@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NH8R917295; Thu, 23 Aug 2001 10:08:27 -0700 (PDT) (envelope-from gallatin) Message-Id: <200108231708.f7NH8R917295@freefall.freebsd.org> From: Andrew Gallatin Date: Thu, 23 Aug 2001 10:08:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libstand cd9660.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gallatin 2001/08/23 10:08:26 PDT Modified files: lib/libstand cd9660.c Log: Bail if we go beyond the directory size, not just if we hit it. Certain ISO fs's (like the one for 4.4-RC1 disc1 on alpha) trigger this, and we end up opening a null file name. This causes us to get a false match for "kernel.ko" when it does not exist. Revision Changes Path 1.7 +2 -2 src/lib/libstand/cd9660.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 10: 9:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8666437B40A; Thu, 23 Aug 2001 10:09:23 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NH9NE17473; Thu, 23 Aug 2001 10:09:23 -0700 (PDT) (envelope-from ache) Message-Id: <200108231709.f7NH9NE17473@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 10:09:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_lockf.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 10:09:23 PDT Modified files: sys/kern kern_lockf.c Log: Add yet one check for SEEK_END overflow Revision Changes Path 1.34 +3 -2 src/sys/kern/kern_lockf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 10:10:40 2001 Delivered-To: cvs-all@freebsd.org Received: from winston.freebsd.org (adsl-64-173-15-98.dsl.sntc01.pacbell.net [64.173.15.98]) by hub.freebsd.org (Postfix) with ESMTP id 8ABFB37B406; Thu, 23 Aug 2001 10:10:29 -0700 (PDT) (envelope-from jkh@freebsd.org) Received: from localhost (jkh@localhost [127.0.0.1]) by winston.freebsd.org (8.11.6/8.11.4) with ESMTP id f7NHARq02391; Thu, 23 Aug 2001 10:10:27 -0700 (PDT) (envelope-from jkh@freebsd.org) To: kris@freebsd.org Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: ports/lang Makefile ports/lang/klone Makefile distinfo pkg-comment pkg-descr pkg-plist ports/lang/klone/files freebsd In-Reply-To: <200108231130.f7NBUeG50002@freefall.freebsd.org> References: <200108231130.f7NBUeG50002@freefall.freebsd.org> X-Mailer: Mew version 1.94.1 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: <20010823101027R.jkh@freebsd.org> Date: Thu, 23 Aug 2001 10:10:27 -0700 From: Jordan Hubbard X-Dispatcher: imput version 20000228(IM140) Lines: 34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG That's pretty cool! I've attempted to use siod (Scheme In One Defun) to do this very thing a few times, but it was always a real pain. This looks much more applicable to such things, thanks. - Jordan From: Kris Kennaway Subject: cvs commit: ports/lang Makefile ports/lang/klone Makefile distinfo pkg-comment pkg-descr pkg-plist ports/lang/klone/files freebsd Date: Thu, 23 Aug 2001 04:30:40 -0700 (PDT) > kris 2001/08/23 04:30:40 PDT > > Modified files: > lang Makefile > Added files: > lang/klone Makefile distinfo pkg-comment pkg-descr > pkg-plist > lang/klone/files freebsd > Log: > Initial import of klone-2.1.359 > > KLONE is a small and fast fully interpreted language intended to be > embedded into C applications to provide them with a powerful, yet fast > and small extension language. Its syntax is very inspired from Lisp (its > external syntax has been kept as close as possible to Common Lisp as > possible), but its implementation is original and efficient, to give full > extensibility, intimate interfacing to C, incremental garbage collection, > and full portability on either K&R or ANSI C. > > Obtained from: OpenBSD > > Revision Changes Path > 1.247 +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 Thu Aug 23 10:11:10 2001 Delivered-To: cvs-all@freebsd.org Received: from niwun.pair.com (niwun.pair.com [209.68.2.70]) by hub.freebsd.org (Postfix) with SMTP id 2B4A037B409 for ; Thu, 23 Aug 2001 10:11:03 -0700 (PDT) (envelope-from silby@silby.com) Received: (qmail 40336 invoked by uid 3193); 23 Aug 2001 17:11:02 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 23 Aug 2001 17:11:02 -0000 Date: Thu, 23 Aug 2001 13:11:01 -0400 (EDT) From: Mike Silbersack X-Sender: To: Chris Dillon Cc: Brian Somers , "Andrey A. Chernov" , Jun Kuriyama , , , Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 23 Aug 2001, Chris Dillon wrote: > Yes, true. In -CURRENT this won't be a big deal. In -STABLE it is > probably good enough that we have a note in defaults/rc.conf that > named can be run in a sandbox. It doesn't really motivate one to do > so, though. Maybe instead of saying "it may be possible to run named > in a sandbox" we could be a little more assertive and say "it would be > a REALLY good idea if you ran named in a sandbox". Well, the difference is this. If the default behavior is changed, and an entry is added to UPDATING / the release notes, a few modem users will be annoyed. They will get over it quickly. If the default behavior is not changed, and another hole is found in BIND, thousands of boxes will be easily rootable. At this point in time, the many users of BIND will not be really happy when the advisory says "We told you to sandbox it in rc.conf!" So, the question in my mind isn't whether this change will break modem users; that's easy enough to fix and has a minimal impact. The question is: will enabling sandboxing potentially break systems which act as secondaries when they try to grab updated zones? _That_ would be a serious problem. Mike "Silby" Silbersack To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 10:11:47 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CA2C037B408; Thu, 23 Aug 2001 10:11:40 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NHBew17638; Thu, 23 Aug 2001 10:11:40 -0700 (PDT) (envelope-from alex) Message-Id: <200108231711.f7NHBew17638@freefall.freebsd.org> From: Alexander Langer Date: Thu, 23 Aug 2001 10:11:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/cdplayer.app distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alex 2001/08/23 10:11:40 PDT Modified files: audio/cdplayer.app distinfo Log: Chase checksum, from Changelog: - Compiles with Window Maker 0.65.0 Submitted by: bento Revision Changes Path 1.3 +1 -1 ports/audio/cdplayer.app/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 10:12:52 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2278C37B40A; Thu, 23 Aug 2001 10:12:43 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NHChe17731; Thu, 23 Aug 2001 10:12:43 -0700 (PDT) (envelope-from ache) Message-Id: <200108231712.f7NHChe17731@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 10:12:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/smbfs smbfs_vnops.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 10:12:43 PDT Modified files: sys/fs/smbfs smbfs_vnops.c Log: Copy yet one check for SEEK_END overflow Revision Changes Path 1.9 +3 -2 src/sys/fs/smbfs/smbfs_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 Aug 23 10:15:10 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C063A37B40B; Thu, 23 Aug 2001 10:14:59 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NHEx818013; Thu, 23 Aug 2001 10:14:59 -0700 (PDT) (envelope-from brian) Message-Id: <200108231714.f7NHEx818013@freefall.freebsd.org> From: Brian Somers Date: Thu, 23 Aug 2001 10:14:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/vlc Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/23 10:14:59 PDT Modified files: graphics/vlc Makefile distinfo Log: Upgrade to v 0.2.83 Revision Changes Path 1.7 +2 -2 ports/graphics/vlc/Makefile 1.3 +1 -1 ports/graphics/vlc/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 10:18:31 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E35C37B401; Thu, 23 Aug 2001 10:18:24 -0700 (PDT) (envelope-from roam@FreeBSD.org) Received: (from roam@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NHIO018313; Thu, 23 Aug 2001 10:18:24 -0700 (PDT) (envelope-from roam) Message-Id: <200108231718.f7NHIO018313@freefall.freebsd.org> From: Peter Pentchev Date: Thu, 23 Aug 2001 10:18:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/pure-ftpd Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2001/08/23 10:18:24 PDT Modified files: ftp/pure-ftpd Makefile distinfo pkg-plist Log: Update to 0.99.1b. Make the --with-pam configure arg conditional: only compile with PAM support if neither WITH_LDAP nor WITH_MYSQL is specified. PR: 29995 Submitted by: author/maintainer Revision Changes Path 1.13 +25 -7 ports/ftp/pure-ftpd/Makefile 1.12 +1 -1 ports/ftp/pure-ftpd/distinfo 1.7 +1 -0 ports/ftp/pure-ftpd/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 Aug 23 10:23:16 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 99C5C37B408; Thu, 23 Aug 2001 10:23:04 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NHN4c18760; Thu, 23 Aug 2001 10:23:04 -0700 (PDT) (envelope-from alex) Message-Id: <200108231723.f7NHN4c18760@freefall.freebsd.org> From: Alexander Langer Date: Thu, 23 Aug 2001 10:23:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/cidr Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alex 2001/08/23 10:23:04 PDT Modified files: net/cidr Makefile distinfo Log: Update to 2.3.1. (Bugfix in cleanup. Pointers had been set to NULL before free()'ing.) Submitted by: bento (checksum mismatch) Revision Changes Path 1.3 +2 -2 ports/net/cidr/Makefile 1.2 +1 -1 ports/net/cidr/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 10:28: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 185D237B409; Thu, 23 Aug 2001 10:27:49 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7NHRxv37907; Thu, 23 Aug 2001 18:27:59 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7NHRng82227; Thu, 23 Aug 2001 18:27:49 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108231727.f7NHRng82227@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Matt Dillon Cc: "Andrey A. Chernov" , Brian Somers , Jun Kuriyama , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, brian@freebsd-services.com, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: Message from Matt Dillon of "Thu, 23 Aug 2001 09:45:34 PDT." <200108231645.f7NGjYe86993@earth.backplane.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 23 Aug 2001 18:27:49 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > I like the idea of, finally, invoking named in a sandbox. I don't > understand why the pidfile location has to change, though. named > creates its pidfile as root before it setuid's itself. > > While it is true that named cannot rescan interfaces when operating > in this mode, this restriction has never been an impediment to anything > I've ever done with it. Most dialup users don't run named, they simply > allow ppp to setup /etc/resolv.conf for them. Those who do will be savvy > enough to add the appropriate override to /etc/rc.conf (or won't have to > if they don't bother to mergemaster the new default rc files). > > I know it isn't a perfect solution, but we *REALLY* need to secure > named this time around. It is years past the time we should have done > it. The only problem I have with the change is that people who currently have ``named_enable=YES'' in their /etc/rc.conf will have broken configurations when they update. If this change goes in, I won't argue as long as it's *NOT* MFC'd. > -Matt > > :> > > Invoke named with privilege of bind:bind. > :> > > Change pidfile location to /var/run/named/pid. > :> > > :> > Is it discussed or I miss something? We already have an option to run it > :> > in bind sandbox, but as non-default option. Some functions not works in > :> > bind sandbox, I don't remember exactly at this moment. > :> > :> named won't be able to listen on interface addresses that are not > :> configured when named is invoked. This can break name services on a > :> dialup server quite badly. > : > :Yes, exact this thing. > : > :> I think this change should be reverted. > : > :I too. > :If named allows root compromise, better fix named. > : > :-- > :Andrey A. Chernov > :http://ache.pp.ru/ -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 10:28:39 2001 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 784FF37B40F; Thu, 23 Aug 2001 10:28:25 -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 LAA19524; Thu, 23 Aug 2001 11:28:12 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id LAA16781; Thu, 23 Aug 2001 11:28:10 -0600 (MDT) (envelope-from nate) From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15237.15657.588778.575928@nomad.yogotech.com> Date: Thu, 23 Aug 2001 11:28:09 -0600 To: "Andrey A. Chernov" Cc: Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT modules In-Reply-To: <20010823135845.A6196@nagual.pp.ru> References: <200108230913.f7N9Dk525008@freefall.freebsd.org> <20010823134919.B5992@nagual.pp.ru> <20010823135845.A6196@nagual.pp.ru> X-Mailer: VM 6.95 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > > I doubt we can keep 'modules' useful for non-current too, just consider > > > movings like many things from sys/miscfs to sys/fs. Current module names > > > in that case are unusable for non-current. Or do you mean it must be > > > semi-usable excepting movings? > > > > Please search the archives. You will find that we have always, in the > > past, kept modules around after the actual code was removed from > > -CURRENT, so people working on older branches could still check out > > the module. > > Ok, I'll restore it, but I not see much sense in this. It will be better > to keep two separated versions of modules for -current and non-current. There isn't an easy way of doing that, because the files in $CVSROOT/CVSROOT don't work well if they are branched. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 10:29: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DF91137B410; Thu, 23 Aug 2001 10:28:51 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NHSpt19266; Thu, 23 Aug 2001 10:28:51 -0700 (PDT) (envelope-from alex) Message-Id: <200108231728.f7NHSpt19266@freefall.freebsd.org> From: Alexander Langer Date: Thu, 23 Aug 2001 10:28:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/cons-test Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alex 2001/08/23 10:28:51 PDT Modified files: devel/cons-test Makefile Log: cons-test.1 is now gzipped by default. Submitted by: bento Revision Changes Path 1.5 +4 -4 ports/devel/cons-test/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 10:32: 4 2001 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 DE1D237B406; Thu, 23 Aug 2001 10:31:58 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id f7NHVt030237; Thu, 23 Aug 2001 21:31:55 +0400 (MSD) (envelope-from ache) Date: Thu, 23 Aug 2001 21:31:50 +0400 From: "Andrey A. Chernov" To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern vfs_syscalls.c Message-ID: <20010823213149.B30091@nagual.pp.ru> References: <200108231701.f7NH1Ps13763@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200108231701.f7NH1Ps13763@freefall.freebsd.org> User-Agent: Mutt/1.3.21i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Aug 23, 2001 at 10:01:25 -0700, Andrey A. Chernov wrote: > ache 2001/08/23 10:01:25 PDT > > Modified files: > sys/kern vfs_syscalls.c > Log: > lseek: fix check for vattr.va_size overflow. Check suggested by bde simple not > works with unsigned types. If you have this file v1.199 or v1.200 please update to v1.201 (or up) or lseek SEEK_END will be broken badly. -- 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 Thu Aug 23 10:50:26 2001 Delivered-To: cvs-all@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id 0827937B40D; Thu, 23 Aug 2001 10:50:17 -0700 (PDT) (envelope-from dillon@earth.backplane.com) Received: (from dillon@localhost) by earth.backplane.com (8.11.4/8.11.2) id f7NHlP787945; Thu, 23 Aug 2001 10:47:25 -0700 (PDT) (envelope-from dillon) Date: Thu, 23 Aug 2001 10:47:25 -0700 (PDT) From: Matt Dillon Message-Id: <200108231747.f7NHlP787945@earth.backplane.com> To: Mike Silbersack Cc: Chris Dillon , Brian Somers , "Andrey A. Chernov" , Jun Kuriyama , , , Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf References: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG :If the default behavior is not changed, and another hole is found in BIND, :thousands of boxes will be easily rootable. At this point in time, the :many users of BIND will not be really happy when the advisory says "We :told you to sandbox it in rc.conf!" : :So, the question in my mind isn't whether this change will break modem :users; that's easy enough to fix and has a minimal impact. The question :is: will enabling sandboxing potentially break systems which act as :secondaries when they try to grab updated zones? _That_ would be a :serious problem. : :Mike "Silby" Silbersack Long ago I added comments to named.conf basically telling people how to setup a secondaries directory (owned by bind:bind). Note that under no circumstances should /etc/namedb itself or any files in the top level of /etc/nameddb ever be owned by bind or writable by group bind. Not ever. At the moment the creation of /etc/namedb/s in /usr/src/etc/mtree/BSD.root.dist is commented out. I would recommend uncommenting this so the normal installworld process creates /etc/namedb/s properly. By now the default 'bind' user and group, which I added a long time ago, should be in everyone's passwd and group files. As long as people follow the instructions when setting up secondariese, the sandbox will 'just work'. I think this is doable and reasonable, and I also think that since -stable is going to be with us for a long time we should seriously consider MFCing these changes. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 10:52:40 2001 Delivered-To: cvs-all@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id 9F27937B403; Thu, 23 Aug 2001 10:52:34 -0700 (PDT) (envelope-from dillon@earth.backplane.com) Received: (from dillon@localhost) by earth.backplane.com (8.11.4/8.11.2) id f7NHqXE88004; Thu, 23 Aug 2001 10:52:33 -0700 (PDT) (envelope-from dillon) Date: Thu, 23 Aug 2001 10:52:33 -0700 (PDT) From: Matt Dillon Message-Id: <200108231752.f7NHqXE88004@earth.backplane.com> To: "Brian F. Feldman" Cc: "Andrey A. Chernov" , Brian Somers , Jun Kuriyama , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf References: <200108231707.f7NH7dG14247@green.bikeshed.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG :For what it's worth, here's how I configure named on the computers I run. :Not that it's the best way, but it's definitely very reasonable for a :default if nothing else. : :In rc.conf I use: :syslogd_flags="-s -l /etc/namedb/var/run/log" # Flags to syslogd (if enabled). :named_flags="-u daemon -g daemon -t /etc/namedb -c named.conf" There is a pre-configured 'bind' user and 'bind' group available, you should use those. A program isn't running in a sandbox if it shares its uid with other unrelated programs - like portmap (!) for example. There is a standard place for bind-modifiable files (a.k.a. secondary files), /etc/namedb/s, and comments in the default named.conf describing how to set it up. There are comments in the default rc.conf describing how to run named in a sandbox. The only thing I *didn't* do was turn the sandbox on by default and turn on the creation of /etc/namedb/s in the mtree config. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 10:53:13 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.wolves.k12.mo.us (mail.wolves.k12.mo.us [207.160.214.1]) by hub.freebsd.org (Postfix) with ESMTP id 2150037B408; Thu, 23 Aug 2001 10:53:07 -0700 (PDT) (envelope-from cdillon@wolves.k12.mo.us) Received: from mail.wolves.k12.mo.us (cdillon@mail.wolves.k12.mo.us [207.160.214.1]) by mail.wolves.k12.mo.us (8.9.3/8.9.3) with ESMTP id MAA77626; Thu, 23 Aug 2001 12:52:52 -0500 (CDT) (envelope-from cdillon@wolves.k12.mo.us) Date: Thu, 23 Aug 2001 12:52:51 -0500 (CDT) From: Chris Dillon To: Matt Dillon Cc: "Andrey A. Chernov" , Brian Somers , Jun Kuriyama , , , Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: <200108231645.f7NGjYe86993@earth.backplane.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 23 Aug 2001, Matt Dillon wrote: > > I like the idea of, finally, invoking named in a sandbox. I don't > understand why the pidfile location has to change, though. named > creates its pidfile as root before it setuid's itself. > > While it is true that named cannot rescan interfaces when operating > in this mode, this restriction has never been an impediment to anything > I've ever done with it. Most dialup users don't run named, they simply > allow ppp to setup /etc/resolv.conf for them. Those who do will be savvy > enough to add the appropriate override to /etc/rc.conf (or won't have to > if they don't bother to mergemaster the new default rc files). Just thought of something... Correct me if I'm wrong, but named only needs to bind to an interface that it will receive queries on, right? How many cases (a handful?) will we have where the dynamic interface that BIND will not be able to attach to in a sandbox is the one where queries will be coming in on? BIND can still make outgoing queries on any interface wether it is bound to it or not, right? I think that would significantly lessen the number of people we think this is going to affect. -- Chris Dillon - cdillon@wolves.k12.mo.us - cdillon@inter-linc.net FreeBSD: The fastest and most stable server OS on the planet - Available for IA32 (Intel x86) and Alpha architectures - IA64, PowerPC, UltraSPARC, and ARM architectures under development - 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 Thu Aug 23 10:56:56 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 705BD37B403; Thu, 23 Aug 2001 10:56:44 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7NHuDv38049; Thu, 23 Aug 2001 18:56:14 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7NHu3g82765; Thu, 23 Aug 2001 18:56:03 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108231756.f7NHu3g82765@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Matt Dillon Cc: Mike Silbersack , Chris Dillon , Brian Somers , "Andrey A. Chernov" , Jun Kuriyama , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, brian@freebsd-services.com, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: Message from Matt Dillon of "Thu, 23 Aug 2001 10:47:25 PDT." <200108231747.f7NHlP787945@earth.backplane.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 23 Aug 2001 18:56:03 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > As long as people follow the instructions when setting up secondariese, > the sandbox will 'just work'. I think this is doable and reasonable, > and I also think that since -stable is going to be with us for a long time > we should seriously consider MFCing these changes. I'd have to object to any such MFC. It'll break peoples name servers and that's unacceptable in -stable. > -Matt -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 10:57: 0 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5420237B405; Thu, 23 Aug 2001 10:56:48 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NHumF21548; Thu, 23 Aug 2001 10:56:48 -0700 (PDT) (envelope-from ache) Message-Id: <200108231756.f7NHumF21548@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 10:56:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_vnops.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 10:56:48 PDT Modified files: sys/kern vfs_vnops.c Log: vn_stat(): if va_size (u_quad_t) > OFF_MAX, return EOVERFLOW, don't copy it blindly to st_size Revision Changes Path 1.118 +5 -1 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 Aug 23 10:57:20 2001 Delivered-To: cvs-all@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id 4B6C737B43E; Thu, 23 Aug 2001 10:57:00 -0700 (PDT) (envelope-from dillon@earth.backplane.com) Received: (from dillon@localhost) by earth.backplane.com (8.11.4/8.11.2) id f7NHutU88154; Thu, 23 Aug 2001 10:56:55 -0700 (PDT) (envelope-from dillon) Date: Thu, 23 Aug 2001 10:56:55 -0700 (PDT) From: Matt Dillon Message-Id: <200108231756.f7NHutU88154@earth.backplane.com> To: Charlie Root Cc: Brian Somers , "Andrey A. Chernov" , Jun Kuriyama , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf References: <200108231632.f7NGWEo55019@aldan.algebra.com> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG : :> > > Change pidfile location to /var/run/named/pid. : :Yes! I'd also suggest moving the sandbox into /var/db/named ... Most of the files in /etc/namedb really belong in /etc/namedb. They are not generated files. Only the secondary files are generated on the fly and for the sandbox and chroot options to work that must be in a subdirectory. Guys, lets not go overboard on turning on the sandboxing option for named. I think it makes sense to turn it on, but it does not make sense to around changing all the perfectly working paths. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 10:57:51 2001 Delivered-To: cvs-all@freebsd.org Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by hub.freebsd.org (Postfix) with ESMTP id 0A21237B506; Thu, 23 Aug 2001 10:57:34 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from hades.hell.gr (patr530-b078.otenet.gr [195.167.121.206]) by mailsrv.otenet.gr (8.11.5/8.11.5) with ESMTP id f7NHvTT03173; Thu, 23 Aug 2001 20:57:29 +0300 (EEST) Received: (from charon@localhost) by hades.hell.gr (8.11.4/8.11.4) id f7NHPVg02489; Thu, 23 Aug 2001 20:25:31 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Thu, 23 Aug 2001 20:25:30 +0300 From: Giorgos Keramidas To: Jun Kuriyama Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf Message-ID: <20010823202530.A2280@hades.hell.gr> References: <20010823174457.A27360@nagual.pp.ru> <200108231413.f7NEDvg71094@hak.lan.Awfulhak.org> <20010823185515.A28168@nagual.pp.ru> <7my9oax1f0.wl@waterblue.imgsrc.co.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <7my9oax1f0.wl@waterblue.imgsrc.co.jp>; from kuriyama@imgsrc.co.jp on Fri, Aug 24, 2001 at 12:04:51AM +0900 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG From: Jun Kuriyama Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf Date: Fri, Aug 24, 2001 at 12:04:51AM +0900 > At Thu, 23 Aug 2001 18:55:15 +0400, > Andrey A. Chernov wrote: > > > If named allows root compromise, better fix named. > > Of course. But I like safety net like this. IMHO users who want to > use root privilege for named should override it by named_flags="" on > their /etc/rc.conf. This changes the behavior of rc.conf that some might have, which depends on named_flags being set to "" by /etc/defaults/rc.conf. I don't agree to running named in a sandbox by default, but can we, at least, have a note in UPDATING? Please? -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 10:57:51 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E145B37B419; Thu, 23 Aug 2001 10:57:37 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NHvba21693; Thu, 23 Aug 2001 10:57:37 -0700 (PDT) (envelope-from jhb) Message-Id: <200108231757.f7NHvba21693@freefall.freebsd.org> From: John Baldwin Date: Thu, 23 Aug 2001 10:57:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_sx.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/23 10:57:37 PDT Modified files: sys/kern kern_sx.c Log: Clear the sx_xholder pointer when downgrading an exclusive lock. Revision Changes Path 1.8 +2 -1 src/sys/kern/kern_sx.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 11: 0:17 2001 Delivered-To: cvs-all@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id A6BF137B405; Thu, 23 Aug 2001 11:00:06 -0700 (PDT) (envelope-from dillon@earth.backplane.com) Received: (from dillon@localhost) by earth.backplane.com (8.11.4/8.11.2) id f7NHxTH88202; Thu, 23 Aug 2001 10:59:29 -0700 (PDT) (envelope-from dillon) Date: Thu, 23 Aug 2001 10:59:29 -0700 (PDT) From: Matt Dillon Message-Id: <200108231759.f7NHxTH88202@earth.backplane.com> To: Chris Dillon Cc: "Andrey A. Chernov" , Brian Somers , Jun Kuriyama , , , Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf References: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG :Just thought of something... Correct me if I'm wrong, but named only :needs to bind to an interface that it will receive queries on, right? :How many cases (a handful?) will we have where the dynamic interface :that BIND will not be able to attach to in a sandbox is the one where :queries will be coming in on? BIND can still make outgoing queries on :any interface wether it is bound to it or not, right? I think that :would significantly lessen the number of people we think this is going :to affect. : :-- : Chris Dillon - cdillon@wolves.k12.mo.us - cdillon@inter-linc.net Yes, you are absolutely correct. If the 'query-source address * port 53;' option is not set, then named can certainly make outgoing (recursive) queries on any interface. The real issue with dynamic interfaces is with incoming queries - if named is acting as a server. This was a good opint to bring up, Chris! -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 11: 2:35 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C715537B40A; Thu, 23 Aug 2001 11:02:29 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NI2TJ22312; Thu, 23 Aug 2001 11:02:29 -0700 (PDT) (envelope-from ache) Message-Id: <200108231802.f7NI2TJ22312@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 11:02:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/nfs nfs_lock.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 11:02:29 PDT Modified files: sys/nfs nfs_lock.c Log: Stupid error from my side in prev. commit: || -> && Revision Changes Path 1.12 +2 -2 src/sys/nfs/nfs_lock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 11: 5:32 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 332FC37B403; Thu, 23 Aug 2001 11:05:24 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NI5Nk23734; Thu, 23 Aug 2001 11:05:24 -0700 (PDT) (envelope-from ache) Message-Id: <200108231805.f7NI5Nk23734@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 11:05:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/nfsclient nfs_lock.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 11:05:22 PDT Modified files: sys/nfsclient nfs_lock.c Log: Copy from nfs/nfs_lock.c, fix || -> && Revision Changes Path 1.11 +1 -1 src/sys/nfsclient/nfs_lock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 11:16: 3 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E927837B405; Thu, 23 Aug 2001 11:15:54 -0700 (PDT) (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NIFsM27052; Thu, 23 Aug 2001 11:15:54 -0700 (PDT) (envelope-from mi) Message-Id: <200108231815.f7NIFsM27052@freefall.freebsd.org> From: Mikhail Teterin Date: Thu, 23 Aug 2001 11:15:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/ghostscript6 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mi 2001/08/23 11:15:54 PDT Modified files: print/ghostscript6 Makefile Log: Fix the path for one of the master sites (fh-koblenz.de). Revision Changes Path 1.71 +3 -3 ports/print/ghostscript6/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 11:17:17 2001 Delivered-To: cvs-all@freebsd.org Received: from green.bikeshed.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BD79637B401; Thu, 23 Aug 2001 11:17:04 -0700 (PDT) (envelope-from green@green.bikeshed.org) Received: from localhost (green@localhost) by green.bikeshed.org (8.11.4/8.11.1) with ESMTP id f7NIGxW14790; Thu, 23 Aug 2001 14:16:59 -0400 (EDT) (envelope-from green@green.bikeshed.org) Message-Id: <200108231816.f7NIGxW14790@green.bikeshed.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Matt Dillon Cc: "Brian F. Feldman" , "Andrey A. Chernov" , Brian Somers , Jun Kuriyama , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: Message from Matt Dillon of "Thu, 23 Aug 2001 10:52:33 PDT." <200108231752.f7NHqXE88004@earth.backplane.com> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 23 Aug 2001 14:16:58 -0400 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Matt Dillon wrote: > > :For what it's worth, here's how I configure named on the computers I run. > :Not that it's the best way, but it's definitely very reasonable for a > :default if nothing else. > : > :In rc.conf I use: > :syslogd_flags="-s -l /etc/namedb/var/run/log" # Flags to syslogd (if enabled). > :named_flags="-u daemon -g daemon -t /etc/namedb -c named.conf" > > There is a pre-configured 'bind' user and 'bind' group available, you > should use those. A program isn't running in a sandbox if it shares > its uid with other unrelated programs - like portmap (!) for example. Compromising portmap on my home box would gain absolutely nothing, and portmap doesn't run on the other machines. But generally, yes, I agree it should be in a separate group to itself. I'm just lazy enough not to care when it practically makes no difference to my setups :) > There is a standard place for bind-modifiable files (a.k.a. secondary > files), /etc/namedb/s, and comments in the default named.conf describing > how to set it up. There are comments in the default rc.conf describing > how to run named in a sandbox. > > The only thing I *didn't* do was turn the sandbox on by default and > turn on the creation of /etc/namedb/s in the mtree config. Setting up logging for proper operation is pretty damn important, too. -- 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 Thu Aug 23 11:17:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 34C5537B401; Thu, 23 Aug 2001 11:17:38 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NIHcv27222; Thu, 23 Aug 2001 11:17:38 -0700 (PDT) (envelope-from petef) Message-Id: <200108231817.f7NIHcv27222@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 23 Aug 2001 11:17:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/p5-Telnet-Cisco Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/23 11:17:37 PDT Modified files: net Makefile Added files: net/p5-Telnet-Cisco Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add p5-Telnet-Cisco 1.03 Perl5 module to telnet to Cisco routers PR: 29981 Submitted by: Michael Lyngbol Reviewed by: ade Revision Changes Path 1.598 +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 Aug 23 11:19:36 2001 Delivered-To: cvs-all@freebsd.org Received: from niwun.pair.com (niwun.pair.com [209.68.2.70]) by hub.freebsd.org (Postfix) with SMTP id 9B14837B409 for ; Thu, 23 Aug 2001 11:19:23 -0700 (PDT) (envelope-from silby@silby.com) Received: (qmail 50591 invoked by uid 3193); 23 Aug 2001 18:19:21 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 23 Aug 2001 18:19:21 -0000 Date: Thu, 23 Aug 2001 14:19:21 -0400 (EDT) From: Mike Silbersack X-Sender: To: Brian Somers Cc: Matt Dillon , Chris Dillon , "Andrey A. Chernov" , Jun Kuriyama , , , Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: <200108231756.f7NHu3g82765@hak.lan.Awfulhak.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 23 Aug 2001, Brian Somers wrote: > > As long as people follow the instructions when setting up secondariese, > > the sandbox will 'just work'. I think this is doable and reasonable, > > and I also think that since -stable is going to be with us for a long time > > we should seriously consider MFCing these changes. > > I'd have to object to any such MFC. It'll break peoples name servers > and that's unacceptable in -stable. Ok, how about if a more relaxed approach is taken: 1. Sandboxing becomes default in -current. 2. rc.conf is amended with some fancy shell scripting that mails root and says "You're not using sandboxing! Read this url and figure it out, it will be the default in 4.5" 3. Sandboxing becomes default in 4.5. I'm sure this would annoy some people, but it would be a good step forward in proactive security. The only problem I see is that I'm terrible at shell scripting, someone else would have to do the above. :) Mike "Silby" Silbersack To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 11:20:10 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 439A937B409; Thu, 23 Aug 2001 11:20:01 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NIK1x27674; Thu, 23 Aug 2001 11:20:01 -0700 (PDT) (envelope-from petef) Message-Id: <200108231820.f7NIK1x27674@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 23 Aug 2001 11:20:01 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/23 11:20:01 PDT Modified files: . modules Log: p5-Telnet-Cisco --> ports/net/p5-Telnet-Cisco Revision Changes Path 1.3713 +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 Aug 23 11:22:17 2001 Delivered-To: cvs-all@freebsd.org Received: from freebsd.dk (fw-rl0.freebsd.dk [212.242.86.114]) by hub.freebsd.org (Postfix) with ESMTP id 32DA937B406; Thu, 23 Aug 2001 11:22:07 -0700 (PDT) (envelope-from sos@freebsd.dk) Received: (from sos@localhost) by freebsd.dk (8.11.3/8.11.3) id f7NIMQ668039; Thu, 23 Aug 2001 20:22:26 +0200 (CEST) (envelope-from sos) From: Søren Schmidt Message-Id: <200108231822.f7NIMQ668039@freebsd.dk> Subject: Re: cvs commit: src/sys/nfs nfs_lock.c In-Reply-To: <200108231802.f7NI2TJ22312@freefall.freebsd.org> "from Andrey A. Chernov at Aug 23, 2001 11:02:29 am" To: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 20:22:21 +0200 (CEST) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Reply-To: sos@freebsd.dk X-Mailer: ELM [version 2.4ME+ PL88 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=ISO-8859-1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG It seems Andrey A. Chernov wrote: Excuse me asking, but could we have you do all this testing and bugfixing etc BEFORE you start to commit things ?? We have now had a dozen or so "oops forgot this forgot that" commits all day long, its getting tiresome... Another thing is that this new POSIX behavior breaks some apps, take mpg123 as an example, it doesn't work anymore.... > ache 2001/08/23 11:02:29 PDT > > Modified files: > sys/nfs nfs_lock.c > Log: > Stupid error from my side in prev. commit: || -> && > > Revision Changes Path > 1.12 +2 -2 src/sys/nfs/nfs_lock.c > > -Søren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 11:23: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ECB2337B401; Thu, 23 Aug 2001 11:22:55 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Received: (from wpaul@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NIMtj28036; Thu, 23 Aug 2001 11:22:55 -0700 (PDT) (envelope-from wpaul) Message-Id: <200108231822.f7NIMtj28036@freefall.freebsd.org> From: Bill Paul Date: Thu, 23 Aug 2001 11:22:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci if_ste.c if_stereg.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wpaul 2001/08/23 11:22:55 PDT Modified files: sys/pci if_ste.c if_stereg.h Log: Fix a bug in the ste_setmulti() routine. The NIC has 4 16-bit multicast hash registers, not 2 32-bit ones. This would prevent the multicasr filter from being programmed correctly in some cases. Revision Changes Path 1.28 +10 -6 src/sys/pci/if_ste.c 1.8 +4 -2 src/sys/pci/if_stereg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 11:27:52 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BAFFC37B403; Thu, 23 Aug 2001 11:27:46 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NIRks28689; Thu, 23 Aug 2001 11:27:46 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108231827.f7NIRks28689@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Thu, 23 Aug 2001 11:27:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/drac Makefile pkg-plist ports/mail/drac/files dracd.sh patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/23 11:27:46 PDT Modified files: mail/drac Makefile pkg-plist mail/drac/files patch-aa Added files: mail/drac/files dracd.sh Log: Add dracd.sh startup script Make the rpc.dracd daemon detach upon start Bump PORTREVISION PR: 29474 Submitted by: maintainer Revision Changes Path 1.4 +10 -3 ports/mail/drac/Makefile 1.2 +1 -0 ports/mail/drac/pkg-plist 1.3 +6 -3 ports/mail/drac/files/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 Aug 23 11:35: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B649E37B409; Thu, 23 Aug 2001 11:34:56 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NIYu429347; Thu, 23 Aug 2001 11:34:56 -0700 (PDT) (envelope-from alex) Message-Id: <200108231834.f7NIYu429347@freefall.freebsd.org> From: Alexander Langer Date: Thu, 23 Aug 2001 11:34:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/cooledit Makefile ports/editors/cooledit/files patch-config.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alex 2001/08/23 11:34:56 PDT Modified files: editors/cooledit Makefile Added files: editors/cooledit/files patch-config.h Log: Fix linker errors by undefining HAVE_WCHAR_H (ours seems incomplete) and defining DO_NOT_USE_VGALIB manually in config.h. Works great now. Reported by: bento Revision Changes Path 1.31 +1 -3 ports/editors/cooledit/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 11:39:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 635B037B406; Thu, 23 Aug 2001 11:39:05 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NId5T29657; Thu, 23 Aug 2001 11:39:05 -0700 (PDT) (envelope-from bmah) Message-Id: <200108231839.f7NId5T29657@freefall.freebsd.org> From: "Bruce A. Mah" Date: Thu, 23 Aug 2001 11:39:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2001/08/23 11:39:05 PDT Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Expansions and clarification of some existing release notes items. Submitted by: Alex Kapranoff Revision Changes Path 1.111 +18 -9 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 11:39:51 2001 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 BA7B137B40A; Thu, 23 Aug 2001 11:39:44 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id f7NIdcC00701; Thu, 23 Aug 2001 22:39:38 +0400 (MSD) (envelope-from ache) Date: Thu, 23 Aug 2001 22:39:37 +0400 From: "Andrey A. Chernov" To: =?koi8-r?Q?S=F8ren?= Schmidt Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/nfs nfs_lock.c Message-ID: <20010823223936.A571@nagual.pp.ru> References: <200108231802.f7NI2TJ22312@freefall.freebsd.org> <200108231822.f7NIMQ668039@freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <200108231822.f7NIMQ668039@freebsd.dk> User-Agent: Mutt/1.3.21i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Aug 23, 2001 at 20:22:21 +0200, Søren Schmidt wrote: > It seems Andrey A. Chernov wrote: > > Excuse me asking, but could we have you do all this testing > and bugfixing etc BEFORE you start to commit things ?? > We have now had a dozen or so "oops forgot this forgot that" > commits all day long, its getting tiresome... Only two 'oops' today. All other for implementing just different parts we don't even have before (EOVERFLOW, l_len<0), cosmetique, spelling, etc. I prefer small portions over mega-commits with several features at once. My local tests works, but it is difficult to test full implications of overflow handling, some fixes come from the people feedback (which I don't have when post CFR into arch@) > Another thing is that this new POSIX behavior breaks some > apps, take mpg123 as an example, it doesn't work anymore.... It means that app must be fixed. POSIX is POSIX. Unless there is mistake from my side. Check if your vfs_syscalls.c is v1.201 at least - there was a bug in the code I blindly copy from bde suggestion which breaks lseek SEEK_END badly. -- 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 Thu Aug 23 11:40:54 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2116237B40B; Thu, 23 Aug 2001 11:40:49 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NIen629796; Thu, 23 Aug 2001 11:40:49 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108231840.f7NIen629796@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Thu, 23 Aug 2001 11:40:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/bacon Makefile pkg-message pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/23 11:40:49 PDT Modified files: www/bacon Makefile pkg-message pkg-plist Log: Add NOPORTDOCS Remove www and www/cgi-bin directories properly to not cause error by bento Better display pkg-message PR: 29481 Submitted by: pat@databits.net Revision Changes Path 1.6 +11 -11 ports/www/bacon/Makefile 1.2 +1 -1 ports/www/bacon/pkg-message 1.2 +4 -2 ports/www/bacon/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 Aug 23 11:46:27 2001 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 6B59F37B403; Thu, 23 Aug 2001 11:46:20 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id f7NIkFv00833; Thu, 23 Aug 2001 22:46:15 +0400 (MSD) (envelope-from ache) Date: Thu, 23 Aug 2001 22:46:15 +0400 From: "Andrey A. Chernov" To: =?koi8-r?Q?S=F8ren?= Schmidt Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/nfs nfs_lock.c Message-ID: <20010823224615.B571@nagual.pp.ru> References: <200108231802.f7NI2TJ22312@freefall.freebsd.org> <200108231822.f7NIMQ668039@freebsd.dk> <20010823223936.A571@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010823223936.A571@nagual.pp.ru> User-Agent: Mutt/1.3.21i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Aug 23, 2001 at 22:39:37 +0400, Andrey A. Chernov wrote: > Only two 'oops' today. All other for implementing just different parts we > don't even have before (EOVERFLOW, l_len<0), cosmetique, spelling, etc. I > prefer small portions over mega-commits with several features at once. > My local tests works, but it is difficult to test full implications of > overflow handling, some fixes come from the people feedback (which I don't > have when post CFR into arch@) Moreover, smbfs & nfs portions of adv. locking check was broken even in our old variant, so I forced to deal with bugs which are not mine, because I see that simple adding my new features as elsewhere is not enough for that code. -- 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 Thu Aug 23 12: 0:40 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 86D1C37B40F; Thu, 23 Aug 2001 12:00:35 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NJ0ZL31569; Thu, 23 Aug 2001 12:00:35 -0700 (PDT) (envelope-from ache) Message-Id: <200108231900.f7NJ0ZL31569@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 12:00:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys fcntl.2 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 12:00:35 PDT Modified files: lib/libc/sys fcntl.2 Log: Now we implement l_len<0 per POSIX, describe it. Revision Changes Path 1.28 +5 -4 src/lib/libc/sys/fcntl.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 12:13:57 2001 Delivered-To: cvs-all@freebsd.org Received: from mailgate.originative.co.uk (mailgate.originative.co.uk [62.232.68.68]) by hub.freebsd.org (Postfix) with ESMTP id 1A41437B408; Thu, 23 Aug 2001 12:13:39 -0700 (PDT) (envelope-from paul@freebsd-services.com) Received: from lobster.originative.co.uk (lobster [62.232.68.81]) by mailgate.originative.co.uk (Postfix) with ESMTP id 18EF21D146; Thu, 23 Aug 2001 20:13:35 +0100 (BST) Date: Thu, 23 Aug 2001 20:13:35 +0100 From: Paul Richards To: Matt Dillon , Charlie Root Cc: Brian Somers , "Andrey A. Chernov" , Jun Kuriyama , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf Message-ID: <151700000.998594014@lobster.originative.co.uk> In-Reply-To: <200108231756.f7NHutU88154@earth.backplane.com> References: <200108231632.f7NGWEo55019@aldan.algebra.com> <200108231756.f7NHutU88154@earth.backplane.com> X-Mailer: Mulberry/2.1.0b3 (Linux/x86 Demo) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --On Thursday, August 23, 2001 10:56:55 -0700 Matt Dillon wrote: > > : > :> > > Change pidfile location to /var/run/named/pid. > : > :Yes! I'd also suggest moving the sandbox into /var/db/named ... > > Most of the files in /etc/namedb really belong in /etc/namedb. They > are not generated files. Only the secondary files are generated on > the fly and for the sandbox and chroot options to work that must be > in a subdirectory. I put all my domain files in /var/dns. That's a personal admin choice and isn't really a location I'd advocate standardising on. I'd suggest /var something though, /var/db/dns is a reasonable suggestion. /etc is not the right place for zone files. Zone files are not really part of the system configuration and don't fit conceptually in /etc. From a practical perpsective, I have a fair number of zones and /etc is on a partition that invariably doesn't have enough space. Zone files are something that will take up an indeterminate amount of space and therefore /var is the appropriate filesystem for them, not the root partition, especially the slave files, since they're written at runtime and / is a partition that preferably shouldn't be written to. If we're going to make a serious attempt at setting up bind in a sandbox by default then the location of zone files should be standardised outside of /etc/namedb. Paul Richards FreeBSD Services Ltd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 12:14:58 2001 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 BEBF837B40B; Thu, 23 Aug 2001 12:14:46 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id f7NJEcv01309; Thu, 23 Aug 2001 23:14:38 +0400 (MSD) (envelope-from ache) Date: Thu, 23 Aug 2001 23:14:37 +0400 From: "Andrey A. Chernov" To: =?koi8-r?Q?S=F8ren?= Schmidt Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/nfs nfs_lock.c Message-ID: <20010823231437.A1137@nagual.pp.ru> References: <200108231802.f7NI2TJ22312@freefall.freebsd.org> <200108231822.f7NIMQ668039@freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <200108231822.f7NIMQ668039@freebsd.dk> User-Agent: Mutt/1.3.21i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Aug 23, 2001 at 20:22:21 +0200, Søren Schmidt wrote: > commits all day long, its getting tiresome... If it taken into emotional sense, sorry for disturbance, I do my best to put too many code places in shape. -- 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 Thu Aug 23 12:15:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 52EF837B408; Thu, 23 Aug 2001 12:15:39 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NJFdv35721; Thu, 23 Aug 2001 12:15:39 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108231915.f7NJFdv35721@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Thu, 23 Aug 2001 12:15:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/minimalist Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/23 12:15:39 PDT Modified files: mail/minimalist Makefile distinfo Log: Update to 2.2-2 PR: 29271 Submitted by: maintainer Revision Changes Path 1.8 +3 -2 ports/mail/minimalist/Makefile 1.5 +1 -1 ports/mail/minimalist/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 12:24:49 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E92C37B40D; Thu, 23 Aug 2001 12:24:42 -0700 (PDT) (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NJOgD36379; Thu, 23 Aug 2001 12:24:42 -0700 (PDT) (envelope-from mi) Message-Id: <200108231924.f7NJOgD36379@freefall.freebsd.org> From: Mikhail Teterin Date: Thu, 23 Aug 2001 12:24:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/gd Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mi 2001/08/23 12:24:42 PDT Modified files: graphics/gd Makefile Log: Use USE_FREETYPE2 instead of explicitly depending on freetype-config. Revision Changes Path 1.39 +3 -4 ports/graphics/gd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 12:25:39 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BC5A937B40C; Thu, 23 Aug 2001 12:25:29 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NJPTw36533; Thu, 23 Aug 2001 12:25:29 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108231925.f7NJPTw36533@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Thu, 23 Aug 2001 12:25:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/p5-IO-stringy Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/23 12:25:29 PDT Modified files: devel/p5-IO-stringy Makefile distinfo pkg-plist Log: Update to 2.108 PR: 29933 Submitted by: maintainer Revision Changes Path 1.20 +2 -2 ports/devel/p5-IO-stringy/Makefile 1.10 +1 -1 ports/devel/p5-IO-stringy/distinfo 1.9 +2 -0 ports/devel/p5-IO-stringy/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 Aug 23 12:25:39 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D694437B40B; Thu, 23 Aug 2001 12:25:29 -0700 (PDT) (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NJPTN36541; Thu, 23 Aug 2001 12:25:29 -0700 (PDT) (envelope-from mi) Message-Id: <200108231925.f7NJPTN36541@freefall.freebsd.org> From: Mikhail Teterin Date: Thu, 23 Aug 2001 12:25:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/gdtclft Makefile ports/graphics/gdtclft/files Makefile.bsd X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mi 2001/08/23 12:25:29 PDT Modified files: graphics/gdtclft Makefile graphics/gdtclft/files Makefile.bsd Log: Do not bogusly link with -lttf. gd itself links with -lfreetype only, and we don't care ourselves. Revision Changes Path 1.9 +1 -2 ports/graphics/gdtclft/Makefile 1.5 +1 -1 ports/graphics/gdtclft/files/Makefile.bsd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 12:27: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EEAFE37B40C; Thu, 23 Aug 2001 12:26:57 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NJQvG36813; Thu, 23 Aug 2001 12:26:57 -0700 (PDT) (envelope-from alex) Message-Id: <200108231926.f7NJQvG36813@freefall.freebsd.org> From: Alexander Langer Date: Thu, 23 Aug 2001 12:26:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/ftplocate Makefile pkg-plist ports/ftp/ftplocate/files patch-install.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alex 2001/08/23 12:26:57 PDT Modified files: ftp/ftplocate Makefile pkg-plist Added files: ftp/ftplocate/files patch-install.pl Log: - Depend on apache13 - install files to www/data.default and not deprecated apache/share/htdocs - PERL-patch files in post-patch, not in post-extract - Install to LOCALBASE, not hardcoded /usr/local ^^^^^^^^ ARGH Apache-Dependency reported by: bento Revision Changes Path 1.9 +5 -2 ports/ftp/ftplocate/Makefile 1.4 +35 -35 ports/ftp/ftplocate/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 Aug 23 12:29:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1AA8137B403; Thu, 23 Aug 2001 12:29:36 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NJTaL37185; Thu, 23 Aug 2001 12:29:36 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108231929.f7NJTaL37185@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Thu, 23 Aug 2001 12:29:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/rblcheck/scripts configure.rbl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/23 12:29:36 PDT Modified files: mail/rblcheck/scripts configure.rbl Log: Fix batch building according to bento log. PR: 29997 Submitted by: leeym@utopia.leeym.com Revision Changes Path 1.3 +2 -2 ports/mail/rblcheck/scripts/configure.rbl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 12:31:59 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 47D3237B408; Thu, 23 Aug 2001 12:31:55 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NJVtc37512; Thu, 23 Aug 2001 12:31:55 -0700 (PDT) (envelope-from alex) Message-Id: <200108231931.f7NJVtc37512@freefall.freebsd.org> From: Alexander Langer Date: Thu, 23 Aug 2001 12:31:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/ftplocate Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alex 2001/08/23 12:31:55 PDT Modified files: ftp/ftplocate Makefile Log: Now correctly install into PREFIX, not LOCALBASE. However, this will work only if PREFIX==LOCALBASE, since it checks if Apache's data.default dir is present (which is in LOCALBASE, not PREFIX). (OTOH, it will be in PREFIX if it installs the apache13 dependency, so it is correct) Revision Changes Path 1.10 +2 -2 ports/ftp/ftplocate/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 12:33:17 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A1E7B37B407; Thu, 23 Aug 2001 12:33:13 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NJXDZ37621; Thu, 23 Aug 2001 12:33:13 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108231933.f7NJXDZ37621@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Thu, 23 Aug 2001 12:33:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/gnuinfo Makefile pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/23 12:33:13 PDT Modified files: www/gnuinfo Makefile pkg-descr Log: Update web site PR: 29965 Submitted by: maintainer Revision Changes Path 1.4 +2 -2 ports/www/gnuinfo/Makefile 1.2 +1 -1 ports/www/gnuinfo/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 Aug 23 12:34:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 620AB37B401; Thu, 23 Aug 2001 12:34:27 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NJYRZ37838; Thu, 23 Aug 2001 12:34:27 -0700 (PDT) (envelope-from ache) Message-Id: <200108231934.f7NJYRZ37838@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 12:34:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/mutt-devel Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/23 12:34:27 PDT Modified files: mail/mutt-devel Makefile distinfo Log: Update patchfiles to match new version Submitted by: Udo Schweigert Revision Changes Path 1.122 +2 -2 ports/mail/mutt-devel/Makefile 1.59 +5 -5 ports/mail/mutt-devel/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 12:34:58 2001 Delivered-To: cvs-all@freebsd.org Received: from kawoserv.kawo2.rwth-aachen.de (kawoserv.kawo2.RWTH-Aachen.DE [134.130.180.1]) by hub.freebsd.org (Postfix) with ESMTP id 91A3437B439; Thu, 23 Aug 2001 12:34:41 -0700 (PDT) (envelope-from alex@big.endian.de) Received: from zerogravity.kawo2.rwth-aachen.de (zerogravity.kawo2.rwth-aachen.de [134.130.181.28]) by kawoserv.kawo2.rwth-aachen.de (8.9.3/8.9.3) with ESMTP id VAA26776; Thu, 23 Aug 2001 21:34:40 +0200 Received: by zerogravity.kawo2.rwth-aachen.de (Postfix, from userid 1001) id 857A814B0E; Thu, 23 Aug 2001 21:34:42 +0200 (CEST) Date: Thu, 23 Aug 2001 21:34:41 +0200 From: Alexander Langer To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/editors/cooledit Makefile ports/editors/cooledit/files patch-config.h Message-ID: <20010823213441.A99097@zerogravity.kawo2.rwth-aachen.d> References: <200108231834.f7NIYu429347@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108231834.f7NIYu429347@freefall.freebsd.org>; from alex@FreeBSD.org on Thu, Aug 23, 2001 at 11:34:56AM -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. Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus spake Alexander Langer (alex@FreeBSD.org): > alex 2001/08/23 11:34:56 PDT > > Modified files: > editors/cooledit Makefile > Fix linker errors by undefining HAVE_WCHAR_H (ours seems incomplete) > and defining DO_NOT_USE_VGALIB manually in config.h. > Works great now. Also unmarked BROKEN. Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 12:35:30 2001 Delivered-To: cvs-all@freebsd.org Received: from freebsd.dk (fw-rl0.freebsd.dk [212.242.86.114]) by hub.freebsd.org (Postfix) with ESMTP id 2C2FF37B40D; Thu, 23 Aug 2001 12:35:06 -0700 (PDT) (envelope-from sos@freebsd.dk) Received: (from sos@localhost) by freebsd.dk (8.11.3/8.11.3) id f7NJZL385368; Thu, 23 Aug 2001 21:35:21 +0200 (CEST) (envelope-from sos) From: Søren Schmidt Message-Id: <200108231935.f7NJZL385368@freebsd.dk> Subject: Re: cvs commit: src/sys/nfs nfs_lock.c In-Reply-To: <20010823223936.A571@nagual.pp.ru> "from Andrey A. Chernov at Aug 23, 2001 10:39:37 pm" To: "Andrey A. Chernov" Date: Thu, 23 Aug 2001 21:35:21 +0200 (CEST) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Reply-To: sos@freebsd.dk X-Mailer: ELM [version 2.4ME+ PL88 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=ISO-8859-1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG It seems Andrey A. Chernov wrote: > > Excuse me asking, but could we have you do all this testing > > and bugfixing etc BEFORE you start to commit things ?? > > We have now had a dozen or so "oops forgot this forgot that" > > commits all day long, its getting tiresome... > > Only two 'oops' today. All other for implementing just different parts we > don't even have before (EOVERFLOW, l_len<0), cosmetique, spelling, etc. I > prefer small portions over mega-commits with several features at once. > My local tests works, but it is difficult to test full implications of > overflow handling, some fixes come from the people feedback (which I don't > have when post CFR into arch@) It just gets tiresome to try to debug -current, when one has to follow all these little commits, as they broke other parts of the system that influenced where I was chasing bugs, thats why I would have prefered it being tested maybe as patches first by a larger audience, before committing away in a already troublesome -current. Anyhow, its a matter of taste I guess, I'd prefer one commit saying POSIX compliance added or whatever, let it rest with that.... > > Another thing is that this new POSIX behavior breaks some > > apps, take mpg123 as an example, it doesn't work anymore.... > > It means that app must be fixed. POSIX is POSIX. Unless there is mistake > from my side. Check if your vfs_syscalls.c is v1.201 at least - there was > a bug in the code I blindly copy from bde suggestion which breaks lseek > SEEK_END badly. OK, that solved the mpg123 case, thanks! -Søren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 12:35:50 2001 Delivered-To: cvs-all@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id 3699F37B425; Thu, 23 Aug 2001 12:35:33 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from mailhost.feral.com (mjacob@mailhost.feral.com [192.67.166.1]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f7NJZWI97826; Thu, 23 Aug 2001 12:35:32 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Thu, 23 Aug 2001 12:35:32 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: Andrew Gallatin Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libstand cd9660.c In-Reply-To: <200108231708.f7NH8R917295@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Excellent! On Thu, 23 Aug 2001, Andrew Gallatin wrote: > gallatin 2001/08/23 10:08:26 PDT > > Modified files: > lib/libstand cd9660.c > Log: > Bail if we go beyond the directory size, not just if we hit it. > Certain ISO fs's (like the one for 4.4-RC1 disc1 on alpha) > trigger this, and we end up opening a null file name. This causes us to get > a false match for "kernel.ko" when it does not exist. > > Revision Changes Path > 1.7 +2 -2 src/lib/libstand/cd9660.c > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 12:40:41 2001 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-54.dsl.lsan03.pacbell.net [63.207.60.54]) by hub.freebsd.org (Postfix) with ESMTP id 3811C37B409; Thu, 23 Aug 2001 12:40:34 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id AAD0066E31; Thu, 23 Aug 2001 12:40:33 -0700 (PDT) Date: Thu, 23 Aug 2001 12:40:33 -0700 From: Kris Kennaway To: "Andrey A. Chernov" Cc: Jun Kuriyama , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf Message-ID: <20010823124033.A90942@xor.obsecurity.org> References: <200108231334.f7NDYkK79251@freefall.freebsd.org> <20010823174457.A27360@nagual.pp.ru> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="huq684BweRXVnRxX" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010823174457.A27360@nagual.pp.ru>; from ache@nagual.pp.ru on Thu, Aug 23, 2001 at 05:44:58PM +0400 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --huq684BweRXVnRxX Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Aug 23, 2001 at 05:44:58PM +0400, Andrey A. Chernov wrote: > On Thu, Aug 23, 2001 at 06:34:46 -0700, Jun Kuriyama wrote: > > kuriyama 2001/08/23 06:34:46 PDT > >=20 > > Modified files: > > etc/defaults rc.conf=20 > > etc/mtree BSD.var.dist=20 > > etc/namedb named.conf=20 > > Log: > > Invoke named with privilege of bind:bind. > > Change pidfile location to /var/run/named/pid. >=20 > Is it discussed or I miss something? We already have an option to run it > in bind sandbox, but as non-default option. Some functions not works in > bind sandbox, I don't remember exactly at this moment. With my security officer hat on, I support this change. It is not suitable for everyone because of the interface binding problem, but since named requires configuration before it can be used, slightly changing the nature of that configuration process for some people is a reasonable thing to do providing it's documented. It's well past time we did this, and if there's ever another remote hole in bind8, we'll all thank Kuriyama-san for doing it. Kris --huq684BweRXVnRxX Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE7hVwxWry0BWjoQKURAuY+AJ404klcQLIhwnA4aUHeaBKZO7BOpwCg9Y30 AiSoAFEwUO9Nkt1oNOZbFGY= =VfUc -----END PGP SIGNATURE----- --huq684BweRXVnRxX-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 12:41:59 2001 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-54.dsl.lsan03.pacbell.net [63.207.60.54]) by hub.freebsd.org (Postfix) with ESMTP id 64F8137B401; Thu, 23 Aug 2001 12:41:48 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 01DD866CD2; Thu, 23 Aug 2001 12:41:47 -0700 (PDT) Date: Thu, 23 Aug 2001 12:41:47 -0700 From: Kris Kennaway To: Joseph Scott Cc: Kris Kennaway , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/net Makefile ports/net/nbtscan Makefile distinfo pkg-comment pkg-descr pkg-plist ports/net/nbtscan/files patch-configure patch-configure_in Message-ID: <20010823124147.B90942@xor.obsecurity.org> References: <200108230730.f7N7Ujw08617@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="XOIedfhf+7KOe/yw" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from joseph.scott@owp.csus.edu on Thu, Aug 23, 2001 at 08:22:29AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --XOIedfhf+7KOe/yw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Aug 23, 2001 at 08:22:29AM -0700, Joseph Scott wrote: >=20 > On Thu, 23 Aug 2001, Kris Kennaway wrote: >=20 > # kris 2001/08/23 00:30:45 PDT > #=20 > # Modified files: > # net Makefile=20 > # Added files: > # net/nbtscan Makefile distinfo pkg-comment pkg-descr=20 > # pkg-plist=20 > # net/nbtscan/files patch-configure patch-configure_in=20 > # Log: > # Add nbtscan 1.0.2, a tool for scanning for NetBIOS name information. > # =20 > # Obtained from: OpenBSD >=20 > Do all three of these ports: >=20 > net/nat > net/nbtscan > security/nbaudit >=20 > do the same exact thing then? I thought at one point the older > ones were going to be removed because they were no longer being developed. > If nbtscan is the one we keep, might security be a better place for it > (along with nmap and friends) than net? I don't believe so. The others are tools for trying to guess passwords; this one just queries for name information. Kris --XOIedfhf+7KOe/yw Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE7hVx7Wry0BWjoQKURAlnGAKC9133rUwRUCqZvqPXFCV7AOYwG7ACg6Js2 oddodA8/14tYcw1cGGzjVro= =vsJO -----END PGP SIGNATURE----- --XOIedfhf+7KOe/yw-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 12:42:51 2001 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-54.dsl.lsan03.pacbell.net [63.207.60.54]) by hub.freebsd.org (Postfix) with ESMTP id 03EA537B403; Thu, 23 Aug 2001 12:42:40 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id AAAED66CD2; Thu, 23 Aug 2001 12:42:39 -0700 (PDT) Date: Thu, 23 Aug 2001 12:42:39 -0700 From: Kris Kennaway To: Murray Stokely , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/books/handbook Makefile doc/share/mk doc.docbook.mk doc/share/sgml pgp.dsl Message-ID: <20010823124239.C90942@xor.obsecurity.org> References: <200108230759.f7N7x7n11358@freefall.freebsd.org> <20010823101111.P35352@bohr.physics.purdue.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="vOmOzSkFvhd7u8Ms" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010823101111.P35352@bohr.physics.purdue.edu>; from will@physics.purdue.edu on Thu, Aug 23, 2001 at 10:11:11AM -0500 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --vOmOzSkFvhd7u8Ms Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Aug 23, 2001 at 10:11:11AM -0500, Will Andrews wrote: > On Thu, Aug 23, 2001 at 12:59:07AM -0700, Murray Stokely (murray@FreeBSD.= org) wrote: > > Log: > > Add a new target to the Handbook makefile: 'pgpkeyring'. > > =20 > > This target finds all elements in the > > Handbook and writes out a flat text file suitable for importing into > > PGP or GPG. > > =20 > > This can be used in the web build to automatically update the public > > keyring of FreeBSD developers. >=20 > Very nice. Perhaps a keys.freebsd.org is warranted? :) If someone wants to get the pks port working in server mode this would be quite easy. The last time I tried it, the http server wasn't working. Kris --vOmOzSkFvhd7u8Ms Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE7hVyuWry0BWjoQKURAmq1AJ9RA08U1T4spJTR3yd924dPnBCAowCgzzMS wpS0mcB9IIvUrhP532o7Kck= =1N/g -----END PGP SIGNATURE----- --vOmOzSkFvhd7u8Ms-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 12:50:33 2001 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-54.dsl.lsan03.pacbell.net [63.207.60.54]) by hub.freebsd.org (Postfix) with ESMTP id D1F8137B403; Thu, 23 Aug 2001 12:50:25 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 5CFC266CD2; Thu, 23 Aug 2001 12:50:25 -0700 (PDT) Date: Thu, 23 Aug 2001 12:50:25 -0700 From: Kris Kennaway To: Jordan Hubbard Cc: kris@freebsd.org, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: ports/lang Makefile ports/lang/klone Makefile distinfo pkg-comment pkg-descr pkg-plist ports/lang/klone/files freebsd Message-ID: <20010823125025.B98057@xor.obsecurity.org> References: <200108231130.f7NBUeG50002@freefall.freebsd.org> <20010823101027R.jkh@freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="6c2NcOVqGQ03X4Wi" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010823101027R.jkh@freebsd.org>; from jkh@freebsd.org on Thu, Aug 23, 2001 at 10:10:27AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --6c2NcOVqGQ03X4Wi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Aug 23, 2001 at 10:10:27AM -0700, Jordan Hubbard wrote: > That's pretty cool! I've attempted to use siod (Scheme In One Defun) > to do this very thing a few times, but it was always a real pain. > This looks much more applicable to such things, thanks. I'm glad it sounds useful to someone :-) Kris --6c2NcOVqGQ03X4Wi Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE7hV6AWry0BWjoQKURAjaSAKCtRGW7CBb37JSiDzdU3uIk4vvbQQCeMXQd tFboOgcwRKMNrYDfxtxafek= =QfmR -----END PGP SIGNATURE----- --6c2NcOVqGQ03X4Wi-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 12:52: 3 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1060637B40C; Thu, 23 Aug 2001 12:51:56 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NJpuv39815; Thu, 23 Aug 2001 12:51:56 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108231951.f7NJpuv39815@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Thu, 23 Aug 2001 12:51:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/shorten Makefile distinfo pkg-comment pkg-descr ports/audio/shorten/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/23 12:51:55 PDT Modified files: audio/shorten Makefile distinfo pkg-comment pkg-descr Removed files: audio/shorten/files patch-aa Log: Update to 3.3 PR: 29932 Submitted by: naddy@mips.inka.de Reviewed by: maintainer Revision Changes Path 1.7 +5 -6 ports/audio/shorten/Makefile 1.3 +1 -1 ports/audio/shorten/distinfo 1.2 +1 -1 ports/audio/shorten/pkg-comment 1.3 +15 -4 ports/audio/shorten/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 Aug 23 12:54:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7AE2837B408; Thu, 23 Aug 2001 12:54:11 -0700 (PDT) (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NJsB140153; Thu, 23 Aug 2001 12:54:11 -0700 (PDT) (envelope-from olgeni) Message-Id: <200108231954.f7NJsB140153@freefall.freebsd.org> From: Jimmy Olgeni Date: Thu, 23 Aug 2001 12:54:11 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG olgeni 2001/08/23 12:54:11 PDT Modified files: release/scripts print-cdrom-packages.sh Log: Misc. changes: * Rename cvsup-bin to cvsup (cvsup-bin does not exist anymore). * Add the net/rsync port to the CDROM packages. * Add the misc/compat* ports. Approved by: jkh Revision Changes Path 1.10 +6 -2 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 Thu Aug 23 12:54:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D847C37B40B; Thu, 23 Aug 2001 12:54:11 -0700 (PDT) (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NJsBX40173; Thu, 23 Aug 2001 12:54:11 -0700 (PDT) (envelope-from olgeni) Message-Id: <200108231954.f7NJsBX40173@freefall.freebsd.org> From: Jimmy Olgeni Date: Thu, 23 Aug 2001 12:54:11 -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: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG olgeni 2001/08/23 12:54:11 PDT Modified files: (Branch: RELENG_4) release/scripts print-cdrom-packages.sh Log: Misc. changes: * Rename cvsup-bin to cvsup (cvsup-bin does not exist anymore). * Add the net/rsync port to the CDROM packages. * Add the misc/compat* ports. Approved by: jkh Revision Changes Path 1.1.2.9 +6 -2 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 Thu Aug 23 13: 0: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 50AE437B409; Thu, 23 Aug 2001 13:00:02 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NK02a40798; Thu, 23 Aug 2001 13:00:02 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108232000.f7NK02a40798@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Thu, 23 Aug 2001 13:00:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/upclient Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/23 13:00:02 PDT Modified files: misc/upclient Makefile Log: Mark Broken due to "extended vacation" of project PR: 29945 Submitted by: maintainer Revision Changes Path 1.11 +7 -1 ports/misc/upclient/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 13: 3: 4 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1EBDE37B409; Thu, 23 Aug 2001 13:02:57 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NK2vX41217; Thu, 23 Aug 2001 13:02:57 -0700 (PDT) (envelope-from kris) Message-Id: <200108232002.f7NK2vX41217@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 13:02:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/yorick Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 13:02:57 PDT Modified files: lang/yorick Makefile Log: Remove previous maintainer, who no longer uses FreeBSD. Approved by: old maintainer Revision Changes Path 1.7 +2 -2 ports/lang/yorick/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 13: 4:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CF4C337B405; Thu, 23 Aug 2001 13:04:06 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Received: (from wpaul@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NK46D41387; Thu, 23 Aug 2001 13:04:06 -0700 (PDT) (envelope-from wpaul) Message-Id: <200108232004.f7NK46D41387@freefall.freebsd.org> From: Bill Paul Date: Thu, 23 Aug 2001 13:04:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci if_ste.c if_stereg.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wpaul 2001/08/23 13:04:06 PDT Modified files: (Branch: RELENG_4) sys/pci if_ste.c if_stereg.h Log: MFC: the ST201's multicast hash table is 4 16-bit registers, not 2 32-bit ones. Fix ste_setmulti() to load the hash table correctly. Approved by: jkh Revision Changes Path 1.14.2.4 +10 -6 src/sys/pci/if_ste.c 1.5.2.1 +4 -2 src/sys/pci/if_stereg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 13: 8:58 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DB61E37B403; Thu, 23 Aug 2001 13:08:51 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NK8pt44901; Thu, 23 Aug 2001 13:08:51 -0700 (PDT) (envelope-from knu) Message-Id: <200108232008.f7NK8pt44901@freefall.freebsd.org> From: Akinori MUSHA Date: Thu, 23 Aug 2001 13:08:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/defaults make.conf X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/23 13:08:51 PDT Modified files: (Branch: RELENG_4) etc/defaults make.conf Log: MFC: Add MASTER_SITE_FREEBSD_ORG and update MASTER_SITE_RUBY example. Approved by: jkh Revision Changes Path 1.97.2.58 +3 -2 src/etc/defaults/make.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 13:14:34 2001 Delivered-To: cvs-all@freebsd.org Received: from horsey.gshapiro.net (horsey.gshapiro.net [209.220.147.178]) by hub.freebsd.org (Postfix) with ESMTP id A071537B403; Thu, 23 Aug 2001 13:14:26 -0700 (PDT) (envelope-from gshapiro@gshapiro.net) Received: from horsey.gshapiro.net (gshapiro@localhost [127.0.0.1]) by horsey.gshapiro.net (8.12.0.Beta16/8.12.0.Beta16) with ESMTP id f7NKENjq033236 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Thu, 23 Aug 2001 13:14:23 -0700 (PDT) Received: (from gshapiro@localhost) by horsey.gshapiro.net (8.12.0.Beta16/8.12.0.Beta16) id f7NKEM1n033230; Thu, 23 Aug 2001 13:14:22 -0700 (PDT) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15237.25629.984833.498036@horsey.gshapiro.net> Date: Thu, 23 Aug 2001 13:14:21 -0700 From: Gregory Neil Shapiro To: Matt Dillon Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: <200108231645.f7NGjYe86993@earth.backplane.com> References: <20010823174457.A27360@nagual.pp.ru> <200108231413.f7NEDvg71094@hak.lan.Awfulhak.org> <20010823185515.A28168@nagual.pp.ru> <200108231645.f7NGjYe86993@earth.backplane.com> X-Mailer: VM 6.92 under 21.5 (beta1) "anise" XEmacs Lucid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon> I like the idea of, finally, invoking named in a sandbox. I don't dillon> understand why the pidfile location has to change, though. named dillon> creates its pidfile as root before it setuid's itself. That is true. However, then the pid file can not be updated on an `ndc reload` or a HUP: Aug 20 19:23:22 horsey named[326]: reconfiguring nameserver Aug 20 19:23:22 horsey named[326]: couldn't create pid file '/var/run/named.pid' Then you end up with a stale, unreliable pid file. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 13:21:46 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 59EC337B401; Thu, 23 Aug 2001 13:21:31 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7NKLgv38874; Thu, 23 Aug 2001 21:21:42 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7NKLUg86106; Thu, 23 Aug 2001 21:21:30 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108232021.f7NKLUg86106@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Mike Silbersack Cc: Brian Somers , Matt Dillon , Chris Dillon , "Andrey A. Chernov" , Jun Kuriyama , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, brian@freebsd-services.com, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: Message from Mike Silbersack of "Thu, 23 Aug 2001 14:19:21 EDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 23 Aug 2001 21:21:30 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Thu, 23 Aug 2001, Brian Somers wrote: > > > > As long as people follow the instructions when setting up secondariese, > > > the sandbox will 'just work'. I think this is doable and reasonable, > > > and I also think that since -stable is going to be with us for a long time > > > we should seriously consider MFCing these changes. > > > > I'd have to object to any such MFC. It'll break peoples name servers > > and that's unacceptable in -stable. > > Ok, how about if a more relaxed approach is taken: > > 1. Sandboxing becomes default in -current. I can live with that (although I don't agree with it). -current users should be paying attention and should be smart enough to fix their /etc/rc.conf. People upgrading a major release (4 -> 5) should also be very careful. > 2. rc.conf is amended with some fancy shell scripting that mails root and > says "You're not using sandboxing! Read this url and figure it out, it > will be the default in 4.5" So anybody that wants named to run as root so that it can bind to addresses that are configured after named has started gets to suffer these emails ? Are you saying that *you* know better than the person running a given machine ? I think not. > 3. Sandboxing becomes default in 4.5. I'll say it again. DOING THIS WILL BREAK EXISTING CONFIGURATIONS. We don't do that in -stable. If we did, it wouldn't be stable. > I'm sure this would annoy some people, but it would be a good step forward > in proactive security. Saying that it would annoy people is an understatement. Your regular user will not be pleased when they upgrade their system, run mergemaster (replacing defaults/rc.conf without looking at the diffs) and then reboot, later to find that named has stopped running. Maybe they'll notice before their businesses have lost email and failed to provide services that they're contractually obliged to supply ? > The only problem I see is that I'm terrible at shell scripting, someone > else would have to do the above. :) Good, I'm glad you're not going to do this. > Mike "Silby" Silbersack -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 13:22:12 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C33C837B40D; Thu, 23 Aug 2001 13:21:52 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NKLqU46864; Thu, 23 Aug 2001 13:21:52 -0700 (PDT) (envelope-from kris) Message-Id: <200108232021.f7NKLqU46864@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 13:21:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/cad/felt Makefile ports/games/xbattle Makefile ports/graphics/fli2gif Makefile ports/graphics/gplot Makefile ports/graphics/hobbes-icons-xpm Makefile ports/graphics/plotmtv Makefile ports/graphics/ppm2fli Makefile ports/graphics/urt ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 13:21:52 PDT Modified files: cad/felt Makefile games/xbattle Makefile graphics/fli2gif Makefile graphics/gplot Makefile graphics/hobbes-icons-xpm Makefile graphics/plotmtv Makefile graphics/ppm2fli Makefile graphics/urt Makefile lang/atlast Makefile math/fftpack Makefile math/ss Makefile math/xwpl Makefile misc/xpns Makefile textproc/isearch Makefile x11/libsx Makefile x11-fonts/p5-type1inst Makefile Log: Remove giffunip@asme.org as the maintainer: he no longer has the ability to maintain these ports. Any non-committer who wants to grab one let me know. Approved by: old maintainer Revision Changes Path 1.20 +2 -2 ports/cad/felt/Makefile 1.8 +2 -2 ports/games/xbattle/Makefile 1.6 +2 -2 ports/graphics/fli2gif/Makefile 1.5 +2 -2 ports/graphics/gplot/Makefile 1.12 +2 -2 ports/graphics/hobbes-icons-xpm/Makefile 1.9 +2 -2 ports/graphics/plotmtv/Makefile 1.6 +2 -2 ports/graphics/ppm2fli/Makefile 1.26 +2 -2 ports/graphics/urt/Makefile 1.6 +2 -2 ports/lang/atlast/Makefile 1.18 +2 -2 ports/math/fftpack/Makefile 1.9 +2 -2 ports/math/ss/Makefile 1.6 +2 -2 ports/math/xwpl/Makefile 1.10 +2 -2 ports/misc/xpns/Makefile 1.13 +2 -2 ports/textproc/isearch/Makefile 1.13 +2 -2 ports/x11/libsx/Makefile 1.7 +2 -2 ports/x11-fonts/p5-type1inst/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 13:22:56 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9970B37B401; Thu, 23 Aug 2001 13:22:47 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NKMln47092; Thu, 23 Aug 2001 13:22:47 -0700 (PDT) (envelope-from dd) Message-Id: <200108232022.f7NKMln47092@freefall.freebsd.org> From: Dima Dorfman Date: Thu, 23 Aug 2001 13:22:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen getprogname.3 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/23 13:22:47 PDT Modified files: (Branch: RELENG_4) lib/libc/gen getprogname.3 Log: MFC 1.4: describe new setprogname() behavior. Approved by: jkh Revision Changes Path 1.1.2.4 +4 -2 src/lib/libc/gen/getprogname.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 13:23:59 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8539437B405; Thu, 23 Aug 2001 13:23:56 -0700 (PDT) (envelope-from gallatin@FreeBSD.org) Received: (from gallatin@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NKNuG47309; Thu, 23 Aug 2001 13:23:56 -0700 (PDT) (envelope-from gallatin) Message-Id: <200108232023.f7NKNuG47309@freefall.freebsd.org> From: Andrew Gallatin Date: Thu, 23 Aug 2001 13:23:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libstand cd9660.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gallatin 2001/08/23 13:23:56 PDT Modified files: (Branch: RELENG_4) lib/libstand cd9660.c Log: MFC: rev 1.7 -- don't succeed in opening files that do not exist approved by: jkh Revision Changes Path 1.4.2.3 +2 -2 src/lib/libstand/cd9660.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 13:28:29 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A5BF937B407; Thu, 23 Aug 2001 13:28:24 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NKSOr47883; Thu, 23 Aug 2001 13:28:24 -0700 (PDT) (envelope-from knu) Message-Id: <200108232028.f7NKSOr47883@freefall.freebsd.org> From: Akinori MUSHA Date: Thu, 23 Aug 2001 13:28:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc make.conf X-FreeBSD-CVS-Branch: RELENG_3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/23 13:28:24 PDT Modified files: (Branch: RELENG_3) etc make.conf Log: MFC: MASTER_SITES_* Revision Changes Path 1.73.2.13 +21 -14 src/etc/Attic/make.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 13:29:27 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 932C737B407; Thu, 23 Aug 2001 13:29:15 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7NKTIv38924; Thu, 23 Aug 2001 21:29:18 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7NKT6g86317; Thu, 23 Aug 2001 21:29:06 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108232029.f7NKT6g86317@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Kris Kennaway Cc: "Andrey A. Chernov" , Jun Kuriyama , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: Message from Kris Kennaway of "Thu, 23 Aug 2001 12:40:33 PDT." <20010823124033.A90942@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 23 Aug 2001 21:29:06 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > --huq684BweRXVnRxX > Content-Type: text/plain; charset=us-ascii > Content-Disposition: inline > Content-Transfer-Encoding: quoted-printable > > On Thu, Aug 23, 2001 at 05:44:58PM +0400, Andrey A. Chernov wrote: > > On Thu, Aug 23, 2001 at 06:34:46 -0700, Jun Kuriyama wrote: > > > kuriyama 2001/08/23 06:34:46 PDT > > >=20 > > > Modified files: > > > etc/defaults rc.conf=20 > > > etc/mtree BSD.var.dist=20 > > > etc/namedb named.conf=20 > > > Log: > > > Invoke named with privilege of bind:bind. > > > Change pidfile location to /var/run/named/pid. > >=20 > > Is it discussed or I miss something? We already have an option to run it > > in bind sandbox, but as non-default option. Some functions not works in > > bind sandbox, I don't remember exactly at this moment. > > With my security officer hat on, I support this change. It is not > suitable for everyone because of the interface binding problem, but > since named requires configuration before it can be used, slightly > changing the nature of that configuration process for some people is a > reasonable thing to do providing it's documented. > > It's well past time we did this, and if there's ever another remote > hole in bind8, we'll all thank Kuriyama-san for doing it. Bear in mind that we're also breaking existing configurations that have ``named_enable=YES'' in /etc/rc.conf (they're now running as bind:bind). An entry should be made in UPDATING. > Kris -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 13:32:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 76C3137B408; Thu, 23 Aug 2001 13:32:21 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NKWLB48382; Thu, 23 Aug 2001 13:32:21 -0700 (PDT) (envelope-from jhb) Message-Id: <200108232032.f7NKWLB48382@freefall.freebsd.org> From: John Baldwin Date: Thu, 23 Aug 2001 13:32:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf options src/sys/i386/conf NOTES src/sys/kern kern_shutdown.c src/sys/sys param.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/23 13:32:21 PDT Modified files: sys/conf options sys/i386/conf NOTES sys/kern kern_shutdown.c sys/sys param.h Log: Add a new kernel option RESTARTABLE_PANICS. If this option is present, then one can restart from a panic by resetting the panicstr variable to NULL. This commit conditionalizes the previously committed functionality on this variable. It also removes the __dead2 attribute from the panic() function so that when one continues from a panic() the behavior will be predictable. Revision Changes Path 1.290 +2 -1 src/sys/conf/options 1.945 +11 -1 src/sys/i386/conf/NOTES 1.106 +3 -1 src/sys/kern/kern_shutdown.c 1.101 +5 -1 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 Thu Aug 23 13:35:50 2001 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-54.dsl.lsan03.pacbell.net [63.207.60.54]) by hub.freebsd.org (Postfix) with ESMTP id 2059E37B616; Thu, 23 Aug 2001 13:35:29 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 6701466D1C; Thu, 23 Aug 2001 13:35:28 -0700 (PDT) Date: Thu, 23 Aug 2001 13:35:28 -0700 From: Kris Kennaway To: Brian Somers Cc: Kris Kennaway , "Andrey A. Chernov" , Jun Kuriyama , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf Message-ID: <20010823133528.A129@xor.obsecurity.org> References: <200108232029.f7NKT6g86317@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="UlVJffcvxoiEqYs2" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108232029.f7NKT6g86317@hak.lan.Awfulhak.org>; from brian@Awfulhak.org on Thu, Aug 23, 2001 at 09:29:06PM +0100 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --UlVJffcvxoiEqYs2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Aug 23, 2001 at 09:29:06PM +0100, Brian Somers wrote: > Bear in mind that we're also breaking existing configurations that=20 > have ``named_enable=3DYES'' in /etc/rc.conf (they're now running as=20 > bind:bind). An entry should be made in UPDATING. Yes..that's no worse than other changes we've made in -current. Kris --UlVJffcvxoiEqYs2 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE7hWkPWry0BWjoQKURAqiYAJ99debA0pXF2umz6gDkx33Vyu7a+ACfXmNm wAI67EyU2xDyLxeXrQlrMo8= =I0be -----END PGP SIGNATURE----- --UlVJffcvxoiEqYs2-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 13:43:33 2001 Delivered-To: cvs-all@freebsd.org Received: from foo.osd.bsdi.com (foo.lab.nuxi.com [66.123.5.77]) by hub.freebsd.org (Postfix) with ESMTP id 5308637B407; Thu, 23 Aug 2001 13:43:26 -0700 (PDT) (envelope-from jhb@foo.osd.bsdi.com) Received: (from jhb@localhost) by foo.osd.bsdi.com (8.11.4/8.11.4) id f7NKhNr01477; Thu, 23 Aug 2001 13:43:23 -0700 (PDT) (envelope-from jhb) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200108231708.f7NH8R917295@freefall.freebsd.org> Date: Thu, 23 Aug 2001 13:43:23 -0700 (PDT) From: John Baldwin To: Andrew Gallatin Subject: RE: cvs commit: src/lib/libstand cd9660.c Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 23-Aug-01 Andrew Gallatin wrote: > gallatin 2001/08/23 10:08:26 PDT > > Modified files: > lib/libstand cd9660.c > Log: > Bail if we go beyond the directory size, not just if we hit it. > Certain ISO fs's (like the one for 4.4-RC1 disc1 on alpha) > trigger this, and we end up opening a null file name. This causes us to > get > a false match for "kernel.ko" when it does not exist. Nice catch! I take it this fixed booting on the alpha off of CD? -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.Baldwin.cx/~john/pgpkey.asc "Power Users Use 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 Thu Aug 23 13:51:59 2001 Delivered-To: cvs-all@freebsd.org Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by hub.freebsd.org (Postfix) with ESMTP id 6273037B411; Thu, 23 Aug 2001 13:51:43 -0700 (PDT) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.9.3/8.9.3) with ESMTP id QAA05174; Thu, 23 Aug 2001 16:51:41 -0400 (EDT) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.3/8.9.1) id f7NKpC172789; Thu, 23 Aug 2001 16:51:12 -0400 (EDT) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15237.27840.786919.296480@grasshopper.cs.duke.edu> Date: Thu, 23 Aug 2001 16:51:12 -0400 (EDT) To: John Baldwin Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: RE: cvs commit: src/lib/libstand cd9660.c In-Reply-To: References: <200108231708.f7NH8R917295@freefall.freebsd.org> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG John Baldwin writes: > > On 23-Aug-01 Andrew Gallatin wrote: > > gallatin 2001/08/23 10:08:26 PDT > > > > Modified files: > > lib/libstand cd9660.c > > Log: > > Bail if we go beyond the directory size, not just if we hit it. > > Certain ISO fs's (like the one for 4.4-RC1 disc1 on alpha) > > trigger this, and we end up opening a null file name. This causes us to > > get > > a false match for "kernel.ko" when it does not exist. > > Nice catch! I take it this fixed booting on the alpha off of CD? Thanks.. Yes, I can now boot disc1.iso. :-) Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 14: 0: 0 2001 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 24B6337B403; Thu, 23 Aug 2001 13:59:51 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id f7NKxnv02715; Fri, 24 Aug 2001 00:59:50 +0400 (MSD) (envelope-from ache) Date: Fri, 24 Aug 2001 00:59:49 +0400 From: "Andrey A. Chernov" To: Gregory Neil Shapiro Cc: Matt Dillon , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf Message-ID: <20010824005949.A2676@nagual.pp.ru> References: <20010823174457.A27360@nagual.pp.ru> <200108231413.f7NEDvg71094@hak.lan.Awfulhak.org> <20010823185515.A28168@nagual.pp.ru> <200108231645.f7NGjYe86993@earth.backplane.com> <15237.25629.984833.498036@horsey.gshapiro.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <15237.25629.984833.498036@horsey.gshapiro.net> User-Agent: Mutt/1.3.21i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Aug 23, 2001 at 13:14:21 -0700, Gregory Neil Shapiro wrote: > That is true. However, then the pid file can not be updated on an `ndc > reload` or a HUP: > > Aug 20 19:23:22 horsey named[326]: reconfiguring nameserver > Aug 20 19:23:22 horsey named[326]: couldn't create pid file '/var/run/named.pid' > > Then you end up with a stale, unreliable pid file. Yes, it is another reason. If it not will be fixed in short time, including ppp-linkup script for dialup users, better back it out until patches that fully address all problems will come. -- 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 Thu Aug 23 14: 0:56 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0533E37B409; Thu, 23 Aug 2001 14:00:51 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NL0o551209; Thu, 23 Aug 2001 14:00:50 -0700 (PDT) (envelope-from kris) Message-Id: <200108232100.f7NL0o551209@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 14:00:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/security security.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 14:00:50 PDT Modified files: en/security security.sgml Log: Add 01:55 and 01:56 Revision Changes Path 1.66 +4 -2 www/en/security/security.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 14: 4:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CAEB637B40B; Thu, 23 Aug 2001 14:03:59 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NL3xI51532; Thu, 23 Aug 2001 14:03:59 -0700 (PDT) (envelope-from kris) Message-Id: <200108232103.f7NL3xI51532@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 23 Aug 2001 14:03:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/security security.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/23 14:03:59 PDT Modified files: en/security security.sgml Log: Note where 4.3-RELEASE was released, so people know how far back they need to look. Revision Changes Path 1.67 +5 -2 www/en/security/security.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 14: 5:53 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A1AE937B40A; Thu, 23 Aug 2001 14:05:47 -0700 (PDT) (envelope-from lioux@FreeBSD.org) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NL5lI54697; Thu, 23 Aug 2001 14:05:47 -0700 (PDT) (envelope-from lioux) Message-Id: <200108232105.f7NL5lI54697@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Thu, 23 Aug 2001 14:05:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/ipcheck Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG lioux 2001/08/23 14:05:47 PDT Modified files: net/ipcheck Makefile distinfo Log: Update to 1.16 Submitted by: kris Revision Changes Path 1.10 +2 -2 ports/net/ipcheck/Makefile 1.7 +1 -1 ports/net/ipcheck/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 14: 9:32 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 72A5637B407; Thu, 23 Aug 2001 14:09:26 -0700 (PDT) (envelope-from lioux@FreeBSD.org) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NL9Qu55099; Thu, 23 Aug 2001 14:09:26 -0700 (PDT) (envelope-from lioux) Message-Id: <200108232109.f7NL9Qu55099@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Thu, 23 Aug 2001 14:09:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/rxvt Makefile ports/x11/rxvt/files patch-ad X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG lioux 2001/08/23 14:09:26 PDT Modified files: x11/rxvt Makefile Added files: x11/rxvt/files patch-ad Log: Add a buffer overflow fix Submitted by: kris Obtained from: OpenBSD Revision Changes Path 1.49 +2 -1 ports/x11/rxvt/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 14:12:45 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 2BCC237B408; Thu, 23 Aug 2001 14:12:25 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7NLCbv39194; Thu, 23 Aug 2001 22:12:37 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7NLCPg87549; Thu, 23 Aug 2001 22:12:25 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108232112.f7NLCPg87549@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: "Andrey A. Chernov" Cc: Gregory Neil Shapiro , Matt Dillon , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: Message from "Andrey A. Chernov" of "Fri, 24 Aug 2001 00:59:49 +0400." <20010824005949.A2676@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 23 Aug 2001 22:12:25 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Thu, Aug 23, 2001 at 13:14:21 -0700, Gregory Neil Shapiro wrote: > > That is true. However, then the pid file can not be updated on an `ndc > > reload` or a HUP: > > > > Aug 20 19:23:22 horsey named[326]: reconfiguring nameserver > > Aug 20 19:23:22 horsey named[326]: couldn't create pid file '/var/run/named.pid' > > > > Then you end up with a stale, unreliable pid file. > > Yes, it is another reason. If it not will be fixed in short time, > including ppp-linkup script for dialup users, better back it out until > patches that fully address all problems will come. ppp.linkup cannot do anything if it's run by a non-root user. It can't be ``fixed''. > -- > Andrey A. Chernov > http://ache.pp.ru/ -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 14:13:39 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 166CF37B406; Thu, 23 Aug 2001 14:13:32 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NLDWC55639; Thu, 23 Aug 2001 14:13:32 -0700 (PDT) (envelope-from dd) Message-Id: <200108232113.f7NLDWC55639@freefall.freebsd.org> From: Dima Dorfman Date: Thu, 23 Aug 2001 14:13:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/lex lex.1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/23 14:13:32 PDT Modified files: usr.bin/lex lex.1 Log: ``recognized -> recognize'' where appropriate. Obtained from: OpenBSD Revision Changes Path 1.14 +3 -3 src/usr.bin/lex/lex.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 14:14:49 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4711037B40D; Thu, 23 Aug 2001 14:14:42 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NLEgr55782; Thu, 23 Aug 2001 14:14:42 -0700 (PDT) (envelope-from bmah) Message-Id: <200108232114.f7NLEgr55782@freefall.freebsd.org> From: "Bruce A. Mah" Date: Thu, 23 Aug 2001 14:14:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2001/08/23 14:14:42 PDT Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release note: SA-01:56. Fix entry on SA-01:55, which was mislabeled as SA-01:54. Also fix a typo (I still can't spell "compatibility" correctly, it seems). Revision Changes Path 1.112 +7 -3 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 14:17:35 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5677B37B403; Thu, 23 Aug 2001 14:17:29 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NLHTf56128; Thu, 23 Aug 2001 14:17:29 -0700 (PDT) (envelope-from dd) Message-Id: <200108232117.f7NLHTf56128@freefall.freebsd.org> From: Dima Dorfman Date: Thu, 23 Aug 2001 14:17:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 make.conf.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/23 14:17:29 PDT Modified files: share/man/man5 make.conf.5 Log: The name of the kernel really isn't KERNEL now. Submitted by: setantae@submonkey.net Revision Changes Path 1.30 +2 -2 src/share/man/man5/make.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 Aug 23 14:18:42 2001 Delivered-To: cvs-all@freebsd.org Received: from niwun.pair.com (niwun.pair.com [209.68.2.70]) by hub.freebsd.org (Postfix) with SMTP id 90F1037B40A for ; Thu, 23 Aug 2001 14:18:33 -0700 (PDT) (envelope-from silby@silby.com) Received: (qmail 79780 invoked by uid 3193); 23 Aug 2001 21:18:32 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 23 Aug 2001 21:18:32 -0000 Date: Thu, 23 Aug 2001 17:18:32 -0400 (EDT) From: Mike Silbersack X-Sender: To: Brian Somers Cc: Matt Dillon , Chris Dillon , "Andrey A. Chernov" , Jun Kuriyama , , , Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: <200108232021.f7NKLUg86106@hak.lan.Awfulhak.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 23 Aug 2001, Brian Somers wrote: > > 2. rc.conf is amended with some fancy shell scripting that mails root and > > says "You're not using sandboxing! Read this url and figure it out, it > > will be the default in 4.5" > > So anybody that wants named to run as root so that it can bind to > addresses that are configured after named has started gets to suffer > these emails ? > > Are you saying that *you* know better than the person running a given > machine ? I think not. I think that anyone running BIND as root deserves to know the risk they're putting themselves in. Look at BIND 8's history and tell me that it's a completely safe application to run as root. When protection against being rooted is this easy, people should be using it. The case of running a dns server on dynamic interfaces is irrelevant. Such a server would be useless anyway, since nobody could find it. Maybe there's one or two people who have some really weird situation which requires such a setup, but I'm sure that's a really small amount of people. Clearly it's not going to be easy to set the defaults to use bind:bind without breaking some configurations. However, this is something that _should_ be done. This would be a much more productive conversation if you could put forward some ideas on how to make the transition as painless as possible. Mike "Silby" Silbersack To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 14:22:42 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F06137B40B; Thu, 23 Aug 2001 14:22:30 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NLMUA56917; Thu, 23 Aug 2001 14:22:30 -0700 (PDT) (envelope-from bmah) Message-Id: <200108232122.f7NLMUA56917@freefall.freebsd.org> From: "Bruce A. Mah" Date: Thu, 23 Aug 2001 14:22:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2001/08/23 14:22:30 PDT Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release notes: SA-01:56, net.inet.ip.check_interface. Correct SA-01:55 item mislabeled as SA-01:54. Revision Changes Path 1.22.2.69 +11 -2 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 14:23:12 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A8D1637B406; Thu, 23 Aug 2001 14:23:03 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NLN3t57018; Thu, 23 Aug 2001 14:23:03 -0700 (PDT) (envelope-from dd) Message-Id: <200108232123.f7NLN3t57018@freefall.freebsd.org> From: Dima Dorfman Date: Thu, 23 Aug 2001 14:23:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/fdp-primer/doc-build chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/23 14:23:03 PDT Modified files: en_US.ISO8859-1/books/fdp-primer/doc-build chapter.sgml Log: Nuke a paragraph that doesn't make sene. Revision Changes Path 1.6 +1 -4 doc/en_US.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 14:24: 1 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A0A2937B401; Thu, 23 Aug 2001 14:23:50 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NLNoT57173; Thu, 23 Aug 2001 14:23:50 -0700 (PDT) (envelope-from bmah) Message-Id: <200108232123.f7NLNoT57173@freefall.freebsd.org> From: "Bruce A. Mah" Date: Thu, 23 Aug 2001 14:23:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2001/08/23 14:23:50 PDT Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/errata article.sgml Log: Add SA-01:56, correct mislabeling of SA-01:55 as SA-01:54, fix up phrasing of some other security-advisory-related items to be more consistent. Approved by: re (implicitly) Revision Changes Path 1.1.2.16 +11 -7 src/release/doc/en_US.ISO8859-1/errata/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 14:24:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1C53437B40C; Thu, 23 Aug 2001 14:24:07 -0700 (PDT) (envelope-from lioux@FreeBSD.org) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NLO7X57256; Thu, 23 Aug 2001 14:24:07 -0700 (PDT) (envelope-from lioux) Message-Id: <200108232124.f7NLO7X57256@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Thu, 23 Aug 2001 14:24:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/rxvt-devel Makefile ports/x11/rxvt-devel/files patch-src::command.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG lioux 2001/08/23 14:24:07 PDT Modified files: x11/rxvt-devel Makefile Added files: x11/rxvt-devel/files patch-src::command.c Log: o Add a buffer overflow patch in sync with rxvt port Makefile rev 1.49 o Bump PORTREVISION Obtained from: OpenBSD Revision Changes Path 1.51 +2 -1 ports/x11/rxvt-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 Aug 23 14:24:35 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A22937B409; Thu, 23 Aug 2001 14:24:30 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NLOUG57331; Thu, 23 Aug 2001 14:24:30 -0700 (PDT) (envelope-from bmah) Message-Id: <200108232124.f7NLOUG57331@freefall.freebsd.org> From: "Bruce A. Mah" Date: Thu, 23 Aug 2001 14:24:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/4.3R errata.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2001/08/23 14:24:30 PDT Modified files: en/releases/4.3R errata.sgml Log: Add SA-01:56, correct mislabeling of SA-01:55 as SA-01:54, fix up phrasing of some other security-advisory-related items to be more consistent. Revision Changes Path 1.14 +15 -12 www/en/releases/4.3R/errata.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 14:36:23 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C56637B401; Thu, 23 Aug 2001 14:36:18 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NLaIp58866; Thu, 23 Aug 2001 14:36:18 -0700 (PDT) (envelope-from dd) Message-Id: <200108232136.f7NLaIp58866@freefall.freebsd.org> From: Dima Dorfman Date: Thu, 23 Aug 2001 14:36:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 adv.4 adw.4 aha.4 ahb.4 bt.4 fdc.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/23 14:36:18 PDT Modified files: share/man/man4 adv.4 adw.4 aha.4 ahb.4 bt.4 fdc.4 Log: Spelling police: withough -> without Submitted by: Joseph Mallett Revision Changes Path 1.15 +2 -2 src/share/man/man4/adv.4 1.13 +2 -2 src/share/man/man4/adw.4 1.16 +2 -2 src/share/man/man4/aha.4 1.17 +2 -2 src/share/man/man4/ahb.4 1.17 +2 -2 src/share/man/man4/bt.4 1.28 +2 -2 src/share/man/man4/fdc.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 14:46:20 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 7F9E837B40A; Thu, 23 Aug 2001 14:46:06 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7NLkDv39444; Thu, 23 Aug 2001 22:46:13 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7NLk1g88405; Thu, 23 Aug 2001 22:46:01 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108232146.f7NLk1g88405@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Mike Silbersack Cc: Brian Somers , Matt Dillon , Chris Dillon , "Andrey A. Chernov" , Jun Kuriyama , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, brian@freebsd-services.com, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: Message from Mike Silbersack of "Thu, 23 Aug 2001 17:18:32 EDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 23 Aug 2001 22:46:00 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > On Thu, 23 Aug 2001, Brian Somers wrote: > > > > 2. rc.conf is amended with some fancy shell scripting that mails root and > > > says "You're not using sandboxing! Read this url and figure it out, it > > > will be the default in 4.5" > > > > So anybody that wants named to run as root so that it can bind to > > addresses that are configured after named has started gets to suffer > > these emails ? > > > > Are you saying that *you* know better than the person running a given > > machine ? I think not. > > I think that anyone running BIND as root deserves to know the risk they're > putting themselves in. Look at BIND 8's history and tell me that it's a > completely safe application to run as root. When protection against being > rooted is this easy, people should be using it. And how do you know that person is running bind8 ? Are you going to interrogate $named_program now too ? > The case of running a dns server on dynamic interfaces is irrelevant. > Such a server would be useless anyway, since nobody could find it. Maybe > there's one or two people who have some really weird situation which > requires such a setup, but I'm sure that's a really small amount of > people. I'd say this is fairly common: query-source address * port 53; Running a ppp server and offering the local interface address as a nameserver may be common too - I don't know and neither do you. But this is a dumb strawman. You should not be trying to dictate policy over configurations you know nothing about. Sending email to people saying that they should be running named as non-root is just ludicrous. > Clearly it's not going to be easy to set the defaults to use bind:bind > without breaking some configurations. However, this is something that > _should_ be done. This (damage) has already been done in -current. I am saying that doing this in -stable -- breaking peoples existing configurations -- is an exercise that will make the FreeBSD project look like idiots, and I won't subscribe to that idea. Why are people so eager to shove these changes down the throats of the unsuspecting masses running -stable ? Is everyone trying to scare away our user base ? > This would be a much more productive conversation if > you could put forward some ideas on how to make the transition as painless > as possible. If I subscribed to the idea, I would suggest a way forward. The painless option is to back out what's been done so far and for people to think about and test what they're going to do before doing it. > Mike "Silby" Silbersack -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 14:47: 9 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1CFB937B40A; Thu, 23 Aug 2001 14:47:00 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NLl0x60078; Thu, 23 Aug 2001 14:47:00 -0700 (PDT) (envelope-from asmodai) Message-Id: <200108232147.f7NLl0x60078@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Thu, 23 Aug 2001 14:47:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/bind - Imported sources X-FreeBSD-CVS-Branch: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG asmodai 2001/08/23 14:47:00 PDT src/contrib/bind - Imported sources Update of /home/ncvs/src/contrib/bind In directory freefall.freebsd.org:/d/home/asmodai/bind/8.2.5 Log Message: String format patch Status: Vendor Tag: ISC Release Tags: v8_2_5_string_patch U src/contrib/bind/bin/host/host.c U src/contrib/bind/bin/named/ns_ixfr.c U src/contrib/bind/bin/named/ns_maint.c U src/contrib/bind/bin/named/ns_req.c U src/contrib/bind/bin/named/ns_stats.c U src/contrib/bind/lib/dst/dst_api.c 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 Aug 23 14:51:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 84BB837B40A; Thu, 23 Aug 2001 14:51:16 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NLpGD60649; Thu, 23 Aug 2001 14:51:16 -0700 (PDT) (envelope-from dd) Message-Id: <200108232151.f7NLpGD60649@freefall.freebsd.org> From: Dima Dorfman Date: Thu, 23 Aug 2001 14:51:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 aac.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/23 14:51:16 PDT Modified files: share/man/man4 aac.4 Log: Capitalize Linux where appropriate. Submitted by: Joseph Mallett Revision Changes Path 1.13 +2 -2 src/share/man/man4/aac.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 14:52:10 2001 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 04A7737B409; Thu, 23 Aug 2001 14:52: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.11.3/8.11.3) with ESMTP id f7NLq2q50040; Thu, 23 Aug 2001 15:52: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.11.3/8.11.4) with ESMTP id f7NLq2W88752; Thu, 23 Aug 2001 15:52:02 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200108232152.f7NLq2W88752@harmony.village.org> To: Giorgos Keramidas Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf Cc: Jun Kuriyama , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Thu, 23 Aug 2001 20:25:30 +0300." <20010823202530.A2280@hades.hell.gr> References: <20010823202530.A2280@hades.hell.gr> <20010823174457.A27360@nagual.pp.ru> <200108231413.f7NEDvg71094@hak.lan.Awfulhak.org> <20010823185515.A28168@nagual.pp.ru> <7my9oax1f0.wl@waterblue.imgsrc.co.jp> Date: Thu, 23 Aug 2001 15:52:02 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <20010823202530.A2280@hades.hell.gr> Giorgos Keramidas writes: : I don't agree to running named in a sandbox by default, but can we, at : least, have a note in UPDATING? Please? Can someone write something? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 14:52:48 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 23C6E37B403; Thu, 23 Aug 2001 14:52:39 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NLqd760843; Thu, 23 Aug 2001 14:52:39 -0700 (PDT) (envelope-from dd) Message-Id: <200108232152.f7NLqd760843@freefall.freebsd.org> From: Dima Dorfman Date: Thu, 23 Aug 2001 14:52:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 aac.4 amr.4 mlx.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/23 14:52:39 PDT Modified files: share/man/man4 aac.4 amr.4 mlx.4 Log: Spelling police: relabelled -> relabeled PR: 29985 Submitted by: {aac,amr,mlx}.4 Revision Changes Path 1.14 +2 -2 src/share/man/man4/aac.4 1.14 +2 -2 src/share/man/man4/amr.4 1.12 +2 -2 src/share/man/man4/mlx.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 14:54:50 2001 Delivered-To: cvs-all@freebsd.org Received: from bazooka.unixfreak.org (bazooka.unixfreak.org [63.198.170.138]) by hub.freebsd.org (Postfix) with ESMTP id A9A8C37B40F; Thu, 23 Aug 2001 14:54:40 -0700 (PDT) (envelope-from dima@unixfreak.org) Received: by bazooka.unixfreak.org (Postfix, from userid 1000) id 17D9A3E31; Thu, 23 Aug 2001 14:54:40 -0700 (PDT) Received: from bazooka.unixfreak.org (localhost [127.0.0.1]) by bazooka.unixfreak.org (Postfix) with ESMTP id 0E5063C12B; Thu, 23 Aug 2001 14:54:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man4 aac.4 amr.4 mlx.4 In-Reply-To: <200108232152.f7NLqd760843@freefall.freebsd.org>; from dd@FreeBSD.org on "Thu, 23 Aug 2001 14:52:39 -0700 (PDT)" Date: Thu, 23 Aug 2001 14:54:35 -0700 From: Dima Dorfman Message-Id: <20010823215440.17D9A3E31@bazooka.unixfreak.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dima Dorfman writes: > dd 2001/08/23 14:52:39 PDT > > Modified files: > share/man/man4 aac.4 amr.4 mlx.4 > Log: > Spelling police: relabelled -> relabeled > > PR: 29985 > Submitted by: {aac,amr,mlx}.4 Oops, this should have said: Submitted by: Joseph Mallett Sorry about that :-/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 14:58:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B53E637B406; Thu, 23 Aug 2001 14:58:38 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NLwcP61431; Thu, 23 Aug 2001 14:58:38 -0700 (PDT) (envelope-from dd) Message-Id: <200108232158.f7NLwcP61431@freefall.freebsd.org> From: Dima Dorfman Date: Thu, 23 Aug 2001 14:58:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 adv.4 adw.4 ahb.4 bt.4 netgraph.4 ng_tty.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/23 14:58:38 PDT Modified files: share/man/man4 adv.4 adw.4 ahb.4 bt.4 netgraph.4 ng_tty.4 Log: Spelling police: queueing -> queuing PR: 29985 Submitted by: Joseph Mallett Revision Changes Path 1.16 +2 -2 src/share/man/man4/adv.4 1.14 +3 -3 src/share/man/man4/adw.4 1.18 +2 -2 src/share/man/man4/ahb.4 1.18 +3 -3 src/share/man/man4/bt.4 1.36 +3 -3 src/share/man/man4/netgraph.4 1.12 +2 -2 src/share/man/man4/ng_tty.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 15: 6:28 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9FA4437B409; Thu, 23 Aug 2001 15:06:19 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NM6J665092; Thu, 23 Aug 2001 15:06:19 -0700 (PDT) (envelope-from dd) Message-Id: <200108232206.f7NM6J665092@freefall.freebsd.org> From: Dima Dorfman Date: Thu, 23 Aug 2001 15:06:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/faq book.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/23 15:06:18 PDT Modified files: en_US.ISO8859-1/books/faq book.sgml Log: Periods generally go outside of . PR: 29912 Submitted by: Felix-Antoine Paradis Revision Changes Path 1.257 +10 -10 doc/en_US.ISO8859-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 Aug 23 15:18:13 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 9EC7D37B40B; Thu, 23 Aug 2001 15:18:06 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7NMIJv39678; Thu, 23 Aug 2001 23:18:19 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.4/8.11.4) with ESMTP id f7NMI7g03203; Thu, 23 Aug 2001 23:18:07 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108232218.f7NMI7g03203@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Warner Losh Cc: Giorgos Keramidas , Jun Kuriyama , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: Message from Warner Losh of "Thu, 23 Aug 2001 15:52:02 MDT." <200108232152.f7NLq2W88752@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 23 Aug 2001 23:18:07 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > In message <20010823202530.A2280@hades.hell.gr> Giorgos Keramidas writes: > : I don't agree to running named in a sandbox by default, but can we, at > : least, have a note in UPDATING? Please? > > Can someone write something? 20010823: named now runs as user bind and group bind rather than as root. If named_enable is set to YES in /etc/rc.conf, ensure that user bind is available in /etc/passwd (using vipw(8)) and that group bind is available in /etc/group. Also make sure that user or group bind has read (and not write) permission for your name server configuration and that it has read and write permission for your slave zone files and directory. If you wish to continue to run named as root (a less secure alternative), add a line to /etc/rc.conf saying named_flags= > Warner -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 15:19:12 2001 Delivered-To: cvs-all@freebsd.org Received: from foo.osd.bsdi.com (foo.lab.nuxi.com [66.123.5.77]) by hub.freebsd.org (Postfix) with ESMTP id B742E37B40E; Thu, 23 Aug 2001 15:19:02 -0700 (PDT) (envelope-from jhb@foo.osd.bsdi.com) Received: (from jhb@localhost) by foo.osd.bsdi.com (8.11.4/8.11.4) id f7NMIR102666; Thu, 23 Aug 2001 15:18:27 -0700 (PDT) (envelope-from jhb) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200108232146.f7NLk1g88405@hak.lan.Awfulhak.org> Date: Thu, 23 Aug 2001 15:18:26 -0700 (PDT) From: John Baldwin To: Brian Somers Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.d Cc: brian@freebsd-services.com, cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, Jun Kuriyama , "Andrey A. Chernov" , Chris Dillon , Matt Dillon , Mike Silbersack Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 23-Aug-01 Brian Somers wrote: >> Clearly it's not going to be easy to set the defaults to use bind:bind >> without breaking some configurations. However, this is something that >> _should_ be done. > > This (damage) has already been done in -current. I am saying that doing > this in -stable -- breaking peoples existing configurations -- is an > exercise that will make the FreeBSD project look like idiots, and I > won't subscribe to that idea. > > Why are people so eager to shove these changes down the throats of > the unsuspecting masses running -stable ? Is everyone trying to > scare away our user base ? This is the core of the problem. You can change things like this in -current fine. People expect changes when jumping branches. However, 4.x is rather established at this point, so breaking things in 4.x is something to be avoided. -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.Baldwin.cx/~john/pgpkey.asc "Power Users Use 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 Thu Aug 23 15:20: 7 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 337D137B40F; Thu, 23 Aug 2001 15:19:59 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NMJx566297; Thu, 23 Aug 2001 15:19:59 -0700 (PDT) (envelope-from dd) Message-Id: <200108232219.f7NMJx566297@freefall.freebsd.org> From: Dima Dorfman Date: Thu, 23 Aug 2001 15:19:57 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/23 15:19:53 PDT Modified files: etc MAKEDEV Log: $units is the canonical name for the number of units to create; use it. PR: 29971 Submitted by: Joseph Mallett Revision Changes Path 1.306 +11 -11 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 Thu Aug 23 15:22: 0 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 37EC237B405; Thu, 23 Aug 2001 15:21:57 -0700 (PDT) (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NMLv466607; Thu, 23 Aug 2001 15:21:57 -0700 (PDT) (envelope-from ume) Message-Id: <200108232221.f7NMLv466607@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Thu, 23 Aug 2001 15:21:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/gkrellm Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ume 2001/08/23 15:21:57 PDT Modified files: sysutils/gkrellm Makefile distinfo pkg-plist Log: Updated to 1.2.2. Rushed by: olgeni :-) Revision Changes Path 1.35 +2 -2 ports/sysutils/gkrellm/Makefile 1.23 +1 -1 ports/sysutils/gkrellm/distinfo 1.11 +1 -0 ports/sysutils/gkrellm/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 Aug 23 15:24:16 2001 Delivered-To: cvs-all@freebsd.org Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by hub.freebsd.org (Postfix) with ESMTP id 320CA37B405; Thu, 23 Aug 2001 15:24:02 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from hades.hell.gr (patr530-b075.otenet.gr [195.167.121.203]) by mailsrv.otenet.gr (8.11.5/8.11.5) with ESMTP id f7NMNvT28688; Fri, 24 Aug 2001 01:23:57 +0300 (EEST) Received: (from charon@localhost) by hades.hell.gr (8.11.4/8.11.4) id f7NMOHd51182; Fri, 24 Aug 2001 01:24:17 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Fri, 24 Aug 2001 01:24:16 +0300 From: Giorgos Keramidas To: Warner Losh Cc: Jun Kuriyama , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf Message-ID: <20010824012416.A51112@hades.hell.gr> References: <20010823202530.A2280@hades.hell.gr> <20010823174457.A27360@nagual.pp.ru> <200108231413.f7NEDvg71094@hak.lan.Awfulhak.org> <20010823185515.A28168@nagual.pp.ru> <7my9oax1f0.wl@waterblue.imgsrc.co.jp> <20010823202530.A2280@hades.hell.gr> <200108232152.f7NLq2W88752@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108232152.f7NLq2W88752@harmony.village.org>; from imp@harmony.village.org on Thu, Aug 23, 2001 at 03:52:02PM -0600 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG From: Warner Losh Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf Date: Thu, Aug 23, 2001 at 03:52:02PM -0600 > In message <20010823202530.A2280@hades.hell.gr> Giorgos Keramidas writes: > : I don't agree to running named in a sandbox by default, but can we, at > : least, have a note in UPDATING? Please? > > Can someone write something? > > Warner You mean something like? =========================================================================== 20010824: BIND is now by default run in a sandbox with named_flags defaulting to "-u bind -g bind" in /etc/defaults/rc.conf. This might prevent named from listening to interfaces that are created after named starts (such as a dialup interface), so if you find that this causes problems to you, please make sure that you explicitly set named_flags to "" in your /etc/rc.conf. =========================================================================== -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 15:31:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B6AF737B40C; Thu, 23 Aug 2001 15:31:13 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NMVD767654; Thu, 23 Aug 2001 15:31:13 -0700 (PDT) (envelope-from dd) Message-Id: <200108232231.f7NMVD767654@freefall.freebsd.org> From: Dima Dorfman Date: Thu, 23 Aug 2001 15:31:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/stty key.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/23 15:31:13 PDT Modified files: bin/stty key.c Log: Implement `stty ek` as documented. PR: 24063 Submitted by: Seth Kingsley Revision Changes Path 1.15 +13 -1 src/bin/stty/key.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 15:34:36 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6AB3537B40B; Thu, 23 Aug 2001 15:34:30 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NMYUn68175; Thu, 23 Aug 2001 15:34:30 -0700 (PDT) (envelope-from dd) Message-Id: <200108232234.f7NMYUn68175@freefall.freebsd.org> From: Dima Dorfman Date: Thu, 23 Aug 2001 15:34:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet tcp_input.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/23 15:34:29 PDT Modified files: sys/netinet tcp_input.c Log: Correct a typo in a comment: FIN_WAIT2 -> FIN_WAIT_2 PR: 29970 Submitted by: Joseph Mallett Revision Changes Path 1.138 +2 -2 src/sys/netinet/tcp_input.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 15:36:52 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A664437B411; Thu, 23 Aug 2001 15:36:49 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Received: (from jmz@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NMant68515; Thu, 23 Aug 2001 15:36:49 -0700 (PDT) (envelope-from jmz) Message-Id: <200108232236.f7NMant68515@freefall.freebsd.org> From: Jean-Marc Zucconi Date: Thu, 23 Aug 2001 15:36:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/XFree86-4 Makefile ports/x11/XFree86-4/files patch-mouse X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jmz 2001/08/23 15:36:49 PDT Modified files: x11/XFree86-4 Makefile Added files: x11/XFree86-4/files patch-mouse Log: Fix a race condition in mouse device. PR: ports/29982 Submitted by: Michael Robinson Revision Changes Path 1.127 +2 -2 ports/x11/XFree86-4/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 15:38:15 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A3E2337B40D; Thu, 23 Aug 2001 15:38:08 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NMc8E68679; Thu, 23 Aug 2001 15:38:08 -0700 (PDT) (envelope-from dd) Message-Id: <200108232238.f7NMc8E68679@freefall.freebsd.org> From: Dima Dorfman Date: Thu, 23 Aug 2001 15:38:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net bpf.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/23 15:38:08 PDT Modified files: sys/net bpf.c Log: Correct the comment about bpfattach() to match reality. PR: 29967 Submitted by: Joseph Mallett Revision Changes Path 1.80 +5 -4 src/sys/net/bpf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 15:40: 3 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3485F37B407; Thu, 23 Aug 2001 15:39:53 -0700 (PDT) (envelope-from dg@FreeBSD.org) Received: (from dg@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NMdrM68937; Thu, 23 Aug 2001 15:39:53 -0700 (PDT) (envelope-from dg) Message-Id: <200108232239.f7NMdrM68937@freefall.freebsd.org> From: David Greenman Date: Thu, 23 Aug 2001 15:39:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys mmap.2 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dg 2001/08/23 15:39:53 PDT Modified files: lib/libc/sys mmap.2 Log: Killed reference to MAP_INHERIT which is not supported in FreeBSD. Revision Changes Path 1.35 +1 -5 src/lib/libc/sys/mmap.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 15:42:44 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 46BE837B408; Thu, 23 Aug 2001 15:42:41 -0700 (PDT) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NMgfU69259; Thu, 23 Aug 2001 15:42:41 -0700 (PDT) (envelope-from green) Message-Id: <200108232242.f7NMgfU69259@freefall.freebsd.org> From: Brian Feldman Date: Thu, 23 Aug 2001 15:42:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh version.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG green 2001/08/23 15:42:41 PDT Modified files: (Branch: RELENG_4) crypto/openssh version.h Log: Update the version string here, too. Revision Changes Path 1.1.1.1.2.5 +1 -1 src/crypto/openssh/version.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 15:43:21 2001 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id 1C52B37B408; Thu, 23 Aug 2001 15:43:11 -0700 (PDT) (envelope-from mi@aldan.algebra.com) Received: (from mi@localhost) by aldan.algebra.com (8.11.5/8.11.5) id f7NMfUX08375; Thu, 23 Aug 2001 18:41:30 -0400 (EDT) (envelope-from mi) From: Mikhail Teterin Message-Id: <200108232241.f7NMfUX08375@aldan.algebra.com> Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: <200108231756.f7NHutU88154@earth.backplane.com> To: Matt Dillon Date: Thu, 23 Aug 2001 18:41:30 -0400 (EDT) Cc: Charlie Root , Brian Somers , "Andrey A. Chernov" , Jun Kuriyama , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, brian@freebsd-services.com X-Face: %UW#n0|w>ydeGt/b@1-.UFP=K^~-:0f#O:D7w hJ5G_<5143Bb3kOIs9XpX+"V+~$adGP:J|SLieM31VIhqXeLBli" List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > :> > > Change pidfile location to /var/run/named/pid. > : > :Yes! I'd also suggest moving the sandbox into /var/db/named ... > > Most of the files in /etc/namedb really belong in /etc/namedb. > They are not generated files. I was only talking about the sandbox itself -- what's now in /etc/namedb/s -- what named has to be able to rewrite... Cached zones... -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 15:43:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 51F4637B407; Thu, 23 Aug 2001 15:43:28 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NMhSb69349; Thu, 23 Aug 2001 15:43:28 -0700 (PDT) (envelope-from peter) Message-Id: <200108232243.f7NMhSb69349@freefall.freebsd.org> From: Peter Wemm Date: Thu, 23 Aug 2001 15:43:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT avail X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/23 15:43:28 PDT Modified files: . avail Log: Please, no more commits to src/sys/nfsclient! Revision Changes Path 1.147 +4 -1 CVSROOT/avail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 15:44:56 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 87E4937B406; Thu, 23 Aug 2001 15:44:47 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NMilA69528; Thu, 23 Aug 2001 15:44:47 -0700 (PDT) (envelope-from jhb) Message-Id: <200108232244.f7NMilA69528@freefall.freebsd.org> From: John Baldwin Date: Thu, 23 Aug 2001 15:44:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern subr_witness.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/23 15:44:47 PDT Modified files: sys/kern subr_witness.c Log: Convert some KASSERT()'s into if (foo) panic() because they are testing how locks are managed by the rest of the kernel, not verifying the internal integrity of witness itself. Revision Changes Path 1.83 +13 -11 src/sys/kern/subr_witness.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 15:45:46 2001 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 8CEF237B406; Thu, 23 Aug 2001 15:45:38 -0700 (PDT) (envelope-from ken@panzer.kdm.org) Received: (from ken@localhost) by panzer.kdm.org (8.9.3/8.9.1) id QAA00884; Thu, 23 Aug 2001 16:45:37 -0600 (MDT) (envelope-from ken) Date: Thu, 23 Aug 2001 16:45:37 -0600 From: "Kenneth D. Merry" To: Dima Dorfman Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man4 adv.4 adw.4 ahb.4 bt.4 netgraph.4 ng_tty.4 Message-ID: <20010823164537.A854@panzer.kdm.org> References: <200108232158.f7NLwcP61431@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: <200108232158.f7NLwcP61431@freefall.freebsd.org>; from dd@FreeBSD.org on Thu, Aug 23, 2001 at 02:58:38PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Aug 23, 2001 at 14:58:38 -0700, Dima Dorfman wrote: > dd 2001/08/23 14:58:38 PDT > > Modified files: > share/man/man4 adv.4 adw.4 ahb.4 bt.4 netgraph.4 > ng_tty.4 > Log: > Spelling police: queueing -> queuing > > PR: 29985 > Submitted by: Joseph Mallett The PR is wrong on this count, both spellings are correct. Check www.m-w.com. 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 Thu Aug 23 15:47:15 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B889837B403; Thu, 23 Aug 2001 15:47:05 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NMl5V69900; Thu, 23 Aug 2001 15:47:05 -0700 (PDT) (envelope-from jhb) Message-Id: <200108232247.f7NMl5V69900@freefall.freebsd.org> From: John Baldwin Date: Thu, 23 Aug 2001 15:47:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern subr_witness.c src/sys/sys lock.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/23 15:47:05 PDT Modified files: sys/kern subr_witness.c sys/sys lock.h Log: Add witness_upgrade() and witness_downgrade() for handling upgrades and downgrades of shared/exclusive locks. Revision Changes Path 1.84 +72 -1 src/sys/kern/subr_witness.c 1.33 +13 -1 src/sys/sys/lock.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 15:48: 1 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 51BBA37B409; Thu, 23 Aug 2001 15:47:51 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NMlp870015; Thu, 23 Aug 2001 15:47:51 -0700 (PDT) (envelope-from jhb) Message-Id: <200108232247.f7NMlp870015@freefall.freebsd.org> From: John Baldwin Date: Thu, 23 Aug 2001 15:47:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys lock.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/23 15:47:51 PDT Modified files: sys/sys lock.h Log: Whitespace nit. Revision Changes Path 1.34 +2 -2 src/sys/sys/lock.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 15:51:25 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5190137B405; Thu, 23 Aug 2001 15:51:22 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NMpM470425; Thu, 23 Aug 2001 15:51:22 -0700 (PDT) (envelope-from jhb) Message-Id: <200108232251.f7NMpM470425@freefall.freebsd.org> From: John Baldwin Date: Thu, 23 Aug 2001 15:51:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_sx.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/23 15:51:22 PDT Modified files: sys/kern kern_sx.c Log: Use witness_upgrade/downgrade for sx_try_upgrade/downgrade. Revision Changes Path 1.9 +7 -9 src/sys/kern/kern_sx.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 16:11:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E3C7C37B401; Thu, 23 Aug 2001 16:11:29 -0700 (PDT) (envelope-from chern@FreeBSD.org) Received: (from chern@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NNBTQ75230; Thu, 23 Aug 2001 16:11:29 -0700 (PDT) (envelope-from chern) Message-Id: <200108232311.f7NNBTQ75230@freefall.freebsd.org> From: Chern Lee Date: Thu, 23 Aug 2001 16:11:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/config chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG chern 2001/08/23 16:11:29 PDT Modified files: en_US.ISO8859-1/books/handbook/config chapter.sgml Log: * Add information about NMBCLUSTERS/mbufs * Add another item to the standard sypnosis Revision Changes Path 1.23 +32 -3 doc/en_US.ISO8859-1/books/handbook/config/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 16:15:58 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4AEE937B403; Thu, 23 Aug 2001 16:15:53 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NNFrX75634; Thu, 23 Aug 2001 16:15:53 -0700 (PDT) (envelope-from obrien) Message-Id: <200108232315.f7NNFrX75634@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 23 Aug 2001 16:15:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/internal machines.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2001/08/23 16:15:53 PDT Modified files: en/internal machines.sgml Log: Update Beast's HW config. Add cvsup-master and ftp-master. Revision Changes Path 1.26 +21 -7 www/en/internal/machines.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 16:37:35 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F15F737B40F; Thu, 23 Aug 2001 16:37:31 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NNbV777214; Thu, 23 Aug 2001 16:37:31 -0700 (PDT) (envelope-from jhb) Message-Id: <200108232337.f7NNbV777214@freefall.freebsd.org> From: John Baldwin Date: Thu, 23 Aug 2001 16:37:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 Makefile sleep.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/23 16:37:31 PDT Modified files: share/man/man9 Makefile sleep.9 Log: Remove references to asleep/await. Revision Changes Path 1.134 +2 -2 src/share/man/man9/Makefile 1.31 +1 -114 src/share/man/man9/sleep.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 16:40:59 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BBAED37B407; Thu, 23 Aug 2001 16:40:53 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NNer477656; Thu, 23 Aug 2001 16:40:53 -0700 (PDT) (envelope-from jhb) Message-Id: <200108232340.f7NNer477656@freefall.freebsd.org> From: John Baldwin Date: Thu, 23 Aug 2001 16:40:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 malloc.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/23 16:40:53 PDT Modified files: share/man/man9 malloc.9 Log: Remove refernces to M_ASLEEP/asleep/await. Revision Changes Path 1.19 +2 -29 src/share/man/man9/malloc.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 16:41:58 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A832237B401; Thu, 23 Aug 2001 16:41:53 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NNfrp77740; Thu, 23 Aug 2001 16:41:53 -0700 (PDT) (envelope-from jhb) Message-Id: <200108232341.f7NNfrp77740@freefall.freebsd.org> From: John Baldwin Date: Thu, 23 Aug 2001 16:41:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 malloc.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/23 16:41:53 PDT Modified files: share/man/man9 malloc.9 Log: Spelling fix: depreciated -> deprecated. Revision Changes Path 1.20 +2 -2 src/share/man/man9/malloc.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 16:43:20 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D847437B40A; Thu, 23 Aug 2001 16:43:09 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Received: (from jmz@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NNh9977863; Thu, 23 Aug 2001 16:43:09 -0700 (PDT) (envelope-from jmz) Message-Id: <200108232343.f7NNh9977863@freefall.freebsd.org> From: Jean-Marc Zucconi Date: Thu, 23 Aug 2001 16:43:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/XFree86-4 Makefile ports/x11/XFree86-4/files patch-xfs X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jmz 2001/08/23 16:43:09 PDT Modified files: x11/XFree86-4 Makefile Added files: x11/XFree86-4/files patch-xfs Log: Fix a local DoS against xfs. Submitted by: kris Obtained from: XFree86 CVS repository Revision Changes Path 1.128 +2 -2 ports/x11/XFree86-4/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 16:53: 7 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E063A37B40B; Thu, 23 Aug 2001 16:52:59 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NNqxW78593; Thu, 23 Aug 2001 16:52:59 -0700 (PDT) (envelope-from jhb) Message-Id: <200108232352.f7NNqxW78593@freefall.freebsd.org> From: John Baldwin Date: Thu, 23 Aug 2001 16:52:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 timeout.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/23 16:52:59 PDT Modified files: share/man/man9 timeout.9 Log: - callout_stop() now returns an integer value instead of void so describe it. - Add a return values section. Revision Changes Path 1.17 +17 -2 src/share/man/man9/timeout.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 16:58: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from foo.osd.bsdi.com (foo.lab.nuxi.com [66.123.5.77]) by hub.freebsd.org (Postfix) with ESMTP id DEBBB37B403; Thu, 23 Aug 2001 16:57:54 -0700 (PDT) (envelope-from jhb@foo.osd.bsdi.com) Received: (from jhb@localhost) by foo.osd.bsdi.com (8.11.4/8.11.4) id f7NNvpE03886; Thu, 23 Aug 2001 16:57:51 -0700 (PDT) (envelope-from jhb) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200108232340.f7NNer477656@freefall.freebsd.org> Date: Thu, 23 Aug 2001 16:57:51 -0700 (PDT) From: John Baldwin To: John Baldwin Subject: RE: cvs commit: src/share/man/man9 malloc.9 Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 23-Aug-01 John Baldwin wrote: > jhb 2001/08/23 16:40:53 PDT > > Modified files: > share/man/man9 malloc.9 > Log: > Remove refernces to M_ASLEEP/asleep/await. ^^^^^^^^^ Geez, I misspelled it twice.. At least I didn't have a misspelling in my misspelling fix commit. :) -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.Baldwin.cx/~john/pgpkey.asc "Power Users Use 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 Thu Aug 23 16:58:56 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A76337B40B; Thu, 23 Aug 2001 16:58:51 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Received: (from nsayer@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7NNwpE79187; Thu, 23 Aug 2001 16:58:51 -0700 (PDT) (envelope-from nsayer) Message-Id: <200108232358.f7NNwpE79187@freefall.freebsd.org> From: Nick Sayer Date: Thu, 23 Aug 2001 16:58:50 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nsayer 2001/08/23 16:58:50 PDT Modified files: sys/conf files Log: if_wi can be either pci (without pccard) or pccard Revision Changes Path 1.559 +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 Thu Aug 23 17: 3:38 2001 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 2B53D37B408; Thu, 23 Aug 2001 17:03:30 -0700 (PDT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.11.5/8.11.5) with SMTP id f7O035P81153; Thu, 23 Aug 2001 20:03:09 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Thu, 23 Aug 2001 20:03:05 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Brian Somers Cc: "Andrey A. Chernov" , Jun Kuriyama , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: <200108231413.f7NEDvg71094@hak.lan.Awfulhak.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The failures caused by this change are very real. The correct solution is to fix bind. I think Bill Fenner proposed at USENIX that BIND use IP_RECVDSTADDR instead of relying on a socket per address, which would permit it to avoid rebinding every time the address pool changed. I don't know how portable IP_RECVDSTADDR is, but it seems like a good idea to me. Note that I've never tried it, so there could be snags... Robert N M Watson FreeBSD Core Team, TrustedBSD Project robert@fledge.watson.org NAI Labs, Safeport Network Services On Thu, 23 Aug 2001, Brian Somers wrote: > > On Thu, Aug 23, 2001 at 06:34:46 -0700, Jun Kuriyama wrote: > > > kuriyama 2001/08/23 06:34:46 PDT > > > > > > Modified files: > > > etc/defaults rc.conf > > > etc/mtree BSD.var.dist > > > etc/namedb named.conf > > > Log: > > > Invoke named with privilege of bind:bind. > > > Change pidfile location to /var/run/named/pid. > > > > Is it discussed or I miss something? We already have an option to run it > > in bind sandbox, but as non-default option. Some functions not works in > > bind sandbox, I don't remember exactly at this moment. > > named won't be able to listen on interface addresses that are not > configured when named is invoked. This can break name services on a > dialup server quite badly. > > I think this change should be reverted. > > > -- > > Andrey A. Chernov > > http://ache.pp.ru/ > > -- > Brian > http://www.freebsd-services.com/ > Don't _EVER_ lose your sense of humour ! > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 17: 6:35 2001 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 4722D37B40A; Thu, 23 Aug 2001 17:06:24 -0700 (PDT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.11.5/8.11.5) with SMTP id f7O064P81160; Thu, 23 Aug 2001 20:06:04 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Thu, 23 Aug 2001 20:06:04 -0400 (EDT) From: Robert Watson Reply-To: Robert Watson To: Chris Dillon Cc: "Andrey A. Chernov" , Jun Kuriyama , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 23 Aug 2001, Chris Dillon wrote: > On Thu, 23 Aug 2001, Andrey A. Chernov wrote: > > > They are not 'some' users, but all dialup users. We can't have > > defaults which require changes for so large group. > > Most dialup users do not configure named for local DNS. This will not > be a "dialup user" problem. Those dialup users that are smart enough to > configure named in the first place can and will know enough to get named > out of the sandbox if they need to. It doesn't really matter wether we > default to it being in a sandbox or not since named is not enabled by > default, but it is best to be on the safe side, IMHO. If the IP address of the To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 17:18:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A4EB637B401; Thu, 23 Aug 2001 17:18:38 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O0IcP84013; Thu, 23 Aug 2001 17:18:38 -0700 (PDT) (envelope-from dd) Message-Id: <200108240018.f7O0IcP84013@freefall.freebsd.org> From: Dima Dorfman Date: Thu, 23 Aug 2001 17:18:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen exec.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/23 17:18:38 PDT Modified files: lib/libc/gen exec.3 Log: begin executed --> being executed Obtained from: NetBSD Revision Changes Path 1.15 +2 -2 src/lib/libc/gen/exec.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 17:19:41 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AFDE237B406; Thu, 23 Aug 2001 17:19:33 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O0JXD84147; Thu, 23 Aug 2001 17:19:33 -0700 (PDT) (envelope-from petef) Message-Id: <200108240019.f7O0JXD84147@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 23 Aug 2001 17:19:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/thttpd Makefile ports/www/thttpd/files patch-fdwatch.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/23 17:19:33 PDT Modified files: www/thttpd Makefile www/thttpd/files patch-fdwatch.c Log: Fix kqueue support for -current PR: 30009 Submitted by: maintainer Reviewed by: ade Revision Changes Path 1.21 +2 -9 ports/www/thttpd/Makefile 1.2 +11 -20 ports/www/thttpd/files/patch-fdwatch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 17:21:24 2001 Delivered-To: cvs-all@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id 1BD9B37B405; Thu, 23 Aug 2001 17:21:15 -0700 (PDT) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id B28D56ACF0; Fri, 24 Aug 2001 09:51:13 +0930 (CST) Date: Fri, 24 Aug 2001 09:51:13 +0930 From: Greg Lehey To: John Baldwin Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf options src/sys/i386/conf NOTES src/sys/kern kern_shutdown.c src/sys/sys param.h Message-ID: <20010824095113.E9221@wantadilla.lemis.com> References: <200108232032.f7NKWLB48382@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108232032.f7NKWLB48382@freefall.freebsd.org>; from jhb@FreeBSD.org on Thu, Aug 23, 2001 at 01:32:21PM -0700 Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thursday, 23 August 2001 at 13:32:21 -0700, John Baldwin wrote: > jhb 2001/08/23 13:32:21 PDT > > Modified files: > sys/conf options > sys/i386/conf NOTES > sys/kern kern_shutdown.c > sys/sys param.h > Log: > Add a new kernel option RESTARTABLE_PANICS. If this option is present, > then one can restart from a panic by resetting the panicstr variable to > NULL. This commit conditionalizes the previously committed functionality > on this variable. It also removes the __dead2 attribute from the panic() > function so that when one continues from a panic() the behavior will > be predictable. The only way I can see to restart from a panic is to enter the debugger and then return, and your code seems to bear this out. Am I missing something? I would think that we can always return from the debugger if we want to continue, and that the RESTARTABLE_PANICS and check for null format string are not necessary. Are you concerned about people who will return from the debugger when they don't mean to? There are plenty of other ways to shoot down the system from the debugger. Greg -- See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 17:23:39 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F288537B408; Thu, 23 Aug 2001 17:23:31 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O0NVJ84484; Thu, 23 Aug 2001 17:23:31 -0700 (PDT) (envelope-from petef) Message-Id: <200108240023.f7O0NVJ84484@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 23 Aug 2001 17:23:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/swatch Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/23 17:23:31 PDT Modified files: security/swatch Makefile distinfo pkg-plist Log: - update to version 3.0.2 - fix pkg-plist (include missing .packlist file) PR: 30010 Submitted by: maintainer Reviewed by: ade Revision Changes Path 1.9 +2 -2 ports/security/swatch/Makefile 1.3 +1 -1 ports/security/swatch/distinfo 1.5 +2 -0 ports/security/swatch/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 Aug 23 17:27:29 2001 Delivered-To: cvs-all@freebsd.org Received: from foo.osd.bsdi.com (foo.lab.nuxi.com [66.123.5.77]) by hub.freebsd.org (Postfix) with ESMTP id D219337B405; Thu, 23 Aug 2001 17:27:13 -0700 (PDT) (envelope-from jhb@foo.osd.bsdi.com) Received: (from jhb@localhost) by foo.osd.bsdi.com (8.11.4/8.11.4) id f7O0RAu04270; Thu, 23 Aug 2001 17:27:10 -0700 (PDT) (envelope-from jhb) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20010824095113.E9221@wantadilla.lemis.com> Date: Thu, 23 Aug 2001 17:27:10 -0700 (PDT) From: John Baldwin To: Greg Lehey Subject: Re: cvs commit: src/sys/conf options src/sys/i386/conf NOTES src Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 24-Aug-01 Greg Lehey wrote: > On Thursday, 23 August 2001 at 13:32:21 -0700, John Baldwin wrote: >> jhb 2001/08/23 13:32:21 PDT >> >> Modified files: >> sys/conf options >> sys/i386/conf NOTES >> sys/kern kern_shutdown.c >> sys/sys param.h >> Log: >> Add a new kernel option RESTARTABLE_PANICS. If this option is present, >> then one can restart from a panic by resetting the panicstr variable to >> NULL. This commit conditionalizes the previously committed functionality >> on this variable. It also removes the __dead2 attribute from the panic() >> function so that when one continues from a panic() the behavior will >> be predictable. > > The only way I can see to restart from a panic is to enter the > debugger and then return, and your code seems to bear this out. Am I > missing something? I would think that we can always return from the > debugger if we want to continue, and that the RESTARTABLE_PANICS and > check for null format string are not necessary. Are you concerned > about people who will return from the debugger when they don't mean > to? There are plenty of other ways to shoot down the system from the > debugger. Err. If you continue from the debugger, the panic() function calls boot() which reboots the system. If you chagne panicstr to NULL, then we don't call boot() but return from panic(), thus effectively turning the panic() into a Debugger(). #ifdef RESTARTABLE_PANICS /* See if the user aborted the panic, in which case we continue. */ if (panicstr == NULL) { #ifdef SMP atomic_store_rel_int(&panic_cpu, NOCPU); #endif return; } #endif #endif boot(bootopt); -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.Baldwin.cx/~john/pgpkey.asc "Power Users Use 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 Thu Aug 23 17:30:58 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5AAEE37B40B; Thu, 23 Aug 2001 17:30:50 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O0Uok85332; Thu, 23 Aug 2001 17:30:50 -0700 (PDT) (envelope-from bmah) Message-Id: <200108240030.f7O0Uok85332@freefall.freebsd.org> From: "Bruce A. Mah" Date: Thu, 23 Aug 2001 17:30:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2001/08/23 17:30:50 PDT Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: Reflect that the lge(4) driver has been tested on the Alpha. Reviewed by: wpaul Revision Changes Path 1.27 +2 -2 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 17:31:52 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E587437B406; Thu, 23 Aug 2001 17:31:41 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O0Vfx85415; Thu, 23 Aug 2001 17:31:41 -0700 (PDT) (envelope-from bmah) Message-Id: <200108240031.f7O0Vfx85415@freefall.freebsd.org> From: "Bruce A. Mah" Date: Thu, 23 Aug 2001 17:31:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2001/08/23 17:31:41 PDT Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: MFC: The lge(4) driver has been tested on the Alpha. Reviewed by: wpaul Approved by: re (implictly) Revision Changes Path 1.13.2.12 +2 -2 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 17:51:42 2001 Delivered-To: cvs-all@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id 4D07A37B405; Thu, 23 Aug 2001 17:51:29 -0700 (PDT) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id F0E116ACF2; Fri, 24 Aug 2001 10:21:27 +0930 (CST) Date: Fri, 24 Aug 2001 10:21:27 +0930 From: Greg Lehey To: John Baldwin Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/conf options src/sys/i386/conf NOTES src Message-ID: <20010824102127.A21776@wantadilla.lemis.com> References: <20010824095113.E9221@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from jhb@FreeBSD.org on Thu, Aug 23, 2001 at 05:27:10PM -0700 Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thursday, 23 August 2001 at 17:27:10 -0700, John Baldwin wrote: > > On 24-Aug-01 Greg Lehey wrote: >> On Thursday, 23 August 2001 at 13:32:21 -0700, John Baldwin wrote: >>> jhb 2001/08/23 13:32:21 PDT >>> >>> Modified files: >>> sys/conf options >>> sys/i386/conf NOTES >>> sys/kern kern_shutdown.c >>> sys/sys param.h >>> Log: >>> Add a new kernel option RESTARTABLE_PANICS. If this option is present, >>> then one can restart from a panic by resetting the panicstr variable to >>> NULL. This commit conditionalizes the previously committed functionality >>> on this variable. It also removes the __dead2 attribute from the panic() >>> function so that when one continues from a panic() the behavior will >>> be predictable. >> >> The only way I can see to restart from a panic is to enter the >> debugger and then return, and your code seems to bear this out. Am I >> missing something? I would think that we can always return from the >> debugger if we want to continue, and that the RESTARTABLE_PANICS and >> check for null format string are not necessary. Are you concerned >> about people who will return from the debugger when they don't mean >> to? There are plenty of other ways to shoot down the system from the >> debugger. > > Err. If you continue from the debugger, the panic() function calls boot() which > reboots the system. If you chagne panicstr to NULL, then we don't call boot() > but return from panic(), thus effectively turning the panic() into a > Debugger(). So reset the panic string. #if defined(DDB) if (debugger_on_panic) { Debugger ("panic"); panicstr = NULL; #ifdef SMP atomic_store_rel_int(&panic_cpu, NOCPU); #endif return; } #endif boot(bootopt); Greg -- See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 17:53:36 2001 Delivered-To: cvs-all@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id 6E6C637B40B; Thu, 23 Aug 2001 17:53:28 -0700 (PDT) (envelope-from dillon@earth.backplane.com) Received: (from dillon@localhost) by earth.backplane.com (8.11.4/8.11.2) id f7O0rFF91533; Thu, 23 Aug 2001 17:53:15 -0700 (PDT) (envelope-from dillon) Date: Thu, 23 Aug 2001 17:53:15 -0700 (PDT) From: Matt Dillon Message-Id: <200108240053.f7O0rFF91533@earth.backplane.com> To: Mikhail Teterin Cc: Charlie Root , Brian Somers , "Andrey A. Chernov" , Jun Kuriyama , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf References: <200108232241.f7NMfUX08375@aldan.algebra.com> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG : :I was only talking about the sandbox itself -- what's now in :/etc/namedb/s -- what named has to be able to rewrite... Cached zones... : : -mi The sandbox is /etc/namedb, not /etc/namedb/s. If you chroot, then you have no choice in regards to where the secondaries go. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 17:56:46 2001 Delivered-To: cvs-all@freebsd.org Received: from foo.osd.bsdi.com (foo.lab.nuxi.com [66.123.5.77]) by hub.freebsd.org (Postfix) with ESMTP id CCE1D37B406; Thu, 23 Aug 2001 17:56:31 -0700 (PDT) (envelope-from jhb@foo.osd.bsdi.com) Received: (from jhb@localhost) by foo.osd.bsdi.com (8.11.4/8.11.4) id f7O0uS304646; Thu, 23 Aug 2001 17:56:28 -0700 (PDT) (envelope-from jhb) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20010824102127.A21776@wantadilla.lemis.com> Date: Thu, 23 Aug 2001 17:56:28 -0700 (PDT) From: John Baldwin To: Greg Lehey Subject: Re: cvs commit: src/sys/conf options src/sys/i386/conf NOTES src Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 24-Aug-01 Greg Lehey wrote: > On Thursday, 23 August 2001 at 17:27:10 -0700, John Baldwin wrote: >> >> On 24-Aug-01 Greg Lehey wrote: >>> On Thursday, 23 August 2001 at 13:32:21 -0700, John Baldwin wrote: >>>> jhb 2001/08/23 13:32:21 PDT >>>> >>>> Modified files: >>>> sys/conf options >>>> sys/i386/conf NOTES >>>> sys/kern kern_shutdown.c >>>> sys/sys param.h >>>> Log: >>>> Add a new kernel option RESTARTABLE_PANICS. If this option is present, >>>> then one can restart from a panic by resetting the panicstr variable to >>>> NULL. This commit conditionalizes the previously committed >>>> functionality >>>> on this variable. It also removes the __dead2 attribute from the >>>> panic() >>>> function so that when one continues from a panic() the behavior will >>>> be predictable. >>> >>> The only way I can see to restart from a panic is to enter the >>> debugger and then return, and your code seems to bear this out. Am I >>> missing something? I would think that we can always return from the >>> debugger if we want to continue, and that the RESTARTABLE_PANICS and >>> check for null format string are not necessary. Are you concerned >>> about people who will return from the debugger when they don't mean >>> to? There are plenty of other ways to shoot down the system from the >>> debugger. >> >> Err. If you continue from the debugger, the panic() function calls boot() >> which >> reboots the system. If you chagne panicstr to NULL, then we don't call >> boot() >> but return from panic(), thus effectively turning the panic() into a >> Debugger(). > > So reset the panic string. > >#if defined(DDB) > if (debugger_on_panic) { > Debugger ("panic"); > panicstr = NULL; >#ifdef SMP > atomic_store_rel_int(&panic_cpu, NOCPU); >#endif > return; > } >#endif > boot(bootopt); > > Greg Ah, no. The intent is not to restart from all panics. This lets you, the developer, decide at panic time if one wants to try and restart or not. If you do, you clear panicstr, otherwise it panics normally. -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.Baldwin.cx/~john/pgpkey.asc "Power Users Use 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 Thu Aug 23 18: 0:27 2001 Delivered-To: cvs-all@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id 4D7E137B40A; Thu, 23 Aug 2001 18:00:20 -0700 (PDT) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id E39E26ACF0; Fri, 24 Aug 2001 10:30:18 +0930 (CST) Date: Fri, 24 Aug 2001 10:30:18 +0930 From: Greg Lehey To: John Baldwin Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf options src/sys/i386/conf NOTES src Message-ID: <20010824103018.C21776@wantadilla.lemis.com> References: <20010824102127.A21776@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from jhb@FreeBSD.org on Thu, Aug 23, 2001 at 05:56:28PM -0700 Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thursday, 23 August 2001 at 17:56:28 -0700, John Baldwin wrote: > > On 24-Aug-01 Greg Lehey wrote: >> On Thursday, 23 August 2001 at 17:27:10 -0700, John Baldwin wrote: >>> >>> On 24-Aug-01 Greg Lehey wrote: >>>> On Thursday, 23 August 2001 at 13:32:21 -0700, John Baldwin wrote: >>>>> jhb 2001/08/23 13:32:21 PDT >>>>> >>>>> Modified files: >>>>> sys/conf options >>>>> sys/i386/conf NOTES >>>>> sys/kern kern_shutdown.c >>>>> sys/sys param.h >>>>> Log: >>>>> Add a new kernel option RESTARTABLE_PANICS. If this option is present, >>>>> then one can restart from a panic by resetting the panicstr variable to >>>>> NULL. This commit conditionalizes the previously committed >>>>> functionality >>>>> on this variable. It also removes the __dead2 attribute from the >>>>> panic() >>>>> function so that when one continues from a panic() the behavior will >>>>> be predictable. >>>> >>>> The only way I can see to restart from a panic is to enter the >>>> debugger and then return, and your code seems to bear this out. Am I >>>> missing something? I would think that we can always return from the >>>> debugger if we want to continue, and that the RESTARTABLE_PANICS and >>>> check for null format string are not necessary. Are you concerned >>>> about people who will return from the debugger when they don't mean >>>> to? There are plenty of other ways to shoot down the system from the >>>> debugger. >>> >>> Err. If you continue from the debugger, the panic() function calls boot() >>> which >>> reboots the system. If you chagne panicstr to NULL, then we don't call >>> boot() >>> but return from panic(), thus effectively turning the panic() into a >>> Debugger(). >> >> So reset the panic string. > > Ah, no. The intent is not to restart from all panics. This lets > you, the developer, decide at panic time if one wants to try and > restart or not. If you do, you clear panicstr, otherwise it panics > normally. Do you return from the debugger to panic? I never do. Greg -- See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 18: 5:26 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8DB7837B401; Thu, 23 Aug 2001 18:05:21 -0700 (PDT) (envelope-from logo@FreeBSD.org) Received: (from logo@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O15Ld89080; Thu, 23 Aug 2001 18:05:21 -0700 (PDT) (envelope-from logo) Message-Id: <200108240105.f7O15Ld89080@freefall.freebsd.org> From: Valentino Vaschetto Date: Thu, 23 Aug 2001 18:05:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/disks chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG logo 2001/08/23 18:05:21 PDT Modified files: en_US.ISO8859-1/books/handbook/disks chapter.sgml Log: Added sect1 on ccd Reviewed by: chern Revision Changes Path 1.55 +202 -1 doc/en_US.ISO8859-1/books/handbook/disks/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 18:11: 3 2001 Delivered-To: cvs-all@freebsd.org Received: from winston.freebsd.org (adsl-64-173-15-98.dsl.sntc01.pacbell.net [64.173.15.98]) by hub.freebsd.org (Postfix) with ESMTP id BA06937B401; Thu, 23 Aug 2001 18:10:55 -0700 (PDT) (envelope-from jkh@freebsd.org) Received: from localhost (jkh@localhost [127.0.0.1]) by winston.freebsd.org (8.11.6/8.11.4) with ESMTP id f7O1AQq04541; Thu, 23 Aug 2001 18:10:26 -0700 (PDT) (envelope-from jkh@freebsd.org) To: brian@Awfulhak.org Cc: silby@silby.com, dillon@earth.backplane.com, cdillon@wolves.k12.mo.us, ache@nagual.pp.ru, kuriyama@imgsrc.co.jp, cvs-committers@freebsd.org, cvs-all@freebsd.org, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: <200108232146.f7NLk1g88405@hak.lan.Awfulhak.org> References: <200108232146.f7NLk1g88405@hak.lan.Awfulhak.org> X-Mailer: Mew version 1.94.1 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: <20010823181026T.jkh@freebsd.org> Date: Thu, 23 Aug 2001 18:10:26 -0700 From: Jordan Hubbard X-Dispatcher: imput version 20000228(IM140) Lines: 7 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Gah, this whole conversation makes my head hurt. I'm not going to approve this change for -stable during the code freeze, so I suppose you guys could also stop arguing over it and move on to something else, too.. :) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 18:16: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from foo.osd.bsdi.com (foo.lab.nuxi.com [66.123.5.77]) by hub.freebsd.org (Postfix) with ESMTP id B396C37B401; Thu, 23 Aug 2001 18:15:59 -0700 (PDT) (envelope-from jhb@foo.osd.bsdi.com) Received: (from jhb@localhost) by foo.osd.bsdi.com (8.11.4/8.11.4) id f7O1Fu604903; Thu, 23 Aug 2001 18:15:56 -0700 (PDT) (envelope-from jhb) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20010824103018.C21776@wantadilla.lemis.com> Date: Thu, 23 Aug 2001 18:15:56 -0700 (PDT) From: John Baldwin To: Greg Lehey Subject: Re: cvs commit: src/sys/conf options src/sys/i386/conf NOTES src Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 24-Aug-01 Greg Lehey wrote: > On Thursday, 23 August 2001 at 17:56:28 -0700, John Baldwin wrote: >> >> On 24-Aug-01 Greg Lehey wrote: >>> On Thursday, 23 August 2001 at 17:27:10 -0700, John Baldwin wrote: >>>> >>>> On 24-Aug-01 Greg Lehey wrote: >>>>> On Thursday, 23 August 2001 at 13:32:21 -0700, John Baldwin wrote: >>>>>> jhb 2001/08/23 13:32:21 PDT >>>>>> >>>>>> Modified files: >>>>>> sys/conf options >>>>>> sys/i386/conf NOTES >>>>>> sys/kern kern_shutdown.c >>>>>> sys/sys param.h >>>>>> Log: >>>>>> Add a new kernel option RESTARTABLE_PANICS. If this option is >>>>>> present, >>>>>> then one can restart from a panic by resetting the panicstr variable >>>>>> to >>>>>> NULL. This commit conditionalizes the previously committed >>>>>> functionality >>>>>> on this variable. It also removes the __dead2 attribute from the >>>>>> panic() >>>>>> function so that when one continues from a panic() the behavior will >>>>>> be predictable. >>>>> >>>>> The only way I can see to restart from a panic is to enter the >>>>> debugger and then return, and your code seems to bear this out. Am I >>>>> missing something? I would think that we can always return from the >>>>> debugger if we want to continue, and that the RESTARTABLE_PANICS and >>>>> check for null format string are not necessary. Are you concerned >>>>> about people who will return from the debugger when they don't mean >>>>> to? There are plenty of other ways to shoot down the system from the >>>>> debugger. >>>> >>>> Err. If you continue from the debugger, the panic() function calls boot() >>>> which >>>> reboots the system. If you chagne panicstr to NULL, then we don't call >>>> boot() >>>> but return from panic(), thus effectively turning the panic() into a >>>> Debugger(). >>> >>> So reset the panic string. >> >> Ah, no. The intent is not to restart from all panics. This lets >> you, the developer, decide at panic time if one wants to try and >> restart or not. If you do, you clear panicstr, otherwise it panics >> normally. > > Do you return from the debugger to panic? I never do. Hmm. I suppose most people use the panic command or some such. I guess I could do that, so you dont' have to explicitly clear panicstr, but it will do it for you. RESTARTABLE_PANICS is still necessary because of panic having __dead2 in the normal case, and not having it in the RESTARTABLE_PANICS case. -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.Baldwin.cx/~john/pgpkey.asc "Power Users Use 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 Thu Aug 23 18:40:39 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A591B37B408; Thu, 23 Aug 2001 18:40:33 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O1eXn94664; Thu, 23 Aug 2001 18:40:33 -0700 (PDT) (envelope-from kuriyama) Message-Id: <200108240140.f7O1eXn94664@freefall.freebsd.org> From: Jun Kuriyama Date: Thu, 23 Aug 2001 18:40:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/internal machines.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2001/08/23 18:40:33 PDT Modified files: en/internal machines.sgml Log: Move tag to unbreak building. Revision Changes Path 1.27 +2 -3 www/en/internal/machines.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 18:41:48 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 364EB37B407; Thu, 23 Aug 2001 18:41:42 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O1fgI94813; Thu, 23 Aug 2001 18:41:42 -0700 (PDT) (envelope-from rwatson) Message-Id: <200108240141.f7O1fgI94813@freefall.freebsd.org> From: Robert Watson Date: Thu, 23 Aug 2001 18:41:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_acl.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2001/08/23 18:41:42 PDT Modified files: sys/kern kern_acl.c Log: o Clarify comments in vaccess_acl_posix1e() ACL evaluation routine so as to improve readability and accuracy. Obtained from: TrustedBSD Project Revision Changes Path 1.13 +24 -20 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 Thu Aug 23 18:46:28 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 03B7F37B403; Thu, 23 Aug 2001 18:46:22 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O1kLx95256; Thu, 23 Aug 2001 18:46:21 -0700 (PDT) (envelope-from kuriyama) Message-Id: <200108240146.f7O1kLx95256@freefall.freebsd.org> From: Jun Kuriyama Date: Thu, 23 Aug 2001 18:46:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en where.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2001/08/23 18:46:21 PDT Modified files: en where.sgml Log: Point to freebsdmall instead of BSDi for CDROM. Submitted by: Jed Clear Revision Changes Path 1.52 +2 -2 www/en/where.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 19: 9:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F92037B407; Thu, 23 Aug 2001 19:09:40 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O29eS99982; Thu, 23 Aug 2001 19:09:40 -0700 (PDT) (envelope-from dd) Message-Id: <200108240209.f7O29eS99982@freefall.freebsd.org> From: Dima Dorfman Date: Thu, 23 Aug 2001 19:09:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/tools webupdate X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/23 19:09:40 PDT Modified files: tools webupdate Log: I have no idea what $modules is. I must've meant $subtrees. Revision Changes Path 1.4 +2 -2 www/tools/webupdate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 19:14:31 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0383037B401; Thu, 23 Aug 2001 19:14:27 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Received: (from nsayer@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O2EQ800516; Thu, 23 Aug 2001 19:14:26 -0700 (PDT) (envelope-from nsayer) Message-Id: <200108240214.f7O2EQ800516@freefall.freebsd.org> From: Nick Sayer Date: Thu, 23 Aug 2001 19:14:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/wi if_wi.c if_wireg.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nsayer 2001/08/23 19:14:26 PDT Modified files: sys/dev/wi if_wi.c if_wireg.h Log: In order for the MA301 to pass interrupts from the PCCard, you must go into the PLX 9052's interrupt control register and turn on the magic interrupt enable bit. Partial thanks are due to OpenBSD for pointing out that the chip is a PLX 9052 and pointing me to the datasheet PDF. Revision Changes Path 1.57 +15 -1 src/sys/dev/wi/if_wi.c 1.16 +10 -3 src/sys/dev/wi/if_wireg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 19:25: 4 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 82C2437B407; Thu, 23 Aug 2001 19:24:59 -0700 (PDT) (envelope-from ken@FreeBSD.org) Received: (from ken@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O2OxQ01645; Thu, 23 Aug 2001 19:24:59 -0700 (PDT) (envelope-from ken) Message-Id: <200108240224.f7O2OxQ01645@freefall.freebsd.org> From: "Kenneth D. Merry" Date: Thu, 23 Aug 2001 19:24:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libdevstat devstat.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ken 2001/08/23 19:24:58 PDT Modified files: lib/libdevstat devstat.3 Log: Remove a duplicate "that". Submitted by: "Sergey A. Osokin" Revision Changes Path 1.18 +2 -2 src/lib/libdevstat/devstat.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 19:39: 9 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DDA0337B401; Thu, 23 Aug 2001 19:39:02 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O2d2B02979; Thu, 23 Aug 2001 19:39:02 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108240239.f7O2d2B02979@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Thu, 23 Aug 2001 19:39:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/rblcheck Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/23 19:39:02 PDT Modified files: mail/rblcheck Makefile Log: Welcome Yen-Ming Lee to maintainership of this port. Revision Changes Path 1.15 +2 -2 ports/mail/rblcheck/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 21:22:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D643637B407; Thu, 23 Aug 2001 21:22:29 -0700 (PDT) (envelope-from horikawa@FreeBSD.org) Received: (from horikawa@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O4MTA18776; Thu, 23 Aug 2001 21:22:29 -0700 (PDT) (envelope-from horikawa) Message-Id: <200108240422.f7O4MTA18776@freefall.freebsd.org> From: Kazuo Horikawa Date: Thu, 23 Aug 2001 21:22:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man1 install.1 top.1 doc/ja_JP.eucJP/man/man5 make.conf.5 doc/ja_JP.eucJP/man/man8 ifconfig.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG horikawa 2001/08/23 21:22:29 PDT Modified files: ja_JP.eucJP/man/man1 install.1 top.1 ja_JP.eucJP/man/man5 make.conf.5 ja_JP.eucJP/man/man8 ifconfig.8 Log: Catch up with 4.4-RC-20010824-JPSNAP Revision Changes Path 1.17 +3 -5 doc/ja_JP.eucJP/man/man1/install.1 1.10 +3 -3 doc/ja_JP.eucJP/man/man1/top.1 1.14 +9 -3 doc/ja_JP.eucJP/man/man5/make.conf.5 1.25 +4 -4 doc/ja_JP.eucJP/man/man8/ifconfig.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 21:26:22 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5B5C037B40B; Thu, 23 Aug 2001 21:26:19 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O4QJQ19251; Thu, 23 Aug 2001 21:26:19 -0700 (PDT) (envelope-from jkoshy) Message-Id: <200108240426.f7O4QJQ19251@freefall.freebsd.org> From: Joseph Koshy Date: Thu, 23 Aug 2001 21:26:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mhonarc Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jkoshy 2001/08/23 21:26:19 PDT Modified files: www/mhonarc Makefile distinfo pkg-plist Log: Upgrade to v2.4.9. Submitted by: kris Revision Changes Path 1.18 +3 -3 ports/www/mhonarc/Makefile 1.6 +1 -1 ports/www/mhonarc/distinfo 1.6 +2 -0 ports/www/mhonarc/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 Aug 23 21:56:38 2001 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 7F2BD37B40E; Thu, 23 Aug 2001 21:56:34 -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.11.3/8.11.3) with ESMTP id f7O4uXq51075; Thu, 23 Aug 2001 22:56: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.11.3/8.11.4) with ESMTP id f7O4uWW91016; Thu, 23 Aug 2001 22:56:32 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200108240456.f7O4uWW91016@harmony.village.org> To: Peter Wemm Subject: Re: cvs commit: CVSROOT avail Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Thu, 23 Aug 2001 15:43:28 PDT." <200108232243.f7NMhSb69349@freefall.freebsd.org> References: <200108232243.f7NMhSb69349@freefall.freebsd.org> Date: Thu, 23 Aug 2001 22:56:32 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <200108232243.f7NMhSb69349@freefall.freebsd.org> Peter Wemm writes: : Please, no more commits to src/sys/nfsclient! Why not? Wanrer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 22:42:37 2001 Delivered-To: cvs-all@freebsd.org Received: from peter3.wemm.org (c1315225-a.plstn1.sfba.home.com [24.14.150.180]) by hub.freebsd.org (Postfix) with ESMTP id 19CB937B409; Thu, 23 Aug 2001 22:42:14 -0700 (PDT) (envelope-from peter@wemm.org) Received: from overcee.netplex.com.au (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id f7O5gDM85771; Thu, 23 Aug 2001 22:42:13 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 4E4A73811; Thu, 23 Aug 2001 22:42:13 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 To: Warner Losh Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT avail In-Reply-To: <200108240456.f7O4uWW91016@harmony.village.org> Date: Thu, 23 Aug 2001 22:42:13 -0700 From: Peter Wemm Message-Id: <20010824054213.4E4A73811@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Warner Losh wrote: > In message <200108232243.f7NMhSb69349@freefall.freebsd.org> Peter Wemm writes : > : Please, no more commits to src/sys/nfsclient! > > Why not? Because I am regularly doing repeat repo-copies that copy the deltas from the sys/nfs/* to sys/nfsclient/* and sys/nfsserver/*. If people commit to both trees, then the copy will replace some arbitary 1.10 delta with a different 1.10 delta and that will only cause heartache for cvsup checkout-mode users. I thought I had explained this in the original mail to developers@ when this was first done. So, I repeat: *please ignore sys/nfsclient and sys/nfsserver*. All your commits to sys/nfs will automagically appear in the new locations. 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 Thu Aug 23 22:47:55 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 69A9B37B410; Thu, 23 Aug 2001 22:47:51 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Received: (from nsayer@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O5lpp38371; Thu, 23 Aug 2001 22:47:51 -0700 (PDT) (envelope-from nsayer) Message-Id: <200108240547.f7O5lpp38371@freefall.freebsd.org> From: Nick Sayer Date: Thu, 23 Aug 2001 22:47:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/wi if_wi.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nsayer 2001/08/23 22:47:51 PDT Modified files: sys/dev/wi if_wi.c Log: Get rid of redundant device_set_desc. Both the PCI and PCCARD versions do this in the probe routine now. Revision Changes Path 1.58 +1 -5 src/sys/dev/wi/if_wi.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 22:52:13 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 89D4337B410; Thu, 23 Aug 2001 22:52:09 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O5q9A38921; Thu, 23 Aug 2001 22:52:09 -0700 (PDT) (envelope-from murray) Message-Id: <200108240552.f7O5q9A38921@freefall.freebsd.org> From: Murray Stokely Date: Thu, 23 Aug 2001 22:52:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en where.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2001/08/23 22:52:09 PDT Modified files: en where.sgml Log: Update link to point to the Porter's Handbook instead of the old "Porting Applications" section of the FreeBSD Handbook. Revision Changes Path 1.53 +4 -3 www/en/where.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 22:59:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3D56437B405; Thu, 23 Aug 2001 22:59:08 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O5x8i39427; Thu, 23 Aug 2001 22:59:08 -0700 (PDT) (envelope-from knu) Message-Id: <200108240559.f7O5x8i39427@freefall.freebsd.org> From: Akinori MUSHA Date: Thu, 23 Aug 2001 22:59:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/ruby-ssl Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/23 22:59:08 PDT Modified files: security/ruby-ssl Makefile Log: Define USE_RUBY_RD unless NOPORTSDOCS. Found by: bento Revision Changes Path 1.9 +4 -1 ports/security/ruby-ssl/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 23: 1:59 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9FCF037B410; Thu, 23 Aug 2001 23:01:52 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O61qb39661; Thu, 23 Aug 2001 23:01:52 -0700 (PDT) (envelope-from knu) Message-Id: <200108240601.f7O61qb39661@freefall.freebsd.org> From: Akinori MUSHA Date: Thu, 23 Aug 2001 23:01:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/ruby-qt2iconview/files patch-extconf.rb X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/23 23:01:52 PDT Removed files: x11-toolkits/ruby-qt2iconview/files patch-extconf.rb Log: I forgot to remove this patch in the last ruby-qt2 update to 0.14. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 23: 6: 1 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 70F8237B40D; Thu, 23 Aug 2001 23:05:57 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O65vM42915; Thu, 23 Aug 2001 23:05:57 -0700 (PDT) (envelope-from knu) Message-Id: <200108240605.f7O65vM42915@freefall.freebsd.org> From: Akinori MUSHA Date: Thu, 23 Aug 2001 23:05:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/ruby-qt2gl Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/23 23:05:57 PDT Modified files: graphics/ruby-qt2gl Makefile Log: ruby-qt2gl requires libqtgl instead of libqt2. This may not work because application w/o libc_r + library w/ libc_r will cause a crash.. Revision Changes Path 1.9 +2 -2 ports/graphics/ruby-qt2gl/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 23: 8:53 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EF6F137B40C; Thu, 23 Aug 2001 23:08:46 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O68kM43360; Thu, 23 Aug 2001 23:08:46 -0700 (PDT) (envelope-from knu) Message-Id: <200108240608.f7O68kM43360@freefall.freebsd.org> From: Akinori MUSHA Date: Thu, 23 Aug 2001 23:08:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/ruby-gimp Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/23 23:08:46 PDT Modified files: graphics/ruby-gimp Makefile Log: Chase the libgimp's major version bump. Revision Changes Path 1.3 +2 -2 ports/graphics/ruby-gimp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 23:13:55 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AC57937B408; Thu, 23 Aug 2001 23:13:48 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O6Dms43880; Thu, 23 Aug 2001 23:13:48 -0700 (PDT) (envelope-from knu) Message-Id: <200108240613.f7O6Dms43880@freefall.freebsd.org> From: Akinori MUSHA Date: Thu, 23 Aug 2001 23:13:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc/ruby-rica Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/23 23:13:48 PDT Modified files: irc/ruby-rica Makefile distinfo pkg-plist Log: Update to 0.7. Revision Changes Path 1.4 +4 -4 ports/irc/ruby-rica/Makefile 1.4 +1 -1 ports/irc/ruby-rica/distinfo 1.4 +1 -2 ports/irc/ruby-rica/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 Aug 23 23:15:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4A9E537B406; Thu, 23 Aug 2001 23:15:40 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O6FeL44052; Thu, 23 Aug 2001 23:15:40 -0700 (PDT) (envelope-from knu) Message-Id: <200108240615.f7O6FeL44052@freefall.freebsd.org> From: Akinori MUSHA Date: Thu, 23 Aug 2001 23:15:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mod_ruby Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/23 23:15:40 PDT Modified files: www/mod_ruby Makefile distinfo Log: Update to 0.9.3. Revision Changes Path 1.23 +2 -2 ports/www/mod_ruby/Makefile 1.16 +1 -1 ports/www/mod_ruby/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 23 23:28:16 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C657C37B408; Thu, 23 Aug 2001 23:28:09 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O6S9X45446; Thu, 23 Aug 2001 23:28:09 -0700 (PDT) (envelope-from knu) Message-Id: <200108240628.f7O6S9X45446@freefall.freebsd.org> From: Akinori MUSHA Date: Thu, 23 Aug 2001 23:28:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www Makefile ports/www/ruby-tmpl Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/23 23:28:09 PDT Modified files: www Makefile Added files: www/ruby-tmpl Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add ruby-tmpl, an online/offline templating system a la eRuby/ERb. PR: ports/29975 Submitted by: Sean Chittenden Revision Changes Path 1.399 +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 Thu Aug 23 23:28:26 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8691E37B416; Thu, 23 Aug 2001 23:28:18 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O6SIM45521; Thu, 23 Aug 2001 23:28:18 -0700 (PDT) (envelope-from knu) Message-Id: <200108240628.f7O6SIM45521@freefall.freebsd.org> From: Akinori MUSHA Date: Thu, 23 Aug 2001 23:28:18 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/23 23:28:18 PDT Modified files: . modules Log: ruby-tmpl --> ports/www/ruby-tmpl Revision Changes Path 1.3714 +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 Aug 23 23:56:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F2D437B406; Thu, 23 Aug 2001 23:56:11 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O6uBO54838; Thu, 23 Aug 2001 23:56:11 -0700 (PDT) (envelope-from murray) Message-Id: <200108240656.f7O6uBO54838@freefall.freebsd.org> From: Murray Stokely Date: Thu, 23 Aug 2001 23:56:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/mail chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2001/08/23 23:56:10 PDT Modified files: en_US.ISO8859-1/books/handbook/mail chapter.sgml Log: lan -> LAN Reword an informal question while I'm here. Revision Changes Path 1.36 +4 -4 doc/en_US.ISO8859-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 Thu Aug 23 23:59:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8340037B405; Thu, 23 Aug 2001 23:59:07 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O6x7D55504; Thu, 23 Aug 2001 23:59:07 -0700 (PDT) (envelope-from murray) Message-Id: <200108240659.f7O6x7D55504@freefall.freebsd.org> From: Murray Stokely Date: Thu, 23 Aug 2001 23:59:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/mail chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2001/08/23 23:59:07 PDT Modified files: en_US.ISO8859-1/books/handbook/mail chapter.sgml Log: pop -> POP Revision Changes Path 1.37 +2 -2 doc/en_US.ISO8859-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 Fri Aug 24 0: 6:25 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B57CB37B40D; Fri, 24 Aug 2001 00:06:19 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O76Ju59086; Fri, 24 Aug 2001 00:06:19 -0700 (PDT) (envelope-from knu) Message-Id: <200108240706.f7O76Ju59086@freefall.freebsd.org> From: Akinori MUSHA Date: Fri, 24 Aug 2001 00:06:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/ruby-romp Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/24 00:06:19 PDT Modified files: net Makefile Added files: net/ruby-romp Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add ruby-romp, the Ruby Object Message Proxy, a set of classes for providing distributed object support to a Ruby program. Revision Changes Path 1.599 +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 Fri Aug 24 0: 6:35 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E857C37B50C; Fri, 24 Aug 2001 00:06:27 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O76RJ59131; Fri, 24 Aug 2001 00:06:27 -0700 (PDT) (envelope-from knu) Message-Id: <200108240706.f7O76RJ59131@freefall.freebsd.org> From: Akinori MUSHA Date: Fri, 24 Aug 2001 00:06:27 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/24 00:06:27 PDT Modified files: . modules Log: ruby-romp --> ports/net/ruby-romp Revision Changes Path 1.3715 +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 Aug 24 0:27:10 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2FA3037B414; Fri, 24 Aug 2001 00:27:06 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O7R6H64950; Fri, 24 Aug 2001 00:27:06 -0700 (PDT) (envelope-from murray) Message-Id: <200108240727.f7O7R6H64950@freefall.freebsd.org> From: Murray Stokely Date: Fri, 24 Aug 2001 00:27:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2001/08/24 00:27:05 PDT Modified files: en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml Log: Reword a couple of sentences that I found very confusing. Often this was due to missing words or sentences that made it very difficult to understand the text. Revision Changes Path 1.96 +15 -14 doc/en_US.ISO8859-1/books/handbook/advanced-networking/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 Aug 24 0:30:23 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 45F4337B403; Fri, 24 Aug 2001 00:30:19 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O7UJn65442; Fri, 24 Aug 2001 00:30:19 -0700 (PDT) (envelope-from imp) Message-Id: <200108240730.f7O7UJn65442@freefall.freebsd.org> From: Warner Losh Date: Fri, 24 Aug 2001 00:30:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pccard pcic_pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/24 00:30:18 PDT Modified files: sys/pccard pcic_pci.c Log: Two fixes. First, put into place a more generic chipset specific initialization structure. Warn the user for those chipsets that aren't yet customized that they might not work. Second, try to power off the slot on attach and ack the interrupts. I don't know, but this might solve the hangs that people will see on Thinkpads if they set hw.pcic.init_routing=1. Revision Changes Path 1.74 +124 -95 src/sys/pccard/pcic_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 0:43:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C7F737B40F; Fri, 24 Aug 2001 00:43:36 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O7haV66704; Fri, 24 Aug 2001 00:43:36 -0700 (PDT) (envelope-from imp) Message-Id: <200108240743.f7O7haV66704@freefall.freebsd.org> From: Warner Losh Date: Fri, 24 Aug 2001 00:43:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pccard pcic_pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/24 00:43:36 PDT Modified files: sys/pccard pcic_pci.c Log: Move code to shutdown the pcic_pci_shutdown. Call it on system shutdown and also before we get going with the device initialization. This may fix the hangs some people are seeing on warmboot. It appears that some machines will reset the cardbus bridge on boot, while others don't. So we turn off the card, and ack the interrupts (which likely is a nop in the shutdown case since we're still fielding interrupts). This should turn off the interrupts. Since I don't have hardware that hangs on reboot, I'm committing this without testing that aspect of the patch (it causes no harm on my Dell). Revision Changes Path 1.75 +26 -14 src/sys/pccard/pcic_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 1:27:31 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6370537B40A; Fri, 24 Aug 2001 01:27:24 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O8ROi73813; Fri, 24 Aug 2001 01:27:24 -0700 (PDT) (envelope-from peter) Message-Id: <200108240827.f7O8ROi73813@freefall.freebsd.org> From: Peter Wemm Date: Fri, 24 Aug 2001 01:27:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 initcpu.c locore.s X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/24 01:27:24 PDT Modified files: sys/i386/i386 initcpu.c locore.s Log: Move cpu_fxsr definition to C code (so debug info is generated) and where it is easily #ifdef'ed so that we dont miss unintentional references to it. Revision Changes Path 1.31 +5 -1 src/sys/i386/i386/initcpu.c 1.146 +2 -3 src/sys/i386/i386/locore.s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 1:29:59 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7317C37B407; Fri, 24 Aug 2001 01:29:54 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O8Tsm74180; Fri, 24 Aug 2001 01:29:54 -0700 (PDT) (envelope-from peter) Message-Id: <200108240829.f7O8Tsm74180@freefall.freebsd.org> From: Peter Wemm Date: Fri, 24 Aug 2001 01:29:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 locore.s X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/24 01:29:54 PDT Modified files: sys/i386/i386 locore.s Log: Export the actual KERNBASE to the symbol table. We can use nlist() to get this without having to second guess it in userland. Revision Changes Path 1.147 +7 -1 src/sys/i386/i386/locore.s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 1:32:30 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 293C737B408; Fri, 24 Aug 2001 01:32:20 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O8WKw74580; Fri, 24 Aug 2001 01:32:20 -0700 (PDT) (envelope-from kris) Message-Id: <200108240832.f7O8WKw74580@freefall.freebsd.org> From: Kris Kennaway Date: Fri, 24 Aug 2001 01:32:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors Makefile ports/editors/ted Makefile distinfo pkg-comment pkg-descr pkg-plist ports/editors/ted/files patch-aa patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/24 01:32:20 PDT Modified files: editors Makefile Added files: editors/ted Makefile distinfo pkg-comment pkg-descr pkg-plist editors/ted/files patch-aa patch-ab Log: Add ted-2.10 Ted is a text editor running under X Windows on Unix/Linux systems. Ted was developed as an operating system accessory like Wordpad on MS-Windows. Features -------- * Wysiwyg rich text editing. * Ted uses Microsoft RTF as its native file format. * In line bitmap pictures. * Postscript printing. * Spelling checking in several Latin languages. (English, Dutch, German, Portuguese, French and Spanish.) * Directly mailing documents from Ted. * Cut/Copy/Paste, also with other applications. * Find/Replace. * Ruler: Paragraph indentation, Indentation of first line, Tabs. * Copy/Paste Ruler. * Page breaks. * Tables: Insert Table, Row, Column. Changing the column width of tables with their ruler. * Symbols and accented characters are fully supported. * Hyperlinks. * Saving a document in HTML format. Obtained from: OpenBSD Revision Changes Path 1.156 +2 -1 ports/editors/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 1:46:29 2001 Delivered-To: cvs-all@freebsd.org Received: from day.anthologeek.net (day.anthologeek.net [212.43.217.20]) by hub.freebsd.org (Postfix) with ESMTP id CF70737B406; Fri, 24 Aug 2001 01:46:22 -0700 (PDT) (envelope-from sw@anthologeek.net) Received: by day.anthologeek.net (Postfix, from userid 1000) id 8305A17129; Fri, 24 Aug 2001 10:44:15 +0200 (CEST) Date: Fri, 24 Aug 2001 10:44:15 +0200 From: Sameh Ghane To: Brian Somers Cc: Matt Dillon , Mike Silbersack , Chris Dillon , "Andrey A. Chernov" , Jun Kuriyama , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf Message-ID: <20010824104415.A62762@anthologeek.net> References: <200108231756.f7NHu3g82765@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108231756.f7NHu3g82765@hak.lan.Awfulhak.org>; from brian@Awfulhak.org on Thu, Aug 23, 2001 at 06:56:03PM +0100 X-PGP-Keys: 0x1289F00D: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Le (On) Thu, Aug 23, 2001 at 06:56:03PM +0100, Brian Somers ecrivit (wrote): > > As long as people follow the instructions when setting up secondariese, > > the sandbox will 'just work'. I think this is doable and reasonable, > > and I also think that since -stable is going to be with us for a long time > > we should seriously consider MFCing these changes. > > I'd have to object to any such MFC. It'll break peoples name servers > and that's unacceptable in -stable. People are told to put at least *2* nameservers in their /etc/resolv.conf. If they just have 127.0.0.1, this means they don't care a lot about resolving, as named can crash at any time. Also, I think it might be a good idea for 'ndc' to be able to parse /etc/defaults/rc.conf & /etc/rc.conf, for named_flags, and launch named with this flags. If you run bind with the default configuration, it will be running as bind:bind, but if you ndc restart it, it will run as root:wheel... -- Sameh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 1:48:21 2001 Delivered-To: cvs-all@freebsd.org Received: from white.imgsrc.co.jp (ns.imgsrc.co.jp [210.226.20.2]) by hub.freebsd.org (Postfix) with ESMTP id 28D3E37B40E; Fri, 24 Aug 2001 01:48:11 -0700 (PDT) (envelope-from kuriyama@imgsrc.co.jp) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [2001:218:422:2:290:27ff:fe98:c0b7]) by white.imgsrc.co.jp (Postfix) with ESMTP id 0D7A224D2C; Fri, 24 Aug 2001 17:48:10 +0900 (JST) Received: from waterblue.imgsrc.co.jp (waterblue.imgsrc.co.jp [210.226.20.160]) by black.imgsrc.co.jp (Postfix) with ESMTP id 6A75AD1401; Fri, 24 Aug 2001 17:48:08 +0900 (JST) Date: Fri, 24 Aug 2001 17:48:05 +0900 Message-ID: <7mlmk9x2re.wl@waterblue.imgsrc.co.jp> From: Jun Kuriyama To: Sameh Ghane Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf In-Reply-To: <20010824104415.A62762@anthologeek.net> References: <200108231756.f7NHu3g82765@hak.lan.Awfulhak.org> <20010824104415.A62762@anthologeek.net> User-Agent: Wanderlust/2.6.0 (Twist And Shout) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-1?Q?Unebigory=F2mae?=) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Fri, 24 Aug 2001 10:44:15 +0200, Sameh Ghane wrote: > Also, I think it might be a good idea for 'ndc' to be able to parse > /etc/defaults/rc.conf & /etc/rc.conf, for named_flags, and launch named with > this flags. If you run bind with the default configuration, it will be running > as bind:bind, but if you ndc restart it, it will run as root:wheel... Please use named.restart and named.reload for that purpose. -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 1:51:30 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C93C37B412; Fri, 24 Aug 2001 01:51:23 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O8pN876420; Fri, 24 Aug 2001 01:51:23 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108240851.f7O8pN876420@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 24 Aug 2001 01:51:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail Makefile ports/mail/vm-pop3d Makefile distinfo pkg-comment pkg-descr pkg-plist ports/mail/vm-pop3d/files patch-configure X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/24 01:51:23 PDT Modified files: mail Makefile Added files: mail/vm-pop3d Makefile distinfo pkg-comment pkg-descr pkg-plist mail/vm-pop3d/files patch-configure Log: add vm-pop3d A virtual POP3 server PR: 30004 Submitted by: Gea-Suan Lin Revision Changes Path 1.246 +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 Aug 24 1:51:34 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1493E37B405; Fri, 24 Aug 2001 01:51:27 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O8pRi76459; Fri, 24 Aug 2001 01:51:27 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108240851.f7O8pRi76459@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 24 Aug 2001 01:51:27 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/24 01:51:27 PDT Modified files: . modules Log: vm-pop3d --> ports/mail/vm-pop3d Revision Changes Path 1.3716 +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 Aug 24 1:53:36 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5F57337B40A; Fri, 24 Aug 2001 01:53:30 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O8rUm76850; Fri, 24 Aug 2001 01:53:30 -0700 (PDT) (envelope-from peter) Message-Id: <200108240853.f7O8rUm76850@freefall.freebsd.org> From: Peter Wemm Date: Fri, 24 Aug 2001 01:53:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libkvm kvm_i386.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/24 01:53:30 PDT Modified files: lib/libkvm kvm_i386.c Log: Dynamically adjust to the value of KERNBASE in a crashdump, with a fallback for old kernels without the "kernbase" symbol. Revision Changes Path 1.13 +13 -3 src/lib/libkvm/kvm_i386.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 2: 9:51 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.newgold.net (aphex.newgold.net [209.42.222.44]) by hub.freebsd.org (Postfix) with SMTP id 793BD37B40E for ; Fri, 24 Aug 2001 02:09:43 -0700 (PDT) (envelope-from jmallett@mail.newgold.net) Received: (qmail 7468 invoked by uid 1000); 24 Aug 2001 09:09:37 -0000 Date: Fri, 24 Aug 2001 09:09:37 +0000 From: Joseph Mallett To: "Kenneth D. Merry" Cc: Dima Dorfman , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man4 adv.4 adw.4 ahb.4 bt.4 netgraph.4 ng_tty.4 Message-ID: <20010824090937.A7302@NewGold.NET> References: <200108232158.f7NLwcP61431@freefall.freebsd.org> <20010823164537.A854@panzer.kdm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010823164537.A854@panzer.kdm.org> User-Agent: Mutt/1.3.19i Organisation: New Gold Technology Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Aug 23, 2001 at 04:45:37PM -0600, Kenneth D. Merry wrote: > On Thu, Aug 23, 2001 at 14:58:38 -0700, Dima Dorfman wrote: > > dd 2001/08/23 14:58:38 PDT > > > > Modified files: > > share/man/man4 adv.4 adw.4 ahb.4 bt.4 netgraph.4 > > ng_tty.4 > > Log: > > Spelling police: queueing -> queuing > > > > PR: 29985 > > Submitted by: Joseph Mallett > > The PR is wrong on this count, both spellings are correct. > > Check www.m-w.com. > It's nice if you can keep manpages somewhat consistent, and ispell lists this as the correct spelling. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 2:12:12 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 20EC137B40A; Fri, 24 Aug 2001 02:12:05 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O9C5x81631; Fri, 24 Aug 2001 02:12:05 -0700 (PDT) (envelope-from peter) Message-Id: <200108240912.f7O9C5x81631@freefall.freebsd.org> From: Peter Wemm Date: Fri, 24 Aug 2001 02:12:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/gdb/i386 kvm-fbsd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/24 02:12:05 PDT Modified files: gnu/usr.bin/binutils/gdb/i386 kvm-fbsd.c Log: Dynamically adapt to kernbase changes on crashdumps, falling back to KERNBASE if the "kernbase" symbol is not present on older kernels. Revision Changes Path 1.25 +20 -2 src/gnu/usr.bin/binutils/gdb/i386/kvm-fbsd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 2:12:49 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 66A7237B405; Fri, 24 Aug 2001 02:12:43 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O9ChD81728; Fri, 24 Aug 2001 02:12:43 -0700 (PDT) (envelope-from jkoshy) Message-Id: <200108240912.f7O9ChD81728@freefall.freebsd.org> From: Joseph Koshy Date: Fri, 24 Aug 2001 02:12:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/sml-nj-devel Makefile distinfo pkg-plist ports/lang/sml-nj-devel/files do-patch-src-installml do-patch-src-makeml optional-patch-flint-access plist-cml plist-eXene patch-ab extra-patch-global-names targets.customized X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jkoshy 2001/08/24 02:12:43 PDT Modified files: lang/sml-nj-devel Makefile distinfo pkg-plist lang/sml-nj-devel/files patch-ab Added files: lang/sml-nj-devel/files do-patch-src-installml do-patch-src-makeml optional-patch-flint-access plist-cml plist-eXene Removed files: lang/sml-nj-devel/files extra-patch-global-names targets.customized Log: Upgrade to SML/NJ v110.34. Add a number of nifty configurability options. PR: ports/29656 Submitted by: Johannes 5 Joemann Revision Changes Path 1.13 +152 -14 ports/lang/sml-nj-devel/Makefile 1.4 +16 -13 ports/lang/sml-nj-devel/distinfo 1.4 +41 -41 ports/lang/sml-nj-devel/pkg-plist 1.6 +20 -10 ports/lang/sml-nj-devel/files/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 Aug 24 2:26:20 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EA5A437B401; Fri, 24 Aug 2001 02:26:17 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O9QHv86009; Fri, 24 Aug 2001 02:26:17 -0700 (PDT) (envelope-from peter) Message-Id: <200108240926.f7O9QHv86009@freefall.freebsd.org> From: Peter Wemm Date: Fri, 24 Aug 2001 02:26:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/savecore savecore.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/24 02:26:17 PDT Modified files: sbin/savecore savecore.c Log: Banish hard-coded KERNBASE references from savecore. Dynamically adjust to whatever kernbase is in the kernel that we are dumping. Revision Changes Path 1.43 +16 -2 src/sbin/savecore/savecore.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 2:27:41 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C743637B40A; Fri, 24 Aug 2001 02:27:36 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O9Rac86181; Fri, 24 Aug 2001 02:27:36 -0700 (PDT) (envelope-from jkoshy) Message-Id: <200108240927.f7O9Rac86181@freefall.freebsd.org> From: Joseph Koshy Date: Fri, 24 Aug 2001 02:27:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jkoshy 2001/08/24 02:27:36 PDT Modified files: en_US.ISO8859-1/articles/contributors article.sgml Log: Add `Johannes 5 Joemann' for his extensive patches to the SML-NJ port. Revision Changes Path 1.14 +5 -1 doc/en_US.ISO8859-1/articles/contributors/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 Aug 24 2:42:39 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 784F937B401; Fri, 24 Aug 2001 02:42:32 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O9gMl89175; Fri, 24 Aug 2001 02:42:22 -0700 (PDT) (envelope-from knu) Message-Id: <200108240942.f7O9gMl89175@freefall.freebsd.org> From: Akinori MUSHA Date: Fri, 24 Aug 2001 02:42:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/ruby-http-access Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/24 02:42:22 PDT Modified files: www/ruby-http-access Makefile distinfo Log: Update to 2.C. Revision Changes Path 1.3 +2 -6 ports/www/ruby-http-access/Makefile 1.3 +1 -1 ports/www/ruby-http-access/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 2:43:51 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6062D37B401; Fri, 24 Aug 2001 02:43:47 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O9hi489307; Fri, 24 Aug 2001 02:43:44 -0700 (PDT) (envelope-from peter) Message-Id: <200108240943.f7O9hi489307@freefall.freebsd.org> From: Peter Wemm Date: Fri, 24 Aug 2001 02:43:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libkvm kvm_proc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/24 02:43:44 PDT Modified files: lib/libkvm kvm_proc.c Log: Make ps -M corefile work again. This has been broken for quite some time. kvm_proclist() was aborting when it saw the ithreads with no pgrp. Revision Changes Path 1.37 +12 -7 src/lib/libkvm/kvm_proc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 2:47:44 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B4B1D37B403; Fri, 24 Aug 2001 02:47:39 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O9laT89792; Fri, 24 Aug 2001 02:47:36 -0700 (PDT) (envelope-from knu) Message-Id: <200108240947.f7O9laT89792@freefall.freebsd.org> From: Akinori MUSHA Date: Fri, 24 Aug 2001 02:47:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/ruby-soap Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/24 02:47:36 PDT Modified files: net/ruby-soap Makefile distinfo pkg-plist Log: Update to 1.3.7. Revision Changes Path 1.10 +2 -2 ports/net/ruby-soap/Makefile 1.9 +1 -1 ports/net/ruby-soap/distinfo 1.10 +9 -0 ports/net/ruby-soap/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 Aug 24 2:53:22 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BD7C37B40B; Fri, 24 Aug 2001 02:53:16 -0700 (PDT) (envelope-from wjv@FreeBSD.org) Received: (from wjv@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O9rGC90528; Fri, 24 Aug 2001 02:53:16 -0700 (PDT) (envelope-from wjv) Message-Id: <200108240953.f7O9rGC90528@freefall.freebsd.org> From: Johann Visagie Date: Fri, 24 Aug 2001 02:53:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/docbook-tdg Makefile distinfo pkg-comment pkg-descr pkg-plist ports/textproc/docbook-tdg/files index.html X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wjv 2001/08/24 02:53:16 PDT Modified files: textproc Makefile Added files: textproc/docbook-tdg Makefile distinfo pkg-comment pkg-descr pkg-plist textproc/docbook-tdg/files index.html Log: Add docbook-tdg 2.0.2, Norman Walsh's book, "DocBook: The Definitive Guide". Revision Changes Path 1.233 +2 -1 ports/textproc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 2:53:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 09DEB37B405; Fri, 24 Aug 2001 02:53:20 -0700 (PDT) (envelope-from wjv@FreeBSD.org) Received: (from wjv@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O9rKn90569; Fri, 24 Aug 2001 02:53:20 -0700 (PDT) (envelope-from wjv) Message-Id: <200108240953.f7O9rKn90569@freefall.freebsd.org> From: Johann Visagie Date: Fri, 24 Aug 2001 02:53:19 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wjv 2001/08/24 02:53:19 PDT Modified files: . modules Log: docbook-tdg --> ports/textproc/docbook-tdg Revision Changes Path 1.3717 +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 Aug 24 2:53:40 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 99F8F37B50E; Fri, 24 Aug 2001 02:53:26 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O9rQV90622; Fri, 24 Aug 2001 02:53:26 -0700 (PDT) (envelope-from peter) Message-Id: <200108240953.f7O9rQV90622@freefall.freebsd.org> From: Peter Wemm Date: Fri, 24 Aug 2001 02:53:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/ps ps.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/24 02:53:26 PDT Modified files: bin/ps ps.c Log: Handle kvm_getprocs() returning nothing. Dont pass -1 to a size for malloc(). Revision Changes Path 1.42 +2 -2 src/bin/ps/ps.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 2:56:49 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CE67537B401; Fri, 24 Aug 2001 02:56:44 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7O9uid90865; Fri, 24 Aug 2001 02:56:44 -0700 (PDT) (envelope-from peter) Message-Id: <200108240956.f7O9uid90865@freefall.freebsd.org> From: Peter Wemm Date: Fri, 24 Aug 2001 02:56:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/ps keyword.c print.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/24 02:56:44 PDT Modified files: bin/ps keyword.c print.c Log: On today's kernels masking with ~KERNBASE is turning out to be less than useful. It still hits at least 8 digits. Adjust for reality. This is still not satisfactory for the alpha if you add "-O paddr". Revision Changes Path 1.33 +3 -3 src/bin/ps/keyword.c 1.49 +3 -3 src/bin/ps/print.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 3: 0:57 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BB70937B40C; Fri, 24 Aug 2001 03:00:50 -0700 (PDT) (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OA0oQ91403; Fri, 24 Aug 2001 03:00:50 -0700 (PDT) (envelope-from demon) Message-Id: <200108241000.f7OA0oQ91403@freefall.freebsd.org> From: Dmitry Sivachenko Date: Fri, 24 Aug 2001 03:00:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/anjuta Makefile distinfo pkg-plist ports/devel/anjuta/files patch-configure patch-src-Makefile.in patch-macros-Makefile.in patch-po-Makefile.in.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2001/08/24 03:00:50 PDT Modified files: devel/anjuta Makefile distinfo pkg-plist devel/anjuta/files patch-configure patch-src-Makefile.in Removed files: devel/anjuta/files patch-macros-Makefile.in patch-po-Makefile.in.in Log: Upgrade to 0.1.7 Revision Changes Path 1.4 +2 -2 ports/devel/anjuta/Makefile 1.3 +1 -1 ports/devel/anjuta/distinfo 1.3 +1 -0 ports/devel/anjuta/pkg-plist 1.3 +5 -5 ports/devel/anjuta/files/patch-configure 1.3 +35 -35 ports/devel/anjuta/files/patch-src-Makefile.in To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 3:20:30 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 22AC837B40B; Fri, 24 Aug 2001 03:20:27 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OAKRn96416; Fri, 24 Aug 2001 03:20:27 -0700 (PDT) (envelope-from ache) Message-Id: <200108241020.f7OAKRn96416@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 24 Aug 2001 03:20:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_lockf.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/24 03:20:26 PDT Modified files: sys/kern kern_lockf.c Log: Remove extra check unneded now Revision Changes Path 1.35 +1 -3 src/sys/kern/kern_lockf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 3:22:21 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5AC9237B40B; Fri, 24 Aug 2001 03:22:16 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OAMGS96651; Fri, 24 Aug 2001 03:22:16 -0700 (PDT) (envelope-from ache) Message-Id: <200108241022.f7OAMGS96651@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 24 Aug 2001 03:22:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/smbfs smbfs_vnops.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/24 03:22:16 PDT Modified files: sys/fs/smbfs smbfs_vnops.c Log: Copy from kern_lockf.c: remove extra check Revision Changes Path 1.10 +1 -3 src/sys/fs/smbfs/smbfs_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 3:36:36 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9717237B410; Fri, 24 Aug 2001 03:36:29 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OAaTV97962; Fri, 24 Aug 2001 03:36:29 -0700 (PDT) (envelope-from sheldonh) Message-Id: <200108241036.f7OAaTV97962@freefall.freebsd.org> From: Sheldon Hearn Date: Fri, 24 Aug 2001 03:36:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys fcntl.2 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sheldonh 2001/08/24 03:36:29 PDT Modified files: lib/libc/sys fcntl.2 Log: Fix up English from previous 3 revisions. There is no such argument 'fildes' in the SYNOPSIS. It's called 'fd'. Revision Changes Path 1.29 +7 -7 src/lib/libc/sys/fcntl.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 3:42:18 2001 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 A387037B401; Fri, 24 Aug 2001 03:42:10 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id f7OAg8R11799; Fri, 24 Aug 2001 14:42:09 +0400 (MSD) (envelope-from ache) Date: Fri, 24 Aug 2001 14:42:07 +0400 From: "Andrey A. Chernov" To: Sheldon Hearn Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/sys fcntl.2 Message-ID: <20010824144206.A11759@nagual.pp.ru> References: <200108241036.f7OAaTV97962@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200108241036.f7OAaTV97962@freefall.freebsd.org> User-Agent: Mutt/1.3.21i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Aug 24, 2001 at 03:36:29 -0700, Sheldon Hearn wrote: > sheldonh 2001/08/24 03:36:29 PDT > > Modified files: > lib/libc/sys fcntl.2 > Log: > Fix up English from previous 3 revisions. Thanx! > There is no such argument 'fildes' in the SYNOPSIS. It's called 'fd'. It was there in original variant :-) -- 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 Fri Aug 24 3:52:41 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 431D837B40C; Fri, 24 Aug 2001 03:52:29 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OAqTc99815; Fri, 24 Aug 2001 03:52:29 -0700 (PDT) (envelope-from kris) Message-Id: <200108241052.f7OAqTc99815@freefall.freebsd.org> From: Kris Kennaway Date: Fri, 24 Aug 2001 03:52:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games Makefile ports/games/falconseye Makefile distinfo pkg-comment pkg-descr pkg-plist ports/games/falconseye/files patch-include_config_h patch-include_system_h patch-include_unixconf_h patch-sys_unix_Makefile_doc patch-sys_unix_Makefile_src ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/24 03:52:28 PDT Modified files: games Makefile Added files: games/falconseye Makefile distinfo pkg-comment pkg-descr pkg-plist games/falconseye/files patch-include_config_h patch-include_system_h patch-include_unixconf_h patch-sys_unix_Makefile_doc patch-sys_unix_Makefile_src patch-sys_unix_Makefile_top patch-sys_unix_Makefile_utl patch-sys_unix_nethack_sh patch-sys_unix_unixunix_c patch-win_Qt_qt_win_cpp patch-win_jtp_gamedata_config_jtp_keys_txt patch-win_jtp_gamedata_config_jtp_opts_txt patch-win_jtp_jtp_win_c substitute x-config Log: Add falconseye 1.9.3, a roguelike game heavily based on nethack. If you've ever wondered what NetHack would be like with sound effects, a MIDI soundtrack, a GUI and isometric dungeon interface a la Diablo, here's your chance. Obtained from: OpenBSD (after unsmoking much crack) Revision Changes Path 1.408 +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 Aug 24 3:58:20 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B94E37B407; Fri, 24 Aug 2001 03:58:15 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OAwFi00464; Fri, 24 Aug 2001 03:58:15 -0700 (PDT) (envelope-from kris) Message-Id: <200108241058.f7OAwFi00464@freefall.freebsd.org> From: Kris Kennaway Date: Fri, 24 Aug 2001 03:58:14 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/24 03:58:14 PDT Modified files: . modules Log: falconseye ports/games/falconseye ted ports/editors/ted Revision Changes Path 1.3718 +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 Fri Aug 24 3:59:37 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9117937B40D; Fri, 24 Aug 2001 03:59:32 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OAxWj00619; Fri, 24 Aug 2001 03:59:32 -0700 (PDT) (envelope-from ache) Message-Id: <200108241059.f7OAxWj00619@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 24 Aug 2001 03:59:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys fcntl.2 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/24 03:59:32 PDT Modified files: lib/libc/sys fcntl.2 Log: Change start means ... to .Fa l_start means ... Revision Changes Path 1.30 +4 -2 src/lib/libc/sys/fcntl.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 4: 5:15 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D093E37B401; Fri, 24 Aug 2001 04:05:11 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OB5BD07143; Fri, 24 Aug 2001 04:05:11 -0700 (PDT) (envelope-from ache) Message-Id: <200108241105.f7OB5BD07143@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 24 Aug 2001 04:05:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys fcntl.2 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/24 04:05:11 PDT Modified files: lib/libc/sys fcntl.2 Log: Fildes -> Fd too (started from big letter) Revision Changes Path 1.31 +2 -2 src/lib/libc/sys/fcntl.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 4:13: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A03A37B40A; Fri, 24 Aug 2001 04:12:59 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OBCxW10803; Fri, 24 Aug 2001 04:12:59 -0700 (PDT) (envelope-from ache) Message-Id: <200108241112.f7OBCxW10803@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 24 Aug 2001 04:12:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys fcntl.2 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/24 04:12:58 PDT Modified files: lib/libc/sys fcntl.2 Log: Fd is macro too, so use \&Fd Revision Changes Path 1.32 +2 -2 src/lib/libc/sys/fcntl.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 4:29:36 2001 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 3317A37B406; Fri, 24 Aug 2001 04:29:28 -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.9.3/8.8.7) with ESMTP id VAA13300; Fri, 24 Aug 2001 21:29:26 +1000 Date: Fri, 24 Aug 2001 21:29:19 +1000 (EST) From: Bruce Evans X-X-Sender: To: "Andrey A. Chernov" Cc: , Subject: Re: cvs commit: src/sys/nfsclient nfs_lock.c In-Reply-To: <200108231805.f7NI5Nk23734@freefall.freebsd.org> Message-ID: <20010824212601.G939-100000@besplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 23 Aug 2001, Andrey A. Chernov wrote: > ache 2001/08/23 11:05:22 PDT > > Modified files: > sys/nfsclient nfs_lock.c > Log: > Copy from nfs/nfs_lock.c, fix || -> && > > Revision Changes Path > 1.11 +1 -1 src/sys/nfsclient/nfs_lock.c All your changes to this file got blow away -- it's bac to rev.1.6. I think you're not supposed to change files in this directory. I think it is updated automatically from ../nfs. The last "update" of nfs_lock.c was apparently done by copying an old version. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 4:39:53 2001 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 2B47137B40B; Fri, 24 Aug 2001 04:39:46 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id f7OBddi12769; Fri, 24 Aug 2001 15:39:40 +0400 (MSD) (envelope-from ache) Date: Fri, 24 Aug 2001 15:39:38 +0400 From: "Andrey A. Chernov" To: Bruce Evans Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, peter@FreeBSD.org Subject: Re: cvs commit: src/sys/nfsclient nfs_lock.c Message-ID: <20010824153937.A12647@nagual.pp.ru> References: <200108231805.f7NI5Nk23734@freefall.freebsd.org> <20010824212601.G939-100000@besplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010824212601.G939-100000@besplex.bde.org> User-Agent: Mutt/1.3.21i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Aug 24, 2001 at 21:29:19 +1000, Bruce Evans wrote: > > Modified files: > > sys/nfsclient nfs_lock.c > > All your changes to this file got blow away -- it's bac to rev.1.6. I > think you're not supposed to change files in this directory. I think > it is updated automatically from ../nfs. The last "update" of nfs_lock.c > was apparently done by copying an old version. I am not quite sure about purpose of nfsclient directory and just keep it in sync with main nfs. Ian tells me that Peter use it for some special thing, but I don't know more details. IMHO will be better if Peter or someone who knows the purpose put some README describing it in nfsclient and nfsserver directories to avoid confusion. -- 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 Fri Aug 24 4:41:46 2001 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id 44A7637B40A; Fri, 24 Aug 2001 04:41:37 -0700 (PDT) (envelope-from mi@aldan.algebra.com) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.11.5/8.11.5) with ESMTP id f7OBdiW83814; Fri, 24 Aug 2001 07:39:45 -0400 (EDT) (envelope-from mi@aldan.algebra.com) Message-Id: <200108241139.f7OBdiW83814@aldan.algebra.com> Date: Fri, 24 Aug 2001 07:39:41 -0400 (EDT) From: Mikhail Teterin Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf To: dillon@earth.backplane.com Cc: root@aldan.algebra.com, brian@Awfulhak.org, ache@nagual.pp.ru, kuriyama@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, brian@freebsd-services.com In-Reply-To: <200108240053.f7O0rFF91533@earth.backplane.com> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 23 Aug, Matt Dillon wrote: > :I was only talking about the sandbox itself -- what's now in > :/etc/namedb/s -- what named has to be able to rewrite... Cached > :zones... > > The sandbox is /etc/namedb, not /etc/namedb/s. If you chroot, then > you have no choice in regards to where the secondaries go. Chroot is not in question. The existing sample configuration, suggests the ``/etc/namedb/s'' as the place for cached zones. I think, that should be replaced with /var/db/named (or /var/db/dns). Outright chroot-ing is a different story and is unnecessary if named runs as bind:bind... I guess, the term ``sandbox'' is confusing... -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 4:46: 0 2001 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 5D2F937B40A; Fri, 24 Aug 2001 04:45:53 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id f7OBjZT12909; Fri, 24 Aug 2001 15:45:36 +0400 (MSD) (envelope-from ache) Date: Fri, 24 Aug 2001 15:45:34 +0400 From: "Andrey A. Chernov" To: Mikhail Teterin Cc: dillon@earth.backplane.com, root@aldan.algebra.com, brian@Awfulhak.org, kuriyama@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, brian@freebsd-services.com Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.var.dist src/etc/namedb named.conf Message-ID: <20010824154533.B12647@nagual.pp.ru> References: <200108240053.f7O0rFF91533@earth.backplane.com> <200108241139.f7OBdiW83814@aldan.algebra.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200108241139.f7OBdiW83814@aldan.algebra.com> User-Agent: Mutt/1.3.21i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Aug 24, 2001 at 07:39:41 -0400, Mikhail Teterin wrote: > should be replaced with /var/db/named (or /var/db/dns). Outright > chroot-ing is a different story and is unnecessary if named runs as > bind:bind... /var/db/named sounding better and easier to find. I am for changing zones location to there also against sandbox unless all dialup bugs will be resolved somehow, probably by modifying named. -- 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 Fri Aug 24 5: 0:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C9D1237B40C; Fri, 24 Aug 2001 05:00:45 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OC0jj15466; Fri, 24 Aug 2001 05:00:45 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108241200.f7OC0jj15466@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 24 Aug 2001 05:00:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/vm-pop3d pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/24 05:00:45 PDT Modified files: mail/vm-pop3d pkg-descr Log: add WWW: Approved by: MAINTAINER Revision Changes Path 1.2 +2 -0 ports/mail/vm-pop3d/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 Aug 24 5:17:14 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 130FD37B406; Fri, 24 Aug 2001 05:17:09 -0700 (PDT) (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OCH9W20233; Fri, 24 Aug 2001 05:17:09 -0700 (PDT) (envelope-from mi) Message-Id: <200108241217.f7OCH9W20233@freefall.freebsd.org> From: Mikhail Teterin Date: Fri, 24 Aug 2001 05:17:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/gd Makefile ports/graphics/gd/files patch-malloc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mi 2001/08/24 05:17:09 PDT Modified files: graphics/gd Makefile Added files: graphics/gd/files patch-malloc Log: LIB_DEPEND on freetype again (regardless of version, what comes with XFree86-4 should work too). I could've sworn, I saw some other port use the seemingly non-existent USE_FREETYPE2. As a bonus, add a patch for malloc.h -> stdlib.h... While I'm here (again), switch the default maintainership to ports@. Submitted by: John Hay Revision Changes Path 1.40 +3 -2 ports/graphics/gd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 5:30: 9 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 77FCC37B40B; Fri, 24 Aug 2001 05:30:05 -0700 (PDT) (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OCU5s21524; Fri, 24 Aug 2001 05:30:05 -0700 (PDT) (envelope-from demon) Message-Id: <200108241230.f7OCU5s21524@freefall.freebsd.org> From: Dmitry Sivachenko Date: Fri, 24 Aug 2001 05:30:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/glade pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2001/08/24 05:30:05 PDT Modified files: devel/glade pkg-descr Log: Correct WWW. Submitted by: Chris Faulhaber Revision Changes Path 1.4 +1 -1 ports/devel/glade/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 Aug 24 5:38:23 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CFFEF37B40A; Fri, 24 Aug 2001 05:38:16 -0700 (PDT) (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OCcGO22404; Fri, 24 Aug 2001 05:38:16 -0700 (PDT) (envelope-from demon) Message-Id: <200108241238.f7OCcGO22404@freefall.freebsd.org> From: Dmitry Sivachenko Date: Fri, 24 Aug 2001 05:38:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/kdesdk Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2001/08/24 05:38:16 PDT Modified files: devel/kdesdk Makefile Log: Depend on kdebase rather that kdelibs. Revision Changes Path 1.6 +2 -2 ports/devel/kdesdk/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 5:47:42 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BFE6B37B40F; Fri, 24 Aug 2001 05:47:36 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OClaq23855; Fri, 24 Aug 2001 05:47:36 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108241247.f7OClaq23855@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Fri, 24 Aug 2001 05:47:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/mango Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/24 05:47:36 PDT Modified files: misc/mango Makefile Log: Fix up Makefile Change MASTER_SITE PR: 30021 Submitted by: maintainer Revision Changes Path 1.3 +4 -4 ports/misc/mango/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 5:48: 3 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B71B37B411; Fri, 24 Aug 2001 05:47:55 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OCltN23941; Fri, 24 Aug 2001 05:47:55 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108241247.f7OCltN23941@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 24 Aug 2001 05:47:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/vm-pop3d Makefile ports/mail/vm-pop3d/files patch-vm-pop3d.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/24 05:47:55 PDT Modified files: mail/vm-pop3d Makefile Added files: mail/vm-pop3d/files patch-vm-pop3d.h Log: change the maintainer's e-mail address. support ip-base virtual with -DWITH_IPVIRTUAL. PR: 30025 Submitted by: MAINTAINER Revision Changes Path 1.2 +24 -4 ports/mail/vm-pop3d/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 6: 3:53 2001 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id F31BC37B40B; Fri, 24 Aug 2001 06:03:42 -0700 (PDT) (envelope-from mi@aldan.algebra.com) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.11.5/8.11.5) with ESMTP id f7OD24W86377; Fri, 24 Aug 2001 09:02:05 -0400 (EDT) (envelope-from mi@aldan.algebra.com) Message-Id: <200108241302.f7OD24W86377@aldan.algebra.com> Date: Fri, 24 Aug 2001 09:02:01 -0400 (EDT) From: Mikhail Teterin Subject: relocating named's zones's default location (was Re: cvs commit: src/etc/defaults rc.conf...) To: ache@nagual.pp.ru Cc: dillon@earth.backplane.com, root@aldan.algebra.com, brian@Awfulhak.org, kuriyama@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, brian@freebsd-services.com In-Reply-To: <20010824154533.B12647@nagual.pp.ru> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 24 Aug, Andrey A. Chernov wrote: > On Fri, Aug 24, 2001 at 07:39:41 -0400, Mikhail Teterin wrote: > >> should be replaced with /var/db/named (or /var/db/dns). Outright >> chroot-ing is a different story and is unnecessary if named runs as >> bind:bind... I'm not sure about the primary zones -- those served by this named, which are -- arguably -- parts of the configuration, but the caching of the secondary ones should definetly move to under /var. I think, some Linuxes have them under /var as well. Them being databases, they should be under /var/db, IMHO. > /var/db/named sounding better and easier to find. I am for changing > zones location to there also against sandbox unless all dialup bugs > will be resolved somehow, probably by modifying named. This is independent of which user is running named. It can still be run as root, but cache secondary zones in /var/db/named :) -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 6: 6:57 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1164B37B408; Fri, 24 Aug 2001 06:06:51 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OD6p129264; Fri, 24 Aug 2001 06:06:51 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108241306.f7OD6p129264@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Fri, 24 Aug 2001 06:06:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/zangband Makefile distinfo pkg-plist.a pkg-plist.b pkg-plist.ja ports/games/zangband/files patch-ac patch-ad patch-ae MESSAGE.in patch-aa patch-ab Makefile.in makefile-adjust.patch X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/24 06:06:51 PDT Modified files: games/zangband Makefile distinfo games/zangband/files MESSAGE.in patch-aa patch-ab Added files: games/zangband/files patch-ac patch-ad patch-ae Removed files: games/zangband pkg-plist.a pkg-plist.b pkg-plist.ja games/zangband/files Makefile.in makefile-adjust.patch Log: Update to 2.6.1 Make standalone port PR: 30017 Submitted by: maintainer Revision Changes Path 1.11 +11 -54 ports/games/zangband/Makefile 1.7 +1 -2 ports/games/zangband/distinfo 1.2 +1 -2 ports/games/zangband/files/MESSAGE.in 1.3 +11 -39 ports/games/zangband/files/patch-aa 1.2 +10 -10 ports/games/zangband/files/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 Aug 24 6: 7:37 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C3F537B409; Fri, 24 Aug 2001 06:07:34 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OD7YV29347; Fri, 24 Aug 2001 06:07:34 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108241307.f7OD7YV29347@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Fri, 24 Aug 2001 06:07:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/zangband pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/24 06:07:34 PDT Added files: games/zangband pkg-plist Log: Add pkg-plist missing from last commit. PR: 30017 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 Fri Aug 24 6:16:48 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A6C8137B406; Fri, 24 Aug 2001 06:16:43 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7ODGhP30391; Fri, 24 Aug 2001 06:16:43 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108241316.f7ODGhP30391@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Fri, 24 Aug 2001 06:16:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/magiccube4d Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/24 06:16:43 PDT Modified files: games/magiccube4d Makefile distinfo Log: Fix MASTER_SITE not being found PR: 29950 Submitted by: maintainer Revision Changes Path 1.3 +3 -2 ports/games/magiccube4d/Makefile 1.2 +1 -3 ports/games/magiccube4d/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 6:39: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9FC7337B40C; Fri, 24 Aug 2001 06:39:01 -0700 (PDT) (envelope-from rpratt@FreeBSD.org) Received: (from rpratt@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7ODd1f67858; Fri, 24 Aug 2001 06:39:01 -0700 (PDT) (envelope-from rpratt) Message-Id: <200108241339.f7ODd1f67858@freefall.freebsd.org> From: Randy Pratt Date: Fri, 24 Aug 2001 06:39:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/install chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rpratt 2001/08/24 06:39:01 PDT Modified files: en_US.ISO8859-1/books/handbook/install chapter.sgml Log: Fix typo for marking slice as bootable. A-->S Submitted by: milan_mlynarcik@hotmail.com Approved by: murray Revision Changes Path 1.98 +2 -2 doc/en_US.ISO8859-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 Fri Aug 24 6:39:40 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EFB1837B40B; Fri, 24 Aug 2001 06:39:27 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7ODdRE69879; Fri, 24 Aug 2001 06:39:27 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108241339.f7ODdRE69879@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Fri, 24 Aug 2001 06:39:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/astro/setiathome pkg-message Makefile pkg-install pkg-plist ports/astro/setiathome/files rc.setiathome.conf setiathome.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/24 06:39:27 PDT Modified files: astro/setiathome Makefile pkg-install pkg-plist astro/setiathome/files setiathome.sh Added files: astro/setiathome pkg-message astro/setiathome/files rc.setiathome.conf Log: Update Maintainer's Email Add pkg-message Add rc.setiathome.conf Make messages go through syslog PACKAGE_BUILDING replaced by BATCH PKGMESSAGE and PKGDEINSTALL added PR: 29943 Submitted by: maintainer Revision Changes Path 1.28 +50 -34 ports/astro/setiathome/Makefile 1.8 +128 -53 ports/astro/setiathome/pkg-install 1.5 +5 -1 ports/astro/setiathome/pkg-plist 1.6 +117 -77 ports/astro/setiathome/files/setiathome.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 6:44:57 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F2AD37B40B; Fri, 24 Aug 2001 06:44:52 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7ODiqF06041; Fri, 24 Aug 2001 06:44:52 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108241344.f7ODiqF06041@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Fri, 24 Aug 2001 06:44:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/dkimap4 Makefile distinfo pkg-plist ports/mail/dkimap4/files patch-pop.C X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/24 06:44:51 PDT Modified files: mail/dkimap4 Makefile distinfo pkg-plist Removed files: mail/dkimap4/files patch-pop.C Log: Remove files/patch-pop.C(already included in source) Update the dkimap4 port to the latest version, 2.36 Add installation of README PR: 29914 Submitted by: maintainer Revision Changes Path 1.2 +10 -2 ports/mail/dkimap4/Makefile 1.2 +1 -1 ports/mail/dkimap4/distinfo 1.2 +2 -0 ports/mail/dkimap4/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 Aug 24 6:51:46 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B3E6A37B407; Fri, 24 Aug 2001 06:51:41 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7ODpfB41972; Fri, 24 Aug 2001 06:51:41 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108241351.f7ODpfB41972@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 24 Aug 2001 06:51:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/janosvm Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/24 06:51:41 PDT Modified files: java/janosvm Makefile Log: add X dependence Revision Changes Path 1.2 +3 -1 ports/java/janosvm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 6:56:56 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4EB9E37B414; Fri, 24 Aug 2001 06:56:53 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7ODur042711; Fri, 24 Aug 2001 06:56:53 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108241356.f7ODur042711@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Fri, 24 Aug 2001 06:56:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/gnotepad+ Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/24 06:56:53 PDT Modified files: editors/gnotepad+ Makefile Log: Line 737 of the configure.in file should have a no instead of a yes for use_gtkhtml= PR: 29431 Submitted by: Antonio M. D'souza Revision Changes Path 1.14 +4 -1 ports/editors/gnotepad+/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 7: 8:16 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A709937B408; Fri, 24 Aug 2001 07:08:11 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OE8Be47242; Fri, 24 Aug 2001 07:08:11 -0700 (PDT) (envelope-from knu) Message-Id: <200108241408.f7OE8Be47242@freefall.freebsd.org> From: Akinori MUSHA Date: Fri, 24 Aug 2001 07:08:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/gd Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/24 07:08:11 PDT Modified files: graphics/gd Makefile Log: Conditionalize the dependency on bzip2. De-portlint a bit. Revision Changes Path 1.41 +7 -4 ports/graphics/gd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 7:15:44 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ECBF737B401; Fri, 24 Aug 2001 07:15:40 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OEFeb48227; Fri, 24 Aug 2001 07:15:40 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108241415.f7OEFeb48227@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 24 Aug 2001 07:15:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc Makefile ports/irc/sircd Makefile distinfo pkg-comment pkg-descr pkg-plist ports/irc/sircd/files patch-sircd::src::srv_commands.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/24 07:15:40 PDT Modified files: irc Makefile Added files: irc/sircd Makefile distinfo pkg-comment pkg-descr pkg-plist irc/sircd/files patch-sircd::src::srv_commands.c Log: add sircd The Smart IRC Daemon Revision Changes Path 1.36 +2 -1 ports/irc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 7:15:56 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0FDF337B40B; Fri, 24 Aug 2001 07:15:45 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OEFjR48272; Fri, 24 Aug 2001 07:15:45 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108241415.f7OEFjR48272@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 24 Aug 2001 07:15: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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/24 07:15:44 PDT Modified files: . modules Log: sircd --> ports/irc/sircd Revision Changes Path 1.3719 +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 Aug 24 7:32:47 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 32D5937B409; Fri, 24 Aug 2001 07:32:43 -0700 (PDT) (envelope-from roam@FreeBSD.org) Received: (from roam@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OEWhk51559; Fri, 24 Aug 2001 07:32:43 -0700 (PDT) (envelope-from roam) Message-Id: <200108241432.f7OEWhk51559@freefall.freebsd.org> From: Peter Pentchev Date: Fri, 24 Aug 2001 07:32:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/postgresql7 pkg-message X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2001/08/24 07:32:43 PDT Modified files: databases/postgresql7 pkg-message Log: Correct the config file name. PR: 30022 Submitted by: maintainer Revision Changes Path 1.5 +1 -1 ports/databases/postgresql7/pkg-message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 7:33:21 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 28F9737B403; Fri, 24 Aug 2001 07:33:13 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OEXDb51767; Fri, 24 Aug 2001 07:33:13 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108241433.f7OEXDb51767@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Fri, 24 Aug 2001 07:33:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils Makefile ports/sysutils/diskcheckd Makefile pkg-comment pkg-descr pkg-plist ports/sysutils/diskcheckd/files diskcheckd.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/24 07:33:13 PDT Modified files: sysutils Makefile Added files: sysutils/diskcheckd Makefile pkg-comment pkg-descr pkg-plist sysutils/diskcheckd/files diskcheckd.sh Log: Add initial diskcheckd skeleton while waiting for repo copy. Revision Changes Path 1.210 +2 -1 ports/sysutils/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 7:52:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D68037B409; Fri, 24 Aug 2001 07:52:05 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OEq5754286; Fri, 24 Aug 2001 07:52:05 -0700 (PDT) (envelope-from brian) Message-Id: <200108241452.f7OEq5754286@freefall.freebsd.org> From: Brian Somers Date: Fri, 24 Aug 2001 07:52:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libnetgraph netgraph.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/24 07:52:05 PDT Modified files: lib/libnetgraph netgraph.3 Log: Explain what the return value from NgRecvMsg() and NgRecvData() means, specifically that 0 means the socket has been closed. Revision Changes Path 1.13 +7 -1 src/lib/libnetgraph/netgraph.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 7:52:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4163137B405; Fri, 24 Aug 2001 07:52:38 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OEqcn54450; Fri, 24 Aug 2001 07:52:38 -0700 (PDT) (envelope-from brian) Message-Id: <200108241452.f7OEqcn54450@freefall.freebsd.org> From: Brian Somers Date: Fri, 24 Aug 2001 07:52:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/pppoed pppoed.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/24 07:52:38 PDT Modified files: libexec/pppoed pppoed.c Log: Understand that a return value of 0 from NgRecvMsg() means that the socket was closed. This prevents erroneous ``Unexpected netgraph version'' from turning up in the log. Revision Changes Path 1.14 +9 -3 src/libexec/pppoed/pppoed.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 7:53: 4 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 61CF437B410; Fri, 24 Aug 2001 07:52:53 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OEqrR54519; Fri, 24 Aug 2001 07:52:53 -0700 (PDT) (envelope-from brian) Message-Id: <200108241452.f7OEqrR54519@freefall.freebsd.org> From: Brian Somers Date: Fri, 24 Aug 2001 07:52:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp ether.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/24 07:52:53 PDT Modified files: usr.sbin/ppp ether.c Log: Handle return values of 0 from NgRecvMsg() properly. Revision Changes Path 1.22 +3 -3 src/usr.sbin/ppp/ether.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 7:53:48 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CA8DB37B405; Fri, 24 Aug 2001 07:53:41 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OErfl54694; Fri, 24 Aug 2001 07:53:41 -0700 (PDT) (envelope-from brian) Message-Id: <200108241453.f7OErfl54694@freefall.freebsd.org> From: Brian Somers Date: Fri, 24 Aug 2001 07:53:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp ether.c netgraph.c X-FreeBSD-CVS-Branch: NETGRAPH Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/24 07:53:41 PDT Modified files: (Branch: NETGRAPH) usr.sbin/ppp ether.c netgraph.c Log: Handle return values of 0 from NgRecvMsg() properly. Revision Changes Path 1.12.2.11 +3 -3 src/usr.sbin/ppp/ether.c 1.1.2.3 +2 -2 src/usr.sbin/ppp/Attic/netgraph.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 7:55:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AF8E537B407; Fri, 24 Aug 2001 07:55:36 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OEtaH55021; Fri, 24 Aug 2001 07:55:36 -0700 (PDT) (envelope-from asami) Message-Id: <200108241455.f7OEtaH55021@freefall.freebsd.org> From: Satoshi Asami Date: Fri, 24 Aug 2001 07:55:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/compat22 Makefile ports/misc/compat3x Makefile ports/misc/compat4x Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG asami 2001/08/24 07:55:36 PDT Modified files: misc/compat22 Makefile misc/compat3x Makefile misc/compat4x Makefile Log: Create target directories before installation. Submitted by: bento Revision Changes Path 1.4 +2 -2 ports/misc/compat22/Makefile 1.4 +2 -2 ports/misc/compat3x/Makefile 1.4 +2 -2 ports/misc/compat4x/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 7:57:25 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B0D3A37B401; Fri, 24 Aug 2001 07:57:19 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OEvJA55312; Fri, 24 Aug 2001 07:57:19 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108241457.f7OEvJA55312@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Fri, 24 Aug 2001 07:57:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/maradns Makefile distinfo pkg-plist ports/net/maradns/files patch-example_mararc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/24 07:57:19 PDT Modified files: net/maradns Makefile distinfo pkg-plist net/maradns/files patch-example_mararc Log: Update to 0.8.16 PR: 29913 Submitted by: maintainer Revision Changes Path 1.5 +17 -8 ports/net/maradns/Makefile 1.5 +1 -1 ports/net/maradns/distinfo 1.5 +24 -14 ports/net/maradns/pkg-plist 1.3 +8 -9 ports/net/maradns/files/patch-example_mararc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 8: 1:58 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C67AE37B40A; Fri, 24 Aug 2001 08:01:55 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OF1t856010; Fri, 24 Aug 2001 08:01:55 -0700 (PDT) (envelope-from knu) Message-Id: <200108241501.f7OF1t856010@freefall.freebsd.org> From: Akinori MUSHA Date: Fri, 24 Aug 2001 08:01:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/aureal-kmod Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/24 08:01:55 PDT Modified files: audio/aureal-kmod Makefile Log: Use a better way to extract a revision from a file. This unbreaks `make index' on CURRENT. Revision Changes Path 1.11 +3 -3 ports/audio/aureal-kmod/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 8:20: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C0C0937B409; Fri, 24 Aug 2001 08:19:58 -0700 (PDT) (envelope-from sf@FreeBSD.org) Received: (from sf@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OFJwf60997; Fri, 24 Aug 2001 08:19:58 -0700 (PDT) (envelope-from sf) Message-Id: <200108241519.f7OFJwf60997@freefall.freebsd.org> From: FUJISHIMA Satsuki Date: Fri, 24 Aug 2001 08:19:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc/ninja Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sf 2001/08/24 08:19:58 PDT Modified files: irc/ninja Makefile distinfo Log: update to 1.5.3. pass maintainership to Anders Andersson. Submitted by: Anders Andersson Revision Changes Path 1.20 +3 -3 ports/irc/ninja/Makefile 1.10 +1 -1 ports/irc/ninja/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 8:33:54 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BC48937B403; Fri, 24 Aug 2001 08:33:50 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OFXoB62655; Fri, 24 Aug 2001 08:33:50 -0700 (PDT) (envelope-from knu) Message-Id: <200108241533.f7OFXoB62655@freefall.freebsd.org> From: Akinori MUSHA Date: Fri, 24 Aug 2001 08:33:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/kdelibs2 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/24 08:33:50 PDT Modified files: x11/kdelibs2 Makefile Log: Conditionalize the dependency on bzip2. Revision Changes Path 1.81 +4 -2 ports/x11/kdelibs2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 8:38:46 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.musha.org (daemon.musha.org [61.122.44.178]) by hub.freebsd.org (Postfix) with ESMTP id 90AC237B407; Fri, 24 Aug 2001 08:38:37 -0700 (PDT) (envelope-from knu@iDaemons.org) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id 488074D833; Sat, 25 Aug 2001 00:38:36 +0900 (JST) Date: Sat, 25 Aug 2001 00:38:36 +0900 Message-ID: <86g0ahfoxv.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Cc: will@FreeBSD.org, ports@FreeBSD.org Subject: Re: cvs commit: ports/x11/kdelibs2 Makefile In-Reply-To: <200108241533.f7OFXoB62655@freefall.freebsd.org> References: <200108241533.f7OFXoB62655@freefall.freebsd.org> User-Agent: Wanderlust/2.7.2 (Too Funky) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-1?Q?Unebigory=F2mae?=) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Fri, 24 Aug 2001 08:33:50 -0700 (PDT), I wrote: > knu 2001/08/24 08:33:50 PDT > > Modified files: > x11/kdelibs2 Makefile > Log: > Conditionalize the dependency on bzip2. I believe x11/kdelibs2 was the last port which depended on the bzip2 port (archivers/bzip2). With this commit, all the dependencies on the bzip2 port have completely gone for 4-STABLE and 5-CURRENT. :) -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "Freeze this moment a little bit longer, make each impression a little bit stronger.. Experience slips away -- Time stand still" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 8:42:52 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 40AC137B407; Fri, 24 Aug 2001 08:42:44 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OFgiw63876; Fri, 24 Aug 2001 08:42:44 -0700 (PDT) (envelope-from ache) Message-Id: <200108241542.f7OFgiw63876@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 24 Aug 2001 08:42: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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/24 08:42:44 PDT Modified files: . modules Log: drweb --> ports/security/drweb Revision Changes Path 1.3720 +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 Aug 24 8:42:51 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E56837B403; Fri, 24 Aug 2001 08:42:41 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OFgfG63837; Fri, 24 Aug 2001 08:42:41 -0700 (PDT) (envelope-from ache) Message-Id: <200108241542.f7OFgfG63837@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 24 Aug 2001 08:42:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security Makefile ports/security/drweb Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist ports/security/drweb/files drwebd.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/24 08:42:41 PDT Modified files: security Makefile Added files: security/drweb Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist security/drweb/files drwebd.sh Log: DrWeb antivirus, FreeBSD binary Revision Changes Path 1.225 +2 -1 ports/security/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 8:46:35 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 87D5A37B40C; Fri, 24 Aug 2001 08:46:30 -0700 (PDT) (envelope-from robert@FreeBSD.org) Received: (from robert@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OFkUe64592; Fri, 24 Aug 2001 08:46:30 -0700 (PDT) (envelope-from robert) Message-Id: <200108241546.f7OFkUe64592@freefall.freebsd.org> From: Robert Drehmel Date: Fri, 24 Aug 2001 08:46:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook authors.ent doc/en_US.ISO8859-1/articles/contributors article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG robert 2001/08/24 08:46:30 PDT Modified files: en_US.ISO8859-1/books/handbook authors.ent en_US.ISO8859-1/articles/contributors article.sgml Log: - add an entity for myself - add myself to the developers section Approved by: jake Revision Changes Path 1.181 +3 -1 doc/en_US.ISO8859-1/books/handbook/authors.ent 1.15 +5 -1 doc/en_US.ISO8859-1/articles/contributors/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 Aug 24 8:49:35 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C594E37B406; Fri, 24 Aug 2001 08:49:30 -0700 (PDT) (envelope-from roam@FreeBSD.org) Received: (from roam@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OFnUj64894; Fri, 24 Aug 2001 08:49:30 -0700 (PDT) (envelope-from roam) Message-Id: <200108241549.f7OFnUj64894@freefall.freebsd.org> From: Peter Pentchev Date: Fri, 24 Aug 2001 08:49:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_sig.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2001/08/24 08:49:30 PDT Modified files: sys/kern kern_sig.c Log: Prevent passing a null pointer as a filename to vn_open(), if for some reason expand_name() failed to build a core file name. PR: 29931 Submitted by: Foldi Tamas Reviewed by: dd, -arch MFC after: 1 month Revision Changes Path 1.128 +3 -1 src/sys/kern/kern_sig.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 8:57:37 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CD1CC37B40C; Fri, 24 Aug 2001 08:57:23 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OFvND66112; Fri, 24 Aug 2001 08:57:23 -0700 (PDT) (envelope-from ache) Message-Id: <200108241557.f7OFvND66112@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 24 Aug 2001 08:57:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security Makefile ports/security/drweb-sendmail Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist ports/security/drweb-sendmail/files Makefile drweb-smf.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/24 08:57:23 PDT Modified files: security Makefile Added files: security/drweb-sendmail Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist security/drweb-sendmail/files Makefile drweb-smf.sh Log: DrWeb antivirus sendmail integration Revision Changes Path 1.226 +2 -1 ports/security/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 8:57:46 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C48FC37B413; Fri, 24 Aug 2001 08:57:27 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OFvRc66151; Fri, 24 Aug 2001 08:57:27 -0700 (PDT) (envelope-from ache) Message-Id: <200108241557.f7OFvRc66151@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 24 Aug 2001 08:57:27 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/24 08:57:27 PDT Modified files: . modules Log: drweb-sendmail --> ports/security/drweb-sendmail Revision Changes Path 1.3721 +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 Aug 24 9: 8:21 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A64A437B407; Fri, 24 Aug 2001 09:08:11 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OG8B370473; Fri, 24 Aug 2001 09:08:11 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108241608.f7OG8B370473@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Fri, 24 Aug 2001 09:08:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/rblcheck Makefile ports/mail/rblcheck/scripts configure.rbl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/24 09:08:11 PDT Modified files: mail/rblcheck Makefile mail/rblcheck/scripts configure.rbl Log: Fix typo PR: 30032 Submitted by: maintainer Revision Changes Path 1.16 +2 -2 ports/mail/rblcheck/Makefile 1.4 +3 -3 ports/mail/rblcheck/scripts/configure.rbl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 9:41:49 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4BBB737B40E; Fri, 24 Aug 2001 09:41:46 -0700 (PDT) (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OGfkC75094; Fri, 24 Aug 2001 09:41:46 -0700 (PDT) (envelope-from mi) Message-Id: <200108241641.f7OGfkC75094@freefall.freebsd.org> From: Mikhail Teterin Date: Fri, 24 Aug 2001 09:41:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/palm/p5-Palm Makefile distinfo ports/palm/coldsync Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mi 2001/08/24 09:41:46 PDT Modified files: palm/p5-Palm Makefile distinfo palm/coldsync Makefile distinfo Log: Upgrade this ports to 1.2.4 and 2.1.3 respectively. The maintainer is the author, and this new versions are both posted on the WWW. Revision Changes Path 1.4 +2 -2 ports/palm/p5-Palm/Makefile 1.3 +1 -1 ports/palm/p5-Palm/distinfo 1.10 +2 -2 ports/palm/coldsync/Makefile 1.7 +1 -1 ports/palm/coldsync/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 9:46:26 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5CD0837B40F; Fri, 24 Aug 2001 09:46:15 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OGkFI75531; Fri, 24 Aug 2001 09:46:15 -0700 (PDT) (envelope-from jhb) Message-Id: <200108241646.f7OGkFI75531@freefall.freebsd.org> From: John Baldwin Date: Fri, 24 Aug 2001 09:46:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 exception.s trap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/24 09:46:15 PDT Modified files: sys/i386/i386 exception.s trap.c Log: Remove references to the old giant kernel lock in various comments. Revision Changes Path 1.90 +1 -19 src/sys/i386/i386/exception.s 1.200 +7 -16 src/sys/i386/i386/trap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 9:51:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A18FD37B40B; Fri, 24 Aug 2001 09:51:47 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OGpl576139; Fri, 24 Aug 2001 09:51:47 -0700 (PDT) (envelope-from jhb) Message-Id: <200108241651.f7OGpl576139@freefall.freebsd.org> From: John Baldwin Date: Fri, 24 Aug 2001 09:51:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa apic_ipl.s X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/24 09:51:47 PDT Modified files: sys/i386/isa apic_ipl.s Log: INTREN() and INTRDIS() have been MP safe for a while. Don't say that they are "soon to be" MP safe in the comments. Revision Changes Path 1.35 +3 -3 src/sys/i386/isa/apic_ipl.s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 9:52:37 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E45037B401; Fri, 24 Aug 2001 09:52:31 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OGqVx76300; Fri, 24 Aug 2001 09:52:31 -0700 (PDT) (envelope-from jhb) Message-Id: <200108241652.f7OGqVx76300@freefall.freebsd.org> From: John Baldwin Date: Fri, 24 Aug 2001 09:52:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa icu.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/24 09:52:31 PDT Modified files: sys/i386/isa icu.h Log: Axe a commented, unused #define related to the old giant lock. Revision Changes Path 1.24 +1 -2 src/sys/i386/isa/icu.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 10: 4:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BE58E37B40A; Fri, 24 Aug 2001 10:04:29 -0700 (PDT) (envelope-from roam@FreeBSD.org) Received: (from roam@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OH4TJ77394; Fri, 24 Aug 2001 10:04:29 -0700 (PDT) (envelope-from roam) Message-Id: <200108241704.f7OH4TJ77394@freefall.freebsd.org> From: Peter Pentchev Date: Fri, 24 Aug 2001 10:04:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/ecasound Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2001/08/24 10:04:29 PDT Modified files: audio/ecasound Makefile distinfo pkg-plist Log: Update to 2.0.2, introducing NOPORTDOCS support. PR: 30033 Submitted by: maintainer Revision Changes Path 1.4 +26 -12 ports/audio/ecasound/Makefile 1.3 +1 -1 ports/audio/ecasound/distinfo 1.4 +18 -6 ports/audio/ecasound/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 Aug 24 10: 8:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4634637B405; Fri, 24 Aug 2001 10:08:11 -0700 (PDT) (envelope-from roam@FreeBSD.org) Received: (from roam@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OH8BE80620; Fri, 24 Aug 2001 10:08:11 -0700 (PDT) (envelope-from roam) Message-Id: <200108241708.f7OH8BE80620@freefall.freebsd.org> From: Peter Pentchev Date: Fri, 24 Aug 2001 10:08:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/ecasound pkg-comment pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2001/08/24 10:08:11 PDT Modified files: audio/ecasound pkg-comment pkg-descr Log: Rephrase pkg-comment, shorten pkg-descr. PR: 20034 Submitted by: maintainer Revision Changes Path 1.3 +1 -1 ports/audio/ecasound/pkg-comment 1.3 +1 -6 ports/audio/ecasound/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 Aug 24 10: 9:22 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BC7F837B411; Fri, 24 Aug 2001 10:09:17 -0700 (PDT) (envelope-from roam@FreeBSD.org) Received: (from roam@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OH9Hs80806; Fri, 24 Aug 2001 10:09:17 -0700 (PDT) (envelope-from roam) Message-Id: <200108241709.f7OH9Hs80806@freefall.freebsd.org> From: Peter Pentchev Date: Fri, 24 Aug 2001 10:09:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/ecasound pkg-comment pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2001/08/24 10:09:17 PDT Modified files: audio/ecasound pkg-comment pkg-descr Log: Forced commit to correct a typo: The 'rephrase pkg-comment, shorten pkg-descr' actually came from: PR: 30034 Submitted by: maintainer Revision Changes Path 1.4 +0 -0 ports/audio/ecasound/pkg-comment 1.4 +0 -0 ports/audio/ecasound/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 Aug 24 10:29:52 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8491A37B408; Fri, 24 Aug 2001 10:29:42 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OHTg283006; Fri, 24 Aug 2001 10:29:42 -0700 (PDT) (envelope-from imp) Message-Id: <200108241729.f7OHTg283006@freefall.freebsd.org> From: Warner Losh Date: Fri, 24 Aug 2001 10:29:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pccard pcic_pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/24 10:29:42 PDT Modified files: sys/pccard pcic_pci.c Log: Explain what we're doing in pcic_pci_shutdown a little better. Try to explain the subtle side effects that are going to happen and why we go ahead and ack the interrupt source. This stuff is tricky to get right. Also, emperical tests have shown that doing a shutdown in attach to be ineffectual, so remove it from there. Analysis of the code paths shows that nearly identical writes to these registers happen in later parts of the code. The hanging problem on thinkpads when we change the interrupt routing type is something else. Revision Changes Path 1.76 +17 -6 src/sys/pccard/pcic_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 10:39:28 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 38F0D37B40B; Fri, 24 Aug 2001 10:39:13 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OHdDe84220; Fri, 24 Aug 2001 10:39:13 -0700 (PDT) (envelope-from imp) Message-Id: <200108241739.f7OHdDe84220@freefall.freebsd.org> From: Warner Losh Date: Fri, 24 Aug 2001 10:39:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa intr_machdep.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/24 10:39:12 PDT Modified files: (Branch: RELENG_4) sys/i386/isa intr_machdep.c Log: Fix some spl masking issue. From the patch author: > Just to add a few details - there is a bug in the update_masks() > function in i386/isa/intr_machdep.c that can cause some interrupts > to occur at times when they should be masked. The problem only > occurs with certain configurations of shared interrupts and devices, > and this code is only present in RELENG_4. > > The update_masks() function is called after an interrupt handler > has been registered or removed. Its main function is to update the > interrupt masks (tty_imask, net_imask etc) if necessary (e.g if > IRQ11 is registered by a tty-type device, IRQ11 will be added to > tty_imask so that future spltty()'s will mask IRQ11). > > A second function of update_masks() is to update the cached copy > of the interrupt mask stored with each handler for a multiplexed > interrupt. This is done via the call to update_mux_masks(). > > The bug is that update_masks() returns without calling update_mux_masks() > in some cases where it should call it. Specifically, if a newly-added > multiplexed interrupt handler has the same maskptr as another > handler on the same IRQ line, that new handler doesn't get it's > cached mask set. For example if a single IRQ has a usb device and > a modem (tty), the second device to register it's handler will get > its idesc->mask set to 0 instead of the value of tty_imask because > update_mux_masks() may never be called to set it. Of course, if > update_masks() is called later for some other device it may correct > the situation. > > Interrupt handlers are called with intr_mask[irq] or'd into the > cpl to block further interrupts; for non-multiplexed interrupts > intr_mask[irq] will set from one of the *_imask masks. However with > multiplexed interrupts, only the IRQ itself (and SWI_CLOCK_MASK) > are blocked, and the multiplex handler intr_mux() needs to raise > the cpl further when necessary. It uses idesc->mask to control > this. > > When this bug occurs, idesc->mask == 0, so the device interrupt > handler gets called with only the IRQ and SWI_CLOCK_MASK masked, > instead of the full *_mask that it requested. Not good. > > On my laptop, this bug causes hangs within minutes of starting to > use a pccard modem, but as should be apparent from the above it > could strike virtually anywhere that multiplexed interrupts are > used. The patch below seems to solve the problem; it just causes > update_masks() to unconditionally update the masks. Submitted by: Ian Dowse Revision Changes Path 1.29.2.3 +2 -8 src/sys/i386/isa/intr_machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 10:47: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F63137B403; Fri, 24 Aug 2001 10:46:59 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OHkxq85213; Fri, 24 Aug 2001 10:46:59 -0700 (PDT) (envelope-from jhb) Message-Id: <200108241746.f7OHkxq85213@freefall.freebsd.org> From: John Baldwin Date: Fri, 24 Aug 2001 10:46:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern subr_witness.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2001/08/24 10:46:59 PDT Modified files: sys/kern subr_witness.c Log: Style nits: - Don't use punctuation or newlines in panic messages. - Remove excess blank lines. Requested and partially submitted by: bde Revision Changes Path 1.85 +12 -36 src/sys/kern/subr_witness.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 10:51:36 2001 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id E30A137B403; Fri, 24 Aug 2001 10:51:24 -0700 (PDT) (envelope-from mi@aldan.algebra.com) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.11.5/8.11.5) with ESMTP id f7OHnpd00834; Fri, 24 Aug 2001 13:49:53 -0400 (EDT) (envelope-from mi@aldan.algebra.com) Message-Id: <200108241749.f7OHnpd00834@aldan.algebra.com> Date: Fri, 24 Aug 2001 13:49:47 -0400 (EDT) From: Mikhail Teterin Subject: Re: cvs commit: ports/graphics/gd Makefile To: knu@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200108241408.f7OE8Be47242@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 24 Aug, Akinori MUSHA wrote: > knu 2001/08/24 07:08:11 PDT > > Modified files: > graphics/gd Makefile > Log: > Conditionalize the dependency on bzip2. I think this is very wrong :-) .if !exists(/usr/bin/bzip2) BUILD_DEPENDS+= bzip2:${PORTSDIR}/archivers/bzip2 .endif First, make's ``.if exists'' is not at all the same as sh's ``test -e''. Second, it seems to me, what you _want_ it to do is just what USE_BZIP2 was doing... > De-portlint a bit. -- |\__-----__/| _____/ ::::: :::\_____ '__--( ::::::::..::)--__` -mi If you have a / _- \/ :::::::\/ -_ serious knowledge / / :. .::::\ \ about computers -- | ::::::::::::| Ok, let's say you broke keep it in a secret! _|/ ::::____::\|_ the wall with your head "Rules of dating", / /:::::/:_::\::\:.\ What are you going to 'Playboy', ? 1994 | :| ..:(_/ \::|::|::| do in the next cell? | :|:::::. ::|: |::|.:| Stanislaw J. Lec \ |:: :::_/::/: :|:/ ((___\____\____/___/___)) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 11: 3:46 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C22C437B405; Fri, 24 Aug 2001 11:03:42 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OI3gQ86930; Fri, 24 Aug 2001 11:03:42 -0700 (PDT) (envelope-from petef) Message-Id: <200108241803.f7OI3gQ86930@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 24 Aug 2001 11:03:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/q3server-ut Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/24 11:03:42 PDT Modified files: games/q3server-ut Makefile distinfo pkg-plist Log: Update to beta 2.3. PR: 29988 Submitted by: maintainer Reviewed by: ade Revision Changes Path 1.2 +10 -5 ports/games/q3server-ut/Makefile 1.2 +1 -1 ports/games/q3server-ut/distinfo 1.2 +2 -1 ports/games/q3server-ut/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 Aug 24 11: 4: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.musha.org (daemon.musha.org [61.122.44.178]) by hub.freebsd.org (Postfix) with ESMTP id A306D37B40A; Fri, 24 Aug 2001 11:03:43 -0700 (PDT) (envelope-from knu@iDaemons.org) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id 67E434D833; Sat, 25 Aug 2001 03:03:42 +0900 (JST) Date: Sat, 25 Aug 2001 03:03:42 +0900 Message-ID: <86elq1fi81.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Mikhail Teterin Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/graphics/gd Makefile In-Reply-To: <200108241749.f7OHnpd00834@aldan.algebra.com> References: <200108241408.f7OE8Be47242@freefall.freebsd.org> <200108241749.f7OHnpd00834@aldan.algebra.com> User-Agent: Wanderlust/2.7.2 (Too Funky) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-1?Q?Unebigory=F2mae?=) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Fri, 24 Aug 2001 13:49:47 -0400 (EDT), Mikhail Teterin wrote: > I think this is very wrong :-) > > .if !exists(/usr/bin/bzip2) > BUILD_DEPENDS+= bzip2:${PORTSDIR}/archivers/bzip2 > .endif > > First, make's ``.if exists'' is not at all the same as sh's ``test -e''. Please elaborate? > Second, it seems to me, what you _want_ it to do is just what USE_BZIP2 > was doing... 1. I do _not_ want anything. I just conditionalized the line. 2. USE_BZIP2 implies EXTRACT_SUFX=.tar.bz2, but the main tarball of this port is gzip'ed, so it isn't the case. -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "Freeze this moment a little bit longer, make each impression a little bit stronger.. Experience slips away -- Time stand still" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 11: 6:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8246237B401; Fri, 24 Aug 2001 11:06:11 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OI6BS90164; Fri, 24 Aug 2001 11:06:11 -0700 (PDT) (envelope-from petef) Message-Id: <200108241806.f7OI6BS90164@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 24 Aug 2001 11:06:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/q3server-wfa Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/24 11:06:11 PDT Modified files: games/q3server-wfa Makefile distinfo pkg-plist Log: - update to 3.0 beta - add more MASTER_SITES - include the map pack PR: 29990 Submitted by: maintainer Reviewed by: ade Revision Changes Path 1.3 +7 -5 ports/games/q3server-wfa/Makefile 1.3 +2 -2 ports/games/q3server-wfa/distinfo 1.3 +17 -3 ports/games/q3server-wfa/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 Aug 24 11: 8:58 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A76B437B403; Fri, 24 Aug 2001 11:08:50 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OI8oE90712; Fri, 24 Aug 2001 11:08:50 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108241808.f7OI8oE90712@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 24 Aug 2001 11:08:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio Makefile ports/audio/mziq Makefile distinfo pkg-comment pkg-descr pkg-plist ports/audio/mziq/files patch-mziq X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/24 11:08:50 PDT Modified files: audio Makefile Added files: audio/mziq Makefile distinfo pkg-comment pkg-descr pkg-plist audio/mziq/files patch-mziq Log: add mziq A Perl frontend to mpg123 PR: 30031 Submitted by: Gea-Suan Lin Revision Changes Path 1.248 +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 Aug 24 11: 9:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F011837B409; Fri, 24 Aug 2001 11:08:54 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OI8sa90757; Fri, 24 Aug 2001 11:08:54 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108241808.f7OI8sa90757@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 24 Aug 2001 11:08: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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/24 11:08:54 PDT Modified files: . modules Log: mziq --> ports/audio/mziq Revision Changes Path 1.3722 +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 Aug 24 11:22:51 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F09837B405; Fri, 24 Aug 2001 11:22:46 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OIMkj92602; Fri, 24 Aug 2001 11:22:46 -0700 (PDT) (envelope-from dillon) Message-Id: <200108241822.f7OIMkj92602@freefall.freebsd.org> From: Matt Dillon Date: Fri, 24 Aug 2001 11:22:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys mman.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2001/08/24 11:22:46 PDT Modified files: sys/sys mman.h Log: Remove MAP_NOEXTEND. It came from 4.4-lite and not only was never implemented, but mmap()'s default behavior is *already* to not extend files. Only write() or ftruncate() can extend a file. Revision Changes Path 1.30 +2 -2 src/sys/sys/mman.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 11:23:14 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 06A4F37B40E; Fri, 24 Aug 2001 11:23:11 -0700 (PDT) (envelope-from okazaki@FreeBSD.org) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OINBb92692; Fri, 24 Aug 2001 11:23:11 -0700 (PDT) (envelope-from okazaki) Message-Id: <200108241823.f7OINBb92692@freefall.freebsd.org> From: OKAZAKI Tetsurou Date: Fri, 24 Aug 2001 11:23:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/ntp Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG okazaki 2001/08/24 11:23:10 PDT Modified files: net/ntp Makefile distinfo Log: Update to 4.1.0. PR: 30035 Submitted by: maintainer Revision Changes Path 1.23 +2 -2 ports/net/ntp/Makefile 1.11 +1 -1 ports/net/ntp/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 11:30: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 98D0937B407; Fri, 24 Aug 2001 11:29:57 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OITvf93797; Fri, 24 Aug 2001 11:29:57 -0700 (PDT) (envelope-from petef) Message-Id: <200108241829.f7OITvf93797@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 24 Aug 2001 11:29:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail Makefile ports/mail/qmHandle Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/24 11:29:57 PDT Modified files: mail Makefile Added files: mail/qmHandle Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add qmHandle 0.5.1 Tool to view and manage a qmail queue PR: 29840 Revision Changes Path 1.247 +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 Aug 24 11:35:59 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E6A6837B407; Fri, 24 Aug 2001 11:35:54 -0700 (PDT) (envelope-from cg@FreeBSD.org) Received: (from cg@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OIZs494516; Fri, 24 Aug 2001 11:35:54 -0700 (PDT) (envelope-from cg) Message-Id: <200108241835.f7OIZs494516@freefall.freebsd.org> From: Cameron Grant Date: Fri, 24 Aug 2001 11:35:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/pcm feeder.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cg 2001/08/24 11:35:54 PDT Modified files: (Branch: RELENG_4) sys/dev/sound/pcm feeder.c Log: MFC rev 1.19: the feederchain builder is currently broken for recording channels. disable it until it is fixed. this limits recording to native formats and speeds only. Approved by: jkh Revision Changes Path 1.8.2.7 +4 -1 src/sys/dev/sound/pcm/feeder.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 11:39:17 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B624137B410; Fri, 24 Aug 2001 11:39:11 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OIdB694850; Fri, 24 Aug 2001 11:39:11 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108241839.f7OIdB694850@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 24 Aug 2001 11:39:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/vm-pop3d Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/24 11:39:11 PDT Modified files: mail/vm-pop3d Makefile Log: it's a makefile for vm-pop3d, not for maintainer himself ... :p Submitted by: MAINTAINER Revision Changes Path 1.3 +2 -2 ports/mail/vm-pop3d/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 11:39:34 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A3CB37B414; Fri, 24 Aug 2001 11:39:21 -0700 (PDT) (envelope-from cg@FreeBSD.org) Received: (from cg@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OIdL894886; Fri, 24 Aug 2001 11:39:21 -0700 (PDT) (envelope-from cg) Message-Id: <200108241839.f7OIdL894886@freefall.freebsd.org> From: Cameron Grant Date: Fri, 24 Aug 2001 11:39:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/pcm dsp.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cg 2001/08/24 11:39:21 PDT Modified files: (Branch: RELENG_4) sys/dev/sound/pcm dsp.c Log: MFC rev 1.47: handle bogus values passed to SOUND_PCM_WRITE_CHANNELS/SNDCTL_DSP_CHANNELS ioctls better- if 0 is passed, return the current setting. if 1 or 2 are passed, behave accordingly. treat values >2 as 2. PR: kern/29964 Approved by: jkh Revision Changes Path 1.15.2.10 +6 -5 src/sys/dev/sound/pcm/dsp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 11:43:58 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 42DF937B410; Fri, 24 Aug 2001 11:43:54 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OIhsS95477; Fri, 24 Aug 2001 11:43:54 -0700 (PDT) (envelope-from petef) Message-Id: <200108241843.f7OIhsS95477@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 24 Aug 2001 11:43: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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/24 11:43:54 PDT Modified files: . modules Log: qmHandle --> ports/mail/qmHandle Revision Changes Path 1.3723 +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 Aug 24 11:55:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 59AC037B40F; Fri, 24 Aug 2001 11:55:12 -0700 (PDT) (envelope-from cg@FreeBSD.org) Received: (from cg@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OItCv96916; Fri, 24 Aug 2001 11:55:12 -0700 (PDT) (envelope-from cg) Message-Id: <200108241855.f7OItCv96916@freefall.freebsd.org> From: Cameron Grant Date: Fri, 24 Aug 2001 11:55:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/pci t4dwave.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cg 2001/08/24 11:55:12 PDT Modified files: (Branch: RELENG_4) sys/dev/sound/pci t4dwave.c Log: MFC rev 1.27: make the 4dwave nx chip work Submitted by: Philippe Anel Approved by: jkh Revision Changes Path 1.9.2.7 +2 -2 src/sys/dev/sound/pci/t4dwave.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 12:15:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 24C2037B405; Fri, 24 Aug 2001 12:15:08 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OJF8x02798; Fri, 24 Aug 2001 12:15:08 -0700 (PDT) (envelope-from petef) Message-Id: <200108241915.f7OJF8x02798@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 24 Aug 2001 12:15:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/phpnuke Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/24 12:15:08 PDT Modified files: www/phpnuke Makefile distinfo pkg-plist Log: Update to version 5.2 PR: 29923 Submitted by: maintainer Revision Changes Path 1.8 +2 -2 ports/www/phpnuke/Makefile 1.5 +1 -1 ports/www/phpnuke/distinfo 1.5 +8 -2 ports/www/phpnuke/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 Aug 24 12:21: 1 2001 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id DD21937B407; Fri, 24 Aug 2001 12:20:55 -0700 (PDT) (envelope-from mi@aldan.algebra.com) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.11.5/8.11.5) with ESMTP id f7OJJMd01882; Fri, 24 Aug 2001 15:19:24 -0400 (EDT) (envelope-from mi@aldan.algebra.com) Message-Id: <200108241919.f7OJJMd01882@aldan.algebra.com> Date: Fri, 24 Aug 2001 15:19:19 -0400 (EDT) From: Mikhail Teterin Subject: Re: cvs commit: ports/x11/kdelibs2 Makefile To: knu@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200108241533.f7OFXoB62655@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 24 Aug, Akinori MUSHA wrote: > knu 2001/08/24 08:33:50 PDT > > Modified files: > x11/kdelibs2 Makefile > Log: > Conditionalize the dependency on bzip2. > > Revision Changes Path > 1.81 +4 -2 ports/x11/kdelibs2/Makefile Approved by: ? This port has a non-default maintainer, after all... -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 12:21:39 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A12AE37B405; Fri, 24 Aug 2001 12:21:32 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OJLWr03956; Fri, 24 Aug 2001 12:21:32 -0700 (PDT) (envelope-from petef) Message-Id: <200108241921.f7OJLWr03956@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 24 Aug 2001 12:21:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/replaceit Makefile distinfo pkg-comment pkg-descr pkg-plist ports/textproc/replaceit/files patch-Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/24 12:21:32 PDT Modified files: textproc Makefile Added files: textproc/replaceit Makefile distinfo pkg-comment pkg-descr pkg-plist textproc/replaceit/files patch-Makefile Log: add replaceit 1.0.0 A light replacement to the combination of sed/awk/grep/head/tail PR: 29837 Submitted by: Patrick Li Revision Changes Path 1.234 +2 -1 ports/textproc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 12:23:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8D15637B413; Fri, 24 Aug 2001 12:23:14 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OJNEf04316; Fri, 24 Aug 2001 12:23:14 -0700 (PDT) (envelope-from petef) Message-Id: <200108241923.f7OJNEf04316@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 24 Aug 2001 12:23:14 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/24 12:23:14 PDT Modified files: . modules Log: replaceit --> ports/textproc/replaceit Revision Changes Path 1.3724 +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 Aug 24 12:25:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E39637B403; Fri, 24 Aug 2001 12:25:30 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OJPUV04607; Fri, 24 Aug 2001 12:25:30 -0700 (PDT) (envelope-from ache) Message-Id: <200108241925.f7OJPUV04607@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 24 Aug 2001 12:25:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb-sendmail pkg-message X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/24 12:25:30 PDT Modified files: security/drweb-sendmail pkg-message Log: Fix typo Revision Changes Path 1.2 +1 -1 ports/security/drweb-sendmail/pkg-message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 12:26:25 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B666F37B410; Fri, 24 Aug 2001 12:26:21 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OJQL804828; Fri, 24 Aug 2001 12:26:21 -0700 (PDT) (envelope-from ache) Message-Id: <200108241926.f7OJQL804828@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 24 Aug 2001 12:26:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb-sendmail/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/24 12:26:21 PDT Added files: security/drweb-sendmail/files patch-aa Log: Add -current detection as FreeBSD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 12:28: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4641237B403; Fri, 24 Aug 2001 12:28:01 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OJS1p05093; Fri, 24 Aug 2001 12:28:01 -0700 (PDT) (envelope-from dillon) Message-Id: <200108241928.f7OJS1p05093@freefall.freebsd.org> From: Matt Dillon Date: Fri, 24 Aug 2001 12:28:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys minherit.2 mmap.2 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2001/08/24 12:28:00 PDT Modified files: lib/libc/sys minherit.2 mmap.2 Log: Update the mmap.2 and minherit.2 manual pages. Add a short explanation and referal from mmap to minherit for MAP_INHERIT. Fully document the minherit.2 manual page (because frankly, my dear, however you think it currently works is almost certainly wrong!). I may soon re-implement MAP_COPY because I believe we can support it properly now, but I will have to call it something else and that is for a later time. Revision Changes Path 1.13 +35 -1 src/lib/libc/sys/minherit.2 1.36 +7 -1 src/lib/libc/sys/mmap.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 12:30: 3 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D8DC37B40F; Fri, 24 Aug 2001 12:29:56 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OJTuw05461; Fri, 24 Aug 2001 12:29:56 -0700 (PDT) (envelope-from dillon) Message-Id: <200108241929.f7OJTuw05461@freefall.freebsd.org> From: Matt Dillon Date: Fri, 24 Aug 2001 12:29:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm vm_mmap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2001/08/24 12:29:56 PDT Modified files: sys/vm vm_mmap.c Log: Remove support for the badly broken MAP_INHERIT (from -current only). Revision Changes Path 1.125 +2 -5 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 Fri Aug 24 12:35:21 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EE0AB37B409; Fri, 24 Aug 2001 12:35:11 -0700 (PDT) (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OJZBj06011; Fri, 24 Aug 2001 12:35:11 -0700 (PDT) (envelope-from mi) Message-Id: <200108241935.f7OJZBj06011@freefall.freebsd.org> From: Mikhail Teterin Date: Fri, 24 Aug 2001 12:35:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/palm/pilot-link Makefile distinfo pkg-descr pkg-plist ports/palm/pilot-link/files patch-getopt patch-iconv patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mi 2001/08/24 12:35:11 PDT Modified files: palm/pilot-link Makefile distinfo pkg-descr pkg-plist palm/pilot-link/files patch-ab Added files: palm/pilot-link/files patch-getopt patch-iconv Log: Upgrade to 0.9.5, use -lgiconv. Revision Changes Path 1.44 +21 -13 ports/palm/pilot-link/Makefile 1.10 +1 -1 ports/palm/pilot-link/distinfo 1.2 +4 -0 ports/palm/pilot-link/pkg-descr 1.13 +1 -1 ports/palm/pilot-link/pkg-plist 1.5 +10 -10 ports/palm/pilot-link/files/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 Aug 24 12:36: 4 2001 Delivered-To: cvs-all@freebsd.org Received: from leviathan.inethouston.net (leviathan.inethouston.net [66.64.12.249]) by hub.freebsd.org (Postfix) with ESMTP id 27D6537B407; Fri, 24 Aug 2001 12:35:57 -0700 (PDT) (envelope-from dwcjr@inethouston.net) Received: by leviathan.inethouston.net (Postfix, from userid 1001) id 61C3A10F42F; Fri, 24 Aug 2001 14:36:00 -0500 (CDT) Date: Fri, 24 Aug 2001 14:36:00 -0500 From: "David W. Chapman Jr." To: Mikhail Teterin Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/palm/pilot-link Makefile distinfo pkg-descr pkg-plist ports/palm/pilot-link/files patch-getopt patch-iconv patch-ab Message-ID: <20010824143600.B14350@leviathan.inethouston.net> Reply-To: "David W. Chapman Jr." Mail-Followup-To: Mikhail Teterin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200108241935.f7OJZBj06011@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200108241935.f7OJZBj06011@freefall.freebsd.org> User-Agent: Mutt/1.3.21i X-Operating-System: FreeBSD 4.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Aug 24, 2001 at 12:35:11PM -0700, Mikhail Teterin wrote: > mi 2001/08/24 12:35:11 PDT > > Modified files: > palm/pilot-link Makefile distinfo pkg-descr pkg-plist > palm/pilot-link/files patch-ab > Added files: > palm/pilot-link/files patch-getopt patch-iconv > Log: > Upgrade to 0.9.5, use -lgiconv. > Do you know if pilot-link support USB? -- David W. Chapman Jr. dwcjr@inethouston.net Raintree Network Services, Inc. dwcjr@freebsd.org FreeBSD Committer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 12:36:23 2001 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id 4E63337B408; Fri, 24 Aug 2001 12:36:18 -0700 (PDT) (envelope-from mi@aldan.algebra.com) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.11.5/8.11.5) with ESMTP id f7OJYjd02029; Fri, 24 Aug 2001 15:34:46 -0400 (EDT) (envelope-from mi@aldan.algebra.com) Message-Id: <200108241934.f7OJYjd02029@aldan.algebra.com> Date: Fri, 24 Aug 2001 15:34:42 -0400 (EDT) From: Mikhail Teterin Subject: Re: cvs commit: ports/palm/pilot-link Makefile distinfo pkg-descr pkg-plist ports/palm/pilot-link/files patch-getopt patch-iconv patch-ab To: mi@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200108241935.f7OJZBj06011@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 24 Aug, Mikhail Teterin wrote: > mi 2001/08/24 12:35:11 PDT > > Modified files: > palm/pilot-link Makefile distinfo pkg-descr pkg-plist > palm/pilot-link/files patch-ab > Added files: > palm/pilot-link/files patch-getopt patch-iconv > Log: > Upgrade to 0.9.5, use -lgiconv. Ooops... Approved by: maintainer -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 12:41: 3 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 599EB37B40A; Fri, 24 Aug 2001 12:40:59 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OJexV06694; Fri, 24 Aug 2001 12:40:59 -0700 (PDT) (envelope-from ache) Message-Id: <200108241940.f7OJexV06694@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 24 Aug 2001 12:40:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb-sendmail Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/24 12:40:59 PDT Modified files: security/drweb-sendmail Makefile Log: Print pkg-message note and ask for confirmation before anything else Revision Changes Path 1.2 +6 -1 ports/security/drweb-sendmail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 12:42:36 2001 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id 87F8E37B405; Fri, 24 Aug 2001 12:42:28 -0700 (PDT) (envelope-from mi@aldan.algebra.com) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.11.5/8.11.5) with ESMTP id f7OJeod02060; Fri, 24 Aug 2001 15:40:51 -0400 (EDT) (envelope-from mi@aldan.algebra.com) Message-Id: <200108241940.f7OJeod02060@aldan.algebra.com> Date: Fri, 24 Aug 2001 15:40:48 -0400 (EDT) From: Mikhail Teterin Subject: Re: cvs commit: ports/palm/pilot-link Makefile distinfo pkg-descr pkg-plist ports/palm/pilot-link/files patch-getopt patch-iconv patch-ab To: dwcjr@inethouston.net Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20010824143600.B14350@leviathan.inethouston.net> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 24 Aug, David W. Chapman Jr. wrote: > On Fri, Aug 24, 2001 at 12:35:11PM -0700, Mikhail Teterin wrote: >> mi 2001/08/24 12:35:11 PDT >> >> Modified files: >> palm/pilot-link Makefile distinfo pkg-descr pkg-plist >> palm/pilot-link/files patch-ab >> Added files: >> palm/pilot-link/files patch-getopt patch-iconv >> Log: >> Upgrade to 0.9.5, use -lgiconv. >> > Do you know if pilot-link support USB? I know it does not :( At lest, not for m-series PDAs. I even put a note into pkg-descr to this effect. Too bad, really, because gnome-pilot, jpilot, and kpilot all rely on pilot-link's pisock. There is also coldsync, which does support USB supposedly, but not for the newest m-series :( Work is under way too, but it is not ready yet. If you find anything -- let me know (or make a port!)... It is on the author's TODO list, however. In the mean time, perhaps, our USB stack can be extended to support something like Linux' ttyUSB -- to let us use ugen-devices as serial ones? -- |\__-----__/| _____/ ::::: :::\_____ '__--( ::::::::..::)--__` -mi If you have a / _- \/ :::::::\/ -_ serious knowledge / / :. .::::\ \ about computers -- | ::::::::::::| Ok, let's say you broke keep it in a secret! _|/ ::::____::\|_ the wall with your head "Rules of dating", / /:::::/:_::\::\:.\ What are you going to 'Playboy', ? 1994 | :| ..:(_/ \::|::|::| do in the next cell? | :|:::::. ::|: |::|.:| Stanislaw J. Lec \ |:: :::_/::/: :|:/ ((___\____\____/___/___)) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 12:43:51 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EDE7137B409; Fri, 24 Aug 2001 12:43:45 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OJhj307151; Fri, 24 Aug 2001 12:43:45 -0700 (PDT) (envelope-from dillon) Message-Id: <200108241943.f7OJhj307151@freefall.freebsd.org> From: Matt Dillon Date: Fri, 24 Aug 2001 12:43:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys minherit.2 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2001/08/24 12:43:45 PDT Modified files: lib/libc/sys minherit.2 Log: Oops, minherit() uses VM_INHERIT_XXX as the argument, not MAP_XXX. Properly document minherit(). Revision Changes Path 1.14 +11 -6 src/lib/libc/sys/minherit.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 12:45:11 2001 Delivered-To: cvs-all@freebsd.org Received: from leviathan.inethouston.net (leviathan.inethouston.net [66.64.12.249]) by hub.freebsd.org (Postfix) with ESMTP id 97D9637B40E; Fri, 24 Aug 2001 12:45:02 -0700 (PDT) (envelope-from dwcjr@inethouston.net) Received: by leviathan.inethouston.net (Postfix, from userid 1001) id E53DF10F42F; Fri, 24 Aug 2001 14:45:05 -0500 (CDT) Date: Fri, 24 Aug 2001 14:45:05 -0500 From: "David W. Chapman Jr." To: Mikhail Teterin Cc: dwcjr@inethouston.net, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/palm/pilot-link Makefile distinfo pkg-descr pkg-plist ports/palm/pilot-link/files patch-getopt patch-iconv patch-ab Message-ID: <20010824144505.E14350@leviathan.inethouston.net> Reply-To: "David W. Chapman Jr." Mail-Followup-To: Mikhail Teterin , dwcjr@inethouston.net, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <20010824143600.B14350@leviathan.inethouston.net> <200108241940.f7OJeod02060@aldan.algebra.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200108241940.f7OJeod02060@aldan.algebra.com> User-Agent: Mutt/1.3.21i X-Operating-System: FreeBSD 4.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Aug 24, 2001 at 03:40:48PM -0400, Mikhail Teterin wrote: > I know it does not :( At lest, not for m-series PDAs. I even put a note > into pkg-descr to this effect. Too bad, really, because gnome-pilot, > jpilot, and kpilot all rely on pilot-link's pisock. There is also > coldsync, which does support USB supposedly, but not for the newest > m-series :( Work is under way too, but it is not ready yet. > > If you find anything -- let me know (or make a port!)... > > It is on the author's TODO list, however. In the mean time, perhaps, our > USB stack can be extended to support something like Linux' ttyUSB -- to > let us use ugen-devices as serial ones? > Sounds interesting. I have a handspring visor platinum. -- David W. Chapman Jr. dwcjr@inethouston.net Raintree Network Services, Inc. dwcjr@freebsd.org FreeBSD Committer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 12:45:49 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4CEB437B40A; Fri, 24 Aug 2001 12:45:42 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OJjgA07440; Fri, 24 Aug 2001 12:45:42 -0700 (PDT) (envelope-from ache) Message-Id: <200108241945.f7OJjgA07440@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 24 Aug 2001 12:45:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb-sendmail Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/24 12:45:42 PDT Modified files: security/drweb-sendmail Makefile Log: Hide extraction process Revision Changes Path 1.3 +2 -2 ports/security/drweb-sendmail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 12:46: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B69A237B40C; Fri, 24 Aug 2001 12:45:59 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OJjxP07500; Fri, 24 Aug 2001 12:45:59 -0700 (PDT) (envelope-from dillon) Message-Id: <200108241945.f7OJjxP07500@freefall.freebsd.org> From: Matt Dillon Date: Fri, 24 Aug 2001 12:45:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys minherit.2 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2001/08/24 12:45:59 PDT Modified files: lib/libc/sys minherit.2 Log: Ok, third time is the charm. VM_INHERIT_XXX -> INHERIT_XX (use the same semantics as PROT_XXX vs VM_PROT_XXX separating user-space defines from kernel defines). Revision Changes Path 1.15 +4 -4 src/lib/libc/sys/minherit.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 12:46:37 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A83DD37B621; Fri, 24 Aug 2001 12:46:27 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OJkRO07606; Fri, 24 Aug 2001 12:46:27 -0700 (PDT) (envelope-from ache) Message-Id: <200108241946.f7OJkRO07606@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 24 Aug 2001 12:46:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/24 12:46:27 PDT Modified files: security/drweb Makefile Log: Hide extraction process Revision Changes Path 1.2 +3 -3 ports/security/drweb/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 12:47:22 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0261137B50E; Fri, 24 Aug 2001 12:47:06 -0700 (PDT) (envelope-from nate@FreeBSD.org) Received: (from nate@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OJl5T07700; Fri, 24 Aug 2001 12:47:05 -0700 (PDT) (envelope-from nate) Message-Id: <200108241947.f7OJl5T07700@freefall.freebsd.org> From: Nate Williams Date: Fri, 24 Aug 2001 12:47:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc pccard_ether X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nate 2001/08/24 12:47:05 PDT Modified files: (Branch: RELENG_4) etc pccard_ether Log: - Remove use of un-documented 'removable_interface' and 'removable_route_flush' variables which can cause routing and configuration to fail when not using DHCP. Submitted by: Toshihiko ARAI , Reviewed by: imp Approved by: jkh Revision Changes Path 1.15.2.9 +2 -13 src/etc/pccard_ether To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 12:48:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 017A437B405; Fri, 24 Aug 2001 12:48:08 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OJm7707877; Fri, 24 Aug 2001 12:48:07 -0700 (PDT) (envelope-from dillon) Message-Id: <200108241948.f7OJm7707877@freefall.freebsd.org> From: Matt Dillon Date: Fri, 24 Aug 2001 12:48:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys mman.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2001/08/24 12:48:07 PDT Modified files: sys/sys mman.h Log: Add INHERIT_XXX defines for minherit() system call. Remove MAP_INHERIT - it is no longer supported. Revision Changes Path 1.31 +9 -2 src/sys/sys/mman.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 13:15:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F38437B405; Fri, 24 Aug 2001 13:15:43 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OKFhs14722; Fri, 24 Aug 2001 13:15:43 -0700 (PDT) (envelope-from ache) Message-Id: <200108242015.f7OKFhs14722@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 24 Aug 2001 13:15:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb-sendmail Makefile pkg-plist ports/security/drweb-sendmail/files Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/24 13:15:43 PDT Modified files: security/drweb-sendmail Makefile pkg-plist security/drweb-sendmail/files Makefile Log: 1) Add ability to build on any machine by direct adding -D_FFR_MILTER=1 to libmilter Makefile, so remove IS_INSTERACTIVE 2) Rename final rc.d/drweb-smf.sh to rc.d/drwebsmf.sh to start it _after_ drwebd.sh if on the same machine Revision Changes Path 1.4 +3 -7 ports/security/drweb-sendmail/Makefile 1.2 +1 -1 ports/security/drweb-sendmail/pkg-plist 1.2 +2 -2 ports/security/drweb-sendmail/files/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 13:30: 3 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.musha.org (daemon.musha.org [61.122.44.178]) by hub.freebsd.org (Postfix) with ESMTP id 14CAA37B40A; Fri, 24 Aug 2001 13:29:56 -0700 (PDT) (envelope-from knu@iDaemons.org) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id D30C84D833; Sat, 25 Aug 2001 05:29:54 +0900 (JST) Date: Sat, 25 Aug 2001 05:29:54 +0900 Message-ID: <86ofp5b3r1.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Mikhail Teterin Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/x11/kdelibs2 Makefile In-Reply-To: <200108241919.f7OJJMd01882@aldan.algebra.com> References: <200108241533.f7OFXoB62655@freefall.freebsd.org> <200108241919.f7OJJMd01882@aldan.algebra.com> User-Agent: Wanderlust/2.7.2 (Too Funky) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-1?Q?Unebigory=F2mae?=) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Fri, 24 Aug 2001 15:19:19 -0400 (EDT), Mikhail Teterin wrote: > On 24 Aug, Akinori MUSHA wrote: > > knu 2001/08/24 08:33:50 PDT > > > > Modified files: > > x11/kdelibs2 Makefile > > Log: > > Conditionalize the dependency on bzip2. > > > > Revision Changes Path > > 1.81 +4 -2 ports/x11/kdelibs2/Makefile > > Approved by: ? > > This port has a non-default maintainer, after all... Will's mail posted to the ports list, which I read as a committer can fix dependencies, I even mailed him in advance. Also, I don't think this kind of changes doesn't need MAINTAINER's approval. I've done similar changes to over a dozen ports already but there wasn't a problem. (with build, or maintainership) -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "Freeze this moment a little bit longer, make each impression a little bit stronger.. Experience slips away -- Time stand still" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 13:35:54 2001 Delivered-To: cvs-all@freebsd.org Received: from franklin.physics.purdue.edu (franklin.physics.purdue.edu [128.210.146.222]) by hub.freebsd.org (Postfix) with ESMTP id 6F78F37B408; Fri, 24 Aug 2001 13:35:49 -0700 (PDT) (envelope-from will@physics.purdue.edu) Received: from physics.purdue.edu (bohr.physics.purdue.edu [128.210.67.12]) by franklin.physics.purdue.edu (Postfix) with ESMTP id 492C920F39; Fri, 24 Aug 2001 15:37:38 -0500 (EST) Received: by physics.purdue.edu (Postfix, from userid 12409) id 1586B5BC3; Fri, 24 Aug 2001 15:37:50 -0500 (EST) Date: Fri, 24 Aug 2001 15:37:50 -0500 From: Will Andrews To: Akinori MUSHA Cc: Mikhail Teterin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/x11/kdelibs2 Makefile Message-ID: <20010824153749.H35352@bohr.physics.purdue.edu> Reply-To: Will Andrews Mail-Followup-To: Akinori MUSHA , Mikhail Teterin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200108241533.f7OFXoB62655@freefall.freebsd.org> <200108241919.f7OJJMd01882@aldan.algebra.com> <86ofp5b3r1.wl@archon.local.idaemons.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.17i In-Reply-To: <86ofp5b3r1.wl@archon.local.idaemons.org>; from knu@iDaemons.org on Sat, Aug 25, 2001 at 05:29:54AM +0900 X-Operating-System: FreeBSD 4.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Aug 25, 2001 at 05:29:54AM +0900, Akinori MUSHA (knu@iDaemons.org) wrote: > > Approved by: ? > > > > This port has a non-default maintainer, after all... > > Will's mail posted to the ports list, which I read as a committer can > fix dependencies, I even mailed him in advance. > > Also, I don't think this kind of changes doesn't need MAINTAINER's > approval. I've done similar changes to over a dozen ports already but > there wasn't a problem. (with build, or maintainership) It does not require my approval. Thanks for fixing this, knu. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 13:44:12 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 19DD237B40B; Fri, 24 Aug 2001 13:44:08 -0700 (PDT) (envelope-from chern@FreeBSD.org) Received: (from chern@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OKi8d17694; Fri, 24 Aug 2001 13:44:08 -0700 (PDT) (envelope-from chern) Message-Id: <200108242044.f7OKi8d17694@freefall.freebsd.org> From: Chern Lee Date: Fri, 24 Aug 2001 13:44:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/disks chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG chern 2001/08/24 13:44:08 PDT Modified files: en_US.ISO8859-1/books/handbook/disks chapter.sgml Log: * Placed ccd in tags * shoud -> should * exsist -> exist * specificy -> specify Revision Changes Path 1.56 +27 -19 doc/en_US.ISO8859-1/books/handbook/disks/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 Aug 24 13:55:38 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C900B37B401; Fri, 24 Aug 2001 13:55:33 -0700 (PDT) (envelope-from dg@FreeBSD.org) Received: (from dg@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OKtXF19064; Fri, 24 Aug 2001 13:55:33 -0700 (PDT) (envelope-from dg) Message-Id: <200108242055.f7OKtXF19064@freefall.freebsd.org> From: David Greenman Date: Fri, 24 Aug 2001 13:55:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys mmap.2 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dg 2001/08/24 13:55:33 PDT Modified files: (Branch: RELENG_4) lib/libc/sys mmap.2 Log: MFC rev 1.35: Killed reference to MAP_INHERIT. Revision Changes Path 1.22.2.9 +1 -5 src/lib/libc/sys/mmap.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 14: 2: 1 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E31A637B40E; Fri, 24 Aug 2001 14:01:57 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OL1v419871; Fri, 24 Aug 2001 14:01:57 -0700 (PDT) (envelope-from petef) Message-Id: <200108242101.f7OL1v419871@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 24 Aug 2001 14:01:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/p5-Net-FTPServer Makefile distinfo pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/24 14:01:57 PDT Modified files: ftp/p5-Net-FTPServer Makefile distinfo pkg-descr pkg-plist Log: - update to version 1.028 - update my email in pkg-descr - sort @dirrm lines in pkg-plist Revision Changes Path 1.6 +2 -2 ports/ftp/p5-Net-FTPServer/Makefile 1.4 +1 -1 ports/ftp/p5-Net-FTPServer/distinfo 1.3 +1 -1 ports/ftp/p5-Net-FTPServer/pkg-descr 1.3 +1 -1 ports/ftp/p5-Net-FTPServer/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 Aug 24 14:33: 3 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C209E37B406; Fri, 24 Aug 2001 14:32:55 -0700 (PDT) (envelope-from tobez@FreeBSD.org) Received: (from tobez@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OLWte26479; Fri, 24 Aug 2001 14:32:55 -0700 (PDT) (envelope-from tobez) Message-Id: <200108242132.f7OLWte26479@freefall.freebsd.org> From: Anton Berezin Date: Fri, 24 Aug 2001 14:32:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/p5-DBIWrapper Makefile ports/devel/p5-Devel-StackTrace Makefile ports/devel/p5-Exception-Class Makefile ports/ftp/p5-Net-FTPServer Makefile ports/graphics/eps2png Makefile ports/graphics/p5-Imager Makefile ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tobez 2001/08/24 14:32:55 PDT Modified files: databases/p5-DBIWrapper Makefile devel/p5-Devel-StackTrace Makefile devel/p5-Exception-Class Makefile ftp/p5-Net-FTPServer Makefile graphics/eps2png Makefile graphics/p5-Imager Makefile irc/p5-POE-Component-IRC Makefile mail/grepmail Makefile mail/p5-Mail-ListDetector Makefile mail/p5-Mail-Tools Makefile misc/p5-Geo-Weather Makefile misc/salias Makefile net/p5-Frontier-RPC Makefile net/p5-Net-Traceroute6 Makefile security/swatch Makefile shells/perlsh Makefile shells/vshnu Makefile sysutils/p5-Schedule-At Makefile textproc/p5-Text-FixedLength-Extra Makefile www/htmlobject Makefile www/p5-Apache-Archive Makefile www/p5-AxKit Makefile www/p5-libservlet Makefile x11-toolkits/p5-Gnome Makefile Log: Remove redundant USE_PERL5 statements. Revision Changes Path 1.5 +1 -3 ports/databases/p5-DBIWrapper/Makefile 1.2 +1 -2 ports/devel/p5-Devel-StackTrace/Makefile 1.2 +1 -2 ports/devel/p5-Exception-Class/Makefile 1.7 +1 -2 ports/ftp/p5-Net-FTPServer/Makefile 1.4 +1 -2 ports/graphics/eps2png/Makefile 1.3 +1 -2 ports/graphics/p5-Imager/Makefile 1.2 +1 -2 ports/irc/p5-POE-Component-IRC/Makefile 1.22 +1 -2 ports/mail/grepmail/Makefile 1.2 +1 -2 ports/mail/p5-Mail-ListDetector/Makefile 1.25 +1 -3 ports/mail/p5-Mail-Tools/Makefile 1.3 +1 -3 ports/misc/p5-Geo-Weather/Makefile 1.2 +1 -2 ports/misc/salias/Makefile 1.2 +1 -2 ports/net/p5-Frontier-RPC/Makefile 1.2 +1 -3 ports/net/p5-Net-Traceroute6/Makefile 1.10 +1 -2 ports/security/swatch/Makefile 1.9 +1 -2 ports/shells/perlsh/Makefile 1.3 +1 -2 ports/shells/vshnu/Makefile 1.2 +1 -2 ports/sysutils/p5-Schedule-At/Makefile 1.3 +1 -2 ports/textproc/p5-Text-FixedLength-Extra/Makefile 1.2 +1 -2 ports/www/htmlobject/Makefile 1.2 +1 -2 ports/www/p5-Apache-Archive/Makefile 1.2 +1 -2 ports/www/p5-AxKit/Makefile 1.2 +1 -2 ports/www/p5-libservlet/Makefile 1.8 +1 -2 ports/x11-toolkits/p5-Gnome/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 14:39:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D37237B409; Fri, 24 Aug 2001 14:39:28 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OLdSY27180; Fri, 24 Aug 2001 14:39:28 -0700 (PDT) (envelope-from brian) Message-Id: <200108242139.f7OLdSY27180@freefall.freebsd.org> From: Brian Somers Date: Fri, 24 Aug 2001 14:39:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libnetgraph netgraph.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/24 14:39:28 PDT Modified files: lib/libnetgraph netgraph.3 Log: Rename the DIAGNOSTICS section to RETURN VALUES and describe the return values a little more. Specifically, mention that a return of 0 from NgRecvData() and NgRecvMsg() means the socket has been closed. Suggested by: jkh Revision Changes Path 1.14 +11 -5 src/lib/libnetgraph/netgraph.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 14:40:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 310A937B408; Fri, 24 Aug 2001 14:40:46 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OLek927305; Fri, 24 Aug 2001 14:40:46 -0700 (PDT) (envelope-from brian) Message-Id: <200108242140.f7OLek927305@freefall.freebsd.org> From: Brian Somers Date: Fri, 24 Aug 2001 14:40:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libnetgraph netgraph.3 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/24 14:40:46 PDT Modified files: (Branch: RELENG_4) lib/libnetgraph netgraph.3 Log: MFC: Explain what the return value from NgRecvMsg() and NgRecvData() means. Approved by: jkh Revision Changes Path 1.4.2.8 +17 -5 src/lib/libnetgraph/netgraph.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 14:41:49 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E1B6437B40C; Fri, 24 Aug 2001 14:41:45 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OLfjY27428; Fri, 24 Aug 2001 14:41:45 -0700 (PDT) (envelope-from brian) Message-Id: <200108242141.f7OLfjY27428@freefall.freebsd.org> From: Brian Somers Date: Fri, 24 Aug 2001 14:41:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/pppoed pppoed.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/24 14:41:45 PDT Modified files: (Branch: RELENG_4) libexec/pppoed pppoed.c Log: MFC: Understand that a return value of 0 from NgRecvMsg() means that the socket was closed. Revision Changes Path 1.2.6.4 +9 -3 src/libexec/pppoed/pppoed.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 14:42:46 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6466537B40C; Fri, 24 Aug 2001 14:42:42 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OLggO27527; Fri, 24 Aug 2001 14:42:42 -0700 (PDT) (envelope-from brian) Message-Id: <200108242142.f7OLggO27527@freefall.freebsd.org> From: Brian Somers Date: Fri, 24 Aug 2001 14:42:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp ether.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/24 14:42:42 PDT Modified files: (Branch: RELENG_4) usr.sbin/ppp ether.c Log: MFC: Handle return values of 0 from NgRecvMsg() properly. Approved by: jkh Revision Changes Path 1.9.2.10 +3 -3 src/usr.sbin/ppp/ether.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 14:43:41 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CF05037B401; Fri, 24 Aug 2001 14:43:35 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OLhZ827671; Fri, 24 Aug 2001 14:43:35 -0700 (PDT) (envelope-from imp) Message-Id: <200108242143.f7OLhZ827671@freefall.freebsd.org> From: Warner Losh Date: Fri, 24 Aug 2001 14:43:35 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/24 14:43:35 PDT Modified files: . UPDATING Log: Use Brian Sommers' named entry Revision Changes Path 1.169 +21 -6 src/UPDATING To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 14:43:43 2001 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 6B6D937B40C; Fri, 24 Aug 2001 14:43:34 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.5/8.11.5) with ESMTP id f7OLhWv55363; Fri, 24 Aug 2001 22:43:32 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.6/8.11.6) with ESMTP id f7OLhVf42075; Fri, 24 Aug 2001 22:43:31 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200108242143.f7OLhVf42075@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Brian Somers Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/libexec/pppoed pppoed.c In-Reply-To: Message from Brian Somers of "Fri, 24 Aug 2001 14:41:45 PDT." <200108242141.f7OLfjY27428@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 24 Aug 2001 22:43:31 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > brian 2001/08/24 14:41:45 PDT > > Modified files: (Branch: RELENG_4) > libexec/pppoed pppoed.c > Log: > MFC: Understand that a return value of 0 from NgRecvMsg() means that the > socket was closed. Oops, approved by: jhk > Revision Changes Path > 1.2.6.4 +9 -3 src/libexec/pppoed/pppoed.c > -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 14:53: 0 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 08A9237B40A; Fri, 24 Aug 2001 14:52:54 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OLqsW28534; Fri, 24 Aug 2001 14:52:54 -0700 (PDT) (envelope-from ache) Message-Id: <200108242152.f7OLqsW28534@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 24 Aug 2001 14:52:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb-sendmail Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/24 14:52:53 PDT Modified files: security/drweb-sendmail Makefile Log: Use ${CFLAGS} when compiling dwc Revision Changes Path 1.5 +2 -2 ports/security/drweb-sendmail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 15: 9:35 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 73CBD37B40A; Fri, 24 Aug 2001 15:09:30 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OM9UQ32638; Fri, 24 Aug 2001 15:09:30 -0700 (PDT) (envelope-from ache) Message-Id: <200108242209.f7OM9UQ32638@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 24 Aug 2001 15:09:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb-sendmail Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/24 15:09:30 PDT Modified files: security/drweb-sendmail Makefile Log: Fix my typo Revision Changes Path 1.6 +3 -3 ports/security/drweb-sendmail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 15:53:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EECDF37B409; Fri, 24 Aug 2001 15:53:45 -0700 (PDT) (envelope-from bmilekic@FreeBSD.org) Received: (from bmilekic@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OMrjC37004; Fri, 24 Aug 2001 15:53:45 -0700 (PDT) (envelope-from bmilekic) Message-Id: <200108242253.f7OMrjC37004@freefall.freebsd.org> From: Bosko Milekic Date: Fri, 24 Aug 2001 15:53:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_mutex.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmilekic 2001/08/24 15:53:45 PDT Modified files: sys/kern kern_mutex.c Log: (null) Revision Changes Path 1.66 +5 -3 src/sys/kern/kern_mutex.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 15:54:42 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B7A637B401; Fri, 24 Aug 2001 15:54:36 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OMsao37153; Fri, 24 Aug 2001 15:54:36 -0700 (PDT) (envelope-from dillon) Message-Id: <200108242254.f7OMsao37153@freefall.freebsd.org> From: Matt Dillon Date: Fri, 24 Aug 2001 15:54:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm swap_pager.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2001/08/24 15:54:36 PDT Modified files: (Branch: RELENG_4) sys/vm swap_pager.c Log: Cut the size of the (really over zealous) swap-meta allocation in half to avoid an out-of-KVM panic on machines with 4G of ram. (This is not the more sophisticated kvm capping code, just a simple patch). Approved by: jkh Revision Changes Path 1.130.2.9 +2 -2 src/sys/vm/swap_pager.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 15:56:12 2001 Delivered-To: cvs-all@freebsd.org Received: from technokratis.com (modemcable093.62-201-24.mtl.mc.videotron.ca [24.201.62.93]) by hub.freebsd.org (Postfix) with ESMTP id 0CD6737B403; Fri, 24 Aug 2001 15:56:04 -0700 (PDT) (envelope-from bmilekic@technokratis.com) Received: (from bmilekic@localhost) by technokratis.com (8.11.4/8.11.3) id f7OMvme00414; Fri, 24 Aug 2001 18:57:48 -0400 (EDT) (envelope-from bmilekic) Date: Fri, 24 Aug 2001 18:57:47 -0400 From: Bosko Milekic To: cvs-all@freebsd.org Cc: cvs-committers@freebsd.org Subject: Re: cvs commit: src/sys/kern kern_mutex.c Message-ID: <20010824185747.A396@technokratis.com> References: <200108242253.f7OMrjC37004@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108242253.f7OMrjC37004@freefall.freebsd.org>; from bmilekic@FreeBSD.org on Fri, Aug 24, 2001 at 03:53:45PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG GRRRRRRRRRRRRRRRRRRRRRRR. My F*C*ING console went bonkers for some reason *DURING* the bloody commit. Look out for forced commit to see message. On Fri, Aug 24, 2001 at 03:53:45PM -0700, Bosko Milekic wrote: > bmilekic 2001/08/24 15:53:45 PDT > > Modified files: > sys/kern kern_mutex.c > Log: > (null) > > Revision Changes Path > 1.66 +5 -3 src/sys/kern/kern_mutex.c > -- Bosko Milekic bmilekic@technokratis.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 15:59:52 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A06437B409; Fri, 24 Aug 2001 15:59:48 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7OMxmD37685; Fri, 24 Aug 2001 15:59:48 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108242259.f7OMxmD37685@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Fri, 24 Aug 2001 15:59:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/fcron Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/24 15:59:48 PDT Modified files: sysutils/fcron Makefile Log: Create ${PREFIX}/etc dir so configure script finds to automagically. PR: 30038 Submitted by: leeym@utopia.leeym.com Revision Changes Path 1.5 +4 -1 ports/sysutils/fcron/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 16: 0: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D60037B406; Fri, 24 Aug 2001 16:00:03 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7ON02L37782; Fri, 24 Aug 2001 16:00:02 -0700 (PDT) (envelope-from ache) Message-Id: <200108242300.f7ON02L37782@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 24 Aug 2001 16:00:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/p5-String-CRC32 Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/24 16:00:02 PDT Modified files: devel Makefile Added files: devel/p5-String-CRC32 Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Generate CRC32 checksum Revision Changes Path 1.623 +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 Fri Aug 24 16: 0:21 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1153437B41B; Fri, 24 Aug 2001 16:00:12 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7ON0BL37834; Fri, 24 Aug 2001 16:00:11 -0700 (PDT) (envelope-from ache) Message-Id: <200108242300.f7ON0BL37834@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 24 Aug 2001 16:00:11 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/24 16:00:11 PDT Modified files: . modules Log: p5-String-CRC32 --> ports/devel/p5-String-CRC32 Revision Changes Path 1.3725 +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 Aug 24 16: 1: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1438637B409; Fri, 24 Aug 2001 16:01:00 -0700 (PDT) (envelope-from bmilekic@FreeBSD.org) Received: (from bmilekic@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7ON10437938; Fri, 24 Aug 2001 16:01:00 -0700 (PDT) (envelope-from bmilekic) Message-Id: <200108242301.f7ON10437938@freefall.freebsd.org> From: Bosko Milekic Date: Fri, 24 Aug 2001 16:01:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_mutex.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmilekic 2001/08/24 16:01:00 PDT Modified files: sys/kern kern_mutex.c Log: Force a commit on kern_mutex.c to explain reason for last commit but while I'm at it also add a comment in mtx_validate() explaining the purpose of the last change. Basically, this fixes booting kernels compiled with MUTEX_DEBUG. What used to happen is before we setidt from init386() [still using BTX idt], we called mtx_init() on several mutex locks, notably Giant and some others. This is a problem for MUTEX_DEBUG because it enables mtx_validate() which calls kernacc(), some of which in turn requires Giant. Fix by calling kernacc() from mtx_validate() only if (!cold). Revision Changes Path 1.67 +6 -1 src/sys/kern/kern_mutex.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 16: 5: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C60937B40B; Fri, 24 Aug 2001 16:04:59 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7ON4x838345; Fri, 24 Aug 2001 16:04:59 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108242304.f7ON4x838345@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Fri, 24 Aug 2001 16:04:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/raproxy Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/24 16:04:59 PDT Modified files: audio/raproxy Makefile Log: Delete ${CAT} pkg-message to fix building Bump PORTREVISION PR: 30036 Submitted by: leeym@utopia.leeym.com Revision Changes Path 1.11 +2 -2 ports/audio/raproxy/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 16: 8:17 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7011C37B401; Fri, 24 Aug 2001 16:08:13 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7ON8DD41584; Fri, 24 Aug 2001 16:08:13 -0700 (PDT) (envelope-from mjacob) Message-Id: <200108242308.f7ON8DD41584@freefall.freebsd.org> From: Matt Jacob Date: Fri, 24 Aug 2001 16:08:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci if_wx.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mjacob 2001/08/24 16:08:13 PDT Modified files: sys/pci if_wx.c Log: John Polstra bogus additional write to WXREG_IMASK that enabled *all* interrupt causes while I was trying to disable the chip. Oops. Revision Changes Path 1.18 +2 -3 src/sys/pci/if_wx.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 16:16:46 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BD1137B406; Fri, 24 Aug 2001 16:16:42 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7ONGgB42268; Fri, 24 Aug 2001 16:16:42 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108242316.f7ONGgB42268@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Fri, 24 Aug 2001 16:16:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/libsndfile Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/24 16:16:42 PDT Modified files: audio/libsndfile Makefile distinfo pkg-plist Log: Update to 0.0.24 PR: 30037 Submitted by: tkato@prontomail.com Revision Changes Path 1.2 +13 -4 ports/audio/libsndfile/Makefile 1.2 +1 -1 ports/audio/libsndfile/distinfo 1.3 +1 -5 ports/audio/libsndfile/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 Aug 24 16:23:40 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 50A9F37B405; Fri, 24 Aug 2001 16:23:37 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7ONNbg42870; Fri, 24 Aug 2001 16:23:37 -0700 (PDT) (envelope-from ache) Message-Id: <200108242323.f7ONNbg42870@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 24 Aug 2001 16:23:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb Makefile ports/security/drweb/files update-patch X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/24 16:23:37 PDT Modified files: security/drweb Makefile Added files: security/drweb/files update-patch Log: Some efforts to make update.pl working Revision Changes Path 1.3 +4 -1 ports/security/drweb/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 16:24: 4 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CB7A837B406; Fri, 24 Aug 2001 16:23:59 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7ONNxq42950; Fri, 24 Aug 2001 16:23:59 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108242323.f7ONNxq42950@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Fri, 24 Aug 2001 16:23:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/tn5250 Makefile distinfo pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/24 16:23:59 PDT Modified files: net/tn5250 Makefile distinfo pkg-descr pkg-plist Log: Update 0.16.2 PR: 30046 Submitted by: tkato@prontomail.com Revision Changes Path 1.11 +11 -3 ports/net/tn5250/Makefile 1.6 +1 -1 ports/net/tn5250/distinfo 1.4 +1 -1 ports/net/tn5250/pkg-descr 1.7 +5 -2 ports/net/tn5250/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 Aug 24 16:30:22 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 548E237B406; Fri, 24 Aug 2001 16:30:18 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7ONUIJ43437; Fri, 24 Aug 2001 16:30:18 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108242330.f7ONUIJ43437@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Fri, 24 Aug 2001 16:30:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/scm Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/24 16:30:18 PDT Modified files: lang/scm Makefile distinfo pkg-plist Log: Update slib version to 2d2 PR: 30042 Submitted by: tkato@prontomail.com Revision Changes Path 1.22 +14 -13 ports/lang/scm/Makefile 1.11 +1 -1 ports/lang/scm/distinfo 1.12 +3 -3 ports/lang/scm/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 Aug 24 16:34:34 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 13FDC37B408; Fri, 24 Aug 2001 16:34:29 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7ONYTC43848; Fri, 24 Aug 2001 16:34:29 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108242334.f7ONYTC43848@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Fri, 24 Aug 2001 16:34:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/diction Makefile distinfo ports/misc/diction/files patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/24 16:34:28 PDT Modified files: misc/diction Makefile distinfo misc/diction/files patch-ab Log: Update to 1.01 PR: 30043 Submitted by: KATO Tsuguru Revision Changes Path 1.8 +2 -2 ports/misc/diction/Makefile 1.4 +1 -1 ports/misc/diction/distinfo 1.2 +3 -3 ports/misc/diction/files/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 Aug 24 16:36:18 2001 Delivered-To: cvs-all@freebsd.org Received: from peitho.fxp.org (peitho.fxp.org [209.26.95.40]) by hub.freebsd.org (Postfix) with ESMTP id BCFE937B408; Fri, 24 Aug 2001 16:36:08 -0700 (PDT) (envelope-from cdf.lists@fxp.org) Received: by peitho.fxp.org (Postfix, from userid 1501) id BA5C31361D; Fri, 24 Aug 2001 19:36:07 -0400 (EDT) Date: Fri, 24 Aug 2001 19:36:07 -0400 From: Chris Faulhaber To: "David W. Chapman Jr." Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/sysutils/fcron Makefile Message-ID: <20010824193607.A59099@peitho.fxp.org> References: <200108242259.f7OMxmD37685@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200108242259.f7OMxmD37685@freefall.freebsd.org> User-Agent: Mutt/1.3.20i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Aug 24, 2001 at 03:59:48PM -0700, David W. Chapman Jr. wrote: > dwcjr 2001/08/24 15:59:48 PDT > > Modified files: > sysutils/fcron Makefile > Log: > Create ${PREFIX}/etc dir so configure script finds to automagically. > > PR: 30038 > Submitted by: leeym@utopia.leeym.com > > Revision Changes Path > 1.5 +4 -1 ports/sysutils/fcron/Makefile > + +pre-configure: + @${MKDIR} -p ${PREFIX}/etc Won't this cause problems for those building ports as non-root? Couldn't we simply patch configure[.in] to take our word for where the proper etc dir is instead of bailing if it isn't found? -- 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 Fri Aug 24 16:37: 7 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AFF0937B406; Fri, 24 Aug 2001 16:37:01 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7ONb1B44125; Fri, 24 Aug 2001 16:37:01 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108242337.f7ONb1B44125@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Fri, 24 Aug 2001 16:37:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/photopc Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/24 16:37:01 PDT Modified files: graphics/photopc Makefile Log: Fix MASTER_SITES PR: 30040 Submitted by: tkato@prontomail.com Revision Changes Path 1.6 +3 -2 ports/graphics/photopc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 16:47: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5ADBD37B408; Fri, 24 Aug 2001 16:47:02 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7ONl2J44901; Fri, 24 Aug 2001 16:47:02 -0700 (PDT) (envelope-from taoka) Message-Id: <200108242347.f7ONl2J44901@freefall.freebsd.org> From: Satoshi Taoka Date: Fri, 24 Aug 2001 16:46:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/mozilla-jlp Makefile distinfo pkg-plist ports/japanese/mozilla-jlp/files installed-chrome.txt unix.js all.js X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG taoka 2001/08/24 16:46:59 PDT Modified files: japanese/mozilla-jlp Makefile distinfo pkg-plist japanese/mozilla-jlp/files installed-chrome.txt unix.js Removed files: japanese/mozilla-jlp/files all.js Log: Unbreak. (Update JLP for mozilla0.9.3 to RC2) Submitted by: maintainer RP: ports/30023 Revision Changes Path 1.19 +5 -12 ports/japanese/mozilla-jlp/Makefile 1.11 +2 -2 ports/japanese/mozilla-jlp/distinfo 1.9 +0 -9 ports/japanese/mozilla-jlp/pkg-plist 1.5 +1 -0 ports/japanese/mozilla-jlp/files/installed-chrome.txt 1.8 +59 -6 ports/japanese/mozilla-jlp/files/unix.js To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 16:58:53 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C4CF337B405; Fri, 24 Aug 2001 16:58:47 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7ONwlG45777; Fri, 24 Aug 2001 16:58:47 -0700 (PDT) (envelope-from taoka) Message-Id: <200108242358.f7ONwlG45777@freefall.freebsd.org> From: Satoshi Taoka Date: Fri, 24 Aug 2001 16:58:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/wnn7egg/files patch-ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG taoka 2001/08/24 16:58:47 PDT Added files: japanese/wnn7egg/files patch-ac Log: Fix a bug about font coloring Submitted by: Yokota Hiroshi Obtained from: a file Q_and_A.color-mate in the distfile of color-mate (ports/editors/color-mate) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 17: 3:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 885C237B40C; Fri, 24 Aug 2001 17:03:13 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P03D746118; Fri, 24 Aug 2001 17:03:13 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108250003.f7P03D746118@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Fri, 24 Aug 2001 17:03:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/fcron Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/24 17:03:13 PDT Modified files: sysutils/fcron Makefile Log: Backout 1.5 of Makefile ETC is already set so why should configure need to autodetect Also if you build as non-root you don't have correct perms on etc Revision Changes Path 1.6 +1 -4 ports/sysutils/fcron/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 17: 8:25 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A290537B406; Fri, 24 Aug 2001 17:08:20 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P08Kp49400; Fri, 24 Aug 2001 17:08:20 -0700 (PDT) (envelope-from taoka) Message-Id: <200108250008.f7P08Kp49400@freefall.freebsd.org> From: Satoshi Taoka Date: Fri, 24 Aug 2001 17:08:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/color-mate Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG taoka 2001/08/24 17:08:20 PDT Modified files: editors/color-mate Makefile distinfo Log: Update version to 10.5 (one of modifications is to support wnn7egg) Revision Changes Path 1.4 +2 -2 ports/editors/color-mate/Makefile 1.3 +1 -1 ports/editors/color-mate/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 17:22: 1 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 443A837B416; Fri, 24 Aug 2001 17:21:54 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P0Ls850493; Fri, 24 Aug 2001 17:21:54 -0700 (PDT) (envelope-from taoka) Message-Id: <200108250021.f7P0Ls850493@freefall.freebsd.org> From: Satoshi Taoka Date: Fri, 24 Aug 2001 17:21:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/wnn7egg Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG taoka 2001/08/24 17:21:54 PDT Modified files: japanese/wnn7egg Makefile Log: Add PORTREVISION whose value is one (it has to been done in my previous commit) Revision Changes Path 1.2 +2 -1 ports/japanese/wnn7egg/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 17:48:29 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9371037B403; Fri, 24 Aug 2001 17:48:25 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Received: (from nsayer@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P0mPN52473; Fri, 24 Aug 2001 17:48:25 -0700 (PDT) (envelope-from nsayer) Message-Id: <200108250048.f7P0mPN52473@freefall.freebsd.org> From: Nick Sayer Date: Fri, 24 Aug 2001 17:48:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files.i386 src/sys/i386/isa if_wi.c if_wireg.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nsayer 2001/08/24 17:48:25 PDT Modified files: (Branch: RELENG_4) sys/conf files.i386 sys/i386/isa if_wi.c if_wireg.h Log: MFC: Support for Netgear MA301 PCI 802.11 NICs. Also note that wi is no longer dependent on 'card' since it can be either pccard or pci. Reviewed by: jkh Revision Changes Path 1.307.2.14 +2 -2 src/sys/conf/files.i386 1.18.2.11 +37 -7 src/sys/i386/isa/Attic/if_wi.c 1.8.2.2 +10 -5 src/sys/i386/isa/Attic/if_wireg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 18: 1:47 2001 Delivered-To: cvs-all@freebsd.org Received: from peter3.wemm.org (c1315225-a.plstn1.sfba.home.com [24.14.150.180]) by hub.freebsd.org (Postfix) with ESMTP id EC6BD37B406; Fri, 24 Aug 2001 18:01:35 -0700 (PDT) (envelope-from peter@wemm.org) Received: from overcee.netplex.com.au (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id f7P11ZM91215; Fri, 24 Aug 2001 18:01:35 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 939783810; Fri, 24 Aug 2001 18:01:35 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 To: Bruce Evans Cc: "Andrey A. Chernov" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/nfsclient nfs_lock.c In-Reply-To: <20010824212601.G939-100000@besplex.bde.org> Date: Fri, 24 Aug 2001 18:01:35 -0700 From: Peter Wemm Message-Id: <20010825010135.939783810@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Bruce Evans wrote: > On Thu, 23 Aug 2001, Andrey A. Chernov wrote: > > > ache 2001/08/23 11:05:22 PDT > > > > Modified files: > > sys/nfsclient nfs_lock.c > > Log: > > Copy from nfs/nfs_lock.c, fix || -> && > > > > Revision Changes Path > > 1.11 +1 -1 src/sys/nfsclient/nfs_lock.c > > > All your changes to this file got blow away -- it's bac to rev.1.6. I > think you're not supposed to change files in this directory. I think > it is updated automatically from ../nfs. The last "update" of nfs_lock.c > was apparently done by copying an old version. I'm doing repeated repo-copies. But the problem is that we now have two different rev 1.7-1.11's out there in the wild. In order to minimize any cvsup / cvs update problems I blew away the revisions and will give the dust some time to settle and then redo the copy. I would have been able to immediately re-copy the files, but the commits broke that. 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 Aug 24 18: 9:39 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 23DD937B407; Fri, 24 Aug 2001 18:09:35 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P19Z556817; Fri, 24 Aug 2001 18:09:35 -0700 (PDT) (envelope-from jedgar) Message-Id: <200108250109.f7P19Z556817@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Fri, 24 Aug 2001 18:09:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/gnuls Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jedgar 2001/08/24 18:09:35 PDT Modified files: misc/gnuls Makefile distinfo Log: Add optional ACL support to gnuls. This causes the last field in the mode to show up as a '+' when a file/directory has extended ACLs set (per the POSIX.2e draft): -rw-rw-r--+ 1 jedgar jedgar 267 Aug 14 21:47 TODO This only works on -current systems and can be activated by defining WITH_ACL_SUPPORT when building. New versions of the GNU fileutils (i.e. 4.1) contain native ACL support but will not build without CVS versions of autoconf/automake which are not currently supported. Approved by: Maintainer Revision Changes Path 1.15 +16 -2 ports/misc/gnuls/Makefile 1.4 +1 -0 ports/misc/gnuls/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 18:16:52 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F366237B401; Fri, 24 Aug 2001 18:16:47 -0700 (PDT) (envelope-from julian@FreeBSD.org) Received: (from julian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P1Glm57309; Fri, 24 Aug 2001 18:16:47 -0700 (PDT) (envelope-from julian) Message-Id: <200108250116.f7P1Glm57309@freefall.freebsd.org> From: Julian Elischer Date: Fri, 24 Aug 2001 18:16:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 locore.s X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG julian 2001/08/24 18:16:47 PDT Modified files: sys/i386/i386 locore.s Log: Add an explanatory note that would have saved me an hour or two of confusion had it been there when I started reading the code.. Revision Changes Path 1.148 +8 -1 src/sys/i386/i386/locore.s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 18:25:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6062637B408; Fri, 24 Aug 2001 18:25:27 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P1PRs57879; Fri, 24 Aug 2001 18:25:27 -0700 (PDT) (envelope-from asami) Message-Id: <200108250125.f7P1PRs57879@freefall.freebsd.org> From: Satoshi Asami Date: Fri, 24 Aug 2001 18:25:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports INDEX X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG asami 2001/08/24 18:25:27 PDT Modified files: . INDEX Log: New index with 5,704 ports. Revision Changes Path 1.345 +705 -648 ports/INDEX To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 18:36:54 2001 Delivered-To: cvs-all@freebsd.org Received: from lennier.cc.vt.edu (lennier.cc.vt.edu [198.82.162.213]) by hub.freebsd.org (Postfix) with ESMTP id 5D79737B406; Fri, 24 Aug 2001 18:36:43 -0700 (PDT) (envelope-from mheffner@vt.edu) Received: from zidane.cc.vt.edu (IDENT:mirapoint@zidane.cc.vt.edu [198.82.161.184]) by lennier.cc.vt.edu (8.11.4/8.11.4) with ESMTP id f7P1agS118899; Fri, 24 Aug 2001 21:36:42 -0400 (EDT) Received: from mail.vt.edu (gkar.cc.vt.edu [198.82.161.190]) by zidane.cc.vt.edu (Mirapoint) with ESMTP id ABP26571; Fri, 24 Aug 2001 21:36:40 -0400 (EDT) Received: from enterprise.muriel.penguinpowered.com ([198.82.100.125]) by gkar.cc.vt.edu (Sun Internet Mail Server sims.3.5.2000.03.23.18.03.p10) with ESMTP id <0GIL009AJOH43E@gkar.cc.vt.edu>; Fri, 24 Aug 2001 21:36:40 -0400 (EDT) Date: Fri, 24 Aug 2001 21:35:18 -0400 (EDT) From: Mike Heffner Subject: RE: cvs commit: ports/devel/amulet Makefile In-reply-to: <200108231653.f7NGroL13017@freefall.freebsd.org> To: Alexander Langer Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Message-id: MIME-version: 1.0 X-Mailer: XFMail 1.5.0 on FreeBSD Content-type: multipart/signed; boundary="_=XFMail.1.5.0.FreeBSD:20010824213518:451=_"; micalg=pgp-md5; protocol="application/pgp-signature" X-Priority: 3 (Normal) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This message is in MIME format --_=XFMail.1.5.0.FreeBSD:20010824213518:451=_ Content-Type: text/plain; charset=us-ascii On 23-Aug-2001 Alexander Langer wrote: | alex 2001/08/23 09:53:50 PDT | | Modified files: | devel/amulet Makefile | Log: | Mark BROKEN again (internal compiler error). | This port has been broken since I can think (almost). That's unfortunate, I had it working just recently too. Mike -- Mike Heffner Blacksburg, VA --_=XFMail.1.5.0.FreeBSD:20010824213518:451=_ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE7hwDWFokZQs3sv5kRAnmjAJ4lKP2ImXJKBu7kbtWYwVj8iUkRegCfUBGj Yv8FpI+os/U0R3Kw5Y6wQxA= =BJ6v -----END PGP SIGNATURE----- --_=XFMail.1.5.0.FreeBSD:20010824213518:451=_-- End of MIME message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 18:49:51 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7BAE737B40C; Fri, 24 Aug 2001 18:49:48 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P1nmV59402; Fri, 24 Aug 2001 18:49:48 -0700 (PDT) (envelope-from taoka) Message-Id: <200108250149.f7P1nmV59402@freefall.freebsd.org> From: Satoshi Taoka Date: Fri, 24 Aug 2001 18:49:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/mozilla-jlp Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG taoka 2001/08/24 18:49:48 PDT Modified files: japanese/mozilla-jlp Makefile Log: Unbreak (correct distfile names) Pointed out by: Kazumasa Nishizawa Revision Changes Path 1.20 +3 -3 ports/japanese/mozilla-jlp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 19: 7: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 00BCC37B40E; Fri, 24 Aug 2001 19:06:59 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P26xC63422; Fri, 24 Aug 2001 19:06:59 -0700 (PDT) (envelope-from peter) Message-Id: <200108250206.f7P26xC63422@freefall.freebsd.org> From: Peter Wemm Date: Fri, 24 Aug 2001 19:06:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 locore.s X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/24 19:06:59 PDT Modified files: sys/i386/i386 locore.s Log: s/teh/the/ Revision Changes Path 1.149 +2 -2 src/sys/i386/i386/locore.s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 19:18: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8310E37B407; Fri, 24 Aug 2001 19:17:59 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P2Hxo65292; Fri, 24 Aug 2001 19:17:59 -0700 (PDT) (envelope-from will) Message-Id: <200108250217.f7P2Hxo65292@freefall.freebsd.org> From: Will Andrews Date: Fri, 24 Aug 2001 19:17:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/kdemultimedia2 Makefile ports/converters/kdesupport11 Makefile ports/converters/kdesupport2 Makefile ports/editors/koffice Makefile ports/games/kdegames2 Makefile ports/graphics/kdegraphics2 Makefile ports/misc/kdeutils2 Makefile ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG will 2001/08/24 19:17:59 PDT Modified files: audio/kdemultimedia2 Makefile converters/kdesupport11 Makefile converters/kdesupport2 Makefile editors/koffice Makefile games/kdegames2 Makefile graphics/kdegraphics2 Makefile misc/kdeutils2 Makefile net/kdenetwork2 Makefile x11/kde2 Makefile x11/kdebase11 Makefile x11/kdebase2 Makefile x11/kdelibs11 Makefile x11/kdelibs2 Makefile x11-clocks/kdetoys2 Makefile x11-toolkits/qt145 Makefile x11-toolkits/qt2-static Makefile x11-toolkits/qt23 Makefile Log: Reassign MAINTAINER to kde@FreeBSD.org, a group formed specifically to maintain and improve QT/KDE on FreeBSD. This group (at this time) consists of: demon, olgeni, kevlo, lauri@kde.org, rwatson, and will. While I'm here, fail build of kdelibs11 if kdelibs2 is installed. This was originally supposed to be committed with the 2.2 update, but... Revision Changes Path 1.57 +2 -2 ports/audio/kdemultimedia2/Makefile 1.36 +1 -1 ports/converters/kdesupport11/Makefile 1.51 +1 -1 ports/converters/kdesupport2/Makefile 1.28 +2 -2 ports/editors/koffice/Makefile 1.55 +2 -2 ports/games/kdegames2/Makefile 1.50 +2 -2 ports/graphics/kdegraphics2/Makefile 1.55 +2 -2 ports/misc/kdeutils2/Makefile 1.64 +2 -2 ports/net/kdenetwork2/Makefile 1.46 +1 -1 ports/x11/kde2/Makefile 1.57 +1 -1 ports/x11/kdebase11/Makefile 1.75 +2 -2 ports/x11/kdebase2/Makefile 1.54 +12 -1 ports/x11/kdelibs11/Makefile 1.82 +2 -2 ports/x11/kdelibs2/Makefile 1.25 +2 -2 ports/x11-clocks/kdetoys2/Makefile 1.53 +2 -2 ports/x11-toolkits/qt145/Makefile 1.3 +2 -2 ports/x11-toolkits/qt2-static/Makefile 1.87 +1 -1 ports/x11-toolkits/qt23/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 19:20:14 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 49AC937B403; Fri, 24 Aug 2001 19:20:03 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P2K3I66078; Fri, 24 Aug 2001 19:20:03 -0700 (PDT) (envelope-from peter) Message-Id: <200108250220.f7P2K3I66078@freefall.freebsd.org> From: Peter Wemm Date: Fri, 24 Aug 2001 19:20:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf options.i386 options.pc98 src/sys/i386/conf GENERIC NOTES src/sys/i386/i386 genassym.c machdep.c mp_machdep.c pmap.c sys_machdep.c vm_machdep.c src/sys/i386/include privatespace.h globaldata.h param.h ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/24 19:20:03 PDT Modified files: sys/conf options.i386 options.pc98 sys/i386/conf GENERIC NOTES sys/i386/i386 genassym.c machdep.c mp_machdep.c pmap.c sys_machdep.c vm_machdep.c sys/i386/include globaldata.h param.h sys/kern imgact_aout.c sys/pc98/i386 machdep.c Added files: sys/i386/include privatespace.h Log: Optionize UPAGES for the i386. As part of this I split some of the low level implementation stuff out of machine/globaldata.h to avoid exposing UPAGES to lots more places. The end result is that we can double the kernel stack size with 'options UPAGES=4' etc. This is mainly being done for the benefit of a MFC to RELENG_4 at some point. -current doesn't really need this so much since each interrupt runs on its own kstack. Revision Changes Path 1.153 +2 -1 src/sys/conf/options.i386 1.126 +2 -1 src/sys/conf/options.pc98 1.317 +4 -2 src/sys/i386/conf/GENERIC 1.946 +2 -1 src/sys/i386/conf/NOTES 1.113 +3 -1 src/sys/i386/i386/genassym.c 1.476 +5 -1 src/sys/i386/i386/machdep.c 1.162 +3 -1 src/sys/i386/i386/mp_machdep.c 1.287 +2 -1 src/sys/i386/i386/pmap.c 1.61 +3 -1 src/sys/i386/i386/sys_machdep.c 1.168 +2 -1 src/sys/i386/i386/vm_machdep.c 1.29 +1 -21 src/sys/i386/include/globaldata.h 1.61 +4 -1 src/sys/i386/include/param.h 1.70 +3 -1 src/sys/kern/imgact_aout.c 1.240 +5 -1 src/sys/pc98/i386/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 19:41:34 2001 Delivered-To: cvs-all@freebsd.org Received: from InterJet.elischer.org (c421509-a.pinol1.sfba.home.com [24.7.86.9]) by hub.freebsd.org (Postfix) with ESMTP id D5C5737B408; Fri, 24 Aug 2001 19:41:24 -0700 (PDT) (envelope-from julian@elischer.org) Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id TAA61280; Fri, 24 Aug 2001 19:55:37 -0700 (PDT) Date: Fri, 24 Aug 2001 19:55:37 -0700 (PDT) From: Julian Elischer To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 locore.s In-Reply-To: <200108250206.f7P26xC63422@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG aarghh On Fri, 24 Aug 2001, Peter Wemm wrote: > peter 2001/08/24 19:06:59 PDT > > Modified files: > sys/i386/i386 locore.s > Log: > s/teh/the/ > > Revision Changes Path > 1.149 +2 -2 src/sys/i386/i386/locore.s > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 19:41:40 2001 Delivered-To: cvs-all@freebsd.org Received: from InterJet.elischer.org (c421509-a.pinol1.sfba.home.com [24.7.86.9]) by hub.freebsd.org (Postfix) with ESMTP id AEC0B37B40E; Fri, 24 Aug 2001 19:41:25 -0700 (PDT) (envelope-from julian@elischer.org) Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id TAA61282; Fri, 24 Aug 2001 19:57:15 -0700 (PDT) Date: Fri, 24 Aug 2001 19:57:15 -0700 (PDT) From: Julian Elischer To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf options.i386 options.pc98 src/sys/i386/conf GENERIC NOTES src/sys/i386/i386 genassym.c machdep.c mp_machdep.c pmap.c sys_machdep.c vm_machdep.c src/sys/i386/include privatespace.h globaldata.h param.h ... In-Reply-To: <200108250220.f7P2K3I66078@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This doesn't mean that people should go allocating 2K structures in their ata drivers etc. On Fri, 24 Aug 2001, Peter Wemm wrote: > peter 2001/08/24 19:20:03 PDT > > Modified files: > sys/conf options.i386 options.pc98 > sys/i386/conf GENERIC NOTES > sys/i386/i386 genassym.c machdep.c mp_machdep.c pmap.c > sys_machdep.c vm_machdep.c > sys/i386/include globaldata.h param.h > sys/kern imgact_aout.c > sys/pc98/i386 machdep.c > Added files: > sys/i386/include privatespace.h > Log: > Optionize UPAGES for the i386. As part of this I split some of the low > level implementation stuff out of machine/globaldata.h to avoid exposing > UPAGES to lots more places. The end result is that we can double > the kernel stack size with 'options UPAGES=4' etc. > > This is mainly being done for the benefit of a MFC to RELENG_4 at some > point. -current doesn't really need this so much since each interrupt > runs on its own kstack. > > Revision Changes Path > 1.153 +2 -1 src/sys/conf/options.i386 > 1.126 +2 -1 src/sys/conf/options.pc98 > 1.317 +4 -2 src/sys/i386/conf/GENERIC > 1.946 +2 -1 src/sys/i386/conf/NOTES > 1.113 +3 -1 src/sys/i386/i386/genassym.c > 1.476 +5 -1 src/sys/i386/i386/machdep.c > 1.162 +3 -1 src/sys/i386/i386/mp_machdep.c > 1.287 +2 -1 src/sys/i386/i386/pmap.c > 1.61 +3 -1 src/sys/i386/i386/sys_machdep.c > 1.168 +2 -1 src/sys/i386/i386/vm_machdep.c > 1.29 +1 -21 src/sys/i386/include/globaldata.h > 1.61 +4 -1 src/sys/i386/include/param.h > 1.70 +3 -1 src/sys/kern/imgact_aout.c > 1.240 +5 -1 src/sys/pc98/i386/machdep.c > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 19:44:44 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 494C937B40A; Fri, 24 Aug 2001 19:44:39 -0700 (PDT) (envelope-from julian@FreeBSD.org) Received: (from julian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P2idc67866; Fri, 24 Aug 2001 19:44:39 -0700 (PDT) (envelope-from julian) Message-Id: <200108250244.f7P2idc67866@freefall.freebsd.org> From: Julian Elischer Date: Fri, 24 Aug 2001 19:44:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 pmap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG julian 2001/08/24 19:44:39 PDT Modified files: sys/i386/i386 pmap.c Log: Add another comment. check for 'teh's this time.. Revision Changes Path 1.288 +8 -1 src/sys/i386/i386/pmap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 20:18:54 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7381D37B403; Fri, 24 Aug 2001 20:18:49 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P3In272804; Fri, 24 Aug 2001 20:18:49 -0700 (PDT) (envelope-from petef) Message-Id: <200108250318.f7P3In272804@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 24 Aug 2001 20:18:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/ImageMagick Makefile distinfo pkg-plist ports/graphics/ImageMagick/files patch-al X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/24 20:18:49 PDT Modified files: graphics/ImageMagick Makefile distinfo pkg-plist graphics/ImageMagick/files patch-al Log: Update to version 5.3.7. PR: 30053 Submitted by: KATO Tsuguru Revision Changes Path 1.118 +2 -3 ports/graphics/ImageMagick/Makefile 1.56 +1 -1 ports/graphics/ImageMagick/distinfo 1.52 +0 -3 ports/graphics/ImageMagick/pkg-plist 1.4 +14 -5 ports/graphics/ImageMagick/files/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 Aug 24 20:23:53 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9538237B40E; Fri, 24 Aug 2001 20:23:50 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P3Nor73299; Fri, 24 Aug 2001 20:23:50 -0700 (PDT) (envelope-from bmah) Message-Id: <200108250323.f7P3Nor73299@freefall.freebsd.org> From: "Bruce A. Mah" Date: Fri, 24 Aug 2001 20:23:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/eresources chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2001/08/24 20:23:50 PDT Modified files: en_US.ISO8859-1/books/handbook/eresources chapter.sgml Log: freebsd-ircops is a non-existent list, so it shouldn't be in the Handbook. PR: 30066 Submitted by: Félix-Antoine Paradis Revision Changes Path 1.67 +1 -6 doc/en_US.ISO8859-1/books/handbook/eresources/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 Aug 24 20:33:38 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F32237B408; Fri, 24 Aug 2001 20:33:33 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P3XXe74143; Fri, 24 Aug 2001 20:33:33 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108250333.f7P3XXe74143@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 24 Aug 2001 20:33:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/grace Makefile ports/graphics/xpdf Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/24 20:33:33 PDT Modified files: math/grace Makefile graphics/xpdf Makefile Log: t1.2 -> t1.3 Revision Changes Path 1.20 +2 -2 ports/math/grace/Makefile 1.35 +2 -2 ports/graphics/xpdf/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 21:22:29 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 13C7D37B40A; Fri, 24 Aug 2001 21:22:25 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P4MPm80226; Fri, 24 Aug 2001 21:22:25 -0700 (PDT) (envelope-from bmah) Message-Id: <200108250422.f7P4MPm80226@freefall.freebsd.org> From: "Bruce A. Mah" Date: Fri, 24 Aug 2001 21:22:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/installation/common layout.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2001/08/24 21:22:25 PDT Modified files: release/doc/en_US.ISO8859-1/installation/common layout.sgml Log: Update rendition of a typical distribution directory. Text updates to follow. Revision Changes Path 1.3 +8 -8 src/release/doc/en_US.ISO8859-1/installation/common/layout.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 21:23:57 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0340837B403; Fri, 24 Aug 2001 21:23:52 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P4NpF80342; Fri, 24 Aug 2001 21:23:51 -0700 (PDT) (envelope-from petef) Message-Id: <200108250423.f7P4NpF80342@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 24 Aug 2001 21:23:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/sablotron Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/24 21:23:51 PDT Modified files: textproc/sablotron Makefile distinfo pkg-plist Log: - update to version 0.65 - remove redundant LDCONFIG_DIRS= %%PREFIX%%/lib - sort pkg-plist PR: 29951 Submitted by: maintainer Revision Changes Path 1.8 +2 -8 ports/textproc/sablotron/Makefile 1.6 +1 -2 ports/textproc/sablotron/distinfo 1.5 +4 -4 ports/textproc/sablotron/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 Aug 24 21:27:44 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BF8F437B409; Fri, 24 Aug 2001 21:27:40 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P4Req80822; Fri, 24 Aug 2001 21:27:40 -0700 (PDT) (envelope-from peter) Message-Id: <200108250427.f7P4Req80822@freefall.freebsd.org> From: Peter Wemm Date: Fri, 24 Aug 2001 21:27:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/osf1 osf1_misc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/24 21:27:40 PDT Modified files: sys/alpha/osf1 osf1_misc.c Log: Remove a reference to MAP_INHERIT. Revision Changes Path 1.18 +2 -2 src/sys/alpha/osf1/osf1_misc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 21:44:39 2001 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id 8071C37B405; Fri, 24 Aug 2001 21:44:33 -0700 (PDT) (envelope-from mi@aldan.algebra.com) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.11.5/8.11.5) with ESMTP id f7P4gvM01260; Sat, 25 Aug 2001 00:42:58 -0400 (EDT) (envelope-from mi@aldan.algebra.com) Message-Id: <200108250442.f7P4gvM01260@aldan.algebra.com> Date: Sat, 25 Aug 2001 00:42:54 -0400 (EDT) From: Mikhail Teterin Subject: Re: cvs commit: ports/graphics/ImageMagick Makefile distinfo pkg-plist ports/graphics/ImageMagick/files patch-al To: petef@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, tkato@prontomail.com In-Reply-To: <200108250318.f7P3In272804@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 24 Aug, Pete Fritchman wrote: > petef 2001/08/24 20:18:49 PDT > > Modified files: > graphics/ImageMagick Makefile distinfo pkg-plist > graphics/ImageMagick/files patch-al > Log: > Update to version 5.3.7. 5.3.8 is already two days old :) I think, the change should be fairly trivial too... -- |\__-----__/| _____/ ::::: :::\_____ '__--( ::::::::..::)--__` -mi If you have a / _- \/ :::::::\/ -_ serious knowledge / / :. .::::\ \ about computers -- | ::::::::::::| Ok, let's say you broke keep it in a secret! _|/ ::::____::\|_ the wall with your head "Rules of dating", / /:::::/:_::\::\:.\ What are you going to 'Playboy', ? 1994 | :| ..:(_/ \::|::|::| do in the next cell? | :|:::::. ::|: |::|.:| Stanislaw J. Lec \ |:: :::_/::/: :|:/ ((___\____\____/___/___)) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 21:45: 0 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.musha.org (daemon.musha.org [61.122.44.178]) by hub.freebsd.org (Postfix) with ESMTP id D974B37B43B; Fri, 24 Aug 2001 21:44:44 -0700 (PDT) (envelope-from knu@iDaemons.org) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id A4B1A4D833; Sat, 25 Aug 2001 13:44:43 +0900 (JST) Date: Sat, 25 Aug 2001 13:44:43 +0900 Message-ID: <86k7zsbves.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Pete Fritchman Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, ports@FreeBSD.org Subject: Re: cvs commit: ports/textproc/sablotron Makefile distinfo pkg-plist In-Reply-To: <200108250423.f7P4NpF80342@freefall.freebsd.org> References: <200108250423.f7P4NpF80342@freefall.freebsd.org> User-Agent: Wanderlust/2.7.2 (Too Funky) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-1?Q?Unebigory=F2mae?=) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Fri, 24 Aug 2001 21:23:51 -0700 (PDT), Pete Fritchman wrote: > > petef 2001/08/24 21:23:51 PDT > > Modified files: > textproc/sablotron Makefile distinfo pkg-plist > Log: > - update to version 0.65 > - remove redundant LDCONFIG_DIRS= %%PREFIX%%/lib > - sort pkg-plist > > PR: 29951 > Submitted by: maintainer Don't forget to fix dependent ports to reflect the shared library version raise and bump their PORTREVISION's. Thanks. This goes for any port that includes shared libraries which other ports depend on. By the way, using the development version of portsdb, you can find out what ports depend on a port easily: $ portsdb -r textproc/sablotron textproc/p5-XML-Sablotron www/p5-Apache-ASP textproc/ruby-sablot The new version of sysutils/portupgrade which includes the utility will be released in several hours. -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "Freeze this moment a little bit longer, make each impression a little bit stronger.. Experience slips away -- Time stand still" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 21:50:21 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7942137B408; Fri, 24 Aug 2001 21:50:16 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P4oGn83056; Fri, 24 Aug 2001 21:50:16 -0700 (PDT) (envelope-from petef) Message-Id: <200108250450.f7P4oGn83056@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 24 Aug 2001 21:50:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/ImageMagick pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/24 21:50:16 PDT Modified files: graphics/ImageMagick pkg-plist Log: Add missing files to pkg-plist when including modules. Submitted by: maintainer Revision Changes Path 1.53 +2 -0 ports/graphics/ImageMagick/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 Aug 24 21:51:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CF5B137B407; Fri, 24 Aug 2001 21:51:38 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P4pcm83267; Fri, 24 Aug 2001 21:51:38 -0700 (PDT) (envelope-from dinoex) Message-Id: <200108250451.f7P4pcm83267@freefall.freebsd.org> From: Dirk Meyer Date: Fri, 24 Aug 2001 21:51:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/mplayer Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2001/08/24 21:51:38 PDT Modified files: graphics/mplayer Makefile Log: Added Options to build for diffrent CPU types. PR: 29959,30020 Submitted by: riggs@f113.hadiko.de Revision Changes Path 1.2 +35 -7 ports/graphics/mplayer/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 21:53:37 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.musha.org (daemon.musha.org [61.122.44.178]) by hub.freebsd.org (Postfix) with ESMTP id 3A31D37B408; Fri, 24 Aug 2001 21:53:29 -0700 (PDT) (envelope-from knu@iDaemons.org) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id 6DAD44D833; Sat, 25 Aug 2001 13:53:28 +0900 (JST) Date: Sat, 25 Aug 2001 13:53:28 +0900 Message-ID: <86itfcbv07.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Pete Fritchman Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, ports@FreeBSD.org Subject: Re: cvs commit: ports/textproc/sablotron Makefile distinfo pkg-plist In-Reply-To: <86k7zsbves.wl@archon.local.idaemons.org> References: <200108250423.f7P4NpF80342@freefall.freebsd.org> <86k7zsbves.wl@archon.local.idaemons.org> User-Agent: Wanderlust/2.7.2 (Too Funky) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-1?Q?Unebigory=F2mae?=) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Sat, 25 Aug 2001 13:44:43 +0900, I wrote: > $ portsdb -r textproc/sablotron > textproc/p5-XML-Sablotron > www/p5-Apache-ASP > textproc/ruby-sablot Oops, I cheated. ;) Actually it should list the port itself, as portupgrade users expect. knu@archon[5]% portsdb -r textproc/sablotron textproc/sablotron textproc/p5-XML-Sablotron www/p5-Apache-ASP textproc/ruby-sablot -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "Freeze this moment a little bit longer, make each impression a little bit stronger.. Experience slips away -- Time stand still" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 21:54:30 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 97B2C37B40A; Fri, 24 Aug 2001 21:54:25 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P4sP483694; Fri, 24 Aug 2001 21:54:25 -0700 (PDT) (envelope-from peter) Message-Id: <200108250454.f7P4sP483694@freefall.freebsd.org> From: Peter Wemm Date: Fri, 24 Aug 2001 21:54:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/include md_var.h src/sys/i386/include md_var.h src/sys/ia64/include md_var.h src/sys/powerpc/include md_var.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/24 21:54:25 PDT Modified files: sys/alpha/include md_var.h sys/i386/include md_var.h sys/ia64/include md_var.h sys/powerpc/include md_var.h Log: vm_page_zero_idle() is no longer MD. Revision Changes Path 1.16 +1 -2 src/sys/alpha/include/md_var.h 1.41 +1 -2 src/sys/i386/include/md_var.h 1.4 +1 -2 src/sys/ia64/include/md_var.h 1.18 +1 -2 src/sys/powerpc/include/md_var.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 21:57:59 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2BB9437B40C; Fri, 24 Aug 2001 21:57:56 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P4vuE83956; Fri, 24 Aug 2001 21:57:56 -0700 (PDT) (envelope-from petef) Message-Id: <200108250457.f7P4vuE83956@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 24 Aug 2001 21:57:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/p5-XML-Sablotron Makefile ports/textproc/ruby-sablot Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/24 21:57:56 PDT Modified files: textproc/p5-XML-Sablotron Makefile textproc/ruby-sablot Makefile Log: Chase textproc/sablotron's update. Submitted by: knu Revision Changes Path 1.7 +3 -2 ports/textproc/p5-XML-Sablotron/Makefile 1.6 +3 -2 ports/textproc/ruby-sablot/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 22: 0:23 2001 Delivered-To: cvs-all@freebsd.org Received: from hex.databits.net (hex.databits.net [207.29.192.16]) by hub.freebsd.org (Postfix) with SMTP id B581337B411 for ; Fri, 24 Aug 2001 22:00:15 -0700 (PDT) (envelope-from petef@hex.databits.net) Received: (qmail 94403 invoked by uid 1001); 25 Aug 2001 05:00:15 -0000 Date: Sat, 25 Aug 2001 01:00:15 -0400 From: Pete Fritchman To: Akinori MUSHA Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, ports@FreeBSD.org Subject: Re: cvs commit: ports/textproc/sablotron Makefile distinfo pkg-plist Message-ID: <20010825010015.C92510@databits.net> References: <200108250423.f7P4NpF80342@freefall.freebsd.org> <86k7zsbves.wl@archon.local.idaemons.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <86k7zsbves.wl@archon.local.idaemons.org>; from knu@iDaemons.org on Sat, Aug 25, 2001 at 01:44:43PM +0900 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ++ 25/08/01 13:44 +0900 - Akinori MUSHA: | Don't forget to fix dependent ports to reflect the shared library | version raise and bump their PORTREVISION's. Thanks. Ah, thanks for the heads up. I made a brain-o and grep'd for "sablotron" in INDEX, forgetting the package name is actually Sablot. | By the way, using the development version of portsdb, you can find out | what ports depend on a port easily: | | $ portsdb -r textproc/sablotron | textproc/p5-XML-Sablotron | www/p5-Apache-ASP | textproc/ruby-sablot | | The new version of sysutils/portupgrade which includes the utility | will be released in several hours. Cool! Looking forward to `portupgrade portupgrade' :) -pete -- Pete Fritchman finger petef@databits.net for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 22: 0:52 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C92C637B401; Fri, 24 Aug 2001 22:00:44 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P50i784284; Fri, 24 Aug 2001 22:00:44 -0700 (PDT) (envelope-from peter) Message-Id: <200108250500.f7P50i784284@freefall.freebsd.org> From: Peter Wemm Date: Fri, 24 Aug 2001 22:00:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm vm_page.c vm_page.h vm_zeroidle.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/24 22:00:44 PDT Modified files: sys/vm vm_page.c vm_page.h vm_zeroidle.c Log: Implement idle zeroing of pages. I've been tinkering with this on and off since John Dyson left his work-in-progress. It is off by default for now. sysctl vm.zeroidle_enable=1 to turn it on. There are some hacks here to deal with the present lack of preemption - we yield after doing a small number of pages since we wont preempt otherwise. This is basically Matt's algorithm [with hysteresis] with an idle process to call it in a similar way it used to be called from the idle loop. I cleaned up the includes a fair bit here too. Revision Changes Path 1.173 +2 -1 src/sys/vm/vm_page.c 1.93 +2 -1 src/sys/vm/vm_page.h 1.4 +98 -72 src/sys/vm/vm_zeroidle.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 22:44:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4FBF037B407; Fri, 24 Aug 2001 22:44:46 -0700 (PDT) (envelope-from sf@FreeBSD.org) Received: (from sf@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P5ikn99497; Fri, 24 Aug 2001 22:44:46 -0700 (PDT) (envelope-from sf) Message-Id: <200108250544.f7P5ikn99497@freefall.freebsd.org> From: FUJISHIMA Satsuki Date: Fri, 24 Aug 2001 22:44:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/wget Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sf 2001/08/24 22:44:46 PDT Modified files: ftp/wget Makefile Log: fix zh_TW locale to be readable on FreeBSD. Submitted by: clive Revision Changes Path 1.42 +12 -3 ports/ftp/wget/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 22:49:43 2001 Delivered-To: cvs-all@freebsd.org Received: from c0mailgw06.prontomail.com (mailgw.prontomail.com [216.163.180.10]) by hub.freebsd.org (Postfix) with ESMTP id 07E6137B405; Fri, 24 Aug 2001 22:49:39 -0700 (PDT) (envelope-from tkato@prontomail.com) Received: from web50 (216.163.180.10) by c0mailgw06.prontomail.com (NPlex 5.5.029) id 3B8467E900084610; Fri, 24 Aug 2001 22:42:26 -0700 X-Version: Prontomail 7.5.3101.0 From: "KATO Tsuguru" Message-Id: Date: Fri, 24 Aug 2001 22:43:52 -0800 X-Priority: Normal Content-Type: text/plain; charset=iso-8859-1 To: mi@aldan.algebra.com Subject: Re: cvs commit: ports/graphics/ImageMagick Makefile distinfo pkg-plist =?iso-8859-1?B?oA==?= =?iso-8859-1?B?IKA=?= =?iso-8859-1?B?IA==?= =?iso-8859-1?B?oA==?= =?iso-8859-1?B?IKA=?= ports/graphics/ImageMagick/files patch-al Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, petef@FreeBSD.org X-Mailer: Web Based Pronto Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > 5.3.8 is already two days old :) I think, the change should > be fairly trivial too... Unfortunately, latest source archive of ImageMagick is frequently updated without changing its filename. It should be considerd that latest version is unstable 'prerelease' version. In addition, difference between 5.3.7 and 5.3.8 is not so trivial. quite many files are renamed slightly. ________________________________________ Get your email at http://www.prontomail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 22:50: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CEC8937B409; Fri, 24 Aug 2001 22:49:54 -0700 (PDT) (envelope-from clive@FreeBSD.org) Received: (from clive@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P5nsf99964; Fri, 24 Aug 2001 22:49:54 -0700 (PDT) (envelope-from clive) Message-Id: <200108250549.f7P5nsf99964@freefall.freebsd.org> From: Clive Lin Date: Fri, 24 Aug 2001 22:49:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/mutt distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG clive 2001/08/24 22:49:54 PDT Modified files: chinese/mutt distinfo Log: Chasing mail/mutt-devel (1.3.20 -> 1.3.21). Revision Changes Path 1.2 +7 -2 ports/chinese/mutt/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 23:10:28 2001 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-54.dsl.lsan03.pacbell.net [63.207.60.54]) by hub.freebsd.org (Postfix) with ESMTP id 34B0737B409; Fri, 24 Aug 2001 23:10:22 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id B0E5566D1C; Fri, 24 Aug 2001 23:10:21 -0700 (PDT) Date: Fri, 24 Aug 2001 23:10:21 -0700 From: Kris Kennaway To: Dirk Meyer Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/graphics/mplayer Makefile Message-ID: <20010824231021.B87770@xor.obsecurity.org> References: <200108250451.f7P4pcm83267@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="V0207lvV8h4k8FAm" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108250451.f7P4pcm83267@freefall.freebsd.org>; from dinoex@FreeBSD.org on Fri, Aug 24, 2001 at 09:51:38PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --V0207lvV8h4k8FAm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Aug 24, 2001 at 09:51:38PM -0700, Dirk Meyer wrote: > dinoex 2001/08/24 21:51:38 PDT >=20 > Modified files: > graphics/mplayer Makefile=20 > Log: > Added Options to build for diffrent CPU types. > =20 > PR: 29959,30020 > Submitted by: riggs@f113.hadiko.de These should be automatically enabled based on MACHINE_CPU. See src/secure/lib/libcrypto/Makefile for how to do this. Kris --V0207lvV8h4k8FAm Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE7h0FMWry0BWjoQKURAt61AJ9KpqLX0a8b0HiQHpMPt+okfTspMwCfeVqD DQTbIf5KFtQ7tfKUdj8OVLc= =LMvS -----END PGP SIGNATURE----- --V0207lvV8h4k8FAm-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 23:13:10 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4616C37B40F; Fri, 24 Aug 2001 23:13:05 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P6D5705099; Fri, 24 Aug 2001 23:13:05 -0700 (PDT) (envelope-from dinoex) Message-Id: <200108250613.f7P6D5705099@freefall.freebsd.org> From: Dirk Meyer Date: Fri, 24 Aug 2001 23:13:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/german/unix-connect Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2001/08/24 23:13:05 PDT Modified files: german/unix-connect Makefile Log: Add missing BUILD_DEPENDS line. Revision Changes Path 1.4 +3 -1 ports/german/unix-connect/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 23:18:13 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A570437B40A; Fri, 24 Aug 2001 23:18:10 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P6IAb05411; Fri, 24 Aug 2001 23:18:10 -0700 (PDT) (envelope-from imp) Message-Id: <200108250618.f7P6IAb05411@freefall.freebsd.org> From: Warner Losh Date: Fri, 24 Aug 2001 23:18:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pccard pcic_pci.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/24 23:18:10 PDT Modified files: (Branch: RELENG_4) sys/pccard pcic_pci.c Log: MFC: Make initialization table driven Shutdown slot on shutdown Print interrupt path in sysctl as a string. Approved by: jkh (implicit) Revision Changes Path 1.54.2.9 +167 -101 src/sys/pccard/pcic_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 23:33:12 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C64F37B40A; Fri, 24 Aug 2001 23:33:07 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P6X7006168; Fri, 24 Aug 2001 23:33:07 -0700 (PDT) (envelope-from sada) Message-Id: <200108250633.f7P6X7006168@freefall.freebsd.org> From: SADA Kenji Date: Fri, 24 Aug 2001 23:33:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/kb2mb2 Makefile pkg-comment X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sada 2001/08/24 23:33:07 PDT Modified files: x11/kb2mb2 Makefile pkg-comment Log: - bump PORTREVISION for new patch-ab file. - shorten pkg-comment to follow portlint's advice. Revision Changes Path 1.8 +2 -1 ports/x11/kb2mb2/Makefile 1.2 +1 -1 ports/x11/kb2mb2/pkg-comment To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 23:40: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D734B37B411; Fri, 24 Aug 2001 23:40:00 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P6e0x06609; Fri, 24 Aug 2001 23:40:00 -0700 (PDT) (envelope-from imp) Message-Id: <200108250640.f7P6e0x06609@freefall.freebsd.org> From: Warner Losh Date: Fri, 24 Aug 2001 23:40:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pccard pcic_pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/24 23:40:00 PDT Modified files: sys/pccard pcic_pci.c Log: First cut at getting the ISA routing working. If we can't route a PCI interrupt for the CSC interrupt, then we revert to ISA. If we didn't have an interrupt set up with hw.pcic.irq, then do polling. Also, don't complain about ignoring function 1 for any devices except pcic devices. This would normally only show up if someone set hw.pcic.ignore_function_1=1. MFC: as soon as I can test it on some troublesome laptops. Revision Changes Path 1.77 +58 -32 src/sys/pccard/pcic_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 23:41:39 2001 Delivered-To: cvs-all@freebsd.org Received: from quack.kfu.com (quack.kfu.com [205.178.90.194]) by hub.freebsd.org (Postfix) with ESMTP id C3C2237B403; Fri, 24 Aug 2001 23:41:35 -0700 (PDT) (envelope-from nsayer@quack.kfu.com) Received: from icarus.kfu.com (root@icarus.kfu.com [205.178.90.239]) by quack.kfu.com (8.11.3/8.11.3) with ESMTP id f7P6fYt27256 (using TLSv1/SSLv3 with cipher EDH-RSA-DES-CBC3-SHA (168 bits) verified OK); Fri, 24 Aug 2001 23:41:35 -0700 (PDT) (envelope-from nsayer@quack.kfu.com) Received: from quack.kfu.com (nospam@localhost [127.0.0.1]) by icarus.kfu.com (8.11.5/8.11.5) with ESMTP id f7P6fYs02942; Fri, 24 Aug 2001 23:41:34 -0700 (PDT) (envelope-from nsayer@quack.kfu.com) Message-ID: <3B87489E.5000106@quack.kfu.com> Date: Fri, 24 Aug 2001 23:41:34 -0700 From: Nick Sayer User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.3) Gecko/20010804 X-Accept-Language: en-us MIME-Version: 1.0 To: cvs-committers@FreeBSD.org Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files.i386 src/sys/i386/isa if_wi.c if_wireg.h References: <200108250048.f7P0mPN52473@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Nick Sayer wrote: > Reviewed by: jkh s/Reviewed/Approved/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 24 23:53:29 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8907437B403; Fri, 24 Aug 2001 23:53:26 -0700 (PDT) (envelope-from kiri@FreeBSD.org) Received: (from kiri@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P6rQo07707; Fri, 24 Aug 2001 23:53:26 -0700 (PDT) (envelope-from kiri) Message-Id: <200108250653.f7P6rQo07707@freefall.freebsd.org> From: Kiriyama Kazuhiko Date: Fri, 24 Aug 2001 23:53:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/mew Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kiri 2001/08/24 23:53:26 PDT Modified files: mail/mew Makefile Log: Correct MASTER_SITES. Revision Changes Path 1.30 +3 -3 ports/mail/mew/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 0:18: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 207DC37B411; Sat, 25 Aug 2001 00:18:00 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P7I0013167; Sat, 25 Aug 2001 00:18:00 -0700 (PDT) (envelope-from kris) Message-Id: <200108250718.f7P7I0013167@freefall.freebsd.org> From: Kris Kennaway Date: Sat, 25 Aug 2001 00:18:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics Makefile ports/graphics/cadubi Makefile distinfo pkg-comment pkg-descr pkg-plist ports/graphics/cadubi/files patch-CADUBI_pl patch-cadubi X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/25 00:18:00 PDT Modified files: graphics Makefile Added files: graphics/cadubi Makefile distinfo pkg-comment pkg-descr pkg-plist graphics/cadubi/files patch-CADUBI_pl patch-cadubi Log: Add cadubi-1.1b1 CADUBI is an application written in Perl that allows you to draw text-based images that are viewable on typical unix-based consoles. Usually the applications that emulate these consoles support various text modes, such as background and foreground colors, bold, and inverse. This text art, commonly called "ASCII art," is used in various places such as online BBSes, email and login prompts. Obtained from: OpenBSD Revision Changes Path 1.344 +2 -1 ports/graphics/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 0:25:51 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 196D337B40B; Sat, 25 Aug 2001 00:25:45 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P7Pjc13984; Sat, 25 Aug 2001 00:25:45 -0700 (PDT) (envelope-from dillon) Message-Id: <200108250725.f7P7Pjc13984@freefall.freebsd.org> From: Matt Dillon Date: Sat, 25 Aug 2001 00:25:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys mman.h src/lib/libc/sys minherit.2 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2001/08/25 00:25:44 PDT Modified files: (Branch: RELENG_4) sys/sys mman.h lib/libc/sys minherit.2 Log: MFC document minherit() system call and add user-accessible #define's to cover the 'inherit' argument. There are no functional changes (except the new defines). Approved by: jkh Revision Changes Path 1.29.2.1 +8 -1 src/sys/sys/mman.h 1.7.2.5 +36 -1 src/lib/libc/sys/minherit.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 0:39:59 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CB20937B403; Sat, 25 Aug 2001 00:39:51 -0700 (PDT) (envelope-from kiri@FreeBSD.org) Received: (from kiri@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P7dpW15143; Sat, 25 Aug 2001 00:39:51 -0700 (PDT) (envelope-from kiri) Message-Id: <200108250739.f7P7dpW15143@freefall.freebsd.org> From: Kiriyama Kazuhiko Date: Sat, 25 Aug 2001 00:39:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors Makefile ports/editors/mew2-emacs20 Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist ports/editors/mew2-emacs20/files Addrbook dot.emacs.el.in message.sh mew-setup.el.in mew-xemacs-setup.el.in patch-aa ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kiri 2001/08/25 00:39:51 PDT Modified files: editors Makefile Added files: editors/mew2-emacs20 Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist editors/mew2-emacs20/files Addrbook dot.emacs.el.in message.sh mew-setup.el.in mew-xemacs-setup.el.in patch-aa patch-ab patch-ac patch-ad pkg-descr.tmpl tmpl2file.sh user-install.in editors/mew2-emacs20/scripts configure Log: Repositry copy ports/mail/mew -> ports/mail/mew2-emacs20. Revision Changes Path 1.157 +2 -1 ports/editors/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 0:40:15 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D718E37B411; Sat, 25 Aug 2001 00:39:55 -0700 (PDT) (envelope-from kiri@FreeBSD.org) Received: (from kiri@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P7dtC15188; Sat, 25 Aug 2001 00:39:55 -0700 (PDT) (envelope-from kiri) Message-Id: <200108250739.f7P7dtC15188@freefall.freebsd.org> From: Kiriyama Kazuhiko Date: Sat, 25 Aug 2001 00:39: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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kiri 2001/08/25 00:39:55 PDT Modified files: . modules Log: mew2-emacs20 --> ports/editors/mew2-emacs20 Revision Changes Path 1.3726 +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 Aug 25 0:42:30 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 518DA37B407; Sat, 25 Aug 2001 00:42:27 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P7gRc15556; Sat, 25 Aug 2001 00:42:27 -0700 (PDT) (envelope-from peter) Message-Id: <200108250742.f7P7gRc15556@freefall.freebsd.org> From: Peter Wemm Date: Sat, 25 Aug 2001 00:42:27 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/08/25 00:42:27 PDT Modified files: sys/i386/conf GENERIC Log: Argh! Revert accidental commit. Revision Changes Path 1.318 +2 -4 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 Sat Aug 25 0:44:41 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0BBD737B405; Sat, 25 Aug 2001 00:44:35 -0700 (PDT) (envelope-from kiri@FreeBSD.org) Received: (from kiri@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P7iZU15784; Sat, 25 Aug 2001 00:44:35 -0700 (PDT) (envelope-from kiri) Message-Id: <200108250744.f7P7iZU15784@freefall.freebsd.org> From: Kiriyama Kazuhiko Date: Sat, 25 Aug 2001 00:44:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail Makefile ports/mail/mew2-xemacs21 Makefile pkg-comment pkg-descr pkg-message pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kiri 2001/08/25 00:44:34 PDT Modified files: mail Makefile Added files: mail/mew2-xemacs21 Makefile pkg-comment pkg-descr pkg-message pkg-plist Log: Repositry copy mail/mew-xemacs21 -> mail/mew2-xemacs21. Revision Changes Path 1.248 +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 Sat Aug 25 0:44:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F7AB37B40B; Sat, 25 Aug 2001 00:44:37 -0700 (PDT) (envelope-from kiri@FreeBSD.org) Received: (from kiri@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P7ibA15823; Sat, 25 Aug 2001 00:44:37 -0700 (PDT) (envelope-from kiri) Message-Id: <200108250744.f7P7ibA15823@freefall.freebsd.org> From: Kiriyama Kazuhiko Date: Sat, 25 Aug 2001 00:44:37 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kiri 2001/08/25 00:44:37 PDT Modified files: . modules Log: mew2-xemacs21 --> ports/mail/mew2-xemacs21 Revision Changes Path 1.3727 +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 Aug 25 0:47:10 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D8AFF37B408; Sat, 25 Aug 2001 00:47:05 -0700 (PDT) (envelope-from kiri@FreeBSD.org) Received: (from kiri@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P7l5i16063; Sat, 25 Aug 2001 00:47:05 -0700 (PDT) (envelope-from kiri) Message-Id: <200108250747.f7P7l5i16063@freefall.freebsd.org> From: Kiriyama Kazuhiko Date: Sat, 25 Aug 2001 00:47:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail Makefile ports/mail/mew2-xemacs21-mule Makefile pkg-comment pkg-descr pkg-message pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kiri 2001/08/25 00:47:05 PDT Modified files: mail Makefile Log: Repositry copy mail/mew-xemacs21 -> mail/mew2-xemacs21. Revision Changes Path 1.249 +2 -1 ports/mail/Makefile Added files: mail/mew2-xemacs21-mule Makefile pkg-comment pkg-descr pkg-message pkg-plist Log: Repositry copy mail/mew-xemacs21-mule -> mail/mew2-xemacs21-mule. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 0:47:22 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 40BBA37B40F; Sat, 25 Aug 2001 00:47:09 -0700 (PDT) (envelope-from kiri@FreeBSD.org) Received: (from kiri@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P7l9G16103; Sat, 25 Aug 2001 00:47:09 -0700 (PDT) (envelope-from kiri) Message-Id: <200108250747.f7P7l9G16103@freefall.freebsd.org> From: Kiriyama Kazuhiko Date: Sat, 25 Aug 2001 00:47:09 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kiri 2001/08/25 00:47:09 PDT Modified files: . modules Log: mew2-xemacs21-mule --> ports/mail/mew2-xemacs21-mule Revision Changes Path 1.3728 +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 Aug 25 0:59: 3 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B540637B40D; Sat, 25 Aug 2001 00:58:58 -0700 (PDT) (envelope-from kiri@FreeBSD.org) Received: (from kiri@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P7ww116810; Sat, 25 Aug 2001 00:58:58 -0700 (PDT) (envelope-from kiri) Message-Id: <200108250758.f7P7ww116810@freefall.freebsd.org> From: Kiriyama Kazuhiko Date: Sat, 25 Aug 2001 00:58:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/mew2-emacs20 Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist ports/editors/mew2-emacs20/files Addrbook dot.emacs.el.in message.sh mew-setup.el.in mew-xemacs-setup.el.in patch-aa ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kiri 2001/08/25 00:58:58 PDT Removed files: editors/mew2-emacs20 Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist editors/mew2-emacs20/files Addrbook dot.emacs.el.in message.sh mew-setup.el.in mew-xemacs-setup.el.in patch-aa patch-ab patch-ac patch-ad pkg-descr.tmpl tmpl2file.sh user-install.in editors/mew2-emacs20/scripts configure Log: I've mistaken category. Remove editors/mew2-emacs20. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 1: 0:25 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B50B37B40F; Sat, 25 Aug 2001 01:00:13 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P80Dw16984; Sat, 25 Aug 2001 01:00:13 -0700 (PDT) (envelope-from ache) Message-Id: <200108250800.f7P80Dw16984@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 25 Aug 2001 01:00:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/25 01:00:13 PDT Modified files: security/drweb Makefile Log: Silence patch, add some comments, cleanup after patch Revision Changes Path 1.4 +4 -3 ports/security/drweb/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 1: 6:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7BE5037B408; Sat, 25 Aug 2001 01:06:40 -0700 (PDT) (envelope-from kiri@FreeBSD.org) Received: (from kiri@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P86e220355; Sat, 25 Aug 2001 01:06:40 -0700 (PDT) (envelope-from kiri) Message-Id: <200108250806.f7P86e220355@freefall.freebsd.org> From: Kiriyama Kazuhiko Date: Sat, 25 Aug 2001 01:06:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/mew Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kiri 2001/08/25 01:06:40 PDT Modified files: mail/mew Makefile Log: I've misset category. Change CATEGORIES editors -> mail. Revision Changes Path 1.31 +2 -2 ports/mail/mew/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 1:11:12 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 50E0837B408; Sat, 25 Aug 2001 01:11:07 -0700 (PDT) (envelope-from kiri@FreeBSD.org) Received: (from kiri@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P8B7P20851; Sat, 25 Aug 2001 01:11:07 -0700 (PDT) (envelope-from kiri) Message-Id: <200108250811.f7P8B7P20851@freefall.freebsd.org> From: Kiriyama Kazuhiko Date: Sat, 25 Aug 2001 01:11:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail Makefile ports/mail/mew2-emacs20 Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist ports/mail/mew2-emacs20/files Addrbook dot.emacs.el.in message.sh mew-setup.el.in mew-xemacs-setup.el.in patch-aa patch-ab patch-ac ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kiri 2001/08/25 01:11:07 PDT Modified files: mail Makefile Added files: mail/mew2-emacs20 Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist mail/mew2-emacs20/files Addrbook dot.emacs.el.in message.sh mew-setup.el.in mew-xemacs-setup.el.in patch-aa patch-ab patch-ac patch-ad pkg-descr.tmpl tmpl2file.sh user-install.in mail/mew2-emacs20/scripts configure Log: Repositry copy mail/mew -> mail/mew2-emacs20. Revision Changes Path 1.250 +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 Sat Aug 25 1:14:41 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 819EF37B408; Sat, 25 Aug 2001 01:14:38 -0700 (PDT) (envelope-from kiri@FreeBSD.org) Received: (from kiri@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P8Ecv21275; Sat, 25 Aug 2001 01:14:38 -0700 (PDT) (envelope-from kiri) Message-Id: <200108250814.f7P8Ecv21275@freefall.freebsd.org> From: Kiriyama Kazuhiko Date: Sat, 25 Aug 2001 01:14:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kiri 2001/08/25 01:14:38 PDT Modified files: editors Makefile Log: Remove mew2-emacs20 because of my miss-repo-copy. Revision Changes Path 1.158 +1 -2 ports/editors/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 1:18:14 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2FFCE37B40A; Sat, 25 Aug 2001 01:18:11 -0700 (PDT) (envelope-from cjh@FreeBSD.org) Received: (from cjh@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P8IBI21532; Sat, 25 Aug 2001 01:18:11 -0700 (PDT) (envelope-from cjh) Message-Id: <200108250818.f7P8IBI21532@freefall.freebsd.org> From: CHOI Junho Date: Sat, 25 Aug 2001 01:18:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/korean/hanterm Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cjh 2001/08/25 01:18:11 PDT Modified files: korean/hanterm Makefile Log: Add backup site. Revision Changes Path 1.22 +3 -2 ports/korean/hanterm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 1:20:22 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CE8C837B405; Sat, 25 Aug 2001 01:20:18 -0700 (PDT) (envelope-from cjh@FreeBSD.org) Received: (from cjh@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P8KI921687; Sat, 25 Aug 2001 01:20:18 -0700 (PDT) (envelope-from cjh) Message-Id: <200108250820.f7P8KI921687@freefall.freebsd.org> From: CHOI Junho Date: Sat, 25 Aug 2001 01:20:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/korean/baekmukfonts-bdf Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cjh 2001/08/25 01:20:18 PDT Modified files: korean/baekmukfonts-bdf Makefile Log: Add backup site. Revision Changes Path 1.16 +2 -1 ports/korean/baekmukfonts-bdf/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 1:26:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D3C8537B40E; Sat, 25 Aug 2001 01:26:40 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P8QeI22362; Sat, 25 Aug 2001 01:26:40 -0700 (PDT) (envelope-from ache) Message-Id: <200108250826.f7P8QeI22362@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 25 Aug 2001 01:26:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb-sendmail/files drweb-smf.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/25 01:26:40 PDT Modified files: security/drweb-sendmail/files drweb-smf.sh Log: drwebd -> drwebfilter Revision Changes Path 1.2 +2 -2 ports/security/drweb-sendmail/files/drweb-smf.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 1:40:30 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 666E637B40A; Sat, 25 Aug 2001 01:40:27 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P8eR123434; Sat, 25 Aug 2001 01:40:27 -0700 (PDT) (envelope-from kris) Message-Id: <200108250840.f7P8eR123434@freefall.freebsd.org> From: Kris Kennaway Date: Sat, 25 Aug 2001 01:40:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/source-highlight Makefile distinfo pkg-comment pkg-descr pkg-plist ports/textproc/source-highlight/files patch-aa patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/25 01:40:27 PDT Modified files: textproc Makefile Added files: textproc/source-highlight Makefile distinfo pkg-comment pkg-descr pkg-plist textproc/source-highlight/files patch-aa patch-ab Log: Add source-highlight-1.1 Source-highlight is a simple program that, given a source C/C++ or Java file, produces an html source with syntax highlighting. Obtained from: OpenBSD Revision Changes Path 1.235 +2 -1 ports/textproc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 1:42:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 33B5237B409; Sat, 25 Aug 2001 01:42:08 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P8g8023684; Sat, 25 Aug 2001 01:42:08 -0700 (PDT) (envelope-from kris) Message-Id: <200108250842.f7P8g8023684@freefall.freebsd.org> From: Kris Kennaway Date: Sat, 25 Aug 2001 01:42:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/id3ed Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/25 01:42:08 PDT Modified files: audio/id3ed Makefile distinfo Log: Update to id3ed 1.10.2 Approved by: maintainer Revision Changes Path 1.8 +2 -2 ports/audio/id3ed/Makefile 1.5 +1 -1 ports/audio/id3ed/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 1:42:46 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C35537B405; Sat, 25 Aug 2001 01:42:42 -0700 (PDT) (envelope-from cjh@FreeBSD.org) Received: (from cjh@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P8ggJ23791; Sat, 25 Aug 2001 01:42:42 -0700 (PDT) (envelope-from cjh) Message-Id: <200108250842.f7P8ggJ23791@freefall.freebsd.org> From: CHOI Junho Date: Sat, 25 Aug 2001 01:42:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/qdecoder Makefile distinfo pkg-comment pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cjh 2001/08/25 01:42:42 PDT Modified files: www/qdecoder Makefile distinfo pkg-comment pkg-plist Log: Update to 7.0 Revision Changes Path 1.8 +8 -4 ports/www/qdecoder/Makefile 1.5 +1 -1 ports/www/qdecoder/distinfo 1.2 +1 -1 ports/www/qdecoder/pkg-comment 1.4 +6 -2 ports/www/qdecoder/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 Aug 25 1:45:57 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E8DBE37B416; Sat, 25 Aug 2001 01:45:51 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P8jpU24054; Sat, 25 Aug 2001 01:45:51 -0700 (PDT) (envelope-from kris) Message-Id: <200108250845.f7P8jpU24054@freefall.freebsd.org> From: Kris Kennaway Date: Sat, 25 Aug 2001 01:45:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/mixer.app Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/25 01:45:51 PDT Modified files: audio/mixer.app Makefile distinfo Log: Update to Mixer.app-1.7.0 Approved by: maintainer (implicitly) Revision Changes Path 1.13 +2 -2 ports/audio/mixer.app/Makefile 1.7 +1 -1 ports/audio/mixer.app/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 2: 6:46 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D88C537B406; Sat, 25 Aug 2001 02:06:43 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P96hu28463; Sat, 25 Aug 2001 02:06:43 -0700 (PDT) (envelope-from ache) Message-Id: <200108250906.f7P96hu28463@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 25 Aug 2001 02:06:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb-sendmail Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/25 02:06:43 PDT Modified files: security/drweb-sendmail Makefile pkg-plist Log: Do not overwrite existen drwebsmf.sh on install Revision Changes Path 1.7 +14 -2 ports/security/drweb-sendmail/Makefile 1.3 +3 -1 ports/security/drweb-sendmail/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 Aug 25 2:13: 0 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 88CD837B409; Sat, 25 Aug 2001 02:12:57 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P9Cv629016; Sat, 25 Aug 2001 02:12:57 -0700 (PDT) (envelope-from brian) Message-Id: <200108250912.f7P9Cv629016@freefall.freebsd.org> From: Brian Somers Date: Sat, 25 Aug 2001 02:12:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net if_tun.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/25 02:12:57 PDT Modified files: sys/net if_tun.c Log: TUNSIFINFO now expects IFF_MULTICAST to be OR'd with either IFF_POINTOPOINT or IFF_BROADCAST. If it's not, the IFF_MULTICAST is removed. This is in line with how NetBSD & OpenBSD do it. Revision Changes Path 1.98 +5 -7 src/sys/net/if_tun.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 2:14:59 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D68B137B40D; Sat, 25 Aug 2001 02:14:55 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P9Et229133; Sat, 25 Aug 2001 02:14:55 -0700 (PDT) (envelope-from brian) Message-Id: <200108250914.f7P9Et229133@freefall.freebsd.org> From: Brian Somers Date: Sat, 25 Aug 2001 02:14:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 tun.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/25 02:14:55 PDT Modified files: share/man/man4 tun.4 Log: Document that IFF_MULTICAST should be ORd with IFF_POINTOPOINT or IFF_BROADCAST for the TUNSIFMODE ioctl. Revision Changes Path 1.17 +8 -5 src/share/man/man4/tun.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 2:18: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 40DEB37B401; Sat, 25 Aug 2001 02:17:58 -0700 (PDT) (envelope-from kiri@FreeBSD.org) Received: (from kiri@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P9Hwh29438; Sat, 25 Aug 2001 02:17:58 -0700 (PDT) (envelope-from kiri) Message-Id: <200108250917.f7P9Hwh29438@freefall.freebsd.org> From: Kiriyama Kazuhiko Date: Sat, 25 Aug 2001 02:17:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/mew2-emacs20 Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist ports/mail/mew2-emacs20/files patch-ae message.sh patch-aa patch-ab patch-ac patch-ad pkg-descr.tmpl tmpl2file.sh mew-setup.el.in mew-xemacs-setup.el.in ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kiri 2001/08/25 02:17:58 PDT Modified files: mail/mew2-emacs20 Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist mail/mew2-emacs20/files message.sh patch-aa patch-ab patch-ac patch-ad pkg-descr.tmpl tmpl2file.sh Added files: mail/mew2-emacs20/files patch-ae Removed files: mail/mew2-emacs20/files mew-setup.el.in mew-xemacs-setup.el.in mail/mew2-emacs20/scripts configure Log: Mew2 for Emacs20 port now committed on reposit copied from mail/mew. Revision Changes Path 1.2 +35 -40 ports/mail/mew2-emacs20/Makefile 1.2 +1 -1 ports/mail/mew2-emacs20/distinfo 1.2 +1 -1 ports/mail/mew2-emacs20/pkg-comment 1.2 +3 -4 ports/mail/mew2-emacs20/pkg-descr 1.2 +5 -2 ports/mail/mew2-emacs20/pkg-message 1.2 +170 -159 ports/mail/mew2-emacs20/pkg-plist 1.2 +19 -8 ports/mail/mew2-emacs20/files/message.sh 1.2 +86 -87 ports/mail/mew2-emacs20/files/patch-aa 1.2 +23 -20 ports/mail/mew2-emacs20/files/patch-ab 1.2 +68 -25 ports/mail/mew2-emacs20/files/patch-ac 1.2 +27 -13 ports/mail/mew2-emacs20/files/patch-ad 1.2 +3 -4 ports/mail/mew2-emacs20/files/pkg-descr.tmpl 1.2 +1 -0 ports/mail/mew2-emacs20/files/tmpl2file.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 2:21: 7 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 35E0537B406; Sat, 25 Aug 2001 02:21:02 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P9L2p29704; Sat, 25 Aug 2001 02:21:02 -0700 (PDT) (envelope-from brian) Message-Id: <200108250921.f7P9L2p29704@freefall.freebsd.org> From: Brian Somers Date: Sat, 25 Aug 2001 02:21:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/gallery gallery.xml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/25 02:21:02 PDT Modified files: en/gallery gallery.xml Log: Revert to version 1.2 (adding back PersianKitty). No discussion or explaination from: dougb Revision Changes Path 1.4 +8 -1 www/en/gallery/gallery.xml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 2:22:44 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1849337B406; Sat, 25 Aug 2001 02:22:39 -0700 (PDT) (envelope-from kiri@FreeBSD.org) Received: (from kiri@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P9MdW29889; Sat, 25 Aug 2001 02:22:39 -0700 (PDT) (envelope-from kiri) Message-Id: <200108250922.f7P9MdW29889@freefall.freebsd.org> From: Kiriyama Kazuhiko Date: Sat, 25 Aug 2001 02:22:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/mew2-xemacs21 Makefile pkg-comment pkg-descr pkg-message pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kiri 2001/08/25 02:22:39 PDT Modified files: mail/mew2-xemacs21 Makefile pkg-comment pkg-descr pkg-message pkg-plist Log: Mew2 for XEmacs21 now committed on reposit copied from mail/mew-xemacs21. Revision Changes Path 1.2 +8 -5 ports/mail/mew2-xemacs21/Makefile 1.2 +1 -1 ports/mail/mew2-xemacs21/pkg-comment 1.2 +5 -6 ports/mail/mew2-xemacs21/pkg-descr 1.2 +6 -1 ports/mail/mew2-xemacs21/pkg-message 1.2 +176 -163 ports/mail/mew2-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 Sat Aug 25 2:26: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 25E8137B40A; Sat, 25 Aug 2001 02:26:04 -0700 (PDT) (envelope-from kiri@FreeBSD.org) Received: (from kiri@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P9Q4830128; Sat, 25 Aug 2001 02:26:04 -0700 (PDT) (envelope-from kiri) Message-Id: <200108250926.f7P9Q4830128@freefall.freebsd.org> From: Kiriyama Kazuhiko Date: Sat, 25 Aug 2001 02:26:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/mew2-xemacs21-mule Makefile pkg-comment pkg-descr pkg-message pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kiri 2001/08/25 02:26:03 PDT Modified files: mail/mew2-xemacs21-mule Makefile pkg-comment pkg-descr pkg-message pkg-plist Log: Mew2 port for XEmacs21-Mule now committed on reposit copied from mail/mew-xemacs21-mule. Revision Changes Path 1.2 +8 -5 ports/mail/mew2-xemacs21-mule/Makefile 1.2 +1 -1 ports/mail/mew2-xemacs21-mule/pkg-comment 1.2 +5 -6 ports/mail/mew2-xemacs21-mule/pkg-descr 1.2 +6 -1 ports/mail/mew2-xemacs21-mule/pkg-message 1.2 +179 -166 ports/mail/mew2-xemacs21-mule/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 Aug 25 2:55:52 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5938837B401; Sat, 25 Aug 2001 02:55:44 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P9tih32753; Sat, 25 Aug 2001 02:55:44 -0700 (PDT) (envelope-from kris) Message-Id: <200108250955.f7P9tih32753@freefall.freebsd.org> From: Kris Kennaway Date: Sat, 25 Aug 2001 02:55:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/astro Makefile ports/astro/xworld Makefile distinfo pkg-comment pkg-descr pkg-plist ports/astro/xworld/files patch-xworld_c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/25 02:55:44 PDT Modified files: astro Makefile Added files: astro/xworld Makefile distinfo pkg-comment pkg-descr pkg-plist astro/xworld/files patch-xworld_c Log: Add xworld-2.0 XWorld displays a pretty picture of our earth as it would look if viewed from the direction of the sun. The window is regularly updated. You can use xworld in lieu of a clock. Obtained from: OpenBSD Revision Changes Path 1.36 +2 -1 ports/astro/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 2:59:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 37C9237B40C; Sat, 25 Aug 2001 02:59:07 -0700 (PDT) (envelope-from shige@FreeBSD.org) Received: (from shige@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7P9x7S32948; Sat, 25 Aug 2001 02:59:07 -0700 (PDT) (envelope-from shige) Message-Id: <200108250959.f7P9x7S32948@freefall.freebsd.org> From: Shigeyuki Fukushima Date: Sat, 25 Aug 2001 02:59:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/openldap2 pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG shige 2001/08/25 02:59:07 PDT Modified files: net/openldap2 pkg-plist Log: Clean empty etc directories. Revision Changes Path 1.13 +2 -0 ports/net/openldap2/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 Aug 25 3:14:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E56737B40A; Sat, 25 Aug 2001 03:14:14 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PAEEC37579; Sat, 25 Aug 2001 03:14:14 -0700 (PDT) (envelope-from kris) Message-Id: <200108251014.f7PAEEC37579@freefall.freebsd.org> From: Kris Kennaway Date: Sat, 25 Aug 2001 03:14:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail Makefile ports/mail/smtpclient Makefile Makefile~ distinfo pkg-comment pkg-descr pkg-plist ports/mail/smtpclient/files patch-smtpclient_errno_c patch-smtpclient_main_c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/25 03:14:13 PDT Modified files: mail Makefile Added files: mail/smtpclient Makefile Makefile~ distinfo pkg-comment pkg-descr pkg-plist mail/smtpclient/files patch-smtpclient_errno_c patch-smtpclient_main_c Log: Add smtpclient-1.0.0 This program is a minimal SMTP client that takes an email message body and passes it on to a SMTP server (default is the MTA on the local host). Since it is completely self-supporting, it is especially suitable for use in restricted environments. Obtained from: OpenBSD Revision Changes Path 1.251 +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 Sat Aug 25 3:14:37 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0F45D37B408; Sat, 25 Aug 2001 03:14:31 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PAEVB37634; Sat, 25 Aug 2001 03:14:31 -0700 (PDT) (envelope-from kris) Message-Id: <200108251014.f7PAEVB37634@freefall.freebsd.org> From: Kris Kennaway Date: Sat, 25 Aug 2001 03:14:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/smtpclient Makefile~ X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/25 03:14:31 PDT Removed files: mail/smtpclient Makefile~ Log: Oops, remove stray file To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 3:46:52 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8146837B40D; Sat, 25 Aug 2001 03:46:48 -0700 (PDT) (envelope-from dirk@FreeBSD.org) Received: (from dirk@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PAkmv39682; Sat, 25 Aug 2001 03:46:48 -0700 (PDT) (envelope-from dirk) Message-Id: <200108251046.f7PAkmv39682@freefall.freebsd.org> From: Dirk Froemberg Date: Sat, 25 Aug 2001 03:46:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mod_php4/scripts configure.php X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dirk 2001/08/25 03:46:47 PDT Modified files: www/mod_php4/scripts configure.php Log: Fix shared library number for sablotron after upgrade. Revision Changes Path 1.139 +2 -2 ports/www/mod_php4/scripts/configure.php To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 3:53:32 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 18A8737B407; Sat, 25 Aug 2001 03:53:29 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PArSW40142; Sat, 25 Aug 2001 03:53:29 -0700 (PDT) (envelope-from kris) Message-Id: <200108251053.f7PArSW40142@freefall.freebsd.org> From: Kris Kennaway Date: Sat, 25 Aug 2001 03:53:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/nbtscan Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/25 03:53:28 PDT Modified files: net/nbtscan Makefile Log: The MASTER_SITE seems to no longer exist; host this locally for now. Revision Changes Path 1.2 +3 -2 ports/net/nbtscan/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 3:54:47 2001 Delivered-To: cvs-all@freebsd.org Received: from t-mta1.odn.ne.jp (mfep1.odn.ne.jp [143.90.131.179]) by hub.freebsd.org (Postfix) with ESMTP id B21FF37B40B for ; Sat, 25 Aug 2001 03:54:44 -0700 (PDT) (envelope-from shige@FreeBSD.org) Received: from artemis.emerald.priv.net ([211.121.223.197]) by t-mta1.odn.ne.jp with ESMTP id <20010825105443486.TOWA.15030.t-mta1.odn.ne.jp@mta1.odn.ne.jp> for ; Sat, 25 Aug 2001 19:54:43 +0900 Date: Sat, 25 Aug 2001 19:54:23 +0900 (JST) Message-Id: <20010825.195423.23412125.shige@FreeBSD.org> To: cvs-all@FreeBSD.org Subject: please repo-copy for editors/{flim114,semi114}-emacs20. From: Shigeyuki Fukushima X-Mailer: Mew version 2.0 on Emacs 20.7 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi! CVS committers. Now I'm making new version flim-1.14.x/semi-1.14.x ports, and I want to repo-copy from old flim/semi ports as follows: editors/flim-emacs-current (not emacs20!!) -> editors/flim114-emacs20 editors/semi-emacs-current (not emacs20!!) -> editors/semi114-emacs20 # NOTE: New version of flim/semi is for emacs-20.4 or later. # But, master port of flim/semi in the ports tree is for emacs-19.x. Please do repo-copy, anyone? Thanks in advance! -- shige Shigeyuki Fukushima To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 3:56:34 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2811E37B401; Sat, 25 Aug 2001 03:56:30 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PAuU040416; Sat, 25 Aug 2001 03:56:30 -0700 (PDT) (envelope-from ache) Message-Id: <200108251056.f7PAuU040416@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 25 Aug 2001 03:56:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb/files drwebd.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/25 03:56:29 PDT Modified files: security/drweb/files drwebd.sh Log: Remove socket after stop Revision Changes Path 1.2 +2 -1 ports/security/drweb/files/drwebd.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 4: 3: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E308937B407; Sat, 25 Aug 2001 04:02:57 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PB2vJ46489; Sat, 25 Aug 2001 04:02:57 -0700 (PDT) (envelope-from ache) Message-Id: <200108251102.f7PB2vJ46489@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 25 Aug 2001 04:02:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb-sendmail/files drweb-smf.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/25 04:02:57 PDT Modified files: security/drweb-sendmail/files drweb-smf.sh Log: Use more natural initial values Revision Changes Path 1.3 +4 -2 ports/security/drweb-sendmail/files/drweb-smf.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 4:20:54 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A6E9E37B40A; Sat, 25 Aug 2001 04:20:50 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PBKoP50516; Sat, 25 Aug 2001 04:20:50 -0700 (PDT) (envelope-from kris) Message-Id: <200108251120.f7PBKoP50516@freefall.freebsd.org> From: Kris Kennaway Date: Sat, 25 Aug 2001 04:20:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/ctrace Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/25 04:20:50 PDT Modified files: net Makefile Added files: net/ctrace Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add ctrace-0.8 ctrace is an IPv4 traceroute tool that supports many features missing in standard 4.3BSD traceroute(8). It is programmed entirely in perl. Obtained from: OpenBSD Revision Changes Path 1.600 +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 Aug 25 4:29:38 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D3B9837B40A; Sat, 25 Aug 2001 04:29:33 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PBTXs50934; Sat, 25 Aug 2001 04:29:33 -0700 (PDT) (envelope-from ache) Message-Id: <200108251129.f7PBTXs50934@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 25 Aug 2001 04:29:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb-sendmail/files patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/25 04:29:33 PDT Added files: security/drweb-sendmail/files patch-ab Log: Spelling fix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 4:30:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EEC6937B40A; Sat, 25 Aug 2001 04:30:15 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PBUFv51031; Sat, 25 Aug 2001 04:30:15 -0700 (PDT) (envelope-from ache) Message-Id: <200108251130.f7PBUFv51031@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 25 Aug 2001 04:30:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb/files drwebd.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/25 04:30:15 PDT Modified files: security/drweb/files drwebd.sh Log: Use abs path for rm Revision Changes Path 1.3 +2 -2 ports/security/drweb/files/drwebd.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 4:41: 0 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D1F5137B40C; Sat, 25 Aug 2001 04:40:57 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PBevO51740; Sat, 25 Aug 2001 04:40:57 -0700 (PDT) (envelope-from ache) Message-Id: <200108251140.f7PBevO51740@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 25 Aug 2001 04:40:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb-sendmail Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/25 04:40:57 PDT Modified files: security/drweb-sendmail Makefile pkg-plist Log: Install drwebdc too Revision Changes Path 1.8 +2 -1 ports/security/drweb-sendmail/Makefile 1.4 +1 -0 ports/security/drweb-sendmail/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 Aug 25 5: 5:37 2001 Delivered-To: cvs-all@freebsd.org Received: from kawoserv.kawo2.rwth-aachen.de (kawoserv.kawo2.RWTH-Aachen.DE [134.130.180.1]) by hub.freebsd.org (Postfix) with ESMTP id EA70237B40D; Sat, 25 Aug 2001 05:05:30 -0700 (PDT) (envelope-from alex@fump.kawo2.rwth-aachen.de) Received: from fump.kawo2.rwth-aachen.de (root@fump.kawo2.rwth-aachen.de [134.130.181.148]) by kawoserv.kawo2.rwth-aachen.de (8.9.3/8.9.3) with ESMTP id OAA04803; Sat, 25 Aug 2001 14:05:30 +0200 Received: (from alex@localhost) by fump.kawo2.rwth-aachen.de (8.11.3/8.11.3) id f7PC5ch04176; Sat, 25 Aug 2001 14:05:38 +0200 (CEST) (envelope-from alex) Date: Sat, 25 Aug 2001 14:05:36 +0200 From: Alexander Langer To: Mike Heffner Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: ports/devel/amulet Makefile Message-ID: <20010825140536.B4128@fump.kawo2.rwth-aachen.de> References: <200108231653.f7NGroL13017@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Mutt/1.2.5i In-Reply-To: ; from mheffner@vt.edu on Fri, Aug 24, 2001 at 09:35:18PM -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus spake Mike Heffner (mheffner@vt.edu): > | devel/amulet Makefile=20 > | Mark BROKEN again (internal compiler error). > | This port has been broken since I can think (almost). > That's unfortunate, I had it working just recently too. Jup, I saw the commitlog. Feel free to fix it again. This port just annoys me. :-) Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 5:31:44 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DD4E737B408; Sat, 25 Aug 2001 05:31:39 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PCVdS57863; Sat, 25 Aug 2001 05:31:39 -0700 (PDT) (envelope-from ache) Message-Id: <200108251231.f7PCVdS57863@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 25 Aug 2001 05:31:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb-sendmail/files drweb-smf.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/25 05:31:39 PDT Modified files: security/drweb-sendmail/files drweb-smf.sh Log: Fix socket permissions after start Revision Changes Path 1.4 +2 -1 ports/security/drweb-sendmail/files/drweb-smf.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 5:33:57 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A4BA737B40F; Sat, 25 Aug 2001 05:33:53 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PCXrC57992; Sat, 25 Aug 2001 05:33:53 -0700 (PDT) (envelope-from ache) Message-Id: <200108251233.f7PCXrC57992@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 25 Aug 2001 05:33:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb/files drwebd.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/25 05:33:53 PDT Modified files: security/drweb/files drwebd.sh Log: Fix socket permissions after start Revision Changes Path 1.4 +2 -1 ports/security/drweb/files/drwebd.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 6:40:36 2001 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 EBC8937B406; Sat, 25 Aug 2001 06:40:30 -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.9.3/8.8.7) with ESMTP id XAA23360; Sat, 25 Aug 2001 23:40:25 +1000 Date: Sat, 25 Aug 2001 23:40:17 +1000 (EST) From: Bruce Evans X-X-Sender: To: Julian Elischer Cc: Peter Wemm , , Subject: Re: cvs commit: src/sys/i386/i386 locore.s In-Reply-To: Message-ID: <20010825233530.E9471-100000@besplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 24 Aug 2001, Julian Elischer wrote: > aarghh > > On Fri, 24 Aug 2001, Peter Wemm wrote: > > > peter 2001/08/24 19:06:59 PDT > > > > Modified files: > > sys/i386/i386 locore.s > > Log: > > s/teh/the/ > > > > Revision Changes Path > > 1.149 +2 -2 src/sys/i386/i386/locore.s Some fixes are still missing, including one more spelling/typo fix (s/whach/which/). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 6:54:16 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 594FF37B408; Sat, 25 Aug 2001 06:54:13 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PDsDc74102; Sat, 25 Aug 2001 06:54:13 -0700 (PDT) (envelope-from petef) Message-Id: <200108251354.f7PDsDc74102@freefall.freebsd.org> From: Pete Fritchman Date: Sat, 25 Aug 2001 06:54:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/p5-Test-Simple Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/25 06:54:09 PDT Modified files: devel/p5-Test-Simple Makefile distinfo pkg-plist Log: - update to version 0.14 - sort pkg-plist rmdirs PR: 30073 Submitted by: maintainer Revision Changes Path 1.4 +3 -3 ports/devel/p5-Test-Simple/Makefile 1.4 +1 -1 ports/devel/p5-Test-Simple/distinfo 1.2 +2 -1 ports/devel/p5-Test-Simple/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 Aug 25 7:14:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 323EE37B406; Sat, 25 Aug 2001 07:14:28 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PEESW79830; Sat, 25 Aug 2001 07:14:28 -0700 (PDT) (envelope-from ache) Message-Id: <200108251414.f7PEESW79830@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 25 Aug 2001 07:14:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb-sendmail/files patch-ac drweb-smf.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/25 07:14:27 PDT Modified files: security/drweb-sendmail/files drweb-smf.sh Added files: security/drweb-sendmail/files patch-ac Log: Use right umask for socket creation Revision Changes Path 1.5 +1 -2 ports/security/drweb-sendmail/files/drweb-smf.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 7:15:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ADC7037B406; Sat, 25 Aug 2001 07:15:22 -0700 (PDT) (envelope-from kiri@FreeBSD.org) Received: (from kiri@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PEFMd80006; Sat, 25 Aug 2001 07:15:22 -0700 (PDT) (envelope-from kiri) Message-Id: <200108251415.f7PEFMd80006@freefall.freebsd.org> From: Kiriyama Kazuhiko Date: Sat, 25 Aug 2001 07:15: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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kiri 2001/08/25 07:15:22 PDT Modified files: . modules Log: Correct wrong module name editors/mew2-emacs20 -> mail/mew2-emacs20. Revision Changes Path 1.3729 +2 -2 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 Aug 25 7:37: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6521937B40E; Sat, 25 Aug 2001 07:37:02 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PEb2281393; Sat, 25 Aug 2001 07:37:02 -0700 (PDT) (envelope-from rwatson) Message-Id: <200108251437.f7PEb2281393@freefall.freebsd.org> From: Robert Watson Date: Sat, 25 Aug 2001 07:37:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/posix1e cap.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2001/08/25 07:37:02 PDT Modified files: lib/libc/posix1e cap.3 Log: o s/violate/override/ Capabilities are part of the system policy, not an exception to it. Submitted by: tmm Obtained from: TrustedBSD Project Revision Changes Path 1.13 +2 -2 src/lib/libc/posix1e/cap.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 7:38:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B77D937B40E; Sat, 25 Aug 2001 07:38:03 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PEc3q81492; Sat, 25 Aug 2001 07:38:03 -0700 (PDT) (envelope-from ache) Message-Id: <200108251438.f7PEc3q81492@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 25 Aug 2001 07:38:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb-sendmail Makefile pkg-message X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/25 07:38:03 PDT Modified files: security/drweb-sendmail Makefile pkg-message Log: Add warnings that viruses in mail not detected with evaluation key Revision Changes Path 1.9 +3 -1 ports/security/drweb-sendmail/Makefile 1.3 +3 -0 ports/security/drweb-sendmail/pkg-message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 7:46:40 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 00F1937B407; Sat, 25 Aug 2001 07:46:36 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PEkZV82024; Sat, 25 Aug 2001 07:46:35 -0700 (PDT) (envelope-from ache) Message-Id: <200108251446.f7PEkZV82024@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 25 Aug 2001 07:46:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/25 07:46:35 PDT Modified files: security/drweb Makefile pkg-plist Log: Do not install something running in rc.d, just as sample, tuning needed Revision Changes Path 1.5 +2 -2 ports/security/drweb/Makefile 1.2 +1 -1 ports/security/drweb/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 Aug 25 7:48:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F43C37B409; Sat, 25 Aug 2001 07:48:12 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PEmC682129; Sat, 25 Aug 2001 07:48:12 -0700 (PDT) (envelope-from ache) Message-Id: <200108251448.f7PEmC682129@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 25 Aug 2001 07:48:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb-sendmail Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/25 07:48:12 PDT Modified files: security/drweb-sendmail Makefile pkg-plist Log: Simplify configuration installation in rc.d Revision Changes Path 1.10 +1 -6 ports/security/drweb-sendmail/Makefile 1.5 +0 -2 ports/security/drweb-sendmail/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 Aug 25 7:56: 3 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EA36D37B408; Sat, 25 Aug 2001 07:55:57 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PEtvm82681; Sat, 25 Aug 2001 07:55:57 -0700 (PDT) (envelope-from rwatson) Message-Id: <200108251455.f7PEtvm82681@freefall.freebsd.org> From: Robert Watson Date: Sat, 25 Aug 2001 07:55:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 acct.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2001/08/25 07:55:57 PDT Modified files: share/man/man5 acct.5 Log: o Note that the ASU accounting flag has now been deprecated. Submitted by: tmm Obtained from: TrustedBSD Project Revision Changes Path 1.9 +3 -2 src/share/man/man5/acct.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 8: 1:37 2001 Delivered-To: cvs-all@freebsd.org Received: from infinitive.futureperfectcorporation.com (curie.sunesi.com [196.25.112.244]) by hub.freebsd.org (Postfix) with SMTP id A569437B409 for ; Sat, 25 Aug 2001 08:01:31 -0700 (PDT) (envelope-from nbm@gerund.futureperfectcorporation.com) Received: (qmail 61599 invoked by uid 0); 25 Aug 2001 15:05:03 -0000 Received: from choke.sunesi.net (HELO gerund.futureperfectcorporation.com) (196.25.112.242) by infinitive.futureperfectcorporation.com with SMTP; 25 Aug 2001 15:05:03 -0000 Received: (qmail 34759 invoked by uid 1001); 25 Aug 2001 15:01:56 -0000 Date: Sat, 25 Aug 2001 17:01:56 +0200 From: Neil Blakey-Milner To: Chris Faulhaber Cc: "David W. Chapman Jr." , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/sysutils/fcron Makefile Message-ID: <20010825170156.B33864@mithrandr.moria.org> References: <200108242259.f7OMxmD37685@freefall.freebsd.org> <20010824193607.A59099@peitho.fxp.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010824193607.A59099@peitho.fxp.org>; from jedgar@fxp.org on Fri, Aug 24, 2001 at 07:36:07PM -0400 Organization: iTouch Labs X-Operating-System: FreeBSD 4.3-RELEASE i386 X-URL: http://mithrandr.moria.org/nbm/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri 2001-08-24 (19:36), Chris Faulhaber wrote: > On Fri, Aug 24, 2001 at 03:59:48PM -0700, David W. Chapman Jr. wrote: > > dwcjr 2001/08/24 15:59:48 PDT > > > > Modified files: > > sysutils/fcron Makefile > > Log: > > Create ${PREFIX}/etc dir so configure script finds to automagically. > > > > PR: 30038 > > Submitted by: leeym@utopia.leeym.com > > > > Revision Changes Path > > 1.5 +4 -1 ports/sysutils/fcron/Makefile > > > > + > +pre-configure: > + @${MKDIR} -p ${PREFIX}/etc > > Won't this cause problems for those building ports as non-root? > Couldn't we simply patch configure[.in] to take our word for where > the proper etc dir is instead of bailing if it isn't found? Yes, that is _much_ better. In theory, we should be able to build with ${PREFIX} read-only. Neil -- Neil Blakey-Milner 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 Sat Aug 25 8: 4:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DCF1F37B409; Sat, 25 Aug 2001 08:04:23 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PF4NV83430; Sat, 25 Aug 2001 08:04:23 -0700 (PDT) (envelope-from rwatson) Message-Id: <200108251504.f7PF4NV83430@freefall.freebsd.org> From: Robert Watson Date: Sat, 25 Aug 2001 08:04:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 vaccess.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2001/08/25 08:04:23 PDT Added files: share/man/man9 vaccess.9 Log: o Add a man page for the kernel vaccess() call, a utility function to generate access control decisions. Obtained from: TrustedBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 8:10:44 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B04F337B403; Sat, 25 Aug 2001 08:10:39 -0700 (PDT) (envelope-from roam@FreeBSD.org) Received: (from roam@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PFAdZ86705; Sat, 25 Aug 2001 08:10:39 -0700 (PDT) (envelope-from roam) Message-Id: <200108251510.f7PFAdZ86705@freefall.freebsd.org> From: Peter Pentchev Date: Sat, 25 Aug 2001 08:10:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/unquote Makefile distinfo pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2001/08/25 08:10:39 PDT Modified files: sysutils/unquote Makefile distinfo pkg-descr Log: Update to 1.0pre3. Use MANCOMPRESSED instead of tweaking MAKE_ENV. Remove the WRKSRC hack, I've learned to package up my stuff properly. Change e-mail addresses and URL's to ones at ringlet.net. Revision Changes Path 1.2 +3 -6 ports/sysutils/unquote/Makefile 1.2 +1 -1 ports/sysutils/unquote/distinfo 1.2 +2 -2 ports/sysutils/unquote/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 Aug 25 8:14:51 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4A67937B403; Sat, 25 Aug 2001 08:14:43 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PFEhC87009; Sat, 25 Aug 2001 08:14:43 -0700 (PDT) (envelope-from knu) Message-Id: <200108251514.f7PFEhC87009@freefall.freebsd.org> From: Akinori MUSHA Date: Sat, 25 Aug 2001 08:14:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/portupgrade Makefile distinfo pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/25 08:14:43 PDT Modified files: sysutils/portupgrade Makefile distinfo pkg-descr pkg-plist Log: Update to 20010826. Overall: - Support the cases where PORTREVISION == 0 and PORTEPOCH == 0. portupgrade: - Add a new option: -l/--log-results, which is used to save the results as a file. [new] - Properly exit with a non-zero status when main() does not return a valid value. [fix] portsclean: - Finally implement portsclean -L/--libclean, which cleans the old shared libraries that are not recorded in the package database. It moves old and orphan shared libraries to ${PREFIX}/lib/compat/pkg. [new] - In concert with this feature, the portupgrade port now digs the directory and installs a startup script which runs `ldconfig -m ${PREFIX}/lib/compat/pkg'. [new] - Implement portsclean -DD, which cleans all the distfiles which are not referenced from any port that is currently installed, which portsclean -D only cleans the distfiles which are not referenced from any port in the ports tree. [new] Note that -DD runs very fast but removes more, whereas -D runs so slow but removes less. Idea provided by: Kris Kennaway portsdb: - Do not fail in the case when INDEX.db and INDEX.rbo are not in sync somehow. [fix] - Implement -r/--recursive. (a bit slow, though) [new] Completions: - Improve and update zsh compdefs. - Add completion definitions for bash. [new] ..and several minor improvements. Enjoy! Revision Changes Path 1.59 +5 -3 ports/sysutils/portupgrade/Makefile 1.53 +1 -1 ports/sysutils/portupgrade/distinfo 1.14 +4 -2 ports/sysutils/portupgrade/pkg-descr 1.16 +6 -0 ports/sysutils/portupgrade/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 Aug 25 8:19:41 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E6FF37B405; Sat, 25 Aug 2001 08:19:37 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PFJb887331; Sat, 25 Aug 2001 08:19:37 -0700 (PDT) (envelope-from rwatson) Message-Id: <200108251519.f7PFJb887331@freefall.freebsd.org> From: Robert Watson Date: Sat, 25 Aug 2001 08:19:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 vaccess.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2001/08/25 08:19:37 PDT Modified files: share/man/man9 vaccess.9 Log: o Replace reference to param.h with types.h o Verbosicize reference to .fa mode Obtained from: TrustedBSD Project Revision Changes Path 1.2 +3 -2 src/share/man/man9/vaccess.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 8:20:58 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 03AC137B410; Sat, 25 Aug 2001 08:20:53 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PFKqf87404; Sat, 25 Aug 2001 08:20:52 -0700 (PDT) (envelope-from ache) Message-Id: <200108251520.f7PFKqf87404@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 25 Aug 2001 08:20:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb-sendmail Makefile pkg-message X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/25 08:20:52 PDT Modified files: security/drweb-sendmail Makefile pkg-message Log: Oops, remove wrong warning - there was a problem in drweb32.ini Revision Changes Path 1.11 +1 -3 ports/security/drweb-sendmail/Makefile 1.4 +0 -2 ports/security/drweb-sendmail/pkg-message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 8:23:47 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.musha.org (daemon.musha.org [61.122.44.178]) by hub.freebsd.org (Postfix) with ESMTP id 763F537B40F; Sat, 25 Aug 2001 08:23:36 -0700 (PDT) (envelope-from knu@iDaemons.org) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id 420534D833; Sun, 26 Aug 2001 00:23:35 +0900 (JST) Date: Sun, 26 Aug 2001 00:23:35 +0900 Message-ID: <86wv3sf9jc.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, ports@FreeBSD.org Subject: Re: cvs commit: ports/sysutils/portupgrade Makefile distinfo pkg-descr pkg-plist In-Reply-To: <200108251514.f7PFEhC87009@freefall.freebsd.org> References: <200108251514.f7PFEhC87009@freefall.freebsd.org> User-Agent: Wanderlust/2.7.2 (Too Funky) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-1?Q?Unebigory=F2mae?=) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Sat, 25 Aug 2001 08:14:43 -0700 (PDT), I wrote: > - Implement portsclean -DD, which cleans all the distfiles which are > not referenced from any port that is currently installed, which while > portsclean -D only cleans the distfiles which are not referenced > from any port in the ports tree. [new] > Completions: > > - Improve and update zsh compdefs. > > - Add completion definitions for bash. [new] I don't constantly use bash or tcsh, so those who use them please correct, improve and enhance the completion definitions bundled in the port. They are installed under /usr/local/share/examples/portupgrade. (I'll certainly keep updating them along with the zsh compdefs as far as I can) Thank you, -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "Freeze this moment a little bit longer, make each impression a little bit stronger.. Experience slips away -- Time stand still" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 9: 9:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AA4AB37B40A; Sat, 25 Aug 2001 09:09:39 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PG9da93668; Sat, 25 Aug 2001 09:09:39 -0700 (PDT) (envelope-from ijliao) Message-Id: <200108251609.f7PG9da93668@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sat, 25 Aug 2001 09:09:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/gengetopt Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2001/08/25 09:09:39 PDT Modified files: devel/gengetopt Makefile distinfo Log: upgrade to 2.4 Revision Changes Path 1.5 +2 -2 ports/devel/gengetopt/Makefile 1.4 +1 -1 ports/devel/gengetopt/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 9:31:48 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E1C2D37B405; Sat, 25 Aug 2001 09:31:45 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PGVjC95236; Sat, 25 Aug 2001 09:31:45 -0700 (PDT) (envelope-from ache) Message-Id: <200108251631.f7PGVjC95236@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 25 Aug 2001 09:31:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/25 09:31:45 PDT Modified files: security/drweb Makefile pkg-plist Log: More efforts to get some sort of working drweb32.ini initially Revision Changes Path 1.6 +8 -2 ports/security/drweb/Makefile 1.3 +3 -1 ports/security/drweb/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 Aug 25 9:43: 0 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1FA4F37B40C; Sat, 25 Aug 2001 09:42:55 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PGgtq95985; Sat, 25 Aug 2001 09:42:55 -0700 (PDT) (envelope-from ache) Message-Id: <200108251642.f7PGgtq95985@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 25 Aug 2001 09:42:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb-sendmail/files patch-ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/25 09:42:54 PDT Modified files: security/drweb-sendmail/files patch-ac Log: Workaround to prevent coredump in stdio cleanup() on exit() when signal 15 arrived Revision Changes Path 1.2 +11 -2 ports/security/drweb-sendmail/files/patch-ac To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 10:59:28 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 97F3A37B409; Sat, 25 Aug 2001 10:59:24 -0700 (PDT) (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PHxOk08137; Sat, 25 Aug 2001 10:59:24 -0700 (PDT) (envelope-from demon) Message-Id: <200108251759.f7PHxOk08137@freefall.freebsd.org> From: Dmitry Sivachenko Date: Sat, 25 Aug 2001 10:59:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/nano Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2001/08/25 10:59:24 PDT Modified files: editors/nano Makefile distinfo pkg-plist Log: Upgrade to 1.0.4 Revision Changes Path 1.10 +2 -2 ports/editors/nano/Makefile 1.10 +1 -1 ports/editors/nano/distinfo 1.6 +3 -1 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 Sat Aug 25 11: 5:56 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9EAF637B40C; Sat, 25 Aug 2001 11:05:50 -0700 (PDT) (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PI5oa11493; Sat, 25 Aug 2001 11:05:50 -0700 (PDT) (envelope-from demon) Message-Id: <200108251805.f7PI5oa11493@freefall.freebsd.org> From: Dmitry Sivachenko Date: Sat, 25 Aug 2001 11:05:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/mc pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2001/08/25 11:05:50 PDT Modified files: misc/mc pkg-descr Log: Add WWW. Revision Changes Path 1.3 +2 -0 ports/misc/mc/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 Aug 25 11: 6:39 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CD2FC37B40A; Sat, 25 Aug 2001 11:06:32 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PI6Wq11560; Sat, 25 Aug 2001 11:06:32 -0700 (PDT) (envelope-from dillon) Message-Id: <200108251806.f7PI6Wq11560@freefall.freebsd.org> From: Matt Dillon Date: Sat, 25 Aug 2001 11:06:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/doscmd ems.c tty.c video.c xms.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2001/08/25 11:06:32 PDT Modified files: usr.bin/doscmd ems.c tty.c video.c xms.c Log: Remove MAP_INHERIT flag from mmaps. Revision Changes Path 1.8 +4 -4 src/usr.bin/doscmd/ems.c 1.20 +3 -3 src/usr.bin/doscmd/tty.c 1.3 +2 -2 src/usr.bin/doscmd/video.c 1.12 +6 -6 src/usr.bin/doscmd/xms.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 11:27:29 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5733237B405; Sat, 25 Aug 2001 11:27:25 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Received: (from jdp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PIRPY13113; Sat, 25 Aug 2001 11:27:25 -0700 (PDT) (envelope-from jdp) Message-Id: <200108251827.f7PIRPY13113@freefall.freebsd.org> From: John Polstra Date: Sat, 25 Aug 2001 11:27:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/mirrors chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jdp 2001/08/25 11:27:25 PDT Modified files: en_US.ISO8859-1/books/handbook/mirrors chapter.sgml Log: Remove cvsup6.freebsd.org. It seems to have vanished into thin air. Revision Changes Path 1.148 +1 -6 doc/en_US.ISO8859-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 Sat Aug 25 12: 3:32 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7E85137B406; Sat, 25 Aug 2001 12:03:29 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PJ3T515565; Sat, 25 Aug 2001 12:03:29 -0700 (PDT) (envelope-from ache) Message-Id: <200108251903.f7PJ3T515565@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 25 Aug 2001 12:03:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/drweb-sendmail/files patch-ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/25 12:03:29 PDT Modified files: security/drweb-sendmail/files patch-ac Log: Remove workaround until I dig more on this - can't reproduce the bug now. Revision Changes Path 1.3 +0 -9 ports/security/drweb-sendmail/files/patch-ac To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 12:21:35 2001 Delivered-To: cvs-all@freebsd.org Received: from franklin.physics.purdue.edu (franklin.physics.purdue.edu [128.210.146.222]) by hub.freebsd.org (Postfix) with ESMTP id 1E5B637B401; Sat, 25 Aug 2001 12:21:29 -0700 (PDT) (envelope-from will@physics.purdue.edu) Received: from physics.purdue.edu (bohr.physics.purdue.edu [128.210.67.12]) by franklin.physics.purdue.edu (Postfix) with ESMTP id 8253E20F14; Sat, 25 Aug 2001 14:23:18 -0500 (EST) Received: by physics.purdue.edu (Postfix, from userid 12409) id BC13E5BC3; Sat, 25 Aug 2001 14:23:26 -0500 (EST) Date: Sat, 25 Aug 2001 14:23:26 -0500 From: Will Andrews To: Neil Blakey-Milner Cc: Chris Faulhaber , "David W. Chapman Jr." , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/sysutils/fcron Makefile Message-ID: <20010825142326.L35352@bohr.physics.purdue.edu> Reply-To: Will Andrews Mail-Followup-To: Neil Blakey-Milner , Chris Faulhaber , "David W. Chapman Jr." , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200108242259.f7OMxmD37685@freefall.freebsd.org> <20010824193607.A59099@peitho.fxp.org> <20010825170156.B33864@mithrandr.moria.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.17i In-Reply-To: <20010825170156.B33864@mithrandr.moria.org>; from nbm@mithrandr.moria.org on Sat, Aug 25, 2001 at 05:01:56PM +0200 X-Operating-System: FreeBSD 4.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Aug 25, 2001 at 05:01:56PM +0200, Neil Blakey-Milner (nbm@mithrandr.moria.org) wrote: > > Won't this cause problems for those building ports as non-root? > > Couldn't we simply patch configure[.in] to take our word for where > > the proper etc dir is instead of bailing if it isn't found? > > Yes, that is _much_ better. In theory, we should be able to build with > ${PREFIX} read-only. And in practice that's the best way to do it. Some authors are stupid and require uid's or similar during configure or build time... there is never a valid reason to write ${PREFIX} or anything outside ${WRKSRC} during build time or before that. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 12:46:26 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8559537B405; Sat, 25 Aug 2001 12:46:22 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PJkM721834; Sat, 25 Aug 2001 12:46:22 -0700 (PDT) (envelope-from kris) Message-Id: <200108251946.f7PJkM721834@freefall.freebsd.org> From: Kris Kennaway Date: Sat, 25 Aug 2001 12:46:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/astro/xworld Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/25 12:46:22 PDT Modified files: astro/xworld Makefile Log: Christian Weisgerber submitted this as a port too. Let him be maintainer. Revision Changes Path 1.2 +2 -2 ports/astro/xworld/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 13:10:25 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6236A37B408; Sat, 25 Aug 2001 13:10:22 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PKAMp26648; Sat, 25 Aug 2001 13:10:22 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108252010.f7PKAMp26648@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Sat, 25 Aug 2001 13:10:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/fcron Makefile ports/sysutils/fcron/files patch-configure.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/25 13:10:21 PDT Modified files: sysutils/fcron Makefile Added files: sysutils/fcron/files patch-configure.in Log: Add patch patch-configure.in to stop checking for ${PREFIX}/etc during configure BUMP Portrevision Revision Changes Path 1.7 +3 -2 ports/sysutils/fcron/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 13:30:10 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7866037B40E; Sat, 25 Aug 2001 13:30:03 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PKU3j27904; Sat, 25 Aug 2001 13:30:03 -0700 (PDT) (envelope-from petef) Message-Id: <200108252030.f7PKU3j27904@freefall.freebsd.org> From: Pete Fritchman Date: Sat, 25 Aug 2001 13:30:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math Makefile ports/math/p5-Date-Handler Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/25 13:30:03 PDT Modified files: math Makefile Added files: math/p5-Date-Handler Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add p5-Date-Handler Perl module for calculating time differences PR: 30071 Submitted by: Shell Hung Revision Changes Path 1.137 +2 -1 ports/math/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 13:33:13 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8318E37B40A; Sat, 25 Aug 2001 13:33:09 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PKX9b28179; Sat, 25 Aug 2001 13:33:09 -0700 (PDT) (envelope-from petef) Message-Id: <200108252033.f7PKX9b28179@freefall.freebsd.org> From: Pete Fritchman Date: Sat, 25 Aug 2001 13:33:09 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/25 13:33:09 PDT Modified files: . modules Log: p5-Date-Handler --> ports/math/p5-Date-Handler Revision Changes Path 1.3730 +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 Aug 25 13:38:33 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E517437B407; Sat, 25 Aug 2001 13:38:29 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PKcTf28483; Sat, 25 Aug 2001 13:38:29 -0700 (PDT) (envelope-from knu) Message-Id: <200108252038.f7PKcTf28483@freefall.freebsd.org> From: Akinori MUSHA Date: Sat, 25 Aug 2001 13:38:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/ruby-romp Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/25 13:38:29 PDT Modified files: net/ruby-romp Makefile Log: Add MASTER_SITE_LOCAL to MASTER_SITES, since the site refuses to let WWW clients like fetch, wget, lukemftp, and lftp download the distfile. (Netscape and curl were okay) I'll contact the webmaster later. Revision Changes Path 1.2 +4 -2 ports/net/ruby-romp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 13:53: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6143737B409; Sat, 25 Aug 2001 13:53:03 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PKr3F29616; Sat, 25 Aug 2001 13:53:03 -0700 (PDT) (envelope-from ache) Message-Id: <200108252053.f7PKr3F29616@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 25 Aug 2001 13:53:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/apache13 pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2001/08/25 13:53:02 PDT Modified files: www/apache13 pkg-plist Log: Rewrite @exec's so final condition always be true on success Submitted by: Jimmy Olgeni Revision Changes Path 1.34 +7 -7 ports/www/apache13/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 Aug 25 14: 0:45 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BE0C237B40A; Sat, 25 Aug 2001 14:00:42 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PL0gT30062; Sat, 25 Aug 2001 14:00:42 -0700 (PDT) (envelope-from kris) Message-Id: <200108252100.f7PL0gT30062@freefall.freebsd.org> From: Kris Kennaway Date: Sat, 25 Aug 2001 14:00:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/isearch Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/25 14:00:42 PDT Modified files: textproc/isearch Makefile Log: Change maintainer from ports@FreeBSD.org to Paul Marquis Revision Changes Path 1.14 +2 -2 ports/textproc/isearch/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 14: 4:48 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6274837B401; Sat, 25 Aug 2001 14:04:44 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PL4iM30276; Sat, 25 Aug 2001 14:04:44 -0700 (PDT) (envelope-from knu) Message-Id: <200108252104.f7PL4iM30276@freefall.freebsd.org> From: Akinori MUSHA Date: Sat, 25 Aug 2001 14:04:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/ruby-odbc Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2001/08/25 14:04:43 PDT Modified files: databases/ruby-odbc Makefile distinfo Log: Update to 0.91. Revision Changes Path 1.10 +2 -2 ports/databases/ruby-odbc/Makefile 1.9 +1 -1 ports/databases/ruby-odbc/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 14: 5:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E157537B410; Sat, 25 Aug 2001 14:05:44 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PL5ig31772; Sat, 25 Aug 2001 14:05:44 -0700 (PDT) (envelope-from kris) Message-Id: <200108252105.f7PL5ig31772@freefall.freebsd.org> From: Kris Kennaway Date: Sat, 25 Aug 2001 14:05:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/dejasearch Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/25 14:05:44 PDT Modified files: news/dejasearch Makefile Log: Mark FORBIDDEN (so bento does not try and package it): this port no longer works with the google deja service. PR: 26436 Submitted by: Kim Scarborough Revision Changes Path 1.12 +3 -1 ports/news/dejasearch/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 14:29:18 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B69637B409; Sat, 25 Aug 2001 14:29:13 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PLTDC34915; Sat, 25 Aug 2001 14:29:13 -0700 (PDT) (envelope-from dd) Message-Id: <200108252129.f7PLTDC34915@freefall.freebsd.org> From: Dima Dorfman Date: Sat, 25 Aug 2001 14:29:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/telnet/telnetd telnetd.8 src/libexec/telnetd telnetd.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/25 14:29:13 PDT Modified files: crypto/telnet/telnetd telnetd.8 libexec/telnetd telnetd.8 Log: Remove description of an option that only applies to UNICOS < 7.0. That define may still be present in the source, but I don't think anyone has plans to try to use it. Obtained from: NetBSD Revision Changes Path 1.14 +1 -14 src/crypto/telnet/telnetd/telnetd.8 1.26 +1 -14 src/libexec/telnetd/telnetd.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 14:51: 0 2001 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-54.dsl.lsan03.pacbell.net [63.207.60.54]) by hub.freebsd.org (Postfix) with ESMTP id 4B96737B401; Sat, 25 Aug 2001 14:50:54 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 8655666BCE; Sat, 25 Aug 2001 14:50:47 -0700 (PDT) Date: Sat, 25 Aug 2001 14:50:46 -0700 From: Kris Kennaway To: Dima Dorfman Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/crypto/telnet/telnetd telnetd.8 src/libexec/telnetd telnetd.8 Message-ID: <20010825145046.A89441@xor.obsecurity.org> References: <200108252129.f7PLTDC34915@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="qMm9M+Fa2AknHoGS" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108252129.f7PLTDC34915@freefall.freebsd.org>; from dd@FreeBSD.org on Sat, Aug 25, 2001 at 02:29:13PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --qMm9M+Fa2AknHoGS Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Aug 25, 2001 at 02:29:13PM -0700, Dima Dorfman wrote: > dd 2001/08/25 14:29:13 PDT >=20 > Modified files: > crypto/telnet/telnetd telnetd.8=20 > libexec/telnetd telnetd.8=20 > Log: > Remove description of an option that only applies to UNICOS < 7.0. > That define may still be present in the source, but I don't think > anyone has plans to try to use it. > =20 > Obtained from: NetBSD Could you unifdef those bits too? Kris --qMm9M+Fa2AknHoGS Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD4DBQE7iB21Wry0BWjoQKURAneEAJ9TvtlmXNGYlakIT0LSMyLX07RlbwCY6TkL oITA8Rg3J/W9eaPxm8+fVg== =i477 -----END PGP SIGNATURE----- --qMm9M+Fa2AknHoGS-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 14:52:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A8EF37B405; Sat, 25 Aug 2001 14:52:36 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PLqaY37915; Sat, 25 Aug 2001 14:52:36 -0700 (PDT) (envelope-from dd) Message-Id: <200108252152.f7PLqaY37915@freefall.freebsd.org> From: Dima Dorfman Date: Sat, 25 Aug 2001 14:52:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/books/handbook Makefile doc/en_US.ISO8859-1/books/handbook Makefile doc/fr_FR.ISO8859-1/books/fdp-primer Makefile doc/fr_FR.ISO8859-1/books/handbook Makefile doc/ru_RU.KOI8-R/books/faq Makefile doc/ru_RU.KOI8-R/books/handbook Makefile ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/25 14:52:36 PDT Modified files: de_DE.ISO8859-1/books/handbook Makefile en_US.ISO8859-1/books/handbook Makefile fr_FR.ISO8859-1/books/fdp-primer Makefile fr_FR.ISO8859-1/books/handbook Makefile ru_RU.KOI8-R/books/faq Makefile ru_RU.KOI8-R/books/handbook Makefile ru_RU.KOI8-R/books/porters-handbook Makefile Log: Remove authors.ent from SRCS since there's no need for it to be there, and because the path is liable to change (that's why we have catalogs). Revision Changes Path 1.11 +1 -2 doc/de_DE.ISO8859-1/books/handbook/Makefile 1.48 +1 -2 doc/en_US.ISO8859-1/books/handbook/Makefile 1.5 +1 -2 doc/fr_FR.ISO8859-1/books/fdp-primer/Makefile 1.4 +1 -2 doc/fr_FR.ISO8859-1/books/handbook/Makefile 1.11 +1 -4 doc/ru_RU.KOI8-R/books/faq/Makefile 1.7 +1 -2 doc/ru_RU.KOI8-R/books/handbook/Makefile 1.5 +1 -4 doc/ru_RU.KOI8-R/books/porters-handbook/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 14:56: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9AC5037B405; Sat, 25 Aug 2001 14:55:57 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PLtvQ38635; Sat, 25 Aug 2001 14:55:57 -0700 (PDT) (envelope-from dd) Message-Id: <200108252155.f7PLtvQ38635@freefall.freebsd.org> From: Dima Dorfman Date: Sat, 25 Aug 2001 14:55:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/fr_FR.ISO8859-1/articles/committers-guide article.sgml doc/fr_FR.ISO8859-1/articles/diskless-x article.sgml doc/fr_FR.ISO8859-1/articles/fonts article.sgml doc/fr_FR.ISO8859-1/articles/formatting-media article.sgml doc/fr_FR.ISO8859-1/articles/ip-aliasing article.sgml doc/fr_FR.ISO8859-1/articles/make-world article.sgml ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/25 14:55:57 PDT Modified files: fr_FR.ISO8859-1/articles/committers-guide article.sgml fr_FR.ISO8859-1/articles/diskless-x article.sgml fr_FR.ISO8859-1/articles/fonts article.sgml fr_FR.ISO8859-1/articles/formatting-media article.sgml fr_FR.ISO8859-1/articles/ip-aliasing article.sgml fr_FR.ISO8859-1/articles/make-world article.sgml fr_FR.ISO8859-1/articles/mh article.sgml fr_FR.ISO8859-1/articles/multi-os article.sgml fr_FR.ISO8859-1/articles/new-users article.sgml fr_FR.ISO8859-1/articles/ntfs article.sgml fr_FR.ISO8859-1/articles/ppp article.sgml fr_FR.ISO8859-1/articles/programming-tools article.sgml fr_FR.ISO8859-1/articles/zip-drive article.sgml fr_FR.ISO8859-1/books/faq book.sgml fr_FR.ISO8859-1/books/fdp-primer book.sgml fr_FR.ISO8859-1/books/handbook book.sgml ru_RU.KOI8-R/books/faq book.sgml ru_RU.KOI8-R/books/handbook book.sgml ru_RU.KOI8-R/books/porters-handbook book.sgml de_DE.ISO8859-1/books/handbook book.sgml en_US.ISO8859-1/books/porters-handbook book.sgml Log: Reference %authors via its PUBLIC rather than SYSTEM identifier. There's a reason we have catalogs, and it isn't to use inodes. Revision Changes Path 1.6 +2 -2 doc/fr_FR.ISO8859-1/articles/committers-guide/article.sgml 1.5 +2 -2 doc/fr_FR.ISO8859-1/articles/diskless-x/article.sgml 1.6 +2 -2 doc/fr_FR.ISO8859-1/articles/fonts/article.sgml 1.5 +2 -2 doc/fr_FR.ISO8859-1/articles/formatting-media/article.sgml 1.5 +2 -2 doc/fr_FR.ISO8859-1/articles/ip-aliasing/article.sgml 1.5 +2 -2 doc/fr_FR.ISO8859-1/articles/make-world/article.sgml 1.5 +2 -2 doc/fr_FR.ISO8859-1/articles/mh/article.sgml 1.5 +2 -2 doc/fr_FR.ISO8859-1/articles/multi-os/article.sgml 1.5 +2 -2 doc/fr_FR.ISO8859-1/articles/new-users/article.sgml 1.5 +2 -2 doc/fr_FR.ISO8859-1/articles/ntfs/article.sgml 1.5 +2 -2 doc/fr_FR.ISO8859-1/articles/ppp/article.sgml 1.5 +2 -2 doc/fr_FR.ISO8859-1/articles/programming-tools/article.sgml 1.5 +2 -2 doc/fr_FR.ISO8859-1/articles/zip-drive/article.sgml 1.7 +2 -2 doc/fr_FR.ISO8859-1/books/faq/book.sgml 1.6 +2 -2 doc/fr_FR.ISO8859-1/books/fdp-primer/book.sgml 1.5 +2 -2 doc/fr_FR.ISO8859-1/books/handbook/book.sgml 1.54 +3 -3 doc/ru_RU.KOI8-R/books/faq/book.sgml 1.8 +2 -2 doc/ru_RU.KOI8-R/books/handbook/book.sgml 1.8 +2 -2 doc/ru_RU.KOI8-R/books/porters-handbook/book.sgml 1.15 +2 -2 doc/de_DE.ISO8859-1/books/handbook/book.sgml 1.162 +2 -2 doc/en_US.ISO8859-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 Aug 25 14:57: 9 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2C99837B405; Sat, 25 Aug 2001 14:57:03 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PLv3838711; Sat, 25 Aug 2001 14:57:03 -0700 (PDT) (envelope-from dd) Message-Id: <200108252157.f7PLv3838711@freefall.freebsd.org> From: Dima Dorfman Date: Sat, 25 Aug 2001 14:57:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 adv.4 adw.4 ahb.4 bt.4 netgraph.4 ng_tty.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/25 14:57:03 PDT Modified files: share/man/man4 adv.4 adw.4 ahb.4 bt.4 netgraph.4 ng_tty.4 Log: Revert my queueing -> queuing commit. Both spellings are correct, and some people prefer the former. Submitted by: ken, nectar Revision Changes Path 1.17 +2 -2 src/share/man/man4/adv.4 1.15 +3 -3 src/share/man/man4/adw.4 1.19 +2 -2 src/share/man/man4/ahb.4 1.19 +3 -3 src/share/man/man4/bt.4 1.37 +3 -3 src/share/man/man4/netgraph.4 1.13 +2 -2 src/share/man/man4/ng_tty.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 14:59: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3452737B40D; Sat, 25 Aug 2001 14:58:59 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PLwxX38925; Sat, 25 Aug 2001 14:58:59 -0700 (PDT) (envelope-from dd) Message-Id: <200108252158.f7PLwxX38925@freefall.freebsd.org> From: Dima Dorfman Date: Sat, 25 Aug 2001 14:58:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 ahc.4 da.4 netgraph.4 sym.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/25 14:58:59 PDT Modified files: share/man/man4 ahc.4 da.4 netgraph.4 sym.4 Log: Consistently use 'queueing' instead of 'queuing'. Both spellings are correct, but the former seems to be preferred. This makes all of the section-4 manual pages consistent in this respect. Revision Changes Path 1.29 +3 -3 src/share/man/man4/ahc.4 1.36 +2 -2 src/share/man/man4/da.4 1.38 +3 -3 src/share/man/man4/netgraph.4 1.13 +2 -2 src/share/man/man4/sym.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 15: 2:15 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A859137B408; Sat, 25 Aug 2001 15:02:08 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PM28u39236; Sat, 25 Aug 2001 15:02:08 -0700 (PDT) (envelope-from dd) Message-Id: <200108252202.f7PM28u39236@freefall.freebsd.org> From: Dima Dorfman Date: Sat, 25 Aug 2001 15:02:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/share/sgml catalog doc/en_US.ISO8859-1/books/handbook authors.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/25 15:02:08 PDT Modified files: share/sgml catalog Removed files: en_US.ISO8859-1/books/handbook authors.ent Log: authors.ent has been moved to en_US.ISO8859-1/share/sgml/authors.ent. The file is hardly Handbook-specific. Repo-copy by: jdp Revision Changes Path 1.19 +2 -2 doc/share/sgml/catalog To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 15: 4: 5 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 769F837B40A; Sat, 25 Aug 2001 15:04:00 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PM40V39373; Sat, 25 Aug 2001 15:04:00 -0700 (PDT) (envelope-from imp) Message-Id: <200108252204.f7PM40V39373@freefall.freebsd.org> From: Warner Losh Date: Sat, 25 Aug 2001 15:04:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pccard pcic_pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/25 15:04:00 PDT Modified files: sys/pccard pcic_pci.c Log: Fix cut-and-paste-o that Nate found. We were setting csc_route twice, rather than setting it once and setting func_route when we can't route PCI interrupts. Revision Changes Path 1.78 +2 -2 src/sys/pccard/pcic_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 15:11: 7 2001 Delivered-To: cvs-all@freebsd.org Received: from bazooka.unixfreak.org (bazooka.unixfreak.org [63.198.170.138]) by hub.freebsd.org (Postfix) with ESMTP id 729C037B403; Sat, 25 Aug 2001 15:11:03 -0700 (PDT) (envelope-from dima@unixfreak.org) Received: by bazooka.unixfreak.org (Postfix, from userid 1000) id E744B3E2F; Sat, 25 Aug 2001 15:11:02 -0700 (PDT) Received: from bazooka.unixfreak.org (localhost [127.0.0.1]) by bazooka.unixfreak.org (Postfix) with ESMTP id DD1293C12D; Sat, 25 Aug 2001 15:11:02 -0700 (PDT) To: Kris Kennaway Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, markm@freebsd.org Subject: Re: cvs commit: src/crypto/telnet/telnetd telnetd.8 src/libexec/telnetd telnetd.8 In-Reply-To: <20010825145046.A89441@xor.obsecurity.org>; from kris@obsecurity.org on "Sat, 25 Aug 2001 14:50:46 -0700" Date: Sat, 25 Aug 2001 15:10:57 -0700 From: Dima Dorfman Message-Id: <20010825221102.E744B3E2F@bazooka.unixfreak.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Kris Kennaway writes: > On Sat, Aug 25, 2001 at 02:29:13PM -0700, Dima Dorfman wrote: > > dd 2001/08/25 14:29:13 PDT > > > > Modified files: > > crypto/telnet/telnetd telnetd.8 > > libexec/telnetd telnetd.8 > > Log: > > Remove description of an option that only applies to UNICOS < 7.0. > > That define may still be present in the source, but I don't think > > anyone has plans to try to use it. > > > > Obtained from: NetBSD > > Could you unifdef those bits too? Mark Murray (cc'd) has been doing some cleanup work on the telnets. He didn't say if he was going to be removing some of the more useless ifdefs (such as UNICOS), but it sounded like he might. Mark? Do you have any plans to do this? If not, and I won't be stepping on your toes, I'll do it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 15:39:48 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D46D037B407; Sat, 25 Aug 2001 15:39:44 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PMdio46061; Sat, 25 Aug 2001 15:39:44 -0700 (PDT) (envelope-from imp) Message-Id: <200108252239.f7PMdio46061@freefall.freebsd.org> From: Warner Losh Date: Sat, 25 Aug 2001 15:39:44 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/25 15:39:44 PDT Modified files: sys/pccard pcic.c Log: The tunable is hw.pcic.irq, but the hw.pcic.override_irq was how it was reported in sysctl. Revision Changes Path 1.163 +2 -3 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 Sat Aug 25 15:45:49 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C13F437B408; Sat, 25 Aug 2001 15:45:45 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PMjjO49454; Sat, 25 Aug 2001 15:45:45 -0700 (PDT) (envelope-from imp) Message-Id: <200108252245.f7PMjjO49454@freefall.freebsd.org> From: Warner Losh Date: Sat, 25 Aug 2001 15:45:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pccard pcic_pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/25 15:45:45 PDT Modified files: sys/pccard pcic_pci.c Log: Back out the isa/pci string reporting. It may cause panics. Revision Changes Path 1.79 +3 -18 src/sys/pccard/pcic_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 15:53:51 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8EE4C37B403; Sat, 25 Aug 2001 15:53:47 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PMrlA55451; Sat, 25 Aug 2001 15:53:47 -0700 (PDT) (envelope-from imp) Message-Id: <200108252253.f7PMrlA55451@freefall.freebsd.org> From: Warner Losh Date: Sat, 25 Aug 2001 15:53:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pccard pcic_pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/25 15:53:47 PDT Modified files: sys/pccard pcic_pci.c Log: Fix last second typo Revision Changes Path 1.80 +2 -2 src/sys/pccard/pcic_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 15:59:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3D92737B40C; Sat, 25 Aug 2001 15:59:24 -0700 (PDT) (envelope-from wosch@FreeBSD.org) Received: (from wosch@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PMxOY55938; Sat, 25 Aug 2001 15:59:24 -0700 (PDT) (envelope-from wosch) Message-Id: <200108252259.f7PMxOY55938@freefall.freebsd.org> From: Wolfram Schneider Date: Sat, 25 Aug 2001 15:59:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en docs.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wosch 2001/08/25 15:59:24 PDT Modified files: en docs.sgml Log: Added FreeBSD 4.3-stable manpages. The pages will be updated every week. Revision Changes Path 1.115 +2 -1 www/en/docs.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 16:26:55 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E2D037B40A; Sat, 25 Aug 2001 16:26:51 -0700 (PDT) (envelope-from lioux@FreeBSD.org) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PNQpV61613; Sat, 25 Aug 2001 16:26:51 -0700 (PDT) (envelope-from lioux) Message-Id: <200108252326.f7PNQpV61613@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sat, 25 Aug 2001 16:26:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/gkrellweather/files patch-gkrellweather.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG lioux 2001/08/25 16:26:51 PDT Added files: misc/gkrellweather/files patch-gkrellweather.c Log: gkrellweather currently displays 100% humidity as 10%. Fix it PR: 29894 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 Sat Aug 25 16:31:40 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E470A37B403; Sat, 25 Aug 2001 16:31:36 -0700 (PDT) (envelope-from lioux@FreeBSD.org) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PNVad62011; Sat, 25 Aug 2001 16:31:36 -0700 (PDT) (envelope-from lioux) Message-Id: <200108252331.f7PNVad62011@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sat, 25 Aug 2001 16:31:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/gkrellweather Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG lioux 2001/08/25 16:31:36 PDT Modified files: misc/gkrellweather Makefile Log: Bump PORTREVISION due to patch file patch-gkrellweather.c rev 1.1 PR: 29894 Submitted by: MAINTAINER Revision Changes Path 1.4 +2 -1 ports/misc/gkrellweather/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 16:41:40 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B0EE37B40A; Sat, 25 Aug 2001 16:41:37 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7PNfb262938; Sat, 25 Aug 2001 16:41:37 -0700 (PDT) (envelope-from brian) Message-Id: <200108252341.f7PNfb262938@freefall.freebsd.org> From: Brian Somers Date: Sat, 25 Aug 2001 16:41:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/pppoed pppoed.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2001/08/25 16:41:37 PDT Modified files: libexec/pppoed pppoed.c Log: Put a parenthesis in the right place (DUH!). This fixes the apparent immediate client timeout problem. Revision Changes Path 1.15 +2 -2 src/libexec/pppoed/pppoed.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 17:47:32 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5846237B40F; Sat, 25 Aug 2001 17:47:28 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q0lSf71154; Sat, 25 Aug 2001 17:47:28 -0700 (PDT) (envelope-from jedgar) Message-Id: <200108260047.f7Q0lSf71154@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Sat, 25 Aug 2001 17:47:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/gnuls Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jedgar 2001/08/25 17:47:28 PDT Modified files: misc/gnuls Makefile distinfo Log: Update ACL patch to fix a brain-o. Revision Changes Path 1.16 +2 -2 ports/misc/gnuls/Makefile 1.5 +1 -1 ports/misc/gnuls/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 17:53: 6 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3488E37B407; Sat, 25 Aug 2001 17:53:03 -0700 (PDT) (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q0r3871490; Sat, 25 Aug 2001 17:53:03 -0700 (PDT) (envelope-from mi) Message-Id: <200108260053.f7Q0r3871490@freefall.freebsd.org> From: Mikhail Teterin Date: Sat, 25 Aug 2001 17:53:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/converters/libiconv Makefile distinfo pkg-plist ports/converters/libiconv/files patch-tests patch-ab patch-ad patch-ae X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mi 2001/08/25 17:53:03 PDT Modified files: converters/libiconv Makefile distinfo pkg-plist converters/libiconv/files patch-ab patch-ad patch-ae Added files: converters/libiconv/files patch-tests Log: Upgrade to 1.7... Run included tests after the build... Maintainers (gnome@) were informed a couple of days ago, but are impressively silent and I've been using KDE/libxml2 linked against this library since with no problem. Approved by: maintainer's silence Revision Changes Path 1.9 +10 -2 ports/converters/libiconv/Makefile 1.5 +1 -1 ports/converters/libiconv/distinfo 1.5 +2 -2 ports/converters/libiconv/pkg-plist 1.4 +5 -5 ports/converters/libiconv/files/patch-ab 1.3 +24 -22 ports/converters/libiconv/files/patch-ad 1.3 +9 -10 ports/converters/libiconv/files/patch-ae To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 17:55:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EDAC837B406; Sat, 25 Aug 2001 17:55:06 -0700 (PDT) (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q0t6D71723; Sat, 25 Aug 2001 17:55:06 -0700 (PDT) (envelope-from mi) Message-Id: <200108260055.f7Q0t6D71723@freefall.freebsd.org> From: Mikhail Teterin Date: Sat, 25 Aug 2001 17:55:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/libxml2 Makefile distinfo ports/textproc/libxml2/files patch-aa patch-ab patch-ae X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mi 2001/08/25 17:55:06 PDT Modified files: textproc/libxml2 Makefile distinfo textproc/libxml2/files patch-aa patch-ab Removed files: textproc/libxml2/files patch-ae Log: Upgrade from 2.4.1 to 2.4.2... I let the maintainers know a couple of days ago, but the entire maintership (gnome@) is quiet... Reviewed by: maintainers' silence Revision Changes Path 1.52 +12 -4 ports/textproc/libxml2/Makefile 1.37 +1 -1 ports/textproc/libxml2/distinfo 1.15 +7 -19 ports/textproc/libxml2/files/patch-aa 1.9 +1 -72 ports/textproc/libxml2/files/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 Aug 25 18:18: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id F32C937B405; Sat, 25 Aug 2001 18:17:53 -0700 (PDT) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 7FA146ACE6; Sun, 26 Aug 2001 10:47:50 +0930 (CST) Date: Sun, 26 Aug 2001 10:47:50 +0930 From: Greg Lehey To: Joseph Mallett Cc: "Kenneth D. Merry" , Dima Dorfman , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Spelling (was: cvs commit: src/share/man/man4 adv.4 adw.4 ahb.4 bt.4 netgraph.4 ng_tty.4) Message-ID: <20010826104750.L21776@wantadilla.lemis.com> References: <200108232158.f7NLwcP61431@freefall.freebsd.org> <20010823164537.A854@panzer.kdm.org> <20010824090937.A7302@NewGold.NET> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010824090937.A7302@NewGold.NET>; from jmallett@NewGold.NET on Fri, Aug 24, 2001 at 09:09:37AM +0000 Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Friday, 24 August 2001 at 9:09:37 +0000, Joseph Mallett wrote: > On Thu, Aug 23, 2001 at 04:45:37PM -0600, Kenneth D. Merry wrote: >> On Thu, Aug 23, 2001 at 14:58:38 -0700, Dima Dorfman wrote: >>> dd 2001/08/23 14:58:38 PDT >>> >>> Modified files: >>> share/man/man4 adv.4 adw.4 ahb.4 bt.4 netgraph.4 >>> ng_tty.4 >>> Log: >>> Spelling police: queueing -> queuing >>> >>> PR: 29985 >>> Submitted by: Joseph Mallett >> >> The PR is wrong on this count, both spellings are correct. >> >> Check www.m-w.com. >> > > It's nice if you can keep manpages somewhat consistent, and ispell lists > this as the correct spelling. I thought we had long ago agreed not to change correct spellings, even if others might prefer a different correct spelling. Greg -- See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 18:23:11 2001 Delivered-To: cvs-all@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id 6284937B405; Sat, 25 Aug 2001 18:22:59 -0700 (PDT) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id B34BD6ACE6; Sun, 26 Aug 2001 10:52:57 +0930 (CST) Date: Sun, 26 Aug 2001 10:52:57 +0930 From: Greg Lehey To: Matt Dillon Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/sys minherit.2 mmap.2 Message-ID: <20010826105257.M21776@wantadilla.lemis.com> References: <200108241928.f7OJS1p05093@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108241928.f7OJS1p05093@freefall.freebsd.org>; from dillon@FreeBSD.org on Fri, Aug 24, 2001 at 12:28:01PM -0700 Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Friday, 24 August 2001 at 12:28:01 -0700, Matt Dillon wrote: > dillon 2001/08/24 12:28:00 PDT > > Modified files: > lib/libc/sys minherit.2 mmap.2 > Log: > Update the mmap.2 and minherit.2 manual pages. Add a short explanation and > referal from mmap to minherit for MAP_INHERIT. Fully document the > minherit.2 manual page (because frankly, my dear, however you think it > currently works is almost certainly wrong!). I may soon re-implement > MAP_COPY because I believe we can support it properly now, but I will have > to call it something else and that is for a later time. Are you thinking of getting our mmap() implementation more into line with System V and Linux? Greg -- See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 18:25: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from bazooka.unixfreak.org (bazooka.unixfreak.org [63.198.170.138]) by hub.freebsd.org (Postfix) with ESMTP id 293EF37B405; Sat, 25 Aug 2001 18:24:58 -0700 (PDT) (envelope-from dima@unixfreak.org) Received: by bazooka.unixfreak.org (Postfix, from userid 1000) id E44493E28; Sat, 25 Aug 2001 18:24:53 -0700 (PDT) Received: from bazooka.unixfreak.org (localhost [127.0.0.1]) by bazooka.unixfreak.org (Postfix) with ESMTP id D91293C12B; Sat, 25 Aug 2001 18:24:53 -0700 (PDT) To: Greg Lehey Cc: Joseph Mallett , "Kenneth D. Merry" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Spelling (was: cvs commit: src/share/man/man4 adv.4 adw.4 ahb.4 bt.4 netgraph.4 ng_tty.4) In-Reply-To: <20010826104750.L21776@wantadilla.lemis.com>; from grog@FreeBSD.org on "Sun, 26 Aug 2001 10:47:50 +0930" Date: Sat, 25 Aug 2001 18:24:48 -0700 From: Dima Dorfman Message-Id: <20010826012453.E44493E28@bazooka.unixfreak.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Greg Lehey wrote: > On Friday, 24 August 2001 at 9:09:37 +0000, Joseph Mallett wrote: > > On Thu, Aug 23, 2001 at 04:45:37PM -0600, Kenneth D. Merry wrote: > >> On Thu, Aug 23, 2001 at 14:58:38 -0700, Dima Dorfman wrote: > >>> dd 2001/08/23 14:58:38 PDT > >>> > >>> Modified files: > >>> share/man/man4 adv.4 adw.4 ahb.4 bt.4 netgraph.4 > >>> ng_tty.4 > >>> Log: > >>> Spelling police: queueing -> queuing > >>> > >>> PR: 29985 > >>> Submitted by: Joseph Mallett > >> > >> The PR is wrong on this count, both spellings are correct. > >> > >> Check www.m-w.com. > >> > > > > It's nice if you can keep manpages somewhat consistent, and ispell lists > > this as the correct spelling. > > I thought we had long ago agreed not to change correct spellings, even > if others might prefer a different correct spelling. That may be a good rule of thumb, but it looks bad when half the documents use one spelling, and another half use the other. The doc team (mostly murray and others from WindRiver working on the Handbook) seems to have taken up the practice of using whichever spelling appears the most and changing the rest. 'queueing' outnumbers 'queuing', at least in share/man4. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 18:25:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9DC3937B40F; Sat, 25 Aug 2001 18:25:12 -0700 (PDT) (envelope-from iedowse@FreeBSD.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q1PC576312; Sat, 25 Aug 2001 18:25:12 -0700 (PDT) (envelope-from iedowse) Message-Id: <200108260125.f7Q1PC576312@freefall.freebsd.org> From: Ian Dowse Date: Sat, 25 Aug 2001 18:25:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ufs ufs_lookup.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG iedowse 2001/08/25 18:25:12 PDT Modified files: sys/ufs/ufs ufs_lookup.c Log: When compacting directories, ufs_direnter() always trusted DIRSIZ() to supply the number of bytes to be bcopy()'d to move an entry. If d_ino == 0 however, DIRSIZ() is not guaranteed to return a sensible length, so ufs_direnter could end up corrupting a directory during compaction. In practice I believe this can only happen after fsck_ffs has fixed a previously-corrupted directory. We now deal with any mid-block unused entries specially to avoid using DIRSIZ() or bcopy() on such entries. We also ensure that the variables 'dsize' and 'spacefree' contain meaningful values at all times. Add a few comments to describe better this intricate piece of code. The special handling of mid-block unused entries makes the dirhash- specific bugfix in the previous revision (1.53) now uncecessary, so this change removes it. Reviewed by: mckusick Revision Changes Path 1.54 +30 -12 src/sys/ufs/ufs/ufs_lookup.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 18:33:21 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ED95E37B409; Sat, 25 Aug 2001 18:33:17 -0700 (PDT) (envelope-from dwcjr@FreeBSD.org) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q1XH976884; Sat, 25 Aug 2001 18:33:17 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200108260133.f7Q1XH976884@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Sat, 25 Aug 2001 18:33:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/samba-devel Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2001/08/25 18:33:17 PDT Modified files: net/samba-devel Makefile Log: Add --with-pam to fix samba bug with non-pam and md5 passwords Bump PORTREVISION PR: 30074,30078 Revision Changes Path 1.67 +4 -2 ports/net/samba-devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 18:43:48 2001 Delivered-To: cvs-all@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id 99FA137B40C; Sat, 25 Aug 2001 18:43:43 -0700 (PDT) (envelope-from dillon@earth.backplane.com) Received: (from dillon@localhost) by earth.backplane.com (8.11.6/8.11.2) id f7Q1hgJ12296; Sat, 25 Aug 2001 18:43:42 -0700 (PDT) (envelope-from dillon) Date: Sat, 25 Aug 2001 18:43:42 -0700 (PDT) From: Matt Dillon Message-Id: <200108260143.f7Q1hgJ12296@earth.backplane.com> To: Greg Lehey Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libc/sys minherit.2 mmap.2 References: <200108241928.f7OJS1p05093@freefall.freebsd.org> <20010826105257.M21776@wantadilla.lemis.com> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG :> minherit.2 manual page (because frankly, my dear, however you think it :> currently works is almost certainly wrong!). I may soon re-implement :> MAP_COPY because I believe we can support it properly now, but I will have :> to call it something else and that is for a later time. : :Are you thinking of getting our mmap() implementation more into line :with System V and Linux? : :Greg In regards to what? -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 18:44:49 2001 Delivered-To: cvs-all@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id 82EA737B406; Sat, 25 Aug 2001 18:44:36 -0700 (PDT) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 1C0006ACE6; Sun, 26 Aug 2001 11:14:34 +0930 (CST) Date: Sun, 26 Aug 2001 11:14:34 +0930 From: Greg Lehey To: Dima Dorfman Cc: Joseph Mallett , "Kenneth D. Merry" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Spelling (was: cvs commit: src/share/man/man4 adv.4 adw.4 ahb.4 bt.4 netgraph.4 ng_tty.4) Message-ID: <20010826111434.N21776@wantadilla.lemis.com> References: <20010826104750.L21776@wantadilla.lemis.com> <20010826012453.E44493E28@bazooka.unixfreak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010826012453.E44493E28@bazooka.unixfreak.org>; from dima@unixfreak.org on Sat, Aug 25, 2001 at 06:24:48PM -0700 Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Saturday, 25 August 2001 at 18:24:48 -0700, Dima Dorfman wrote: > Greg Lehey wrote: >> On Friday, 24 August 2001 at 9:09:37 +0000, Joseph Mallett wrote: >>> On Thu, Aug 23, 2001 at 04:45:37PM -0600, Kenneth D. Merry wrote: >>>> On Thu, Aug 23, 2001 at 14:58:38 -0700, Dima Dorfman wrote: >>>>> dd 2001/08/23 14:58:38 PDT >>>>> >>>>> Modified files: >>>>> share/man/man4 adv.4 adw.4 ahb.4 bt.4 netgraph.4 >>>>> ng_tty.4 >>>>> Log: >>>>> Spelling police: queueing -> queuing >>>>> >>>>> PR: 29985 >>>>> Submitted by: Joseph Mallett >>>> >>>> The PR is wrong on this count, both spellings are correct. >>>> >>>> Check www.m-w.com. >>>> >>> >>> It's nice if you can keep manpages somewhat consistent, and ispell lists >>> this as the correct spelling. >> >> I thought we had long ago agreed not to change correct spellings, even >> if others might prefer a different correct spelling. > > That may be a good rule of thumb, It was also a thing we agreed to. > but it looks bad when half the documents use one spelling, and > another half use the other. That's a matter of personal taste, I suppose. > The doc team (mostly murray and others from WinDriver working on the > Handbook) seems to have taken up the practice of using whichever > spelling appears the most and changing the rest. That will probably change the spelling of the Handbook to be different from that used in "The Complete FreeBSD". > 'queueing' outnumbers 'queuing', at least in share/man4. I really think that the documentation could benefit more from higher-level changes than these. Greg -- See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 18:48:26 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9AD0337B405; Sat, 25 Aug 2001 18:48:22 -0700 (PDT) (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q1mMP78150; Sat, 25 Aug 2001 18:48:22 -0700 (PDT) (envelope-from demon) Message-Id: <200108260148.f7Q1mMP78150@freefall.freebsd.org> From: Dmitry Sivachenko Date: Sat, 25 Aug 2001 18:48:22 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2001/08/25 18:48:22 PDT Modified files: www/gtkhtml Makefile Log: Chase gal SHLIB version. PR: 29998, 29992 Revision Changes Path 1.32 +2 -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 Sat Aug 25 18:49:37 2001 Delivered-To: cvs-all@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id 3882737B408; Sat, 25 Aug 2001 18:49:29 -0700 (PDT) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id BFB626ACE7; Sun, 26 Aug 2001 11:19:27 +0930 (CST) Date: Sun, 26 Aug 2001 11:19:27 +0930 From: Greg Lehey To: Matt Dillon Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libc/sys minherit.2 mmap.2 Message-ID: <20010826111927.O21776@wantadilla.lemis.com> References: <200108241928.f7OJS1p05093@freefall.freebsd.org> <20010826105257.M21776@wantadilla.lemis.com> <200108260143.f7Q1hgJ12296@earth.backplane.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200108260143.f7Q1hgJ12296@earth.backplane.com>; from dillon@earth.backplane.com on Sat, Aug 25, 2001 at 06:43:42PM -0700 Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Saturday, 25 August 2001 at 18:43:42 -0700, Matt Dillon wrote: >>> minherit.2 manual page (because frankly, my dear, however you think it >>> currently works is almost certainly wrong!). I may soon re-implement >>> MAP_COPY because I believe we can support it properly now, but I will have >>> to call it something else and that is for a later time. >> >> Are you thinking of getting our mmap() implementation more into line >> with System V and Linux? > > In regards to what? There are a number of incompatibilities. I thought you might have taken a look. Tell me if you don't find anything, and I'll get some info for you. Greg -- See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 18:59: 4 2001 Delivered-To: cvs-all@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id BE2A037B403; Sat, 25 Aug 2001 18:58:57 -0700 (PDT) (envelope-from dillon@earth.backplane.com) Received: (from dillon@localhost) by earth.backplane.com (8.11.6/8.11.2) id f7Q1wvs12438; Sat, 25 Aug 2001 18:58:57 -0700 (PDT) (envelope-from dillon) Date: Sat, 25 Aug 2001 18:58:57 -0700 (PDT) From: Matt Dillon Message-Id: <200108260158.f7Q1wvs12438@earth.backplane.com> To: Greg Lehey Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/sys minherit.2 mmap.2 References: <200108241928.f7OJS1p05093@freefall.freebsd.org> <20010826105257.M21776@wantadilla.lemis.com> <200108260143.f7Q1hgJ12296@earth.backplane.com> <20010826111927.O21776@wantadilla.lemis.com> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG : :There are a number of incompatibilities. I thought you might have :taken a look. Tell me if you don't find anything, and I'll get some :info for you. : :Greg :-- :See complete headers for address and phone numbers See what you can come up with. I did a quick check of redhat's mmap.2 manual page and we appear to implement a superset. Still, I imagine there are some issues. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 19:10:53 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7BA2A37B40D; Sat, 25 Aug 2001 19:10:49 -0700 (PDT) (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q2Anx82388; Sat, 25 Aug 2001 19:10:49 -0700 (PDT) (envelope-from demon) Message-Id: <200108260210.f7Q2Anx82388@freefall.freebsd.org> From: Dmitry Sivachenko Date: Sat, 25 Aug 2001 19:10:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/koffice distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2001/08/25 19:10:49 PDT Modified files: editors/koffice distinfo Log: Chase checksum (no functional changes). Revision Changes Path 1.8 +1 -1 ports/editors/koffice/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 19:37:27 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F1E037B408; Sat, 25 Aug 2001 19:37:23 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q2bNk84283; Sat, 25 Aug 2001 19:37:23 -0700 (PDT) (envelope-from dd) Message-Id: <200108260237.f7Q2bNk84283@freefall.freebsd.org> From: Dima Dorfman Date: Sat, 25 Aug 2001 19:37:23 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2001/08/25 19:37:23 PDT Modified files: etc sysctl.conf Log: End sentence with a period. Revision Changes Path 1.5 +2 -2 src/etc/sysctl.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 19:40:22 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9715D37B405; Sat, 25 Aug 2001 19:40:16 -0700 (PDT) (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q2eGf84484; Sat, 25 Aug 2001 19:40:16 -0700 (PDT) (envelope-from demon) Message-Id: <200108260240.f7Q2eGf84484@freefall.freebsd.org> From: Dmitry Sivachenko Date: Sat, 25 Aug 2001 19:40:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/musicbrainz Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2001/08/25 19:40:16 PDT Modified files: audio/musicbrainz Makefile distinfo Log: gzipped tarball was rerolled with minor changes in autogen.sh/ltmain.sh/similar scripts. Switch to bzipped tarball. Revision Changes Path 1.7 +2 -1 ports/audio/musicbrainz/Makefile 1.5 +1 -1 ports/audio/musicbrainz/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 20:11:17 2001 Delivered-To: cvs-all@freebsd.org Received: from white.imgsrc.co.jp (ns.imgsrc.co.jp [210.226.20.2]) by hub.freebsd.org (Postfix) with ESMTP id 956AB37B40B; Sat, 25 Aug 2001 20:11:10 -0700 (PDT) (envelope-from kuriyama@imgsrc.co.jp) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [2001:218:422:2:290:27ff:fe98:c0b7]) by white.imgsrc.co.jp (Postfix) with ESMTP id 5A5A824D2E; Sun, 26 Aug 2001 12:11:09 +0900 (JST) Received: from waterblue.imgsrc.co.jp (waterblue.imgsrc.co.jp [210.226.20.160]) by black.imgsrc.co.jp (Postfix) with ESMTP id 4E5EED1407; Sun, 26 Aug 2001 12:11:08 +0900 (JST) Date: Sun, 26 Aug 2001 12:11:06 +0900 Message-ID: <7m66bbv7lh.wl@waterblue.imgsrc.co.jp> From: Jun Kuriyama To: Mikhail Teterin Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/textproc/libxml2 Makefile distinfo ports/textproc/libxml2/files patch-aa patch-ab patch-ae In-Reply-To: <200108260055.f7Q0t6D71723@freefall.freebsd.org> References: <200108260055.f7Q0t6D71723@freefall.freebsd.org> User-Agent: Wanderlust/2.6.0 (Twist And Shout) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-1?Q?Unebigory=F2mae?=) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Sat, 25 Aug 2001 17:55:06 -0700 (PDT), Mikhail Teterin wrote: > Upgrade from 2.4.1 to 2.4.2... I let the maintainers know a couple of > days ago, but the entire maintership (gnome@) is quiet... Could you please upgrade to 2.4.3? # This upgrade includes fixes for catalog handling which is required # to build www/ja/gallery/* correctly. -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 20:19:57 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A136037B401; Sat, 25 Aug 2001 20:19:54 -0700 (PDT) (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q3Js090883; Sat, 25 Aug 2001 20:19:54 -0700 (PDT) (envelope-from demon) Message-Id: <200108260319.f7Q3Js090883@freefall.freebsd.org> From: Dmitry Sivachenko Date: Sat, 25 Aug 2001 20:19:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/comms/bayonne Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2001/08/25 20:19:54 PDT Modified files: comms/bayonne Makefile Log: Fix library name in LIB_DEPENDS. Revision Changes Path 1.2 +3 -3 ports/comms/bayonne/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 20:36: 7 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E8DA37B40B; Sat, 25 Aug 2001 20:36:04 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q3a4i91831; Sat, 25 Aug 2001 20:36:04 -0700 (PDT) (envelope-from jkoshy) Message-Id: <200108260336.f7Q3a4i91831@freefall.freebsd.org> From: Joseph Koshy Date: Sat, 25 Aug 2001 20:36:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/stdlib getopt.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jkoshy 2001/08/25 20:36:04 PDT Modified files: (Branch: RELENG_4) lib/libc/stdlib getopt.c Log: {MFC from rev 1.4}. If the string specifying options starts with a leading `:', then `getopt(3)' should not print a warning for missing argument values. Approved by: re Revision Changes Path 1.2.2.2 +3 -6 src/lib/libc/stdlib/getopt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 20:57: 1 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A05D237B40D; Sat, 25 Aug 2001 20:56:55 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q3utX93288; Sat, 25 Aug 2001 20:56:55 -0700 (PDT) (envelope-from kris) Message-Id: <200108260356.f7Q3utX93288@freefall.freebsd.org> From: Kris Kennaway Date: Sat, 25 Aug 2001 20:56:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/gnut Makefile distinfo ports/net/gnut/files patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2001/08/25 20:56:55 PDT Modified files: net/gnut Makefile distinfo Added files: net/gnut/files patch-ab Log: Upgrade to gnut-0.4.27 Revision Changes Path 1.12 +2 -2 ports/net/gnut/Makefile 1.12 +1 -1 ports/net/gnut/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 21: 5:12 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B820837B401; Sat, 25 Aug 2001 21:05:07 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q457o94135; Sat, 25 Aug 2001 21:05:07 -0700 (PDT) (envelope-from imp) Message-Id: <200108260405.f7Q457o94135@freefall.freebsd.org> From: Warner Losh Date: Sat, 25 Aug 2001 21:05:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pccard pcic_pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/25 21:05:07 PDT Modified files: sys/pccard pcic_pci.c Log: Stop dereferencing 'r' unconditionally. Maybe it is NULL when ISA mode and using polling mode. Revision Changes Path 1.81 +6 -7 src/sys/pccard/pcic_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 21:14:22 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 21AD737B409; Sat, 25 Aug 2001 21:14:18 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q4EI197515; Sat, 25 Aug 2001 21:14:18 -0700 (PDT) (envelope-from kuriyama) Message-Id: <200108260414.f7Q4EI197515@freefall.freebsd.org> From: Jun Kuriyama Date: Sat, 25 Aug 2001 21:14:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Mk bsd.sites.mk X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2001/08/25 21:14:18 PDT Modified files: Mk bsd.sites.mk Log: Add more master sites of CPAN and GNU for whom from China and Hong Kong. PR: ports/29708 Submitted by: Shell Hung Revision Changes Path 1.72 +3 -1 ports/Mk/bsd.sites.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 21:41:37 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D31C737B412; Sat, 25 Aug 2001 21:41:32 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q4fWX99198; Sat, 25 Aug 2001 21:41:32 -0700 (PDT) (envelope-from petef) Message-Id: <200108260441.f7Q4fWX99198@freefall.freebsd.org> From: Pete Fritchman Date: Sat, 25 Aug 2001 21:41:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/cad/vipec Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/25 21:41:32 PDT Modified files: cad/vipec Makefile Log: Fix a pthread compilation problem on -stable. PR: 28978 Revision Changes Path 1.3 +3 -2 ports/cad/vipec/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 21:43:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C2FA37B40C; Sat, 25 Aug 2001 21:43:16 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q4hGj99405; Sat, 25 Aug 2001 21:43:16 -0700 (PDT) (envelope-from imp) Message-Id: <200108260443.f7Q4hGj99405@freefall.freebsd.org> From: Warner Losh Date: Sat, 25 Aug 2001 21:43:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 pcic.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/25 21:43:16 PDT Modified files: share/man/man4 pcic.4 Log: Improve the documentation for the various tunables. Document how to force ISA routing of interrupts. Warn the user that with ISA routing of interrupts for PCI devices with more than one slot, polling mode is in order. Minor markup fixes as well and some white space/sentence break changes (I did these as one commit since this file has been in the tree only 4 days and I doubt that translation has begun). Revision Changes Path 1.2 +66 -13 src/share/man/man4/pcic.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 21:45: 7 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D645837B40D; Sat, 25 Aug 2001 21:45:03 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q4j3S99634; Sat, 25 Aug 2001 21:45:03 -0700 (PDT) (envelope-from imp) Message-Id: <200108260445.f7Q4j3S99634@freefall.freebsd.org> From: Warner Losh Date: Sat, 25 Aug 2001 21:45:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 pcic.4 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/25 21:45:03 PDT Added files: (Branch: RELENG_4) share/man/man4 pcic.4 Log: MFC: add pcic man page, finally. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 21:45:54 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EB38C37B406; Sat, 25 Aug 2001 21:45:50 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q4joe99727; Sat, 25 Aug 2001 21:45:50 -0700 (PDT) (envelope-from imp) Message-Id: <200108260445.f7Q4joe99727@freefall.freebsd.org> From: Warner Losh Date: Sat, 25 Aug 2001 21:45:50 -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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/25 21:45:50 PDT Modified files: (Branch: RELENG_4) share/man/man4 Makefile Log: Add pcic.4 to the build process. Revision Changes Path 1.83.2.27 +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 Sat Aug 25 21:48:52 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6BD9C37B405; Sat, 25 Aug 2001 21:48:47 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q4mlp99924; Sat, 25 Aug 2001 21:48:47 -0700 (PDT) (envelope-from imp) Message-Id: <200108260448.f7Q4mlp99924@freefall.freebsd.org> From: Warner Losh Date: Sat, 25 Aug 2001 21:48:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pccard pcic_pci.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2001/08/25 21:48:47 PDT Modified files: (Branch: RELENG_4) sys/pccard pcic_pci.c Log: MFC: Merge in the first cut at the ISA routing support. Note, we'll need to expand this support a little, but it should get people up and going. Approved by: jkh Revision Changes Path 1.54.2.10 +60 -50 src/sys/pccard/pcic_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 21:55:25 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 470BA37B401; Sat, 25 Aug 2001 21:55:22 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q4tMR00743; Sat, 25 Aug 2001 21:55:22 -0700 (PDT) (envelope-from petef) Message-Id: <200108260455.f7Q4tMR00743@freefall.freebsd.org> From: Pete Fritchman Date: Sat, 25 Aug 2001 21:55:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail Makefile ports/mail/sigit Makefile distinfo pkg-comment pkg-descr pkg-plist ports/mail/sigit/files patch-Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/25 21:55:22 PDT Modified files: mail Makefile Added files: mail/sigit Makefile distinfo pkg-comment pkg-descr pkg-plist mail/sigit/files patch-Makefile Log: add sigit 0.0.4 A tool to create random signatures PR: 29881 Revision Changes Path 1.252 +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 Sat Aug 25 22:29: 2 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B71737B407; Sat, 25 Aug 2001 22:28:55 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q5StN16101; Sat, 25 Aug 2001 22:28:55 -0700 (PDT) (envelope-from petef) Message-Id: <200108260528.f7Q5StN16101@freefall.freebsd.org> From: Pete Fritchman Date: Sat, 25 Aug 2001 22:28:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/p5-Net-FTPServer Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/25 22:28:55 PDT Modified files: ftp/p5-Net-FTPServer Makefile distinfo Log: Update to version 1.029 Revision Changes Path 1.8 +2 -2 ports/ftp/p5-Net-FTPServer/Makefile 1.5 +1 -1 ports/ftp/p5-Net-FTPServer/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 22:31:50 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BAE437B40B; Sat, 25 Aug 2001 22:31:46 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q5VkR16257; Sat, 25 Aug 2001 22:31:46 -0700 (PDT) (envelope-from petef) Message-Id: <200108260531.f7Q5VkR16257@freefall.freebsd.org> From: Pete Fritchman Date: Sat, 25 Aug 2001 22:31: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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/25 22:31:46 PDT Modified files: . modules Log: sigit --> ports/mail/sigit Revision Changes Path 1.3731 +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 Aug 25 22:37: 8 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 73AFF37B406; Sat, 25 Aug 2001 22:37:03 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q5b3q16710; Sat, 25 Aug 2001 22:37:03 -0700 (PDT) (envelope-from petef) Message-Id: <200108260537.f7Q5b3q16710@freefall.freebsd.org> From: Pete Fritchman Date: Sat, 25 Aug 2001 22:37:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/jakarta-ant Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/25 22:37:03 PDT Modified files: devel/jakarta-ant Makefile Log: - make the ant program actually work if no JAVA_HOME is set (make the default java command the javavm wrapper). - bump portrevision PR: 27073 Submitted by: maintainer Revision Changes Path 1.3 +5 -1 ports/devel/jakarta-ant/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 22:41:29 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 36CE837B40A; Sat, 25 Aug 2001 22:41:26 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q5fQx17290; Sat, 25 Aug 2001 22:41:26 -0700 (PDT) (envelope-from petef) Message-Id: <200108260541.f7Q5fQx17290@freefall.freebsd.org> From: Pete Fritchman Date: Sat, 25 Aug 2001 22:41:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/p5-Mail-ListDetector Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/25 22:41:26 PDT Modified files: mail/p5-Mail-ListDetector Makefile distinfo Log: Update to version 0.18 Revision Changes Path 1.3 +2 -2 ports/mail/p5-Mail-ListDetector/Makefile 1.2 +1 -1 ports/mail/p5-Mail-ListDetector/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 23: 0:19 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 57FC637B405; Sat, 25 Aug 2001 23:00:14 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q60Ei18760; Sat, 25 Aug 2001 23:00:14 -0700 (PDT) (envelope-from petef) Message-Id: <200108260600.f7Q60Ei18760@freefall.freebsd.org> From: Pete Fritchman Date: Sat, 25 Aug 2001 23:00:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/p5-Tcl-Tk Makefile ports/x11-toolkits/p5-Tcl-Tk/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/25 23:00:14 PDT Modified files: x11-toolkits/p5-Tcl-Tk Makefile x11-toolkits/p5-Tcl-Tk/files patch-aa Log: Fix compilation by telling Makefile.PL to look for the tcl/tk headers in the right place. PR: 28394 Revision Changes Path 1.20 +5 -1 ports/x11-toolkits/p5-Tcl-Tk/Makefile 1.5 +2 -2 ports/x11-toolkits/p5-Tcl-Tk/files/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 25 23:37:41 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 231DE37B40B; Sat, 25 Aug 2001 23:37:37 -0700 (PDT) (envelope-from petef@FreeBSD.org) Received: (from petef@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7Q6bbZ24556; Sat, 25 Aug 2001 23:37:37 -0700 (PDT) (envelope-from petef) Message-Id: <200108260637.f7Q6bbZ24556@freefall.freebsd.org> From: Pete Fritchman Date: Sat, 25 Aug 2001 23:37:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/p5-XML-Sablotron Makefile distinfo pkg-plist ports/textproc/p5-XML-Sablotron/files patch-Makefile.PL patch-Sablotron-Makefile.PL X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2001/08/25 23:37:36 PDT Modified files: textproc/p5-XML-Sablotron Makefile distinfo pkg-plist Removed files: textproc/p5-XML-Sablotron/files patch-Makefile.PL patch-Sablotron-Makefile.PL Log: - update to version 0.65 - sort and fix pkg-plist PR: 29979 Submitted by: maintainer Revision Changes Path 1.8 +8 -4 ports/textproc/p5-XML-Sablotron/Makefile 1.5 +1 -1 ports/textproc/p5-XML-Sablotron/distinfo 1.3 +3 -2 ports/textproc/p5-XML-Sablotron/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message